blob: afc09dfad30ca56131486ee07c89b2cd2ba6bd43 [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 Fauletfeb11742018-11-29 15:12:34 +0100122 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200123
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100124 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200125
Olivier Houchardf502aca2018-12-14 19:42:40 +0100126 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200127 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200128 struct h1m req;
129 struct h1m res;
130
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500131 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200132 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100133
134 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200135};
136
Christopher Faulet98fbe952019-07-22 16:18:24 +0200137/* Map of headers used to convert outgoing headers */
138struct h1_hdrs_map {
139 char *name;
140 struct eb_root map;
141};
142
143/* An entry in a headers map */
144struct h1_hdr_entry {
145 struct ist name;
146 struct ebpt_node node;
147};
148
149/* Declare the headers map */
150static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
151
152
Christopher Faulet6b81df72019-10-01 22:08:43 +0200153/* trace source and events */
154static void h1_trace(enum trace_level level, uint64_t mask,
155 const struct trace_source *src,
156 const struct ist where, const struct ist func,
157 const void *a1, const void *a2, const void *a3, const void *a4);
158
159/* The event representation is split like this :
160 * h1c - internal H1 connection
161 * h1s - internal H1 stream
162 * strm - application layer
163 * rx - data receipt
164 * tx - data transmission
165 *
166 */
167static const struct trace_event h1_trace_events[] = {
168#define H1_EV_H1C_NEW (1ULL << 0)
169 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
170#define H1_EV_H1C_RECV (1ULL << 1)
171 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
172#define H1_EV_H1C_SEND (1ULL << 2)
173 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
174#define H1_EV_H1C_BLK (1ULL << 3)
175 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
176#define H1_EV_H1C_WAKE (1ULL << 4)
177 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
178#define H1_EV_H1C_END (1ULL << 5)
179 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
180#define H1_EV_H1C_ERR (1ULL << 6)
181 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
182
183#define H1_EV_RX_DATA (1ULL << 7)
184 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
185#define H1_EV_RX_EOI (1ULL << 8)
186 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
187#define H1_EV_RX_HDRS (1ULL << 9)
188 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
189#define H1_EV_RX_BODY (1ULL << 10)
190 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
191#define H1_EV_RX_TLRS (1ULL << 11)
192 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
193
194#define H1_EV_TX_DATA (1ULL << 12)
195 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
196#define H1_EV_TX_EOI (1ULL << 13)
197 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
198#define H1_EV_TX_HDRS (1ULL << 14)
199 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
200#define H1_EV_TX_BODY (1ULL << 15)
201 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
202#define H1_EV_TX_TLRS (1ULL << 16)
203 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
204
205#define H1_EV_H1S_NEW (1ULL << 17)
206 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
207#define H1_EV_H1S_BLK (1ULL << 18)
208 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
209#define H1_EV_H1S_END (1ULL << 19)
210 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
211#define H1_EV_H1S_ERR (1ULL << 20)
212 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
213
214#define H1_EV_STRM_NEW (1ULL << 21)
215 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
216#define H1_EV_STRM_RECV (1ULL << 22)
217 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
218#define H1_EV_STRM_SEND (1ULL << 23)
219 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
220#define H1_EV_STRM_WAKE (1ULL << 24)
221 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
222#define H1_EV_STRM_SHUT (1ULL << 25)
223 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
224#define H1_EV_STRM_END (1ULL << 26)
225 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
226#define H1_EV_STRM_ERR (1ULL << 27)
227 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
228
229 { }
230};
231
232static const struct name_desc h1_trace_lockon_args[4] = {
233 /* arg1 */ { /* already used by the connection */ },
234 /* arg2 */ { .name="h1s", .desc="H1 stream" },
235 /* arg3 */ { },
236 /* arg4 */ { }
237};
238
239static const struct name_desc h1_trace_decoding[] = {
240#define H1_VERB_CLEAN 1
241 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
242#define H1_VERB_MINIMAL 2
243 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
244#define H1_VERB_SIMPLE 3
245 { .name="simple", .desc="add request/response status line or htx info when available" },
246#define H1_VERB_ADVANCED 4
247 { .name="advanced", .desc="add header fields or frame decoding when available" },
248#define H1_VERB_COMPLETE 5
249 { .name="complete", .desc="add full data dump when available" },
250 { /* end */ }
251};
252
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200253static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200254 .name = IST("h1"),
255 .desc = "HTTP/1 multiplexer",
256 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
257 .default_cb = h1_trace,
258 .known_events = h1_trace_events,
259 .lockon_args = h1_trace_lockon_args,
260 .decoding = h1_trace_decoding,
261 .report_events = ~0, // report everything by default
262};
263
264#define TRACE_SOURCE &trace_h1
265INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
266
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100267
268/* h1 stats module */
269enum {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100270 H1_ST_OPEN_CONN,
271 H1_ST_OPEN_STREAM,
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100272 H1_ST_TOTAL_CONN,
273 H1_ST_TOTAL_STREAM,
274
Christopher Faulet41951ab2021-11-26 18:12:51 +0100275 H1_ST_BYTES_IN,
276 H1_ST_BYTES_OUT,
277#if defined(USE_LINUX_SPLICE)
278 H1_ST_SPLICED_BYTES_IN,
279 H1_ST_SPLICED_BYTES_OUT,
280#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100281 H1_STATS_COUNT /* must be the last member of the enum */
282};
283
284
285static struct name_desc h1_stats[] = {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100286 [H1_ST_OPEN_CONN] = { .name = "h1_open_connections",
287 .desc = "Count of currently open connections" },
288 [H1_ST_OPEN_STREAM] = { .name = "h1_open_streams",
289 .desc = "Count of currently open streams" },
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100290 [H1_ST_TOTAL_CONN] = { .name = "h1_total_connections",
291 .desc = "Total number of connections" },
292 [H1_ST_TOTAL_STREAM] = { .name = "h1_total_streams",
Christopher Faulet41951ab2021-11-26 18:12:51 +0100293 .desc = "Total number of streams" },
294
295 [H1_ST_BYTES_IN] = { .name = "h1_bytes_in",
296 .desc = "Total number of bytes received" },
297 [H1_ST_BYTES_OUT] = { .name = "h1_bytes_out",
298 .desc = "Total number of bytes send" },
299#if defined(USE_LINUX_SPLICE)
300 [H1_ST_SPLICED_BYTES_IN] = { .name = "h1_spliced_bytes_in",
301 .desc = "Total number of bytes received using kernel splicing" },
302 [H1_ST_SPLICED_BYTES_OUT] = { .name = "h1_spliced_bytes_out",
303 .desc = "Total number of bytes sendusing kernel splicing" },
304#endif
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100305
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100306};
307
308static struct h1_counters {
Christopher Faulet60fa0512021-11-26 18:10:39 +0100309 long long open_conns; /* count of currently open connections */
310 long long open_streams; /* count of currently open streams */
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100311 long long total_conns; /* total number of connections */
312 long long total_streams; /* total number of streams */
313
Christopher Faulet41951ab2021-11-26 18:12:51 +0100314 long long bytes_in; /* number of bytes received */
315 long long bytes_out; /* number of bytes sent */
316#if defined(USE_LINUX_SPLICE)
317 long long spliced_bytes_in; /* number of bytes received using kernel splicing */
318 long long spliced_bytes_out; /* number of bytes sent using kernel splicing */
319#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100320} h1_counters;
321
322static void h1_fill_stats(void *data, struct field *stats)
323{
Christopher Faulet60fa0512021-11-26 18:10:39 +0100324 struct h1_counters *counters = data;
325
326 stats[H1_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
327 stats[H1_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100328 stats[H1_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
329 stats[H1_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Christopher Faulet41951ab2021-11-26 18:12:51 +0100330
331 stats[H1_ST_BYTES_IN] = mkf_u64(FN_COUNTER, counters->bytes_in);
332 stats[H1_ST_BYTES_OUT] = mkf_u64(FN_COUNTER, counters->bytes_out);
333#if defined(USE_LINUX_SPLICE)
334 stats[H1_ST_SPLICED_BYTES_IN] = mkf_u64(FN_COUNTER, counters->spliced_bytes_in);
335 stats[H1_ST_SPLICED_BYTES_OUT] = mkf_u64(FN_COUNTER, counters->spliced_bytes_out);
336#endif
Christopher Fauletb4c584e2021-11-26 17:37:07 +0100337}
338
339static struct stats_module h1_stats_module = {
340 .name = "h1",
341 .fill_stats = h1_fill_stats,
342 .stats = h1_stats,
343 .stats_count = H1_STATS_COUNT,
344 .counters = &h1_counters,
345 .counters_size = sizeof(h1_counters),
346 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
347 .clearable = 1,
348};
349
350INITCALL1(STG_REGISTER, stats_register_module, &h1_stats_module);
351
352
Christopher Faulet51dbc942018-09-13 09:05:15 +0200353/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100354DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
355DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200356
Christopher Faulet51dbc942018-09-13 09:05:15 +0200357static int h1_recv(struct h1c *h1c);
358static int h1_send(struct h1c *h1c);
359static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100360/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100361struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
362struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauleta85c5222021-10-27 15:36:38 +0200363static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200364static void h1_wake_stream_for_recv(struct h1s *h1s);
365static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200366
Christopher Faulet6b81df72019-10-01 22:08:43 +0200367/* the H1 traces always expect that arg1, if non-null, is of type connection
368 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
369 * that arg3, if non-null, is a htx for rx/tx headers.
370 */
371static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
372 const struct ist where, const struct ist func,
373 const void *a1, const void *a2, const void *a3, const void *a4)
374{
375 const struct connection *conn = a1;
376 const struct h1c *h1c = conn ? conn->ctx : NULL;
377 const struct h1s *h1s = a2;
378 const struct htx *htx = a3;
379 const size_t *val = a4;
380
381 if (!h1c)
382 h1c = (h1s ? h1s->h1c : NULL);
383
384 if (!h1c || src->verbosity < H1_VERB_CLEAN)
385 return;
386
387 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200388 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200389
390 /* Display request and response states if h1s is defined */
Christopher Faulet6580f282021-11-26 17:31:35 +0100391 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200392 chunk_appendf(&trace_buf, " [%s, %s]",
393 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
394
Christopher Faulet6580f282021-11-26 17:31:35 +0100395 if (src->verbosity > H1_VERB_SIMPLE) {
396 chunk_appendf(&trace_buf, " - req=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
397 h1s->req.flags, (unsigned long)h1s->req.curr_len, (unsigned long)h1s->req.body_len);
398 chunk_appendf(&trace_buf, " res=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
399 h1s->res.flags, (unsigned long)h1s->res.curr_len, (unsigned long)h1s->res.body_len);
400 }
401
402 }
403
Christopher Faulet6b81df72019-10-01 22:08:43 +0200404 if (src->verbosity == H1_VERB_CLEAN)
405 return;
406
407 /* Display the value to the 4th argument (level > STATE) */
408 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100409 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200410
411 /* Display status-line if possible (verbosity > MINIMAL) */
412 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
413 const struct htx_blk *blk = htx_get_head_blk(htx);
414 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
415 enum htx_blk_type type = htx_get_blk_type(blk);
416
417 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
418 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
419 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
420 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
421 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
422 }
423
424 /* Display h1c info and, if defined, h1s info (pointer + flags) */
425 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100426 if (h1c->conn)
427 chunk_appendf(&trace_buf, " conn=%p(0x%08x)", h1c->conn, h1c->conn->flags);
428 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200429 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
Christopher Faulet99293b02021-11-10 10:30:15 +0100430 if (h1s->cs)
431 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", h1s->cs, h1s->cs->flags);
432 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200433
434 if (src->verbosity == H1_VERB_MINIMAL)
435 return;
436
437 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
438 if (src->level > TRACE_LEVEL_USER) {
439 if (src->verbosity == H1_VERB_COMPLETE ||
440 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
441 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
442 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
443 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
444 if (src->verbosity == H1_VERB_COMPLETE ||
445 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
446 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
447 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
448 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
449 }
450
451 /* Display htx info if defined (level > USER) */
452 if (src->level > TRACE_LEVEL_USER && htx) {
453 int full = 0;
454
455 /* Full htx info (level > STATE && verbosity > SIMPLE) */
456 if (src->level > TRACE_LEVEL_STATE) {
457 if (src->verbosity == H1_VERB_COMPLETE)
458 full = 1;
459 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
460 full = 1;
461 }
462
463 chunk_memcat(&trace_buf, "\n\t", 2);
464 htx_dump(&trace_buf, htx, full);
465 }
466}
467
468
Christopher Faulet51dbc942018-09-13 09:05:15 +0200469/*****************************************************/
470/* functions below are for dynamic buffer management */
471/*****************************************************/
472/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100473 * Indicates whether or not we may receive data. The rules are the following :
474 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200475 * must not attempt to receive
476 * - if we are waiting for the connection establishment, we must not attempt
477 * to receive
478 * - if an error was detected on the stream we must not attempt to receive
479 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100480 * - if the input buffer failed to be allocated or is full , we must not try
481 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200482 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200483 * - otherwise must may not attempt to receive
484 */
485static inline int h1_recv_allowed(const struct h1c *h1c)
486{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100487 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100488 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 +0200489 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200490 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200491
Willy Tarreau2febb842020-07-31 09:15:43 +0200492 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
493 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 +0100494 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200495 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100496
Christopher Faulet119ac872020-09-30 17:33:22 +0200497 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
498 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
499 return 0;
500 }
501
Christopher Fauletd17ad822020-09-24 15:14:29 +0200502 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200503 return 1;
504
Christopher Faulet6b81df72019-10-01 22:08:43 +0200505 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 +0200506 return 0;
507}
508
509/*
510 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
511 * flags are used to figure what buffer was requested. It returns 1 if the
512 * allocation succeeds, in which case the connection is woken up, or 0 if it's
513 * impossible to wake up and we prefer to be woken up later.
514 */
515static int h1_buf_available(void *target)
516{
517 struct h1c *h1c = target;
518
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100519 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200520 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 +0200521 h1c->flags &= ~H1C_F_IN_ALLOC;
522 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200523 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200524 return 1;
525 }
526
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100527 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200528 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 +0200529 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200530 if (h1c->h1s)
531 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200532 return 1;
533 }
534
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100535 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200536 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
537 h1c->flags &= ~H1C_F_IN_SALLOC;
538 tasklet_wakeup(h1c->wait_event.tasklet);
539 return 1;
540 }
541
Christopher Faulet51dbc942018-09-13 09:05:15 +0200542 return 0;
543}
544
545/*
546 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
547 */
548static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
549{
550 struct buffer *buf = NULL;
551
Willy Tarreau2b718102021-04-21 07:32:39 +0200552 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100553 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200554 h1c->buf_wait.target = h1c;
555 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200556 LIST_APPEND(&th_ctx->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200557 }
558 return buf;
559}
560
561/*
562 * Release a buffer, if any, and try to wake up entities waiting in the buffer
563 * wait queue.
564 */
565static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
566{
567 if (bptr->size) {
568 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100569 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200570 }
571}
572
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100573/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100574 * 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 +0100575 * not. This flag is only set when no H1S is attached and when the previous
576 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100577 */
578static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200579{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100580 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200581
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100582 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200583}
584
Willy Tarreau00f18a32019-01-26 12:19:01 +0100585/* returns the number of streams still available on a connection */
586static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100587{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100588 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100589}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200590
Christopher Faulet7a145d62020-08-05 11:31:16 +0200591/* Refresh the h1c task timeout if necessary */
592static void h1_refresh_timeout(struct h1c *h1c)
593{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200594 int is_idle_conn = 0;
595
Christopher Faulet7a145d62020-08-05 11:31:16 +0200596 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100597 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200598 /* half-closed or dead connections : switch to clientfin/serverfin
599 * timeouts so that we don't hang too long on clients that have
600 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200601 */
602 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200603 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 +0200604 is_idle_conn = 1;
Christopher Fauletadcd7892020-10-05 17:13:05 +0200605 }
606 else if (b_data(&h1c->obuf)) {
607 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200608 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200609 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
610 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100611 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
612 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200613 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100614 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 +0200615 /* A frontend connection not yet ready could be treated the same way as an idle
616 * one in case of soft-close.
617 */
618 is_idle_conn = 1;
Christopher Faulet7a145d62020-08-05 11:31:16 +0200619 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200620 else {
621 /* alive back connections of front connections with a conn-stream attached */
622 h1c->task->expire = TICK_ETERNITY;
623 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
624 }
625
Christopher Fauletdbe57792020-10-05 17:50:58 +0200626 /* Finally set the idle expiration date if shorter */
627 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200628
629 if ((h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
630 is_idle_conn && tick_isset(global.close_spread_end)) {
631 /* If a soft-stop is in progress and a close-spread-time
632 * is set, we want to spread idle connection closing roughly
633 * evenly across the defined window. This should only
634 * act on idle frontend connections.
635 * If the window end is already in the past, we wake the
636 * timeout task up immediately so that it can be closed.
637 */
638 int remaining_window = tick_remain(now_ms, global.close_spread_end);
639 if (remaining_window) {
640 /* We don't need to reset the expire if it would
641 * already happen before the close window end.
642 */
643 if (tick_is_le(global.close_spread_end, h1c->task->expire)) {
644 /* Set an expire value shorter than the current value
645 * because the close spread window end comes earlier.
646 */
647 h1c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
648 TRACE_DEVEL("connection timeout set to value before close-spread window end", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
649 }
650 }
651 else {
652 /* We are past the soft close window end, wake the timeout
653 * task up immediately.
654 */
655 task_wakeup(h1c->task, TASK_WOKEN_TIMER);
656 }
657 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200658 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
659 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200660 }
661}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200662
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200663static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200664{
665 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
666 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
667 h1c->idle_exp = TICK_ETERNITY;
668 return;
669 }
670
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100671 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200672 if (!tick_isset(h1c->idle_exp)) {
673 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
674 !b_data(&h1c->ibuf) && /* No input data */
675 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
676 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
677 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
678 }
679 else {
680 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
681 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
682 }
683 }
684 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100685 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200686 if (!tick_isset(h1c->idle_exp)) {
687 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
688 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
689 }
690 }
691 else { // CS_ATTACHED or SHUTDOWN
692 h1c->idle_exp = TICK_ETERNITY;
693 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
694 }
695}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200696/*****************************************************************/
697/* functions below are dedicated to the mux setup and management */
698/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200699
700/* returns non-zero if there are input data pending for stream h1s. */
701static inline size_t h1s_data_pending(const struct h1s *h1s)
702{
703 const struct h1m *h1m;
704
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200705 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100706 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200707}
708
Christopher Faulet16df1782020-12-04 16:47:41 +0100709/* Creates a new conn-stream and the associate stream. <input> is used as input
710 * buffer for the stream. On success, it is transferred to the stream and the
711 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
712 * mux must still take care of it. However, there is nothing special to do
713 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
714 * b_free() on it is always safe. This function returns the conn-stream on
715 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200716static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100717{
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100718 struct h1c *h1c = h1s->h1c;
Christopher Faulet47365272018-10-31 17:40:50 +0100719 struct conn_stream *cs;
720
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100721 TRACE_ENTER(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100722 cs = cs_new();
Christopher Faulet6b81df72019-10-01 22:08:43 +0200723 if (!cs) {
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100724 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 +0100725 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200726 }
Christopher Faulet93882042022-01-19 14:56:50 +0100727 cs_attach_endp_mux(cs, h1s, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100728 h1s->cs = cs;
Christopher Faulet47365272018-10-31 17:40:50 +0100729
730 if (h1s->flags & H1S_F_NOT_FIRST)
731 cs->flags |= CS_FL_NOT_FIRST;
732
Amaury Denoyelle90ac6052021-10-18 14:45:49 +0200733 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
734 cs->flags |= CS_FL_WEBSOCKET;
735
Christopher Faulet13a35e52021-12-20 15:34:16 +0100736 if (!stream_new(h1c->conn->owner, cs, input)) {
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100737 TRACE_DEVEL("leaving on stream creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet91449b02022-03-22 18:45:55 +0100738 goto err_cs;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200739 }
740
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100741 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
742 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100743
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100744 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
745 TRACE_LEAVE(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100746 return cs;
747
Christopher Faulet91449b02022-03-22 18:45:55 +0100748 err_cs:
Christopher Faulet47365272018-10-31 17:40:50 +0100749 cs_free(cs);
Christopher Faulet91449b02022-03-22 18:45:55 +0100750 err:
Christopher Faulet47365272018-10-31 17:40:50 +0100751 h1s->cs = NULL;
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100752 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100753 return NULL;
754}
755
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100756static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
757{
758 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
759
760 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100761 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 +0100762 goto err;
763 }
764
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100765 h1s->h1c->flags |= H1C_F_ST_READY;
766 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
767 return h1s->cs;
768
769 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100770 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100771 return NULL;
772}
773
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200774static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200775{
776 struct h1s *h1s;
777
Christopher Faulet6b81df72019-10-01 22:08:43 +0200778 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
779
Christopher Faulet51dbc942018-09-13 09:05:15 +0200780 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100781 if (!h1s) {
782 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 +0100783 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100784 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200785 h1s->h1c = h1c;
786 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200787 h1s->sess = NULL;
788 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100789 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100790 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200791 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100792 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200793
794 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100795 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200796
Christopher Faulet129817b2018-09-20 16:14:40 +0200797 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100798 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200799
800 h1s->status = 0;
801 h1s->meth = HTTP_METH_OTHER;
802
Christopher Faulet47365272018-10-31 17:40:50 +0100803 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
804 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100805 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100806
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200807 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
808 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200809
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200810 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100811 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200812 return NULL;
813}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100814
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200815static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
816{
817 struct session *sess = h1c->conn->owner;
818 struct h1s *h1s;
819
820 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
821
822 h1s = h1s_new(h1c);
823 if (!h1s)
824 goto fail;
825
826 h1s->sess = sess;
827
828 if (h1c->px->options2 & PR_O2_REQBUG_OK)
829 h1s->req.err_pos = -1;
830
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200831 h1c->idle_exp = TICK_ETERNITY;
832 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200833 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200834 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100835
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200836 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100837 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200838 return NULL;
839}
840
841static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
842{
843 struct h1s *h1s;
844
845 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
846
847 h1s = h1s_new(h1c);
848 if (!h1s)
849 goto fail;
850
Christopher Faulet93882042022-01-19 14:56:50 +0100851 cs_attach_endp_mux(cs, h1s, h1c->conn);
Christopher Faulet10a86702021-04-07 14:18:11 +0200852 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200853 h1s->cs = cs;
854 h1s->sess = sess;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200855
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100856 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200857
858 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
859 h1s->res.err_pos = -1;
860
Christopher Faulet60fa0512021-11-26 18:10:39 +0100861 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100862 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100863
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200864 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
865 return h1s;
866
867 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100868 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100869 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200870}
871
872static void h1s_destroy(struct h1s *h1s)
873{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200874 if (h1s) {
875 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200876
Christopher Faulet6b81df72019-10-01 22:08:43 +0200877 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200878 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200879
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100880 if (h1s->subs)
881 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200882
Christopher Fauletd17ad822020-09-24 15:14:29 +0200883 h1_release_buf(h1c, &h1s->rxbuf);
884
Christopher Faulet10a86702021-04-07 14:18:11 +0200885 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100886 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200887 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
888 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200889 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100890 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100891 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 +0200892 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100893
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100894 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100895 !(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 +0100896 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100897 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100898 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100899 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
900 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200901 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100902 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100903 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200904 }
Christopher Faulet60fa0512021-11-26 18:10:39 +0100905
906 HA_ATOMIC_DEC(&h1c->px_counters->open_streams);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200907 pool_free(pool_head_h1s, h1s);
908 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200909}
910
911/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200912 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500913 * to the existing conn_stream (for outgoing connections or for incoming ones
914 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200915 * establishment). <input> is always used as Input buffer and may contain
916 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
917 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200918 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200919static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
920 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200921{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200922 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100923 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200924 void *conn_ctx = conn->ctx;
925
926 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200927
928 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100929 if (!h1c) {
930 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200931 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100932 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200933 h1c->conn = conn;
934 h1c->px = proxy;
935
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100936 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200937 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200938 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200939 h1c->obuf = BUF_NULL;
940 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200941 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200942
Willy Tarreau90f366b2021-02-20 11:49:49 +0100943 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200944 h1c->wait_event.tasklet = tasklet_new();
945 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200946 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200947 h1c->wait_event.tasklet->process = h1_io_cb;
948 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100949 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200950 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200951
Christopher Faulete9b70722019-04-08 10:46:02 +0200952 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200953 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100954 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
955 if (tick_isset(proxy->timeout.serverfin))
956 h1c->shut_timeout = proxy->timeout.serverfin;
Christopher Faulet563c3452021-11-26 17:37:51 +0100957
958 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_be,
959 &h1_stats_module);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100960 } else {
961 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
962 if (tick_isset(proxy->timeout.clientfin))
963 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200964
Christopher Faulet563c3452021-11-26 17:37:51 +0100965 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_fe,
966 &h1_stats_module);
967
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200968 LIST_APPEND(&mux_stopping_data[tid].list,
969 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100970 }
971 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200972 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100973 if (!t) {
974 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 +0100975 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100976 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100977
978 h1c->task = t;
979 t->process = h1_timeout_task;
980 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200981
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100982 t->expire = tick_add(now_ms, h1c->timeout);
983 }
984
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100985 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200986
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200987 if (h1c->flags & H1C_F_IS_BACK) {
988 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200989 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
990 goto fail;
991 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100992 else if (conn_ctx) {
993 /* Upgraded frontend connection (from TCP) */
994 struct conn_stream *cs = conn_ctx;
995
996 if (!h1c_frt_stream_new(h1c))
997 goto fail;
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100998 h1c->h1s->cs = cs;
Christopher Faulet93882042022-01-19 14:56:50 +0100999 cs_attach_endp_mux(cs, h1c->h1s, conn);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001000
1001 /* Attach the CS but Not ready yet */
1002 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
1003 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
1004 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
1005 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001006
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001007 if (t) {
1008 h1_set_idle_expiration(h1c);
1009 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001010 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001011 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001012
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001013 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +01001014 if (b_data(&h1c->ibuf))
1015 tasklet_wakeup(h1c->wait_event.tasklet);
1016 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +02001017 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001018
Christopher Faulet60fa0512021-11-26 18:10:39 +01001019 HA_ATOMIC_INC(&h1c->px_counters->open_conns);
Christopher Faulet3bca28c2021-11-26 18:12:04 +01001020 HA_ATOMIC_INC(&h1c->px_counters->total_conns);
Christopher Faulet60fa0512021-11-26 18:10:39 +01001021
Christopher Faulet51dbc942018-09-13 09:05:15 +02001022 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001023 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001024 return 0;
1025
1026 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001027 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001028 if (h1c->wait_event.tasklet)
1029 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001030 pool_free(pool_head_h1c, h1c);
1031 fail_h1c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001032 if (!conn_is_back(conn))
1033 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001034 conn->ctx = conn_ctx; // restore saved context
1035 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001036 return -1;
1037}
1038
Christopher Faulet73c12072019-04-08 11:23:22 +02001039/* release function. This one should be called to free all resources allocated
1040 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +02001041 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001042static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001043{
Christopher Faulet61840e72019-04-15 09:33:32 +02001044 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001045
Christopher Faulet6b81df72019-10-01 22:08:43 +02001046 TRACE_POINT(H1_EV_H1C_END);
1047
Christopher Faulet51dbc942018-09-13 09:05:15 +02001048 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001049 /* The connection must be aattached to this mux to be released */
1050 if (h1c->conn && h1c->conn->ctx == h1c)
1051 conn = h1c->conn;
1052
Christopher Faulet6b81df72019-10-01 22:08:43 +02001053 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
1054
Christopher Faulet61840e72019-04-15 09:33:32 +02001055 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001056 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001057 /* Make sure we're no longer subscribed to anything */
1058 if (h1c->wait_event.events)
1059 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
1060 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001061 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001062 /* connection successfully upgraded to H2, this
1063 * mux was already released */
1064 return;
1065 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001066 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001067 sess_log(conn->owner); /* Log if the upgrade failed */
1068 }
1069
Olivier Houchard45c44372019-06-11 14:06:23 +02001070
Willy Tarreau2b718102021-04-21 07:32:39 +02001071 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001072 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001073
1074 h1_release_buf(h1c, &h1c->ibuf);
1075 h1_release_buf(h1c, &h1c->obuf);
1076
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001077 if (h1c->task) {
1078 h1c->task->context = NULL;
1079 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
1080 h1c->task = NULL;
1081 }
1082
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001083 if (h1c->wait_event.tasklet)
1084 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001085
Christopher Fauletf2824e62018-10-01 12:12:37 +02001086 h1s_destroy(h1c->h1s);
Christopher Faulete76b4f02021-10-27 15:42:13 +02001087 if (conn) {
1088 if (h1c->wait_event.events != 0)
1089 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
1090 &h1c->wait_event);
1091 h1_shutw_conn(conn);
1092 }
Christopher Faulet60fa0512021-11-26 18:10:39 +01001093
1094 HA_ATOMIC_DEC(&h1c->px_counters->open_conns);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001095 pool_free(pool_head_h1c, h1c);
1096 }
1097
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001098 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001099 if (!conn_is_back(conn))
1100 LIST_DEL_INIT(&conn->stopping_list);
1101
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001102 conn->mux = NULL;
1103 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001104 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001105
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001106 conn_stop_tracking(conn);
1107 conn_full_close(conn);
1108 if (conn->destroy_cb)
1109 conn->destroy_cb(conn);
1110 conn_free(conn);
1111 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001112}
1113
1114/******************************************************/
1115/* functions below are for the H1 protocol processing */
1116/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +02001117/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
1118 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +02001119 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001120static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001121{
Christopher Faulet570d1612018-11-26 11:13:57 +01001122 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001123
Christopher Faulet570d1612018-11-26 11:13:57 +01001124 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001125 (*(p + 5) > '1' ||
1126 (*(p + 5) == '1' && *(p + 7) >= '1')))
1127 h1m->flags |= H1_MF_VER_11;
1128}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001129
Christopher Faulet9768c262018-10-22 09:34:31 +02001130/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
1131 * greater or equal to 1.1
1132 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001133static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +02001134{
Christopher Faulet570d1612018-11-26 11:13:57 +01001135 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001136
Christopher Faulet570d1612018-11-26 11:13:57 +01001137 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001138 (*(p + 5) > '1' ||
1139 (*(p + 5) == '1' && *(p + 7) >= '1')))
1140 h1m->flags |= H1_MF_VER_11;
1141}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001142
Christopher Fauletf2824e62018-10-01 12:12:37 +02001143/* Deduce the connection mode of the client connection, depending on the
1144 * configuration and the H1 message flags. This function is called twice, the
1145 * first time when the request is parsed and the second time when the response
1146 * is parsed.
1147 */
1148static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1149{
1150 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001151
1152 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001153 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001154 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001155 h1s->status == 101) {
1156 /* Either we've established an explicit tunnel, or we're
1157 * switching the protocol. In both cases, we're very unlikely to
1158 * understand the next protocols. We have to switch to tunnel
1159 * mode, so that we transfer the request and responses then let
1160 * this protocol pass unmodified. When we later implement
1161 * specific parsers for such protocols, we'll want to check the
1162 * Upgrade header which contains information about that protocol
1163 * for responses with status 101 (eg: see RFC2817 about TLS).
1164 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001165 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001166 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 +01001167 }
1168 else if (h1s->flags & H1S_F_WANT_KAL) {
1169 /* By default the client is in KAL mode. CLOSE mode mean
1170 * it is imposed by the client itself. So only change
1171 * KAL mode here. */
1172 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1173 /* no length known or explicit close => close */
1174 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001175 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 +01001176 }
1177 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1178 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001179 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001180 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001181 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 +01001182 }
1183 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001184 }
1185 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001186 /* Input direction: first pass */
1187 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1188 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001189 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001190 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 +01001191 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001192 }
1193
1194 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001195 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001196 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001197 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);
1198 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001199}
1200
1201/* Deduce the connection mode of the client connection, depending on the
1202 * configuration and the H1 message flags. This function is called twice, the
1203 * first time when the request is parsed and the second time when the response
1204 * is parsed.
1205 */
1206static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1207{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001208 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001209 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001210 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001211
Christopher Fauletf2824e62018-10-01 12:12:37 +02001212 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001213 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001214 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001215 h1s->status == 101) {
1216 /* Either we've established an explicit tunnel, or we're
1217 * switching the protocol. In both cases, we're very unlikely to
1218 * understand the next protocols. We have to switch to tunnel
1219 * mode, so that we transfer the request and responses then let
1220 * this protocol pass unmodified. When we later implement
1221 * specific parsers for such protocols, we'll want to check the
1222 * Upgrade header which contains information about that protocol
1223 * for responses with status 101 (eg: see RFC2817 about TLS).
1224 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001225 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001226 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 +01001227 }
1228 else if (h1s->flags & H1S_F_WANT_KAL) {
1229 /* By default the server is in KAL mode. CLOSE mode mean
1230 * it is imposed by haproxy itself. So only change KAL
1231 * mode here. */
1232 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1233 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1234 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1235 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001236 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 +01001237 }
1238 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001239 }
Christopher Faulet70033782018-12-05 13:50:11 +01001240 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001241 /* Output direction: first pass */
1242 if (h1m->flags & H1_MF_CONN_CLO) {
1243 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001244 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001245 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 +01001246 }
1247 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1248 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1249 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1250 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1251 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1252 /* no explicit keep-alive option httpclose/server-close => close */
1253 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001254 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 +01001255 }
Christopher Faulet70033782018-12-05 13:50:11 +01001256 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001257
1258 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001259 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001260 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001261 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);
1262 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001263}
1264
Christopher Fauletb992af02019-03-28 15:42:24 +01001265static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001266{
1267 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001268
1269 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1270 * token is found
1271 */
1272 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001273 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001274
1275 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001276 if (!(h1m->flags & H1_MF_VER_11)) {
1277 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 +01001278 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001279 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001280 }
1281 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001282 if (h1m->flags & H1_MF_VER_11) {
1283 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001284 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001285 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001286 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001287}
1288
Christopher Fauletb992af02019-03-28 15:42:24 +01001289static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001290{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001291 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1292 * token is found
1293 */
1294 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001295 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001296
1297 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001298 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001299 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1300 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 +01001301 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001302 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001303 }
1304 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001305 if (h1m->flags & H1_MF_VER_11) {
1306 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001307 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001308 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001309 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001310}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001311
Christopher Fauletb992af02019-03-28 15:42:24 +01001312static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001313{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001314 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001315 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001316 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001317 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001318}
1319
Christopher Fauletb992af02019-03-28 15:42:24 +01001320static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1321{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001322 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001323 h1_set_cli_conn_mode(h1s, h1m);
1324 else
1325 h1_set_srv_conn_mode(h1s, h1m);
1326
1327 if (!(h1m->flags & H1_MF_RESP))
1328 h1_update_req_conn_value(h1s, h1m, conn_val);
1329 else
1330 h1_update_res_conn_value(h1s, h1m, conn_val);
1331}
Christopher Faulete44769b2018-11-29 23:01:45 +01001332
Christopher Faulet98fbe952019-07-22 16:18:24 +02001333/* Try to adjust the case of the message header name using the global map
1334 * <hdrs_map>.
1335 */
1336static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1337{
1338 struct ebpt_node *node;
1339 struct h1_hdr_entry *entry;
1340
1341 /* No entry in the map, do nothing */
1342 if (eb_is_empty(&hdrs_map.map))
1343 return;
1344
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001345 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001346 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1347 return;
1348
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001349 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001350 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1351 return;
1352
1353 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1354 if (!node)
1355 return;
1356 entry = container_of(node, struct h1_hdr_entry, node);
1357 name->ptr = entry->name.ptr;
1358 name->len = entry->name.len;
1359}
1360
Christopher Faulete44769b2018-11-29 23:01:45 +01001361/* Append the description of what is present in error snapshot <es> into <out>.
1362 * The description must be small enough to always fit in a buffer. The output
1363 * buffer may be the trash so the trash must not be used inside this function.
1364 */
1365static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1366{
1367 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001368 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1369 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1370 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1371 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1372 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1373 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001374}
1375/*
1376 * Capture a bad request or response and archive it in the proxy's structure.
1377 * By default it tries to report the error position as h1m->err_pos. However if
1378 * this one is not set, it will then report h1m->next, which is the last known
1379 * parsing point. The function is able to deal with wrapping buffers. It always
1380 * displays buffers as a contiguous area starting at buf->p. The direction is
1381 * determined thanks to the h1m's flags.
1382 */
1383static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1384 struct h1m *h1m, struct buffer *buf)
1385{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001386 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001387 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001388 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001389 union error_snapshot_ctx ctx;
1390
Christopher Fauletf835dea2021-12-21 14:35:17 +01001391 if ((h1c->flags & H1C_F_ST_ATTACHED) && cs_strm(h1s->cs)) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001392 if (sess == NULL)
Christopher Faulet693b23b2022-02-28 09:09:05 +01001393 sess = __cs_strm(h1s->cs)->sess;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001394 if (!(h1m->flags & H1_MF_RESP))
Christopher Faulet693b23b2022-02-28 09:09:05 +01001395 other_end = __cs_strm(h1s->cs)->be;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001396 else
1397 other_end = sess->fe;
1398 } else
1399 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001400
1401 /* http-specific part now */
1402 ctx.h1.state = h1m->state;
1403 ctx.h1.c_flags = h1c->flags;
1404 ctx.h1.s_flags = h1s->flags;
1405 ctx.h1.m_flags = h1m->flags;
1406 ctx.h1.m_clen = h1m->curr_len;
1407 ctx.h1.m_blen = h1m->body_len;
1408
1409 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1410 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001411 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1412 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001413}
1414
Christopher Fauletadb22202018-12-12 10:32:09 +01001415/* Emit the chunksize followed by a CRLF in front of data of the buffer
1416 * <buf>. It goes backwards and starts with the byte before the buffer's
1417 * head. The caller is responsible for ensuring there is enough room left before
1418 * the buffer's head for the string.
1419 */
1420static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1421{
1422 char *beg, *end;
1423
1424 beg = end = b_head(buf);
1425 *--beg = '\n';
1426 *--beg = '\r';
1427 do {
1428 *--beg = hextab[chksz & 0xF];
1429 } while (chksz >>= 4);
1430 buf->head -= (end - beg);
1431 b_add(buf, end - beg);
1432}
1433
1434/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1435 * ensuring there is enough room left in the buffer for the string. */
1436static void h1_emit_chunk_crlf(struct buffer *buf)
1437{
1438 *(b_peek(buf, b_data(buf))) = '\r';
1439 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1440 b_add(buf, 2);
1441}
1442
Christopher Faulet129817b2018-09-20 16:14:40 +02001443/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001444 * Switch the stream to tunnel mode. This function must only be called on 2xx
1445 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001446 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001447static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001448{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001449 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001450
Christopher Faulet5be651d2021-01-22 15:28:03 +01001451 h1s->req.state = H1_MSG_TUNNEL;
1452 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001453
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001454 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001455 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001456
Christopher Faulet5be651d2021-01-22 15:28:03 +01001457 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 +01001458
Christopher Faulet10a86702021-04-07 14:18:11 +02001459 if (h1s->flags & H1S_F_RX_BLK) {
1460 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001461 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001462 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 +02001463 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001464 if (h1s->flags & H1S_F_TX_BLK) {
1465 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001466 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001467 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 +01001468 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001469}
1470
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001471/* Search for a websocket key header. The message should have been identified
1472 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001473 *
1474 * On the request side, if found the key is stored in the session. It might be
1475 * needed to calculate response key if the server side is using http/2.
1476 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001477 * On the response side, the key might be verified if haproxy has been
1478 * responsible for the generation of a key. This happens when a h2 client is
1479 * interfaced with a h1 server.
1480 *
1481 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001482 */
1483static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1484{
1485 struct htx_blk *blk;
1486 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001487 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001488 int ws_key_found = 0, idx;
1489
1490 idx = htx_get_head(htx); // returns the SL that we skip
1491 while ((idx = htx_get_next(htx, idx)) != -1) {
1492 blk = htx_get_blk(htx, idx);
1493 type = htx_get_blk_type(blk);
1494
1495 if (type == HTX_BLK_UNUSED)
1496 continue;
1497
1498 if (type != HTX_BLK_HDR)
1499 break;
1500
1501 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001502 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001503
Amaury Denoyellec1938232020-12-11 17:53:03 +01001504 /* Websocket key is base64 encoded of 16 bytes */
1505 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001506 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001507 /* Copy the key on request side
1508 * we might need it if the server is using h2 and does
1509 * not provide the response
1510 */
1511 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001512 ws_key_found = 1;
1513 break;
1514 }
1515 else if (isteqi(n, ist("sec-websocket-accept")) &&
1516 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001517 /* Need to verify the response key if the input was
1518 * generated by haproxy
1519 */
1520 if (h1s->ws_key[0]) {
1521 char key[29];
1522 h1_calculate_ws_output_key(h1s->ws_key, key);
1523 if (!isteqi(ist(key), v))
1524 break;
1525 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001526 ws_key_found = 1;
1527 break;
1528 }
1529 }
1530
1531 /* missing websocket key, reject the message */
1532 if (!ws_key_found) {
1533 htx->flags |= HTX_FL_PARSING_ERROR;
1534 return 0;
1535 }
1536
1537 return 1;
1538}
1539
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001540/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001541 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001542 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001543 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1544 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001545 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001546static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1547 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001548{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001549 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001550 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001551
Willy Tarreau022e5e52020-09-10 09:33:15 +02001552 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 +02001553
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001554 if (h1s->meth == HTTP_METH_CONNECT)
1555 h1m->flags |= H1_MF_METH_CONNECT;
1556 if (h1s->meth == HTTP_METH_HEAD)
1557 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001558
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001559 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001560 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001561 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 +02001562 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001563 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001564 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 +02001565 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1566 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001567 else if (ret == -2) {
1568 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);
1569 h1s->flags |= H1S_F_RX_CONGESTED;
1570 }
1571 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001572 goto end;
1573 }
1574
Christopher Faulete136bd12021-09-21 18:44:55 +02001575
1576 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1577 * payload if the c-l is not null or the the payload is chunk-encoded.
1578 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1579 * instead of a 400-Bad-Request.
1580 */
1581 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1582 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1583 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1584 h1s->flags |= H1S_F_PARSING_ERROR;
1585 htx->flags |= HTX_FL_PARSING_ERROR;
1586 h1s->h1c->errcode = 413;
1587 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);
1588 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1589 ret = 0;
1590 goto end;
1591 }
1592
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001593 /* Reject any message with an unknown transfer-encoding. In fact if any
1594 * encoding other than "chunked". A 422-Unprocessable-Content is
1595 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1596 * response.
1597 */
1598 if (h1m->flags & H1_MF_TE_OTHER) {
1599 h1s->flags |= H1S_F_PARSING_ERROR;
1600 htx->flags |= HTX_FL_PARSING_ERROR;
1601 if (!(h1m->flags & H1_MF_RESP))
1602 h1s->h1c->errcode = 422;
1603 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1604 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1605 ret = 0;
1606 goto end;
1607 }
1608
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001609 /* If websocket handshake, search for the websocket key */
1610 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1611 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1612 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1613 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001614 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001615 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 +01001616 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1617
1618 ret = 0;
1619 goto end;
1620 }
1621 }
1622
Christopher Faulet486498c2019-10-11 14:22:00 +02001623 if (h1m->err_pos >= 0) {
1624 /* Maybe we found an error during the parsing while we were
1625 * configured not to block on that, so we have to capture it
1626 * now.
1627 */
1628 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1629 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1630 }
1631
Christopher Faulet5696f542020-12-02 16:08:38 +01001632 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001633 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001634 if (h1s->meth == HTTP_METH_HEAD)
1635 h1s->flags |= H1S_F_BODYLESS_RESP;
1636 }
1637 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001638 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001639 if (h1s->status == 204 || h1s->status == 304)
1640 h1s->flags |= H1S_F_BODYLESS_RESP;
1641 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001642 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001643 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001644
Christopher Faulet129817b2018-09-20 16:14:40 +02001645 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001646 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 +02001647 return ret;
1648}
1649
1650/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001651 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001652 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1653 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001654 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001655static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1656 struct buffer *buf, size_t *ofs, size_t max,
1657 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001658{
Christopher Fauletde471a42021-02-01 16:37:28 +01001659 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001660
Willy Tarreau022e5e52020-09-10 09:33:15 +02001661 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 +02001662 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001663 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001664 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 +01001665 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001666 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001667 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 +02001668 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001669 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001670 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001671 }
1672
Christopher Faulet02a02532019-11-15 09:36:28 +01001673 *ofs += ret;
1674
1675 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001676 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1677 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);
1678 h1s->flags |= H1S_F_RX_CONGESTED;
1679 }
1680
Willy Tarreau022e5e52020-09-10 09:33:15 +02001681 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 +02001682 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001683}
1684
1685/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001686 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1687 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1688 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001689 * responsible to update the parser state <h1m>. If more room is requested,
1690 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001691 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001692static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1693 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001694{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001695 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001696
Willy Tarreau022e5e52020-09-10 09:33:15 +02001697 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 +02001698 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001699 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001700 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 +02001701 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001702 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001703 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 +02001704 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1705 }
Christopher Faulet744451c2022-03-28 16:19:02 +02001706 else if (ret == -2 || b_data(buf) != *ofs) {
Christopher Faulet46e058d2021-09-20 07:47:27 +02001707 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);
1708 h1s->flags |= H1S_F_RX_CONGESTED;
1709 }
1710 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001711 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001712 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001713
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001714 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001715
1716 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001717 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 +02001718 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001719}
1720
1721/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001722 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001723 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1724 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001725 *
1726 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001727 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001728static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001729{
Christopher Faulet539e0292018-11-19 10:40:09 +01001730 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001731 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001732 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001733 size_t data;
1734 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001735 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001736
Christopher Faulet539e0292018-11-19 10:40:09 +01001737 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001738 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001739
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001740 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001741 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001742
Christopher Faulet2eed8002020-12-07 11:26:13 +01001743 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001744 goto end;
1745
Christopher Faulet10a86702021-04-07 14:18:11 +02001746 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001747 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001748
Christopher Faulet46e058d2021-09-20 07:47:27 +02001749 /* Always remove congestion flags and try to process more input data */
1750 h1s->flags &= ~H1S_F_RX_CONGESTED;
1751
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001752 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001753 size_t used = htx_used_space(htx);
1754
Christopher Faulet129817b2018-09-20 16:14:40 +02001755 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001756 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001757 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001758 if (!ret)
1759 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001760
1761 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1762 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1763
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001764 if ((h1m->flags & H1_MF_RESP) &&
1765 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1766 h1m_init_res(&h1s->res);
1767 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001768 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001769 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001770 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001771 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001772 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001773 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001774 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001775 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001776
1777 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1778 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001779 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001780 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001781 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001782 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001783 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001784 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001785
Christopher Faulet76014fd2019-12-10 11:47:22 +01001786 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1787 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001788 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001789 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001790 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1791 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001792
Christopher Faulet5be651d2021-01-22 15:28:03 +01001793 if ((h1m->flags & H1_MF_RESP) &&
1794 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1795 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001796 else {
1797 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1798 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001799 h1s->flags |= H1S_F_RX_BLK;
1800 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001801 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001802 if (h1s->flags & H1S_F_TX_BLK) {
1803 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001804 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001805 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 +01001806 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001807 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001808 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001809 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001810 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001811 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001812 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001813 if (!ret)
1814 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001815
1816 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1817 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001818 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001819 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001820 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001821 break;
1822 }
1823
Christopher Faulet30db3d72019-05-17 15:35:33 +02001824 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001825 } 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 +01001826
Christopher Faulet129817b2018-09-20 16:14:40 +02001827
Christopher Faulet2eed8002020-12-07 11:26:13 +01001828 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001829 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 +02001830 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001831 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001832
Christopher Faulet539e0292018-11-19 10:40:09 +01001833 b_del(&h1c->ibuf, total);
1834
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001835 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001836 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1837
Christopher Faulet30db3d72019-05-17 15:35:33 +02001838 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001839 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001840 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001841 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 +01001842 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001843 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001844
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001845 if (!b_data(&h1c->ibuf))
1846 h1_release_buf(h1c, &h1c->ibuf);
1847
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001848 if (!(h1c->flags & H1C_F_ST_READY)) {
1849 /* The H1 connection is not ready. Most of time, there is no CS
1850 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1851 * cases, it is only possible on the client side.
1852 */
1853 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1854
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001855 if (h1m->state <= H1_MSG_LAST_LF) {
1856 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1857 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1858 goto end;
1859 }
1860
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001861 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1862 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1863 BUG_ON(h1s->cs);
1864 if (!h1s_new_cs(h1s, buf)) {
1865 h1c->flags |= H1C_F_ST_ERROR;
1866 goto err;
1867 }
1868 }
1869 else {
1870 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1871 BUG_ON(h1s->cs == NULL);
1872 if (!h1s_upgrade_cs(h1s, buf)) {
1873 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001874 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001875 goto err;
1876 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001877 }
1878 }
1879
1880 /* Here h1s->cs is always defined */
Christopher Fauletf5ce3202021-11-26 17:26:19 +01001881 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001882 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1883 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1884 }
1885 else {
1886 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1887 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1888 }
1889
Christopher Fauleta22782b2021-02-08 17:18:01 +01001890 /* Set EOI on conn-stream in DONE state iff:
1891 * - it is a response
1892 * - it is a request but no a protocol upgrade nor a CONNECT
1893 *
1894 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001895 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001896 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001897 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1898 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001899 h1s->cs->flags |= CS_FL_EOI;
1900
Christopher Fauletec4207c2021-04-08 18:34:30 +02001901 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001902 /* When Input data are pending for this message, notify upper layer that
1903 * the mux need more space in the HTX buffer to continue if :
1904 *
1905 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1906 * - Headers or trailers are pending to be copied.
1907 */
1908 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001909 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001910 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1911 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001912 else {
1913 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1914 if (h1s->flags & H1S_F_REOS) {
1915 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001916 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1917 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1918 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001919 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001920 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001921 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001922 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001923 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1924 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001925
Christopher Faulet10a86702021-04-07 14:18:11 +02001926 if (h1s->flags & H1S_F_TX_BLK) {
1927 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001928 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001929 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 +01001930 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001931 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001932 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001933
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001934 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001935 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001936 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001937
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001938 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001939 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001940 if (h1s->cs)
1941 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001942 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001943 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001944}
1945
Christopher Faulet129817b2018-09-20 16:14:40 +02001946/*
1947 * Process outgoing data. It parses data and transfer them from the channel buffer into
1948 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1949 * 0 if it couldn't proceed.
1950 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001951static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001952{
Christopher Faulet129817b2018-09-20 16:14:40 +02001953 struct h1s *h1s = h1c->h1s;
1954 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001955 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001956 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001957 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001958 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001959 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001960 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001961
Christopher Faulet94b2c762019-05-24 15:28:57 +02001962 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001963 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1964
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001965 if (htx_is_empty(chn_htx))
1966 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001967
Christopher Faulet10a86702021-04-07 14:18:11 +02001968 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001969 goto end;
1970
Christopher Faulet51dbc942018-09-13 09:05:15 +02001971 if (!h1_get_buf(h1c, &h1c->obuf)) {
1972 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001973 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 +02001974 goto end;
1975 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001976
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001977 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001978
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001979 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001980 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001981
Willy Tarreau3815b222018-12-11 19:50:43 +01001982 /* Perform some optimizations to reduce the number of buffer copies.
1983 * First, if the mux's buffer is empty and the htx area contains
1984 * exactly one data block of the same size as the requested count,
1985 * then it's possible to simply swap the caller's buffer with the
1986 * mux's output buffer and adjust offsets and length to match the
1987 * entire DATA HTX block in the middle. In this case we perform a
1988 * true zero-copy operation from end-to-end. This is the situation
1989 * that happens all the time with large files. Second, if this is not
1990 * possible, but the mux's output buffer is empty, we still have an
1991 * opportunity to avoid the copy to the intermediary buffer, by making
1992 * the intermediary buffer's area point to the output buffer's area.
1993 * In this case we want to skip the HTX header to make sure that copies
1994 * remain aligned and that this operation remains possible all the
1995 * time. This goes for headers, data blocks and any data extracted from
1996 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001997 */
1998 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001999 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002000 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01002001 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01002002 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01002003 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01002004 void *old_area;
2005
Christopher Faulet6b81df72019-10-01 22:08:43 +02002006 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 +01002007 if (h1m->state == H1_MSG_DATA) {
2008 if (h1m->flags & H1_MF_CLEN) {
2009 if (count > h1m->curr_len) {
2010 TRACE_ERROR("too much payload, more than announced",
2011 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2012 goto error;
2013 }
2014 h1m->curr_len -= count;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002015 if (!h1m->curr_len)
2016 last_data = 1;
Christopher Faulet140f1a52021-11-26 16:37:55 +01002017 }
2018 if (chn_htx->flags & HTX_FL_EOM) {
2019 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2020 last_data = 1;
2021 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002022 }
2023
Christopher Faulete5596bf2020-12-02 16:13:22 +01002024 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01002025 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02002026 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01002027 h1c->obuf.data = count;
2028
2029 buf->area = old_area;
2030 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01002031
Christopher Faulet6b81df72019-10-01 22:08:43 +02002032 chn_htx = (struct htx *)buf->area;
2033 htx_reset(chn_htx);
2034
Christopher Fauletadb22202018-12-12 10:32:09 +01002035 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002036 * size and eventually the last chunk. We have at least
2037 * the size of the struct htx to write the chunk
2038 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01002039 */
2040 if (h1m->flags & H1_MF_CHNK) {
2041 h1_emit_chunk_size(&h1c->obuf, count);
2042 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002043 if (last_data) {
2044 /* Emit the last chunk too at the buffer's end */
2045 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
2046 }
Christopher Fauletadb22202018-12-12 10:32:09 +01002047 }
2048
Christopher Faulet6b81df72019-10-01 22:08:43 +02002049 if (h1m->state == H1_MSG_DATA)
2050 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002051 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002052 else
2053 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002054 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002055
Christopher Faulete5596bf2020-12-02 16:13:22 +01002056 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002057 if (last_data) {
2058 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02002059 if (h1s->flags & H1S_F_RX_BLK) {
2060 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002061 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002062 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 +01002063 }
2064
2065 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2066 H1_EV_TX_DATA, h1c->conn, h1s);
2067 }
Willy Tarreau3815b222018-12-11 19:50:43 +01002068 goto out;
2069 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002070 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002071 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002072 else
2073 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02002074
Christopher Fauletc2518a52019-06-25 21:41:02 +02002075 tmp.data = 0;
2076 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02002077 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01002078 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02002079 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01002080 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02002081 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02002082 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02002083
Christopher Fauletb2e84162018-12-06 11:39:49 +01002084 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002085 if (type != HTX_BLK_DATA && vlen > count)
2086 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002087
Christopher Faulet94b2c762019-05-24 15:28:57 +02002088 if (type == HTX_BLK_UNUSED)
2089 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02002090
Christopher Faulet94b2c762019-05-24 15:28:57 +02002091 switch (h1m->state) {
2092 case H1_MSG_RQBEFORE:
2093 if (type != HTX_BLK_REQ_SL)
2094 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002095 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 +02002096 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002097 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02002098 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002099 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002100 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002101 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002102 if (sl->flags & HTX_SL_F_BODYLESS)
2103 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02002104 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01002105 if (h1s->meth == HTTP_METH_HEAD)
2106 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02002107 if (h1s->flags & H1S_F_RX_BLK) {
2108 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002109 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002110 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 +02002111 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002112 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02002113
Christopher Faulet94b2c762019-05-24 15:28:57 +02002114 case H1_MSG_RPBEFORE:
2115 if (type != HTX_BLK_RES_SL)
2116 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002117 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 +02002118 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002119 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02002120 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002121 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002122 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01002123 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02002124 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01002125 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02002126 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01002127 else if (h1s->status == 204 || h1s->status == 304)
2128 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02002129 h1m->state = H1_MSG_HDR_FIRST;
2130 break;
2131
Christopher Faulet94b2c762019-05-24 15:28:57 +02002132 case H1_MSG_HDR_FIRST:
2133 case H1_MSG_HDR_NAME:
2134 case H1_MSG_HDR_L2_LWS:
2135 if (type == HTX_BLK_EOH)
2136 goto last_lf;
2137 if (type != HTX_BLK_HDR)
2138 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002139
Christopher Faulet9768c262018-10-22 09:34:31 +02002140 h1m->state = H1_MSG_HDR_NAME;
2141 n = htx_get_blk_name(chn_htx, blk);
2142 v = htx_get_blk_value(chn_htx, blk);
2143
Christopher Faulet86d144c2019-08-14 16:32:25 +02002144 /* Skip all pseudo-headers */
2145 if (*(n.ptr) == ':')
2146 goto skip_hdr;
2147
Christopher Faulet91fcf212020-12-02 16:17:15 +01002148 if (isteq(n, ist("transfer-encoding"))) {
2149 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2150 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02002151 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01002152 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002153 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01002154 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2155 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01002156 /* Only skip C-L header with invalid value. */
2157 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01002158 goto skip_hdr;
2159 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002160 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01002161 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02002162 if (!v.len)
2163 goto skip_hdr;
2164 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01002165 else if (isteq(n, ist("upgrade"))) {
2166 h1_parse_upgrade_header(h1m, v);
2167 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002168 else if ((isteq(n, ist("sec-websocket-accept")) &&
2169 h1m->flags & H1_MF_RESP) ||
2170 (isteq(n, ist("sec-websocket-key")) &&
2171 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002172 ws_key_found = 1;
2173 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02002174 else if (isteq(n, ist("te"))) {
2175 /* "te" may only be sent with "trailers" if this value
2176 * is present, otherwise it must be deleted.
2177 */
2178 v = istist(v, ist("trailers"));
2179 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2180 goto skip_hdr;
2181 v = ist("trailers");
2182 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002183
Christopher Faulet67d58092019-10-02 10:51:38 +02002184 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002185 if (!(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name) &&
2186 isteqi(n, h1c->px->server_id_hdr_name))
Christopher Faulet67d58092019-10-02 10:51:38 +02002187 goto skip_hdr;
2188
Christopher Faulet98fbe952019-07-22 16:18:24 +02002189 /* Try to adjust the case of the header name */
2190 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2191 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002192 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002193 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002194 skip_hdr:
2195 h1m->state = H1_MSG_HDR_L2_LWS;
2196 break;
2197
Christopher Faulet94b2c762019-05-24 15:28:57 +02002198 case H1_MSG_LAST_LF:
2199 if (type != HTX_BLK_EOH)
2200 goto error;
2201 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002202 h1m->state = H1_MSG_LAST_LF;
2203 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002204 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002205 /* If the reply comes from haproxy while the request is
2206 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002207 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2208 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2209 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002210 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2211 /* T-E + C-L: force close */
2212 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2213 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2214 }
2215 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2216 /* T-E + HTTP/1.0: force close */
2217 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2218 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2219 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002220
2221 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002222 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002223 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002224 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002225 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002226 /* Try to adjust the case of the header name */
2227 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2228 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002229 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002230 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002231 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002232 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002233 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002234
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002235 if ((h1s->meth != HTTP_METH_CONNECT &&
2236 (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 +01002237 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002238 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002239 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002240 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2241 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002242 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002243 n = ist("transfer-encoding");
2244 v = ist("chunked");
2245 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2246 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002247 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002248 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002249 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002250 h1m->flags |= H1_MF_CHNK;
2251 }
2252
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002253 /* Now add the server name to a header (if requested) */
2254 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002255 !(h1m->flags & H1_MF_RESP) && isttest(h1c->px->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002256 struct server *srv = objt_server(h1c->conn->target);
2257
2258 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01002259 n = h1c->px->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002260 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002261
2262 /* Try to adjust the case of the header name */
2263 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2264 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002265 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002266 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002267 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002268 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002269 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2270 }
2271
Amaury Denoyellec1938232020-12-11 17:53:03 +01002272 /* Add websocket handshake key if needed */
2273 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2274 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002275 if (!(h1m->flags & H1_MF_RESP)) {
2276 /* generate a random websocket key
2277 * stored in the session to
2278 * verify it on the response side
2279 */
2280 h1_generate_random_ws_input_key(h1s->ws_key);
2281
2282 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2283 ist(h1s->ws_key),
2284 &tmp)) {
2285 goto full;
2286 }
2287 }
2288 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002289 /* add the response header key */
2290 char key[29];
2291 h1_calculate_ws_output_key(h1s->ws_key, key);
2292 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2293 ist(key),
2294 &tmp)) {
2295 goto full;
2296 }
2297 }
2298 }
2299
Christopher Faulet6b81df72019-10-01 22:08:43 +02002300 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2301 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2302
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002303 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002304 if (!chunk_memcat(&tmp, "\r\n", 2))
2305 goto full;
2306 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002307 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002308 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002309 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002310 if (!chunk_memcat(&tmp, "\r\n", 2))
2311 goto full;
2312 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002313 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002314 else if ((h1m->flags & H1_MF_RESP) &&
2315 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002316 if (!chunk_memcat(&tmp, "\r\n", 2))
2317 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002318 h1m_init_res(&h1s->res);
2319 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002320 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002321 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002322 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002323 else {
Christopher Faulet2eb52432022-04-07 10:29:38 +02002324 /* EOM flag is set or empty payload (C-L to 0) and it is the last block */
2325 if (htx_is_unique_blk(chn_htx, blk) &&
2326 ((chn_htx->flags & HTX_FL_EOM) || ((h1m->flags & H1_MF_CLEN) && !h1m->curr_len))) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002327 if (h1m->flags & H1_MF_CHNK) {
2328 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2329 goto full;
2330 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002331 else if (!chunk_memcat(&tmp, "\r\n", 2))
2332 goto full;
2333 goto done;
2334 }
2335 else if (!chunk_memcat(&tmp, "\r\n", 2))
2336 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002337 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002338 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002339 break;
2340
Christopher Faulet94b2c762019-05-24 15:28:57 +02002341 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002342 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002343 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002344 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2345 goto trailers;
2346
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002347 /* If the message is not chunked, never
2348 * add the last chunk. */
2349 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002350 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002351 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 +02002352 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002353 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002354 else if (type != HTX_BLK_DATA)
2355 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002356
2357 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 +02002358
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002359 /* It is the last block of this message. After this one,
2360 * only tunneled data may be forwarded. */
2361 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2362 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2363 last_data = 1;
2364 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002365
2366 if (vlen > count) {
2367 /* Get the maximum amount of data we can xferred */
2368 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002369 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002370 }
2371
Christopher Faulet140f1a52021-11-26 16:37:55 +01002372 if (h1m->state == H1_MSG_DATA) {
2373 if (h1m->flags & H1_MF_CLEN) {
2374 if (vlen > h1m->curr_len) {
2375 TRACE_ERROR("too much payload, more than announced",
2376 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2377 goto error;
2378 }
Christopher Faulet140f1a52021-11-26 16:37:55 +01002379 }
2380 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2381 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2382 goto skip_data;
2383 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002384 }
2385
Christopher Fauletd9233f02019-10-14 14:01:24 +02002386 chklen = 0;
2387 if (h1m->flags & H1_MF_CHNK) {
2388 chklen = b_room(&tmp);
2389 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2390 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2391 (chklen < 1048576) ? 5 : 8);
2392 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002393
2394 /* If it is the end of the chunked message (without EOT), reserve the
2395 * last chunk size */
2396 if (last_data)
2397 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002398 }
2399
2400 if (vlen + chklen > b_room(&tmp)) {
2401 /* too large for the buffer */
2402 if (chklen >= b_room(&tmp))
2403 goto full;
2404 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002405 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002406 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002407 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002408 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002409 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002410 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002411
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002412 /* Space already reserved, so it must succeed */
2413 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2414 goto error;
2415
Christopher Faulet6b81df72019-10-01 22:08:43 +02002416 if (h1m->state == H1_MSG_DATA)
2417 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002418 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002419 else
2420 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002421 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002422
2423 skip_data:
Christopher Faulet2eb52432022-04-07 10:29:38 +02002424 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Fauletb4eca0e2022-01-10 17:27:51 +01002425 h1m->curr_len -= vlen;
Christopher Faulet2eb52432022-04-07 10:29:38 +02002426 if (!h1m->curr_len)
2427 last_data = 1;
2428 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002429 if (last_data)
2430 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002431 break;
2432
Christopher Faulet94b2c762019-05-24 15:28:57 +02002433 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002434 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002435 goto error;
2436 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002437 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002438
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002439 /* If the message is not chunked, ignore
2440 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002441 if (!(h1m->flags & H1_MF_CHNK)) {
2442 if (type == HTX_BLK_EOT)
2443 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002444 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002445 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002446
Christopher Faulete5596bf2020-12-02 16:13:22 +01002447 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2448 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 +01002449 if (type == HTX_BLK_EOT)
2450 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002451 break;
2452 }
2453
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002454 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002455 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002456 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002457 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2458 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002459 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002460 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002461 else { // HTX_BLK_TLR
2462 n = htx_get_blk_name(chn_htx, blk);
2463 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002464
2465 /* Try to adjust the case of the header name */
2466 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2467 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002468 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002469 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002470 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002471 break;
2472
Christopher Faulet94b2c762019-05-24 15:28:57 +02002473 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002474 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2475 goto error; /* For now return an error */
2476
Christopher Faulet94b2c762019-05-24 15:28:57 +02002477 done:
Christopher Faulet2eb52432022-04-07 10:29:38 +02002478 if (!(chn_htx->flags & HTX_FL_EOM) && (!(h1m->flags & H1_MF_CLEN) || h1m->curr_len)) {
Christopher Faulet36893672021-02-10 09:52:07 +01002479 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2480 goto error; /* For now return an error */
2481 }
2482
Christopher Faulet94b2c762019-05-24 15:28:57 +02002483 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002484 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002485 h1s->flags |= H1S_F_TX_BLK;
2486 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002487 }
2488 else if ((h1m->flags & H1_MF_RESP) &&
2489 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2490 /* a successful reply to a CONNECT or a protocol switching is sent
2491 * to the client. Switch the response to tunnel mode.
2492 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002493 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002494 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 +01002495 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002496
Christopher Faulet10a86702021-04-07 14:18:11 +02002497 if (h1s->flags & H1S_F_RX_BLK) {
2498 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002499 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002500 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 +02002501 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002502
2503 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2504 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002505 break;
2506
Christopher Faulet9768c262018-10-22 09:34:31 +02002507 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002508 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002509 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002510 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002511 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002512 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002513 TRACE_ERROR("processing output error, set error on h1c/h1s",
2514 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 +01002515 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002516 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002517
2518 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002519 total += vlen;
2520 count -= vlen;
2521 if (sz == vlen)
2522 blk = htx_remove_blk(chn_htx, blk);
2523 else {
2524 htx_cut_data_blk(chn_htx, blk, vlen);
2525 break;
2526 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002527 }
2528
Christopher Faulet9768c262018-10-22 09:34:31 +02002529 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002530 /* when the output buffer is empty, tmp shares the same area so that we
2531 * only have to update pointers and lengths.
2532 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002533 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2534 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002535 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002536 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002537
Willy Tarreau3815b222018-12-11 19:50:43 +01002538 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002539 out:
2540 if (!buf_room_for_htx_data(&h1c->obuf)) {
2541 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002542 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002543 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002544 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002545 /* Both the request and the response reached the DONE state. So set EOI
2546 * flag on the conn-stream. Most of time, the flag will already be set,
2547 * except for protocol upgrades. Report an error if data remains blocked
2548 * in the output buffer.
2549 */
2550 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2551 if (!htx_is_empty(chn_htx)) {
2552 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002553 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 +01002554 }
2555 h1s->cs->flags |= CS_FL_EOI;
2556 }
2557
Christopher Faulet6b81df72019-10-01 22:08:43 +02002558 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002559 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002560
2561 full:
2562 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2563 h1c->flags |= H1C_F_OUT_FULL;
2564 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002565}
2566
Christopher Faulet51dbc942018-09-13 09:05:15 +02002567/*********************************************************/
2568/* functions below are I/O callbacks from the connection */
2569/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002570static void h1_wake_stream_for_recv(struct h1s *h1s)
2571{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002572 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002573 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002574 tasklet_wakeup(h1s->subs->tasklet);
2575 h1s->subs->events &= ~SUB_RETRY_RECV;
2576 if (!h1s->subs->events)
2577 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002578 }
2579}
2580static void h1_wake_stream_for_send(struct h1s *h1s)
2581{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002582 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002583 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002584 tasklet_wakeup(h1s->subs->tasklet);
2585 h1s->subs->events &= ~SUB_RETRY_SEND;
2586 if (!h1s->subs->events)
2587 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002588 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002589}
2590
Christopher Fauletad4daf62021-01-21 17:49:01 +01002591/* alerts the data layer following this sequence :
2592 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2593 * - if its subscribed to send, then it's woken up for send
2594 * - if it was subscribed to neither, its ->wake() callback is called
2595 */
2596static void h1_alert(struct h1s *h1s)
2597{
2598 if (h1s->subs) {
2599 h1_wake_stream_for_recv(h1s);
2600 h1_wake_stream_for_send(h1s);
2601 }
2602 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2603 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2604 h1s->cs->data_cb->wake(h1s->cs);
2605 }
2606}
2607
Christopher Fauletc18fc232020-10-06 17:41:36 +02002608/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2609 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2610 * retryable errors (allocation error or buffer full). On success, the error is
2611 * copied in the output buffer.
2612*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002613static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002614{
2615 int rc = http_get_status_idx(h1c->errcode);
2616 int ret = 0;
2617
2618 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2619
2620 /* Verify if the error is mapped on /dev/null or any empty file */
2621 /// XXX: do a function !
2622 if (h1c->px->replies[rc] &&
2623 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2624 h1c->px->replies[rc]->body.errmsg &&
2625 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2626 /* Empty error, so claim a success */
2627 ret = 1;
2628 goto out;
2629 }
2630
2631 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2632 h1c->flags |= H1C_F_ERR_PENDING;
2633 goto out;
2634 }
2635
2636 if (!h1_get_buf(h1c, &h1c->obuf)) {
2637 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2638 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2639 goto out;
2640 }
Tim Duesterhus77508502022-03-15 13:11:06 +01002641 ret = b_istput(&h1c->obuf, ist(http_err_msgs[rc]));
Christopher Fauletc18fc232020-10-06 17:41:36 +02002642 if (unlikely(ret <= 0)) {
2643 if (!ret) {
2644 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2645 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2646 goto out;
2647 }
2648 else {
2649 /* we cannot report this error, so claim a success */
2650 ret = 1;
2651 }
2652 }
2653 h1c->flags &= ~H1C_F_ERR_PENDING;
2654 out:
2655 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2656 return ret;
2657}
2658
2659/* Try to send a 500 internal error. It relies on h1_send_error to send the
2660 * error. This function takes care of incrementing stats and tracked counters.
2661 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002662static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002663{
2664 struct session *sess = h1c->conn->owner;
2665 int ret = 1;
2666
2667 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002668 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002669 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2670 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002671 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002672 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002673
2674 h1c->errcode = 500;
2675 ret = h1_send_error(h1c);
2676 sess_log(sess);
2677 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002678}
2679
Christopher Fauletb3230f72021-09-21 18:38:20 +02002680/* Try to send an error because of a parsing error. By default a 400 bad request
2681 * error is returned. But the status code may be specified by setting
2682 * h1c->errcode. It relies on h1_send_error to send the error. This function
2683 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002684 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002685static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002686{
2687 struct session *sess = h1c->conn->owner;
2688 int ret = 1;
2689
2690 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2691 goto end;
2692
2693 session_inc_http_req_ctr(sess);
2694 session_inc_http_err_ctr(sess);
2695 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002696 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2697 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002698 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002699 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002700
Christopher Fauletb3230f72021-09-21 18:38:20 +02002701 if (!h1c->errcode)
2702 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002703 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002704 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2705 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002706
2707 end:
2708 return ret;
2709}
2710
Christopher Faulet2eed8002020-12-07 11:26:13 +01002711/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2712 * the error. This function takes care of incrementing stats and tracked
2713 * counters.
2714 */
2715static int h1_handle_not_impl_err(struct h1c *h1c)
2716{
2717 struct session *sess = h1c->conn->owner;
2718 int ret = 1;
2719
2720 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2721 goto end;
2722
2723 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002724 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002725 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2726 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002727 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002728 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002729
2730 h1c->errcode = 501;
2731 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002732 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2733 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002734
2735 end:
2736 return ret;
2737}
2738
Christopher Fauletc18fc232020-10-06 17:41:36 +02002739/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2740 * error. This function takes care of incrementing stats and tracked counters.
2741 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002742static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002743{
2744 struct session *sess = h1c->conn->owner;
2745 int ret = 1;
2746
2747 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2748 goto end;
2749
2750 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002751 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002752 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2753 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002754 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002755 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002756
2757 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002758 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2759 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002760 sess_log(sess);
2761 end:
2762 return ret;
2763}
2764
2765
Christopher Faulet51dbc942018-09-13 09:05:15 +02002766/*
2767 * Attempt to read data, and subscribe if none available
2768 */
2769static int h1_recv(struct h1c *h1c)
2770{
2771 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002772 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002773 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002774
Christopher Faulet6b81df72019-10-01 22:08:43 +02002775 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2776
2777 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2778 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002779 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002780 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002781
Christopher Fauletae635762020-09-21 11:47:16 +02002782 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2783 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002784 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002785 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002786
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002787 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2788 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002789 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002790 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002791 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002792
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002793 /*
2794 * If we only have a small amount of data, realign it,
2795 * it's probably cheaper than doing 2 recv() calls.
2796 */
2797 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002798 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002799
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002800 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002801 if (!h1c->h1s ||
2802 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2803 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002804 flags |= CO_RFL_READ_ONCE;
2805
Willy Tarreau45f2b892018-12-05 07:59:27 +01002806 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002807 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002808 if (h1c->flags & H1C_F_IN_FULL) {
2809 h1c->flags &= ~H1C_F_IN_FULL;
2810 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2811 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002812
2813 if (!b_data(&h1c->ibuf)) {
2814 /* try to pre-align the buffer like the rxbufs will be
2815 * to optimize memory copies.
2816 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002817 h1c->ibuf.head = sizeof(struct htx);
2818 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002819 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet41951ab2021-11-26 18:12:51 +01002820 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002821 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002822 if (max && !ret && h1_recv_allowed(h1c)) {
2823 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2824 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002825 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002826 else {
2827 h1_wake_stream_for_recv(h1c->h1s);
2828 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002829 }
2830
Christopher Faulet51dbc942018-09-13 09:05:15 +02002831 if (!b_data(&h1c->ibuf))
2832 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002833 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002834 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002835 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2836 }
2837
2838 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002839 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002840}
2841
2842
2843/*
2844 * Try to send data if possible
2845 */
2846static int h1_send(struct h1c *h1c)
2847{
2848 struct connection *conn = h1c->conn;
2849 unsigned int flags = 0;
2850 size_t ret;
2851 int sent = 0;
2852
Christopher Faulet6b81df72019-10-01 22:08:43 +02002853 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2854
2855 if (conn->flags & CO_FL_ERROR) {
2856 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002857 b_reset(&h1c->obuf);
2858 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002859 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002860
2861 if (!b_data(&h1c->obuf))
2862 goto end;
2863
Christopher Faulet46230362019-10-17 16:04:20 +02002864 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002865 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002866 if (h1c->flags & H1C_F_CO_STREAMER)
2867 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002868
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002869 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002870 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002871 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002872 if (h1c->flags & H1C_F_OUT_FULL) {
2873 h1c->flags &= ~H1C_F_OUT_FULL;
2874 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2875 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01002876 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002877 b_del(&h1c->obuf, ret);
2878 sent = 1;
2879 }
2880
Christopher Faulet145aa472018-12-06 10:56:20 +01002881 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002882 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002883 /* error or output closed, nothing to send, clear the buffer to release it */
2884 b_reset(&h1c->obuf);
2885 }
2886
Christopher Faulet51dbc942018-09-13 09:05:15 +02002887 end:
Christopher Fauletc17c31c2022-02-01 18:25:06 +01002888 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002889 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002890
Christopher Faulet51dbc942018-09-13 09:05:15 +02002891 /* We're done, no more to send */
2892 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002893 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002894 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002895 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002896 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002897 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002898 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002899 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002900 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2901 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002902 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002903 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002904
Christopher Faulet6b81df72019-10-01 22:08:43 +02002905 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002906 return sent;
2907}
2908
Christopher Faulet51dbc942018-09-13 09:05:15 +02002909/* callback called on any event by the connection handler.
2910 * It applies changes and returns zero, or < 0 if it wants immediate
2911 * destruction of the connection.
2912 */
2913static int h1_process(struct h1c * h1c)
2914{
2915 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002916 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002917
Christopher Faulet6b81df72019-10-01 22:08:43 +02002918 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2919
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002920 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002921 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002922 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2923 !(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 +02002924 struct buffer *buf;
2925 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002926
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002927 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2928 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002929 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002930
2931 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002932 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002933 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2934 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002935 /* Try to match H2 preface before parsing the request headers. */
2936 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2937 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002938 if (h1c->flags & H1C_F_ST_ATTACHED) {
2939 /* Force the REOS here to be sure to release the CS.
2940 Here ATTACHED implies !READY, and h1s defined
2941 */
2942 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2943 h1s->flags |= H1S_F_REOS;
2944 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002945 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002946 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002947 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002948 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002949
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002950 /* Create the H1 stream if not already there */
2951 if (!h1s) {
2952 h1s = h1c_frt_stream_new(h1c);
2953 if (!h1s) {
2954 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002955 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002956 goto no_parsing;
2957 }
2958 }
2959
2960 if (h1s->sess->t_idle == -1)
2961 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2962
2963 /* Get the stream rxbuf */
2964 buf = h1_get_buf(h1c, &h1s->rxbuf);
2965 if (!buf) {
2966 h1c->flags |= H1C_F_IN_SALLOC;
2967 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2968 return 0;
2969 }
2970
2971 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002972 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002973 h1_release_buf(h1c, &h1s->rxbuf);
2974 h1_set_idle_expiration(h1c);
2975
2976 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002977 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002978 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002979 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002980 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002981 }
2982 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002983 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002984 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002985 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002986 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002987 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2988 h1_handle_not_impl_err(h1c);
2989 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002990 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002991 }
Christopher Fauletae635762020-09-21 11:47:16 +02002992 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002993 h1_send(h1c);
2994
Christopher Faulet75308302021-11-15 14:51:37 +01002995 /* H1 connection must be released ASAP if:
2996 * - an error occurred on the connection or the H1C or
2997 * - a read0 was received or
2998 * - a silent shutdown was emitted and all outgoing data sent
2999 */
3000 if ((conn->flags & CO_FL_ERROR) ||
3001 conn_xprt_read0_pending(conn) ||
3002 (h1c->flags & H1C_F_ST_ERROR) ||
3003 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003004 if (!(h1c->flags & H1C_F_ST_READY)) {
3005 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003006 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet75308302021-11-15 14:51:37 +01003007 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02003008 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003009 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003010 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003011 }
3012
3013 /* Handle pending error, if any (only possible on frontend connection) */
3014 if (h1c->flags & H1C_F_ERR_PENDING) {
3015 BUG_ON(h1c->flags & H1C_F_IS_BACK);
3016 if (h1_send_error(h1c))
3017 h1_send(h1c);
3018 }
Christopher Fauletae635762020-09-21 11:47:16 +02003019
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003020 /* If there is some pending outgoing data or error, just wait */
3021 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
3022 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01003023
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003024 /* Otherwise we can release the H1 connection */
3025 goto release;
3026 }
3027 else {
3028 /* Here there is still a H1 stream with a conn-stream.
3029 * Report the connection state at the stream level
3030 */
3031 if (conn_xprt_read0_pending(conn)) {
3032 h1s->flags |= H1S_F_REOS;
3033 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
3034 }
Willy Tarreau99bbdbc2022-03-17 17:10:36 +01003035 if ((h1c->flags & H1C_F_ST_ERROR) || ((conn->flags & CO_FL_ERROR) && !b_data(&h1c->ibuf)))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003036 h1s->cs->flags |= CS_FL_ERROR;
3037 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01003038 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003039 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003040 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003041
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003042 if (!b_data(&h1c->ibuf))
3043 h1_release_buf(h1c, &h1c->ibuf);
3044
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003045 /* Check if a soft-stop is in progress.
3046 * Release idling front connection if this is the case.
3047 */
3048 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003049 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
William Dauchya9dd9012022-01-05 22:53:24 +01003050 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003051 h1c->flags & H1C_F_WAIT_NEXT_REQ) {
3052
3053 int send_close = 1;
3054 /* If a close-spread-time option is set, we want to avoid
3055 * closing all the active HTTP2 connections at once so we add a
3056 * random factor that will spread the closing.
3057 */
3058 if (tick_isset(global.close_spread_end)) {
3059 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3060 if (remaining_window) {
3061 /* This should increase the closing rate the
3062 * further along the window we are.
3063 */
3064 send_close = (remaining_window <= statistical_prng_range(global.close_spread_time));
3065 }
3066 }
3067 if (send_close)
3068 goto release;
3069 }
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003070 }
3071 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003072
3073 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
3074 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
3075 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003076 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003077
Christopher Faulet47365272018-10-31 17:40:50 +01003078 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02003079 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003080 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003081 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01003082
3083 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003084 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003085 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003086 * attached CS first. Here, the H1C must not be READY */
3087 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
3088
3089 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
3090 h1s->cs->flags |= CS_FL_EOS;
3091 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
3092 h1s->cs->flags |= CS_FL_ERROR;
3093 h1_alert(h1s);
3094 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3095 }
3096 else {
3097 h1_release(h1c);
3098 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
3099 }
Christopher Faulet539e0292018-11-19 10:40:09 +01003100 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003101}
3102
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003103struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003104{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003105 struct connection *conn;
3106 struct tasklet *tl = (struct tasklet *)t;
3107 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003108 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003109 int ret = 0;
3110
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003111 if (state & TASK_F_USR1) {
3112 /* the tasklet was idling on an idle connection, it might have
3113 * been stolen, let's be careful!
3114 */
3115 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3116 if (tl->context == NULL) {
3117 /* The connection has been taken over by another thread,
3118 * we're no longer responsible for it, so just free the
3119 * tasklet, and do nothing.
3120 */
3121 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3122 tasklet_free(tl);
3123 return NULL;
3124 }
3125 conn = h1c->conn;
3126 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003127
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003128 /* Remove the connection from the list, to be sure nobody attempts
3129 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003130 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003131 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3132 if (conn_in_list)
3133 conn_delete_from_tree(&conn->hash_node->node);
3134
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003135 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003136 } else {
3137 /* we're certain the connection was not in an idle list */
3138 conn = h1c->conn;
3139 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
3140 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003141 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003142
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003143 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003144 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003145 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003146 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003147 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003148 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01003149
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003150 /* If we were in an idle list, we want to add it back into it,
3151 * unless h1_process() returned -1, which mean it has destroyed
3152 * the connection (testing !ret is enough, if h1_process() wasn't
3153 * called then ret will be 0 anyway.
3154 */
Willy Tarreau74163142021-03-13 11:30:19 +01003155 if (ret < 0)
3156 t = NULL;
3157
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003158 if (!ret && conn_in_list) {
3159 struct server *srv = objt_server(conn->target);
3160
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003161 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003162 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003163 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003164 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003165 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003166 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003167 }
Willy Tarreau74163142021-03-13 11:30:19 +01003168 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003169}
3170
Christopher Faulet51dbc942018-09-13 09:05:15 +02003171static int h1_wake(struct connection *conn)
3172{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003173 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01003174 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003175
Christopher Faulet6b81df72019-10-01 22:08:43 +02003176 TRACE_POINT(H1_EV_H1C_WAKE, conn);
3177
Christopher Faulet539e0292018-11-19 10:40:09 +01003178 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01003179 ret = h1_process(h1c);
3180 if (ret == 0) {
3181 struct h1s *h1s = h1c->h1s;
3182
Christopher Fauletad4daf62021-01-21 17:49:01 +01003183 if (h1c->flags & H1C_F_ST_ATTACHED)
3184 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003185 }
3186 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003187}
3188
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003189/* Connection timeout management. The principle is that if there's no receipt
3190 * nor sending for a certain amount of time, the connection is closed.
3191 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003192struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003193{
3194 struct h1c *h1c = context;
3195 int expired = tick_is_expired(t->expire, now_ms);
3196
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003197 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003198
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003199 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003200 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003201 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003202
3203 /* Somebody already stole the connection from us, so we should not
3204 * free it, we just have to free the task.
3205 */
3206 if (!t->context) {
3207 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003208 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003209 goto do_leave;
3210 }
3211
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003212 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003213 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003214 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003215 return t;
3216 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003217
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003218 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003219 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003220 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003221 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003222 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003223 t->expire = TICK_ETERNITY;
3224 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3225 return t;
3226 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003227
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003228 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003229 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3230 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003231 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003232 if (h1_handle_req_tout(h1c))
3233 h1_send(h1c);
3234 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3235 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003236 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003237 return t;
3238 }
3239 }
3240
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003241 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003242 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003243 * attached CS first. Here, the H1C must not be READY */
3244 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3245 h1_alert(h1c->h1s);
3246 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003247 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003248 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3249 return t;
3250 }
3251
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003252 /* We're about to destroy the connection, so make sure nobody attempts
3253 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003254 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003255 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003256 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003257
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003258 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003259 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003260
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003261 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003262 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003263
3264 if (!h1c) {
3265 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003266 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003267 return NULL;
3268 }
3269
3270 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003271 h1_release(h1c);
3272 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003273 return NULL;
3274}
3275
Christopher Faulet51dbc942018-09-13 09:05:15 +02003276/*******************************************/
3277/* functions below are used by the streams */
3278/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003279
Christopher Faulet51dbc942018-09-13 09:05:15 +02003280/*
3281 * Attach a new stream to a connection
3282 * (Used for outgoing connections)
3283 */
Christopher Faulete00ad352021-12-16 14:44:31 +01003284static int h1_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003285{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003286 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003287 struct h1s *h1s;
3288
Christopher Faulet6b81df72019-10-01 22:08:43 +02003289 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003290 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003291 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3292 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003293 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003294
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003295 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003296 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003297 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3298 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003299 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003300
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003301 /* the connection is not idle anymore, let's mark this */
3302 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003303 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003304
Christopher Faulet6b81df72019-10-01 22:08:43 +02003305 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulete00ad352021-12-16 14:44:31 +01003306 return 0;
Christopher Faulet26a26432021-01-27 11:27:50 +01003307 err:
Christopher Faulet26a26432021-01-27 11:27:50 +01003308 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 +01003309 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003310}
3311
3312/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3313 * this mux, it's easy as we can only store a single conn_stream.
3314 */
3315static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3316{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003317 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003318 struct h1s *h1s = h1c->h1s;
3319
3320 if (h1s)
3321 return h1s->cs;
3322
3323 return NULL;
3324}
3325
Christopher Faulet73c12072019-04-08 11:23:22 +02003326static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003327{
Christopher Faulet73c12072019-04-08 11:23:22 +02003328 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003329
Christopher Faulet6b81df72019-10-01 22:08:43 +02003330 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003331 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003332 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003333}
3334
3335/*
3336 * Detach the stream from the connection and possibly release the connection.
3337 */
3338static void h1_detach(struct conn_stream *cs)
3339{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003340 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003341 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003342 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003343 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003344
Christopher Faulet6b81df72019-10-01 22:08:43 +02003345 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3346
Christopher Faulet6b81df72019-10-01 22:08:43 +02003347 if (!h1s) {
3348 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003349 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003350 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003351
Olivier Houchardf502aca2018-12-14 19:42:40 +01003352 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003353 h1c = h1s->h1c;
3354 h1s->cs = NULL;
3355
Christopher Faulet42849b02020-10-05 11:35:17 +02003356 sess->accept_date = date;
3357 sess->tv_accept = now;
3358 sess->t_handshake = 0;
3359 sess->t_idle = -1;
3360
Olivier Houchard8a786902018-12-15 16:05:40 +01003361 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3362 h1s_destroy(h1s);
3363
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003364 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 +02003365 /* If there are any excess server data in the input buffer,
3366 * release it and close the connection ASAP (some data may
3367 * remain in the output buffer). This happens if a server sends
3368 * invalid responses. So in such case, we don't want to reuse
3369 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003370 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003371 if (b_data(&h1c->ibuf)) {
3372 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003373 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003374 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003375 goto release;
3376 }
Christopher Faulet03627242019-07-19 11:34:08 +02003377
Christopher Faulet08016ab2020-07-01 16:10:06 +02003378 if (h1c->conn->flags & CO_FL_PRIVATE) {
3379 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003380 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3381 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003382 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003383 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003384 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003385 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003386 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003387 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003388 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3389 goto end;
3390 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003391 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003392 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003393 if (h1c->conn->owner == sess)
3394 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003395
3396 /* mark that the tasklet may lose its context to another thread and
3397 * that the handler needs to check it under the idle conns lock.
3398 */
3399 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003400 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003401 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3402
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003403 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003404 /* The server doesn't want it, let's kill the connection right away */
3405 h1c->conn->mux->destroy(h1c);
3406 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3407 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003408 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003409 /* At this point, the connection has been added to the
3410 * server idle list, so another thread may already have
3411 * hijacked it, so we can't do anything with it.
3412 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003413 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003414 }
3415 }
3416
Christopher Fauletf1204b82019-07-19 14:51:06 +02003417 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003418 /* 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 +01003419 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003420 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003421 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003422 !h1c->conn->owner) {
3423 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003424 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003425 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003426 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003427 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003428 /* If we have a new request, process it immediately or
3429 * subscribe for reads waiting for new data
3430 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003431 if (unlikely(b_data(&h1c->ibuf))) {
3432 if (h1_process(h1c) == -1)
3433 goto end;
3434 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003435 else
3436 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3437 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003438 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003439 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003440 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003441 end:
3442 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003443}
3444
3445
3446static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3447{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003448 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet7f366362019-04-08 10:51:20 +02003449 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003450
3451 if (!h1s)
3452 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003453 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003454
Christopher Faulet99293b02021-11-10 10:30:15 +01003455 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003456
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003457 if (cs->flags & CS_FL_SHR)
3458 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003459 if (cs->flags & CS_FL_KILL_CONN) {
3460 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3461 goto do_shutr;
3462 }
3463 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3464 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003465 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003466 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003467
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003468 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3469 /* Here attached is implicit because there is CS */
3470 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3471 goto end;
3472 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003473 if (h1s->flags & H1S_F_WANT_KAL) {
3474 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003475 goto end;
3476 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003477
Christopher Faulet7f366362019-04-08 10:51:20 +02003478 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003479 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3480 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003481 goto end;
Christopher Faulet897d6122021-12-17 17:28:35 +01003482
3483 if (conn_xprt_ready(h1c->conn) && h1c->conn->xprt->shutr)
3484 h1c->conn->xprt->shutr(h1c->conn, h1c->conn->xprt_ctx, (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003485 end:
3486 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003487}
3488
3489static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3490{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003491 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003492 struct h1c *h1c;
3493
3494 if (!h1s)
3495 return;
3496 h1c = h1s->h1c;
3497
Christopher Faulet99293b02021-11-10 10:30:15 +01003498 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003499
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003500 if (cs->flags & CS_FL_SHW)
3501 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003502 if (cs->flags & CS_FL_KILL_CONN) {
3503 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003504 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003505 }
3506 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3507 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3508 goto do_shutw;
3509 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003510
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003511 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3512 /* Here attached is implicit because there is CS */
3513 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3514 goto end;
3515 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003516 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3517 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003518 goto end;
3519 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003520
Christopher Faulet7f366362019-04-08 10:51:20 +02003521 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003522 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauleta85c5222021-10-27 15:36:38 +02003523 if (mode != CS_SHW_NORMAL)
3524 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3525
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003526 if (!b_data(&h1c->obuf))
Christopher Faulet897d6122021-12-17 17:28:35 +01003527 h1_shutw_conn(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003528 end:
3529 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003530}
3531
Christopher Fauleta85c5222021-10-27 15:36:38 +02003532static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003533{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003534 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003535
Willy Tarreau62592ad2021-03-26 09:09:42 +01003536 if (conn->flags & CO_FL_SOCK_WR_SH)
3537 return;
3538
Christopher Fauleta85c5222021-10-27 15:36:38 +02003539 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003540 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003541 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3542 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003543}
3544
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003545/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3546 * The <es> pointer is not allowed to differ from the one passed to the
3547 * subscribe() call. It always returns zero.
3548 */
3549static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003550{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003551 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003552
3553 if (!h1s)
3554 return 0;
3555
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003556 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003557 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003558
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003559 es->events &= ~event_type;
3560 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003561 h1s->subs = NULL;
3562
3563 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003564 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003565
3566 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003567 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003568
Christopher Faulet51dbc942018-09-13 09:05:15 +02003569 return 0;
3570}
3571
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003572/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3573 * event subscriber <es> is not allowed to change from a previous call as long
3574 * as at least one event is still subscribed. The <event_type> must only be a
3575 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3576 * the conn_stream <cs> was already detached, in which case it will return -1.
3577 */
3578static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003579{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003580 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51bb1852019-09-04 10:22:34 +02003581 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003582
3583 if (!h1s)
3584 return -1;
3585
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003586 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003587 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003588
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003589 es->events |= event_type;
3590 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003591
3592 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003593 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003594
3595
Christopher Faulet6b81df72019-10-01 22:08:43 +02003596 if (event_type & SUB_RETRY_SEND) {
3597 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003598 /*
3599 * If the conn_stream attempt to subscribe, and the
3600 * mux isn't subscribed to the connection, then it
3601 * probably means the connection wasn't established
3602 * yet, so we have to subscribe.
3603 */
3604 h1c = h1s->h1c;
3605 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3606 h1c->conn->xprt->subscribe(h1c->conn,
3607 h1c->conn->xprt_ctx,
3608 SUB_RETRY_SEND,
3609 &h1c->wait_event);
3610 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003611 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003612}
3613
Christopher Faulet564e39c2021-09-21 15:50:55 +02003614/* Called from the upper layer, to receive data.
3615 *
3616 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3617 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3618 * means the caller wants to flush input data (from the mux buffer and the
3619 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3620 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3621 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3622 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3623 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3624 * copy as much data as possible.
3625 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003626static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3627{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003628 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet539e0292018-11-19 10:40:09 +01003629 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003630 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003631 size_t ret = 0;
3632
Willy Tarreau022e5e52020-09-10 09:33:15 +02003633 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003634
3635 /* Do nothing for now if not READY */
3636 if (!(h1c->flags & H1C_F_ST_READY)) {
3637 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3638 goto end;
3639 }
3640
Christopher Faulet539e0292018-11-19 10:40:09 +01003641 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003642 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003643 else
3644 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003645
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003646 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3647 h1c->flags |= H1C_F_WANT_SPLICE;
3648 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 +02003649 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003650 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003651 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 +01003652 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003653 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003654
3655 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003656 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003657 return ret;
3658}
3659
3660
3661/* Called from the upper layer, to send data */
3662static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3663{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003664 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003665 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003666 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003667
3668 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003669 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003670 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003671
Willy Tarreau022e5e52020-09-10 09:33:15 +02003672 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003673
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003674 /* If we're not connected yet, or we're waiting for a handshake, stop
3675 * now, as we don't want to remove everything from the channel buffer
3676 * before we're sure we can send it.
3677 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003678 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003679 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003680 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003681 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003682
Christopher Fauletdea24742021-01-22 15:12:30 +01003683 if (h1c->flags & H1C_F_ST_ERROR) {
3684 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003685 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 +01003686 return 0;
3687 }
3688
Christopher Faulet46230362019-10-17 16:04:20 +02003689 /* Inherit some flags from the upper layer */
3690 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3691 if (flags & CO_SFL_MSG_MORE)
3692 h1c->flags |= H1C_F_CO_MSG_MORE;
3693 if (flags & CO_SFL_STREAMER)
3694 h1c->flags |= H1C_F_CO_STREAMER;
3695
Christopher Fauletc31872f2019-06-04 22:09:36 +02003696 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003697 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003698
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003699 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003700 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003701 else
3702 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003703
3704 if ((count - ret) > 0)
3705 h1c->flags |= H1C_F_CO_MSG_MORE;
3706
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003707 if (!ret)
3708 break;
3709 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003710 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003711 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003712 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003713 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003714
3715 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003716 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003717 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 +01003718 }
3719
Christopher Faulet7a145d62020-08-05 11:31:16 +02003720 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003721 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003722 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003723}
3724
Willy Tarreaue5733232019-05-22 19:24:06 +02003725#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003726/* Send and get, using splicing */
3727static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3728{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003729 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003730 struct h1c *h1c = h1s->h1c;
3731 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003732 int ret = 0;
3733
Christopher Faulet897d6122021-12-17 17:28:35 +01003734 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003735
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003736 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003737 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003738 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 +02003739 goto end;
3740 }
3741
Christopher Fauletcf307562021-07-26 10:49:39 +02003742 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003743 if (h1s_data_pending(h1s)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003744 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003745 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003746 }
3747
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003748 if (!h1_recv_allowed(h1c)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003749 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet0060be92020-07-03 15:02:25 +02003750 goto end;
3751 }
3752
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003753 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003754 count = h1m->curr_len;
Christopher Faulet897d6122021-12-17 17:28:35 +01003755 ret = h1c->conn->xprt->rcv_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe, count);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003756 if (ret >= 0) {
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003757 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003758 if (ret > h1m->curr_len) {
3759 h1s->flags |= H1S_F_PARSING_ERROR;
3760 h1c->flags |= H1C_F_ST_ERROR;
3761 cs->flags |= CS_FL_ERROR;
3762 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003763 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 +01003764 goto end;
3765 }
3766 h1m->curr_len -= ret;
3767 if (!h1m->curr_len) {
3768 h1m->state = H1_MSG_DONE;
3769 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003770 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003771 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003772 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003773 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
3774 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_in, ret);
Christopher Faulete18777b2019-04-16 16:46:36 +02003775 }
3776
Christopher Faulet1be55f92018-10-02 15:59:23 +02003777 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003778 if (conn_xprt_read0_pending(h1c->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003779 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003780 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003781 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003782 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003783
Christopher Faulet94d35102021-04-09 11:58:49 +02003784 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003785 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003786 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003787 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003788 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, h1c->conn, h1s);
3789 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet94d35102021-04-09 11:58:49 +02003790 }
Christopher Faulet27182292020-07-03 15:08:49 +02003791 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003792
Christopher Faulet897d6122021-12-17 17:28:35 +01003793 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003794 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003795}
3796
3797static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3798{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01003799 struct h1s *h1s = __cs_mux(cs);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003800 struct h1c *h1c = h1s->h1c;
3801 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003802 int ret = 0;
3803
Christopher Faulet897d6122021-12-17 17:28:35 +01003804 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003805
Christopher Faulet140f1a52021-11-26 16:37:55 +01003806 if (b_data(&h1c->obuf)) {
3807 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003808 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, h1c->conn, h1s);
3809 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003810 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003811 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003812 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003813
Christopher Faulet897d6122021-12-17 17:28:35 +01003814 ret = h1c->conn->xprt->snd_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe);
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003815 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003816 if (ret > h1m->curr_len) {
3817 h1s->flags |= H1S_F_PROCESSING_ERROR;
3818 h1c->flags |= H1C_F_ST_ERROR;
3819 cs->flags |= CS_FL_ERROR;
3820 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003821 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 +01003822 goto end;
3823 }
3824 h1m->curr_len -= ret;
3825 if (!h1m->curr_len) {
3826 h1m->state = H1_MSG_DONE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003827 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003828 }
3829 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003830 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
3831 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_out, ret);
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003832
3833 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003834 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003835 return ret;
3836}
3837#endif
3838
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003839static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3840{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003841 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003842 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003843
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003844 switch (mux_ctl) {
3845 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003846 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003847 ret |= MUX_STATUS_READY;
3848 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003849 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003850 if (output)
3851 *((int *)output) = h1c->errcode;
3852 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3853 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3854 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3855 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003856 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003857 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003858 default:
3859 return -1;
3860 }
3861}
3862
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003863/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003864static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003865{
3866 struct h1c *h1c = conn->ctx;
3867 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003868 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003869
Christopher Fauletf376a312019-01-04 15:16:06 +01003870 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3871 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003872 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3873 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3874 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3875 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3876
3877 if (h1s) {
3878 char *method;
3879
3880 if (h1s->meth < HTTP_METH_OTHER)
3881 method = http_known_methods[h1s->meth].ptr;
3882 else
3883 method = "UNKNOWN";
3884 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3885 " .meth=%s status=%d",
3886 h1s, h1s->flags,
3887 h1m_state_str(h1s->req.state),
3888 h1m_state_str(h1s->res.state), method, h1s->status);
3889 if (h1s->cs)
Christopher Fauletf835dea2021-12-21 14:35:17 +01003890 chunk_appendf(msg, " .cs.flg=0x%08x .cs.app=%p",
3891 h1s->cs->flags, h1s->cs->app);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003892
3893 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3894 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003895 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3896 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3897 h1s->subs->tasklet->calls,
3898 h1s->subs->tasklet->context);
3899 if (h1s->subs->tasklet->calls >= 1000000)
3900 ret = 1;
3901 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3902 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003903 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003904 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003905 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003906}
3907
3908
3909/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3910static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3911{
3912 struct h1_hdr_entry *entry;
3913
3914 /* Be sure there is a non-empty <to> */
3915 if (!strlen(to)) {
3916 memprintf(err, "expect <to>");
3917 return -1;
3918 }
3919
3920 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003921 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003922 memprintf(err, "<from> and <to> must not differ execpt the case");
3923 return -1;
3924 }
3925
3926 /* Be sure <from> does not already existsin the tree */
3927 if (ebis_lookup(&hdrs_map.map, from)) {
3928 memprintf(err, "duplicate entry '%s'", from);
3929 return -1;
3930 }
3931
3932 /* Create the entry and insert it in the tree */
3933 entry = malloc(sizeof(*entry));
3934 if (!entry) {
3935 memprintf(err, "out of memory");
3936 return -1;
3937 }
3938
3939 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003940 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003941 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003942 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003943 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003944 free(entry);
3945 memprintf(err, "out of memory");
3946 return -1;
3947 }
3948 ebis_insert(&hdrs_map.map, &entry->node);
3949 return 0;
3950}
3951
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003952/* Migrate the the connection to the current thread.
3953 * Return 0 if successful, non-zero otherwise.
3954 * Expected to be called with the old thread lock held.
3955 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003956static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003957{
3958 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003959 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003960
3961 if (fd_takeover(conn->handle.fd, conn) != 0)
3962 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003963
3964 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3965 /* We failed to takeover the xprt, even if the connection may
3966 * still be valid, flag it as error'd, as we have already
3967 * taken over the fd, and wake the tasklet, so that it will
3968 * destroy it.
3969 */
3970 conn->flags |= CO_FL_ERROR;
3971 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3972 return -1;
3973 }
3974
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003975 if (h1c->wait_event.events)
3976 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3977 h1c->wait_event.events, &h1c->wait_event);
3978 /* To let the tasklet know it should free itself, and do nothing else,
3979 * set its context to NULL.
3980 */
3981 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003982 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003983
3984 task = h1c->task;
3985 if (task) {
3986 task->context = NULL;
3987 h1c->task = NULL;
3988 __ha_barrier_store();
3989 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003990
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003991 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003992 if (!h1c->task) {
3993 h1_release(h1c);
3994 return -1;
3995 }
3996 h1c->task->process = h1_timeout_task;
3997 h1c->task->context = h1c;
3998 }
3999 h1c->wait_event.tasklet = tasklet_new();
4000 if (!h1c->wait_event.tasklet) {
4001 h1_release(h1c);
4002 return -1;
4003 }
4004 h1c->wait_event.tasklet->process = h1_io_cb;
4005 h1c->wait_event.tasklet->context = h1c;
4006 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
4007 SUB_RETRY_RECV, &h1c->wait_event);
4008
4009 return 0;
4010}
4011
4012
Christopher Faulet98fbe952019-07-22 16:18:24 +02004013static void h1_hdeaders_case_adjust_deinit()
4014{
4015 struct ebpt_node *node, *next;
4016 struct h1_hdr_entry *entry;
4017
4018 node = ebpt_first(&hdrs_map.map);
4019 while (node) {
4020 next = ebpt_next(node);
4021 ebpt_delete(node);
4022 entry = container_of(node, struct h1_hdr_entry, node);
4023 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01004024 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004025 free(entry);
4026 node = next;
4027 }
4028 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004029}
4030
Christopher Faulet98fbe952019-07-22 16:18:24 +02004031static int cfg_h1_headers_case_adjust_postparser()
4032{
4033 FILE *file = NULL;
4034 char *c, *key_beg, *key_end, *value_beg, *value_end;
4035 char *err;
4036 int rc, line = 0, err_code = 0;
4037
4038 if (!hdrs_map.name)
4039 goto end;
4040
4041 file = fopen(hdrs_map.name, "r");
4042 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004043 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004044 hdrs_map.name);
4045 err_code |= ERR_ALERT | ERR_FATAL;
4046 goto end;
4047 }
4048
4049 /* now parse all lines. The file may contain only two header name per
4050 * line, separated by spaces. All heading and trailing spaces will be
4051 * ignored. Lines starting with a # are ignored.
4052 */
4053 while (fgets(trash.area, trash.size, file) != NULL) {
4054 line++;
4055 c = trash.area;
4056
4057 /* strip leading spaces and tabs */
4058 while (*c == ' ' || *c == '\t')
4059 c++;
4060
4061 /* ignore emptu lines, or lines beginning with a dash */
4062 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
4063 continue;
4064
4065 /* look for the end of the key */
4066 key_beg = c;
4067 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
4068 c++;
4069 key_end = c;
4070
4071 /* strip middle spaces and tabs */
4072 while (*c == ' ' || *c == '\t')
4073 c++;
4074
4075 /* look for the end of the value, it is the end of the line */
4076 value_beg = c;
4077 while (*c && *c != '\n' && *c != '\r')
4078 c++;
4079 value_end = c;
4080
4081 /* trim possibly trailing spaces and tabs */
4082 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
4083 value_end--;
4084
4085 /* set final \0 and check entries */
4086 *key_end = '\0';
4087 *value_end = '\0';
4088
4089 err = NULL;
4090 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
4091 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004092 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004093 hdrs_map.name, err, line);
4094 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004095 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004096 goto end;
4097 }
4098 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004099 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004100 hdrs_map.name, err, line);
4101 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004102 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004103 }
4104 }
4105
4106 end:
4107 if (file)
4108 fclose(file);
4109 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
4110 return err_code;
4111}
4112
4113
4114/* config parser for global "h1-outgoing-header-case-adjust" */
4115static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004116 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004117 char **err)
4118{
4119 if (too_many_args(2, args, err, NULL))
4120 return -1;
4121 if (!*(args[1]) || !*(args[2])) {
4122 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
4123 return -1;
4124 }
4125 return add_hdr_case_adjust(args[1], args[2], err);
4126}
4127
4128/* config parser for global "h1-outgoing-headers-case-adjust-file" */
4129static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004130 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004131 char **err)
4132{
4133 if (too_many_args(1, args, err, NULL))
4134 return -1;
4135 if (!*(args[1])) {
4136 memprintf(err, "'%s' expects <file> as argument.", args[0]);
4137 return -1;
4138 }
4139 free(hdrs_map.name);
4140 hdrs_map.name = strdup(args[1]);
4141 return 0;
4142}
4143
4144
4145/* config keyword parsers */
4146static struct cfg_kw_list cfg_kws = {{ }, {
4147 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
4148 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
4149 { 0, NULL, NULL },
4150 }
4151};
4152
4153INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4154REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
4155
4156
Christopher Faulet51dbc942018-09-13 09:05:15 +02004157/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004158/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02004159/****************************************/
4160
4161/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01004162static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02004163 .init = h1_init,
4164 .wake = h1_wake,
4165 .attach = h1_attach,
4166 .get_first_cs = h1_get_first_cs,
4167 .detach = h1_detach,
4168 .destroy = h1_destroy,
4169 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01004170 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02004171 .rcv_buf = h1_rcv_buf,
4172 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02004173#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02004174 .rcv_pipe = h1_rcv_pipe,
4175 .snd_pipe = h1_snd_pipe,
4176#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02004177 .subscribe = h1_subscribe,
4178 .unsubscribe = h1_unsubscribe,
4179 .shutr = h1_shutr,
4180 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004181 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004182 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004183 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02004184 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02004185 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02004186};
4187
Christopher Faulet3f612f72021-02-05 16:44:21 +01004188static const struct mux_ops mux_h1_ops = {
4189 .init = h1_init,
4190 .wake = h1_wake,
4191 .attach = h1_attach,
4192 .get_first_cs = h1_get_first_cs,
4193 .detach = h1_detach,
4194 .destroy = h1_destroy,
4195 .avail_streams = h1_avail_streams,
4196 .used_streams = h1_used_streams,
4197 .rcv_buf = h1_rcv_buf,
4198 .snd_buf = h1_snd_buf,
4199#if defined(USE_LINUX_SPLICE)
4200 .rcv_pipe = h1_rcv_pipe,
4201 .snd_pipe = h1_snd_pipe,
4202#endif
4203 .subscribe = h1_subscribe,
4204 .unsubscribe = h1_unsubscribe,
4205 .shutr = h1_shutr,
4206 .shutw = h1_shutw,
4207 .show_fd = h1_show_fd,
4208 .ctl = h1_ctl,
4209 .takeover = h1_takeover,
4210 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4211 .name = "H1",
4212};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004213
Christopher Faulet3f612f72021-02-05 16:44:21 +01004214/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4215static struct mux_proto_list mux_proto_h1 =
4216 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4217static struct mux_proto_list mux_proto_http =
4218 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004219
Christopher Faulet3f612f72021-02-05 16:44:21 +01004220INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4221INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004222
Christopher Faulet51dbc942018-09-13 09:05:15 +02004223/*
4224 * Local variables:
4225 * c-indent-level: 8
4226 * c-basic-offset: 8
4227 * End:
4228 */