blob: 7de0862559812196b6a29df49db5f92a7d06a1a1 [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{
594 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100595 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200596 /* half-closed or dead connections : switch to clientfin/serverfin
597 * timeouts so that we don't hang too long on clients that have
598 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200599 */
600 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200601 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
602 }
603 else if (b_data(&h1c->obuf)) {
604 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200605 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200606 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
607 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100608 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
609 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200610 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100611 TRACE_DEVEL("refreshing connection's timeout (alive front h1c but not ready)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200612 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200613 else {
614 /* alive back connections of front connections with a conn-stream attached */
615 h1c->task->expire = TICK_ETERNITY;
616 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
617 }
618
Christopher Fauletdbe57792020-10-05 17:50:58 +0200619 /* Finally set the idle expiration date if shorter */
620 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200621 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
622 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200623 }
624}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200625
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200626static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200627{
628 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
629 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
630 h1c->idle_exp = TICK_ETERNITY;
631 return;
632 }
633
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100634 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200635 if (!tick_isset(h1c->idle_exp)) {
636 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
637 !b_data(&h1c->ibuf) && /* No input data */
638 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
639 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
640 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
641 }
642 else {
643 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
644 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
645 }
646 }
647 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100648 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200649 if (!tick_isset(h1c->idle_exp)) {
650 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
651 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
652 }
653 }
654 else { // CS_ATTACHED or SHUTDOWN
655 h1c->idle_exp = TICK_ETERNITY;
656 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
657 }
658}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200659/*****************************************************************/
660/* functions below are dedicated to the mux setup and management */
661/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200662
663/* returns non-zero if there are input data pending for stream h1s. */
664static inline size_t h1s_data_pending(const struct h1s *h1s)
665{
666 const struct h1m *h1m;
667
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200668 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100669 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200670}
671
Christopher Faulet16df1782020-12-04 16:47:41 +0100672/* Creates a new conn-stream and the associate stream. <input> is used as input
673 * buffer for the stream. On success, it is transferred to the stream and the
674 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
675 * mux must still take care of it. However, there is nothing special to do
676 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
677 * b_free() on it is always safe. This function returns the conn-stream on
678 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200679static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100680{
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100681 struct h1c *h1c = h1s->h1c;
Christopher Faulet47365272018-10-31 17:40:50 +0100682 struct conn_stream *cs;
683
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100684 TRACE_ENTER(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100685 cs = cs_new();
Christopher Faulet6b81df72019-10-01 22:08:43 +0200686 if (!cs) {
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100687 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 +0100688 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200689 }
Christopher Fauletcda94ac2021-12-23 17:28:17 +0100690 cs_attach_endp(cs, &h1c->conn->obj_type, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100691 h1s->cs = cs;
Christopher Faulet47365272018-10-31 17:40:50 +0100692
693 if (h1s->flags & H1S_F_NOT_FIRST)
694 cs->flags |= CS_FL_NOT_FIRST;
695
Amaury Denoyelle90ac6052021-10-18 14:45:49 +0200696 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
697 cs->flags |= CS_FL_WEBSOCKET;
698
Christopher Faulet13a35e52021-12-20 15:34:16 +0100699 if (!stream_new(h1c->conn->owner, cs, input)) {
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100700 TRACE_DEVEL("leaving on stream creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100701 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200702 }
703
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100704 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
705 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100706
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100707 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
708 TRACE_LEAVE(H1_EV_STRM_NEW, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100709 return cs;
710
711 err:
712 cs_free(cs);
713 h1s->cs = NULL;
Christopher Fauletdd2d0d82021-12-20 09:34:32 +0100714 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100715 return NULL;
716}
717
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100718static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
719{
720 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
721
722 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100723 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 +0100724 goto err;
725 }
726
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100727 h1s->h1c->flags |= H1C_F_ST_READY;
728 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
729 return h1s->cs;
730
731 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100732 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100733 return NULL;
734}
735
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200736static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200737{
738 struct h1s *h1s;
739
Christopher Faulet6b81df72019-10-01 22:08:43 +0200740 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
741
Christopher Faulet51dbc942018-09-13 09:05:15 +0200742 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100743 if (!h1s) {
744 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 +0100745 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100746 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200747 h1s->h1c = h1c;
748 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200749 h1s->sess = NULL;
750 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100751 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100752 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200753 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100754 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200755
756 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100757 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200758
Christopher Faulet129817b2018-09-20 16:14:40 +0200759 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100760 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200761
762 h1s->status = 0;
763 h1s->meth = HTTP_METH_OTHER;
764
Christopher Faulet47365272018-10-31 17:40:50 +0100765 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
766 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100767 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100768
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200769 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
770 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200771
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200772 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100773 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200774 return NULL;
775}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100776
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200777static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
778{
779 struct session *sess = h1c->conn->owner;
780 struct h1s *h1s;
781
782 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
783
784 h1s = h1s_new(h1c);
785 if (!h1s)
786 goto fail;
787
788 h1s->sess = sess;
789
790 if (h1c->px->options2 & PR_O2_REQBUG_OK)
791 h1s->req.err_pos = -1;
792
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200793 h1c->idle_exp = TICK_ETERNITY;
794 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200795 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200796 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100797
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200798 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100799 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200800 return NULL;
801}
802
803static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
804{
805 struct h1s *h1s;
806
807 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
808
809 h1s = h1s_new(h1c);
810 if (!h1s)
811 goto fail;
812
Christopher Faulet10a86702021-04-07 14:18:11 +0200813 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200814 h1s->cs = cs;
815 h1s->sess = sess;
816 cs->ctx = h1s;
817
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100818 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200819
820 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
821 h1s->res.err_pos = -1;
822
Christopher Faulet60fa0512021-11-26 18:10:39 +0100823 HA_ATOMIC_INC(&h1c->px_counters->open_streams);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100824 HA_ATOMIC_INC(&h1c->px_counters->total_streams);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100825
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200826 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
827 return h1s;
828
829 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100830 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100831 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200832}
833
834static void h1s_destroy(struct h1s *h1s)
835{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200836 if (h1s) {
837 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200838
Christopher Faulet6b81df72019-10-01 22:08:43 +0200839 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200840 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200841
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100842 if (h1s->subs)
843 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200844
Christopher Fauletd17ad822020-09-24 15:14:29 +0200845 h1_release_buf(h1c, &h1s->rxbuf);
846
Christopher Faulet10a86702021-04-07 14:18:11 +0200847 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100848 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200849 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
850 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200851 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100852 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100853 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 +0200854 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100855
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100856 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100857 !(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 +0100858 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100859 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100860 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100861 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
862 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200863 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100864 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100865 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200866 }
Christopher Faulet60fa0512021-11-26 18:10:39 +0100867
868 HA_ATOMIC_DEC(&h1c->px_counters->open_streams);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200869 pool_free(pool_head_h1s, h1s);
870 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200871}
872
873/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200874 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500875 * to the existing conn_stream (for outgoing connections or for incoming ones
876 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200877 * establishment). <input> is always used as Input buffer and may contain
878 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
879 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200880 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200881static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
882 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200883{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200884 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100885 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200886 void *conn_ctx = conn->ctx;
887
888 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200889
890 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100891 if (!h1c) {
892 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200893 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100894 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200895 h1c->conn = conn;
896 h1c->px = proxy;
897
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100898 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200899 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200900 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200901 h1c->obuf = BUF_NULL;
902 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200903 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200904
Willy Tarreau90f366b2021-02-20 11:49:49 +0100905 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200906 h1c->wait_event.tasklet = tasklet_new();
907 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200908 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200909 h1c->wait_event.tasklet->process = h1_io_cb;
910 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100911 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200912 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200913
Christopher Faulete9b70722019-04-08 10:46:02 +0200914 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200915 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100916 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
917 if (tick_isset(proxy->timeout.serverfin))
918 h1c->shut_timeout = proxy->timeout.serverfin;
Christopher Faulet563c3452021-11-26 17:37:51 +0100919
920 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_be,
921 &h1_stats_module);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100922 } else {
923 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
924 if (tick_isset(proxy->timeout.clientfin))
925 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200926
Christopher Faulet563c3452021-11-26 17:37:51 +0100927 h1c->px_counters = EXTRA_COUNTERS_GET(proxy->extra_counters_fe,
928 &h1_stats_module);
929
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200930 LIST_APPEND(&mux_stopping_data[tid].list,
931 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100932 }
933 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200934 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100935 if (!t) {
936 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 +0100937 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100938 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100939
940 h1c->task = t;
941 t->process = h1_timeout_task;
942 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200943
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100944 t->expire = tick_add(now_ms, h1c->timeout);
945 }
946
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100947 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200948
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200949 if (h1c->flags & H1C_F_IS_BACK) {
950 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200951 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
952 goto fail;
953 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100954 else if (conn_ctx) {
955 /* Upgraded frontend connection (from TCP) */
956 struct conn_stream *cs = conn_ctx;
957
958 if (!h1c_frt_stream_new(h1c))
959 goto fail;
960
961 h1c->h1s->cs = cs;
962 cs->ctx = h1c->h1s;
963
964 /* Attach the CS but Not ready yet */
965 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
966 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
967 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
968 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100969
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200970 if (t) {
971 h1_set_idle_expiration(h1c);
972 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100973 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200974 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100975
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200976 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100977 if (b_data(&h1c->ibuf))
978 tasklet_wakeup(h1c->wait_event.tasklet);
979 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200980 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200981
Christopher Faulet60fa0512021-11-26 18:10:39 +0100982 HA_ATOMIC_INC(&h1c->px_counters->open_conns);
Christopher Faulet3bca28c2021-11-26 18:12:04 +0100983 HA_ATOMIC_INC(&h1c->px_counters->total_conns);
Christopher Faulet60fa0512021-11-26 18:10:39 +0100984
Christopher Faulet51dbc942018-09-13 09:05:15 +0200985 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200986 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200987 return 0;
988
989 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200990 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200991 if (h1c->wait_event.tasklet)
992 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200993 pool_free(pool_head_h1c, h1c);
994 fail_h1c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +0100995 if (!conn_is_back(conn))
996 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200997 conn->ctx = conn_ctx; // restore saved context
998 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200999 return -1;
1000}
1001
Christopher Faulet73c12072019-04-08 11:23:22 +02001002/* release function. This one should be called to free all resources allocated
1003 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +02001004 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001005static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001006{
Christopher Faulet61840e72019-04-15 09:33:32 +02001007 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001008
Christopher Faulet6b81df72019-10-01 22:08:43 +02001009 TRACE_POINT(H1_EV_H1C_END);
1010
Christopher Faulet51dbc942018-09-13 09:05:15 +02001011 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001012 /* The connection must be aattached to this mux to be released */
1013 if (h1c->conn && h1c->conn->ctx == h1c)
1014 conn = h1c->conn;
1015
Christopher Faulet6b81df72019-10-01 22:08:43 +02001016 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
1017
Christopher Faulet61840e72019-04-15 09:33:32 +02001018 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001019 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +02001020 /* Make sure we're no longer subscribed to anything */
1021 if (h1c->wait_event.events)
1022 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
1023 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +02001024 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001025 /* connection successfully upgraded to H2, this
1026 * mux was already released */
1027 return;
1028 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001029 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001030 sess_log(conn->owner); /* Log if the upgrade failed */
1031 }
1032
Olivier Houchard45c44372019-06-11 14:06:23 +02001033
Willy Tarreau2b718102021-04-21 07:32:39 +02001034 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001035 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001036
1037 h1_release_buf(h1c, &h1c->ibuf);
1038 h1_release_buf(h1c, &h1c->obuf);
1039
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001040 if (h1c->task) {
1041 h1c->task->context = NULL;
1042 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
1043 h1c->task = NULL;
1044 }
1045
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001046 if (h1c->wait_event.tasklet)
1047 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001048
Christopher Fauletf2824e62018-10-01 12:12:37 +02001049 h1s_destroy(h1c->h1s);
Christopher Faulete76b4f02021-10-27 15:42:13 +02001050 if (conn) {
1051 if (h1c->wait_event.events != 0)
1052 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
1053 &h1c->wait_event);
1054 h1_shutw_conn(conn);
1055 }
Christopher Faulet60fa0512021-11-26 18:10:39 +01001056
1057 HA_ATOMIC_DEC(&h1c->px_counters->open_conns);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001058 pool_free(pool_head_h1c, h1c);
1059 }
1060
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001061 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001062 if (!conn_is_back(conn))
1063 LIST_DEL_INIT(&conn->stopping_list);
1064
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001065 conn->mux = NULL;
1066 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001067 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001068
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001069 conn_stop_tracking(conn);
1070 conn_full_close(conn);
1071 if (conn->destroy_cb)
1072 conn->destroy_cb(conn);
1073 conn_free(conn);
1074 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001075}
1076
1077/******************************************************/
1078/* functions below are for the H1 protocol processing */
1079/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +02001080/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
1081 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +02001082 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001083static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001084{
Christopher Faulet570d1612018-11-26 11:13:57 +01001085 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001086
Christopher Faulet570d1612018-11-26 11:13:57 +01001087 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001088 (*(p + 5) > '1' ||
1089 (*(p + 5) == '1' && *(p + 7) >= '1')))
1090 h1m->flags |= H1_MF_VER_11;
1091}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001092
Christopher Faulet9768c262018-10-22 09:34:31 +02001093/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
1094 * greater or equal to 1.1
1095 */
Christopher Faulet570d1612018-11-26 11:13:57 +01001096static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +02001097{
Christopher Faulet570d1612018-11-26 11:13:57 +01001098 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001099
Christopher Faulet570d1612018-11-26 11:13:57 +01001100 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +02001101 (*(p + 5) > '1' ||
1102 (*(p + 5) == '1' && *(p + 7) >= '1')))
1103 h1m->flags |= H1_MF_VER_11;
1104}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001105
Christopher Fauletf2824e62018-10-01 12:12:37 +02001106/* Deduce the connection mode of the client connection, depending on the
1107 * configuration and the H1 message flags. This function is called twice, the
1108 * first time when the request is parsed and the second time when the response
1109 * is parsed.
1110 */
1111static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1112{
1113 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001114
1115 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001116 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001117 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001118 h1s->status == 101) {
1119 /* Either we've established an explicit tunnel, or we're
1120 * switching the protocol. In both cases, we're very unlikely to
1121 * understand the next protocols. We have to switch to tunnel
1122 * mode, so that we transfer the request and responses then let
1123 * this protocol pass unmodified. When we later implement
1124 * specific parsers for such protocols, we'll want to check the
1125 * Upgrade header which contains information about that protocol
1126 * for responses with status 101 (eg: see RFC2817 about TLS).
1127 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001128 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001129 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 +01001130 }
1131 else if (h1s->flags & H1S_F_WANT_KAL) {
1132 /* By default the client is in KAL mode. CLOSE mode mean
1133 * it is imposed by the client itself. So only change
1134 * KAL mode here. */
1135 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1136 /* no length known or explicit close => close */
1137 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001138 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 +01001139 }
1140 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1141 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001142 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001143 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001144 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 +01001145 }
1146 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001147 }
1148 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001149 /* Input direction: first pass */
1150 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1151 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001152 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001153 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 +01001154 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001155 }
1156
1157 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001158 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001159 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001160 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);
1161 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001162}
1163
1164/* Deduce the connection mode of the client connection, depending on the
1165 * configuration and the H1 message flags. This function is called twice, the
1166 * first time when the request is parsed and the second time when the response
1167 * is parsed.
1168 */
1169static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1170{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001171 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001172 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001173 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001174
Christopher Fauletf2824e62018-10-01 12:12:37 +02001175 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001176 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001177 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001178 h1s->status == 101) {
1179 /* Either we've established an explicit tunnel, or we're
1180 * switching the protocol. In both cases, we're very unlikely to
1181 * understand the next protocols. We have to switch to tunnel
1182 * mode, so that we transfer the request and responses then let
1183 * this protocol pass unmodified. When we later implement
1184 * specific parsers for such protocols, we'll want to check the
1185 * Upgrade header which contains information about that protocol
1186 * for responses with status 101 (eg: see RFC2817 about TLS).
1187 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001188 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001189 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 +01001190 }
1191 else if (h1s->flags & H1S_F_WANT_KAL) {
1192 /* By default the server is in KAL mode. CLOSE mode mean
1193 * it is imposed by haproxy itself. So only change KAL
1194 * mode here. */
1195 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1196 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1197 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1198 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001199 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 +01001200 }
1201 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001202 }
Christopher Faulet70033782018-12-05 13:50:11 +01001203 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001204 /* Output direction: first pass */
1205 if (h1m->flags & H1_MF_CONN_CLO) {
1206 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001207 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001208 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 +01001209 }
1210 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1211 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1212 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1213 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1214 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1215 /* no explicit keep-alive option httpclose/server-close => close */
1216 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001217 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 +01001218 }
Christopher Faulet70033782018-12-05 13:50:11 +01001219 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001220
1221 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001222 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001223 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001224 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);
1225 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001226}
1227
Christopher Fauletb992af02019-03-28 15:42:24 +01001228static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001229{
1230 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001231
1232 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1233 * token is found
1234 */
1235 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001236 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001237
1238 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001239 if (!(h1m->flags & H1_MF_VER_11)) {
1240 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 +01001241 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001242 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001243 }
1244 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001245 if (h1m->flags & H1_MF_VER_11) {
1246 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001247 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001248 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001249 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001250}
1251
Christopher Fauletb992af02019-03-28 15:42:24 +01001252static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001253{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001254 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1255 * token is found
1256 */
1257 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001258 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001259
1260 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001261 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001262 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1263 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 +01001264 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001265 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001266 }
1267 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001268 if (h1m->flags & H1_MF_VER_11) {
1269 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001270 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001271 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001272 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001273}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001274
Christopher Fauletb992af02019-03-28 15:42:24 +01001275static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001276{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001277 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001278 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001279 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001280 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001281}
1282
Christopher Fauletb992af02019-03-28 15:42:24 +01001283static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1284{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001285 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001286 h1_set_cli_conn_mode(h1s, h1m);
1287 else
1288 h1_set_srv_conn_mode(h1s, h1m);
1289
1290 if (!(h1m->flags & H1_MF_RESP))
1291 h1_update_req_conn_value(h1s, h1m, conn_val);
1292 else
1293 h1_update_res_conn_value(h1s, h1m, conn_val);
1294}
Christopher Faulete44769b2018-11-29 23:01:45 +01001295
Christopher Faulet98fbe952019-07-22 16:18:24 +02001296/* Try to adjust the case of the message header name using the global map
1297 * <hdrs_map>.
1298 */
1299static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1300{
1301 struct ebpt_node *node;
1302 struct h1_hdr_entry *entry;
1303
1304 /* No entry in the map, do nothing */
1305 if (eb_is_empty(&hdrs_map.map))
1306 return;
1307
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001308 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001309 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1310 return;
1311
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001312 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001313 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1314 return;
1315
1316 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1317 if (!node)
1318 return;
1319 entry = container_of(node, struct h1_hdr_entry, node);
1320 name->ptr = entry->name.ptr;
1321 name->len = entry->name.len;
1322}
1323
Christopher Faulete44769b2018-11-29 23:01:45 +01001324/* Append the description of what is present in error snapshot <es> into <out>.
1325 * The description must be small enough to always fit in a buffer. The output
1326 * buffer may be the trash so the trash must not be used inside this function.
1327 */
1328static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1329{
1330 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001331 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1332 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1333 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1334 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1335 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1336 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001337}
1338/*
1339 * Capture a bad request or response and archive it in the proxy's structure.
1340 * By default it tries to report the error position as h1m->err_pos. However if
1341 * this one is not set, it will then report h1m->next, which is the last known
1342 * parsing point. The function is able to deal with wrapping buffers. It always
1343 * displays buffers as a contiguous area starting at buf->p. The direction is
1344 * determined thanks to the h1m's flags.
1345 */
1346static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1347 struct h1m *h1m, struct buffer *buf)
1348{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001349 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001350 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001351 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001352 union error_snapshot_ctx ctx;
1353
Christopher Fauletf835dea2021-12-21 14:35:17 +01001354 if ((h1c->flags & H1C_F_ST_ATTACHED) && cs_strm(h1s->cs)) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001355 if (sess == NULL)
Christopher Faulet693b23b2022-02-28 09:09:05 +01001356 sess = __cs_strm(h1s->cs)->sess;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001357 if (!(h1m->flags & H1_MF_RESP))
Christopher Faulet693b23b2022-02-28 09:09:05 +01001358 other_end = __cs_strm(h1s->cs)->be;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001359 else
1360 other_end = sess->fe;
1361 } else
1362 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001363
1364 /* http-specific part now */
1365 ctx.h1.state = h1m->state;
1366 ctx.h1.c_flags = h1c->flags;
1367 ctx.h1.s_flags = h1s->flags;
1368 ctx.h1.m_flags = h1m->flags;
1369 ctx.h1.m_clen = h1m->curr_len;
1370 ctx.h1.m_blen = h1m->body_len;
1371
1372 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1373 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001374 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1375 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001376}
1377
Christopher Fauletadb22202018-12-12 10:32:09 +01001378/* Emit the chunksize followed by a CRLF in front of data of the buffer
1379 * <buf>. It goes backwards and starts with the byte before the buffer's
1380 * head. The caller is responsible for ensuring there is enough room left before
1381 * the buffer's head for the string.
1382 */
1383static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1384{
1385 char *beg, *end;
1386
1387 beg = end = b_head(buf);
1388 *--beg = '\n';
1389 *--beg = '\r';
1390 do {
1391 *--beg = hextab[chksz & 0xF];
1392 } while (chksz >>= 4);
1393 buf->head -= (end - beg);
1394 b_add(buf, end - beg);
1395}
1396
1397/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1398 * ensuring there is enough room left in the buffer for the string. */
1399static void h1_emit_chunk_crlf(struct buffer *buf)
1400{
1401 *(b_peek(buf, b_data(buf))) = '\r';
1402 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1403 b_add(buf, 2);
1404}
1405
Christopher Faulet129817b2018-09-20 16:14:40 +02001406/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001407 * Switch the stream to tunnel mode. This function must only be called on 2xx
1408 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001409 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001410static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001411{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001412 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001413
Christopher Faulet5be651d2021-01-22 15:28:03 +01001414 h1s->req.state = H1_MSG_TUNNEL;
1415 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001416
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001417 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001418 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001419
Christopher Faulet5be651d2021-01-22 15:28:03 +01001420 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 +01001421
Christopher Faulet10a86702021-04-07 14:18:11 +02001422 if (h1s->flags & H1S_F_RX_BLK) {
1423 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001424 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001425 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 +02001426 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001427 if (h1s->flags & H1S_F_TX_BLK) {
1428 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001429 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001430 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 +01001431 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001432}
1433
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001434/* Search for a websocket key header. The message should have been identified
1435 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001436 *
1437 * On the request side, if found the key is stored in the session. It might be
1438 * needed to calculate response key if the server side is using http/2.
1439 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001440 * On the response side, the key might be verified if haproxy has been
1441 * responsible for the generation of a key. This happens when a h2 client is
1442 * interfaced with a h1 server.
1443 *
1444 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001445 */
1446static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1447{
1448 struct htx_blk *blk;
1449 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001450 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001451 int ws_key_found = 0, idx;
1452
1453 idx = htx_get_head(htx); // returns the SL that we skip
1454 while ((idx = htx_get_next(htx, idx)) != -1) {
1455 blk = htx_get_blk(htx, idx);
1456 type = htx_get_blk_type(blk);
1457
1458 if (type == HTX_BLK_UNUSED)
1459 continue;
1460
1461 if (type != HTX_BLK_HDR)
1462 break;
1463
1464 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001465 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001466
Amaury Denoyellec1938232020-12-11 17:53:03 +01001467 /* Websocket key is base64 encoded of 16 bytes */
1468 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001469 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001470 /* Copy the key on request side
1471 * we might need it if the server is using h2 and does
1472 * not provide the response
1473 */
1474 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001475 ws_key_found = 1;
1476 break;
1477 }
1478 else if (isteqi(n, ist("sec-websocket-accept")) &&
1479 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001480 /* Need to verify the response key if the input was
1481 * generated by haproxy
1482 */
1483 if (h1s->ws_key[0]) {
1484 char key[29];
1485 h1_calculate_ws_output_key(h1s->ws_key, key);
1486 if (!isteqi(ist(key), v))
1487 break;
1488 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001489 ws_key_found = 1;
1490 break;
1491 }
1492 }
1493
1494 /* missing websocket key, reject the message */
1495 if (!ws_key_found) {
1496 htx->flags |= HTX_FL_PARSING_ERROR;
1497 return 0;
1498 }
1499
1500 return 1;
1501}
1502
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001503/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001504 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001505 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001506 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1507 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001508 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001509static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1510 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001511{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001512 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001513 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001514
Willy Tarreau022e5e52020-09-10 09:33:15 +02001515 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 +02001516
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001517 if (h1s->meth == HTTP_METH_CONNECT)
1518 h1m->flags |= H1_MF_METH_CONNECT;
1519 if (h1s->meth == HTTP_METH_HEAD)
1520 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001521
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001522 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001523 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001524 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 +02001525 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001526 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001527 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 +02001528 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1529 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001530 else if (ret == -2) {
1531 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);
1532 h1s->flags |= H1S_F_RX_CONGESTED;
1533 }
1534 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001535 goto end;
1536 }
1537
Christopher Faulete136bd12021-09-21 18:44:55 +02001538
1539 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1540 * payload if the c-l is not null or the the payload is chunk-encoded.
1541 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1542 * instead of a 400-Bad-Request.
1543 */
1544 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1545 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1546 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1547 h1s->flags |= H1S_F_PARSING_ERROR;
1548 htx->flags |= HTX_FL_PARSING_ERROR;
1549 h1s->h1c->errcode = 413;
1550 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);
1551 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1552 ret = 0;
1553 goto end;
1554 }
1555
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001556 /* Reject any message with an unknown transfer-encoding. In fact if any
1557 * encoding other than "chunked". A 422-Unprocessable-Content is
1558 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1559 * response.
1560 */
1561 if (h1m->flags & H1_MF_TE_OTHER) {
1562 h1s->flags |= H1S_F_PARSING_ERROR;
1563 htx->flags |= HTX_FL_PARSING_ERROR;
1564 if (!(h1m->flags & H1_MF_RESP))
1565 h1s->h1c->errcode = 422;
1566 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1567 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1568 ret = 0;
1569 goto end;
1570 }
1571
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001572 /* If websocket handshake, search for the websocket key */
1573 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1574 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1575 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1576 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001577 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001578 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 +01001579 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1580
1581 ret = 0;
1582 goto end;
1583 }
1584 }
1585
Christopher Faulet486498c2019-10-11 14:22:00 +02001586 if (h1m->err_pos >= 0) {
1587 /* Maybe we found an error during the parsing while we were
1588 * configured not to block on that, so we have to capture it
1589 * now.
1590 */
1591 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1592 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1593 }
1594
Christopher Faulet5696f542020-12-02 16:08:38 +01001595 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001596 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001597 if (h1s->meth == HTTP_METH_HEAD)
1598 h1s->flags |= H1S_F_BODYLESS_RESP;
1599 }
1600 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001601 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001602 if (h1s->status == 204 || h1s->status == 304)
1603 h1s->flags |= H1S_F_BODYLESS_RESP;
1604 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001605 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001606 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001607
Christopher Faulet129817b2018-09-20 16:14:40 +02001608 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001609 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 +02001610 return ret;
1611}
1612
1613/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001614 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001615 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1616 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001617 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001618static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1619 struct buffer *buf, size_t *ofs, size_t max,
1620 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001621{
Christopher Fauletde471a42021-02-01 16:37:28 +01001622 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001623
Willy Tarreau022e5e52020-09-10 09:33:15 +02001624 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 +02001625 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001626 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001627 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 +01001628 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001629 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001630 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 +02001631 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001632 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001633 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001634 }
1635
Christopher Faulet02a02532019-11-15 09:36:28 +01001636 *ofs += ret;
1637
1638 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001639 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1640 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);
1641 h1s->flags |= H1S_F_RX_CONGESTED;
1642 }
1643
Willy Tarreau022e5e52020-09-10 09:33:15 +02001644 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 +02001645 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001646}
1647
1648/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001649 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1650 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1651 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001652 * responsible to update the parser state <h1m>. If more room is requested,
1653 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001654 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001655static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1656 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001657{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001658 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001659
Willy Tarreau022e5e52020-09-10 09:33:15 +02001660 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 +02001661 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001662 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001663 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 +02001664 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001665 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001666 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 +02001667 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1668 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001669 else if (ret == -2) {
1670 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);
1671 h1s->flags |= H1S_F_RX_CONGESTED;
1672 }
1673 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001674 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001675 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001676
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001677 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001678
1679 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001680 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 +02001681 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001682}
1683
1684/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001685 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001686 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1687 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001688 *
1689 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001690 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001691static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001692{
Christopher Faulet539e0292018-11-19 10:40:09 +01001693 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001694 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001695 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001696 size_t data;
1697 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001698 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001699
Christopher Faulet539e0292018-11-19 10:40:09 +01001700 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001701 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001702
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001703 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001704 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001705
Christopher Faulet2eed8002020-12-07 11:26:13 +01001706 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001707 goto end;
1708
Christopher Faulet10a86702021-04-07 14:18:11 +02001709 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001710 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001711
Christopher Faulet46e058d2021-09-20 07:47:27 +02001712 /* Always remove congestion flags and try to process more input data */
1713 h1s->flags &= ~H1S_F_RX_CONGESTED;
1714
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001715 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001716 size_t used = htx_used_space(htx);
1717
Christopher Faulet129817b2018-09-20 16:14:40 +02001718 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001719 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001720 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001721 if (!ret)
1722 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001723
1724 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1725 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1726
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001727 if ((h1m->flags & H1_MF_RESP) &&
1728 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1729 h1m_init_res(&h1s->res);
1730 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001731 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001732 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001733 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001734 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001735 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001736 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001737 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001738 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001739
1740 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1741 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001742 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001743 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001744 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001745 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001746 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001747 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001748
Christopher Faulet76014fd2019-12-10 11:47:22 +01001749 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1750 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001751 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001752 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001753 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1754 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001755
Christopher Faulet5be651d2021-01-22 15:28:03 +01001756 if ((h1m->flags & H1_MF_RESP) &&
1757 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1758 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001759 else {
1760 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1761 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001762 h1s->flags |= H1S_F_RX_BLK;
1763 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001764 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001765 if (h1s->flags & H1S_F_TX_BLK) {
1766 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001767 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001768 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 +01001769 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001770 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001771 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001772 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001773 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001774 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001775 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001776 if (!ret)
1777 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001778
1779 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1780 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001781 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001782 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001783 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001784 break;
1785 }
1786
Christopher Faulet30db3d72019-05-17 15:35:33 +02001787 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001788 } 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 +01001789
Christopher Faulet129817b2018-09-20 16:14:40 +02001790
Christopher Faulet2eed8002020-12-07 11:26:13 +01001791 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001792 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 +02001793 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001794 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001795
Christopher Faulet539e0292018-11-19 10:40:09 +01001796 b_del(&h1c->ibuf, total);
1797
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001798 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001799 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1800
Christopher Faulet30db3d72019-05-17 15:35:33 +02001801 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001802 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001803 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001804 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 +01001805 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001806 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001807
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001808 if (!b_data(&h1c->ibuf))
1809 h1_release_buf(h1c, &h1c->ibuf);
1810
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001811 if (!(h1c->flags & H1C_F_ST_READY)) {
1812 /* The H1 connection is not ready. Most of time, there is no CS
1813 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1814 * cases, it is only possible on the client side.
1815 */
1816 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1817
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001818 if (h1m->state <= H1_MSG_LAST_LF) {
1819 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1820 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1821 goto end;
1822 }
1823
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001824 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1825 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1826 BUG_ON(h1s->cs);
1827 if (!h1s_new_cs(h1s, buf)) {
1828 h1c->flags |= H1C_F_ST_ERROR;
1829 goto err;
1830 }
1831 }
1832 else {
1833 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1834 BUG_ON(h1s->cs == NULL);
1835 if (!h1s_upgrade_cs(h1s, buf)) {
1836 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001837 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001838 goto err;
1839 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001840 }
1841 }
1842
1843 /* Here h1s->cs is always defined */
Christopher Fauletf5ce3202021-11-26 17:26:19 +01001844 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001845 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1846 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1847 }
1848 else {
1849 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1850 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1851 }
1852
Christopher Fauleta22782b2021-02-08 17:18:01 +01001853 /* Set EOI on conn-stream in DONE state iff:
1854 * - it is a response
1855 * - it is a request but no a protocol upgrade nor a CONNECT
1856 *
1857 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001858 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001859 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001860 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1861 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001862 h1s->cs->flags |= CS_FL_EOI;
1863
Christopher Fauletec4207c2021-04-08 18:34:30 +02001864 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001865 /* When Input data are pending for this message, notify upper layer that
1866 * the mux need more space in the HTX buffer to continue if :
1867 *
1868 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1869 * - Headers or trailers are pending to be copied.
1870 */
1871 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001872 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001873 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1874 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001875 else {
1876 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1877 if (h1s->flags & H1S_F_REOS) {
1878 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001879 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1880 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1881 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001882 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001883 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001884 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001885 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001886 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1887 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001888
Christopher Faulet10a86702021-04-07 14:18:11 +02001889 if (h1s->flags & H1S_F_TX_BLK) {
1890 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001891 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001892 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 +01001893 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001894 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001895 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001896
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001897 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001898 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001899 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001900
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001901 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001902 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001903 if (h1s->cs)
1904 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001905 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001906 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001907}
1908
Christopher Faulet129817b2018-09-20 16:14:40 +02001909/*
1910 * Process outgoing data. It parses data and transfer them from the channel buffer into
1911 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1912 * 0 if it couldn't proceed.
1913 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001914static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001915{
Christopher Faulet129817b2018-09-20 16:14:40 +02001916 struct h1s *h1s = h1c->h1s;
1917 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001918 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001919 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001920 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001921 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001922 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001923 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001924
Christopher Faulet94b2c762019-05-24 15:28:57 +02001925 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001926 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1927
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001928 if (htx_is_empty(chn_htx))
1929 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001930
Christopher Faulet10a86702021-04-07 14:18:11 +02001931 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001932 goto end;
1933
Christopher Faulet51dbc942018-09-13 09:05:15 +02001934 if (!h1_get_buf(h1c, &h1c->obuf)) {
1935 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001936 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 +02001937 goto end;
1938 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001939
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001940 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001941
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001942 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001943 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001944
Willy Tarreau3815b222018-12-11 19:50:43 +01001945 /* Perform some optimizations to reduce the number of buffer copies.
1946 * First, if the mux's buffer is empty and the htx area contains
1947 * exactly one data block of the same size as the requested count,
1948 * then it's possible to simply swap the caller's buffer with the
1949 * mux's output buffer and adjust offsets and length to match the
1950 * entire DATA HTX block in the middle. In this case we perform a
1951 * true zero-copy operation from end-to-end. This is the situation
1952 * that happens all the time with large files. Second, if this is not
1953 * possible, but the mux's output buffer is empty, we still have an
1954 * opportunity to avoid the copy to the intermediary buffer, by making
1955 * the intermediary buffer's area point to the output buffer's area.
1956 * In this case we want to skip the HTX header to make sure that copies
1957 * remain aligned and that this operation remains possible all the
1958 * time. This goes for headers, data blocks and any data extracted from
1959 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001960 */
1961 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001962 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001963 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001964 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001965 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001966 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001967 void *old_area;
1968
Christopher Faulet6b81df72019-10-01 22:08:43 +02001969 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 +01001970 if (h1m->state == H1_MSG_DATA) {
1971 if (h1m->flags & H1_MF_CLEN) {
1972 if (count > h1m->curr_len) {
1973 TRACE_ERROR("too much payload, more than announced",
1974 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1975 goto error;
1976 }
1977 h1m->curr_len -= count;
1978 }
1979 if (chn_htx->flags & HTX_FL_EOM) {
1980 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1981 last_data = 1;
1982 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001983 }
1984
Christopher Faulete5596bf2020-12-02 16:13:22 +01001985 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001986 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001987 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001988 h1c->obuf.data = count;
1989
1990 buf->area = old_area;
1991 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001992
Christopher Faulet6b81df72019-10-01 22:08:43 +02001993 chn_htx = (struct htx *)buf->area;
1994 htx_reset(chn_htx);
1995
Christopher Fauletadb22202018-12-12 10:32:09 +01001996 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001997 * size and eventually the last chunk. We have at least
1998 * the size of the struct htx to write the chunk
1999 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01002000 */
2001 if (h1m->flags & H1_MF_CHNK) {
2002 h1_emit_chunk_size(&h1c->obuf, count);
2003 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002004 if (last_data) {
2005 /* Emit the last chunk too at the buffer's end */
2006 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
2007 }
Christopher Fauletadb22202018-12-12 10:32:09 +01002008 }
2009
Christopher Faulet6b81df72019-10-01 22:08:43 +02002010 if (h1m->state == H1_MSG_DATA)
2011 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002012 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002013 else
2014 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002015 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002016
Christopher Faulete5596bf2020-12-02 16:13:22 +01002017 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002018 if (last_data) {
2019 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02002020 if (h1s->flags & H1S_F_RX_BLK) {
2021 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002022 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002023 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 +01002024 }
2025
2026 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2027 H1_EV_TX_DATA, h1c->conn, h1s);
2028 }
Willy Tarreau3815b222018-12-11 19:50:43 +01002029 goto out;
2030 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002031 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002032 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02002033 else
2034 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02002035
Christopher Fauletc2518a52019-06-25 21:41:02 +02002036 tmp.data = 0;
2037 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02002038 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01002039 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02002040 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01002041 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02002042 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02002043 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02002044
Christopher Fauletb2e84162018-12-06 11:39:49 +01002045 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002046 if (type != HTX_BLK_DATA && vlen > count)
2047 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002048
Christopher Faulet94b2c762019-05-24 15:28:57 +02002049 if (type == HTX_BLK_UNUSED)
2050 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02002051
Christopher Faulet94b2c762019-05-24 15:28:57 +02002052 switch (h1m->state) {
2053 case H1_MSG_RQBEFORE:
2054 if (type != HTX_BLK_REQ_SL)
2055 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002056 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 +02002057 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002058 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02002059 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002060 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002061 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002062 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002063 if (sl->flags & HTX_SL_F_BODYLESS)
2064 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02002065 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01002066 if (h1s->meth == HTTP_METH_HEAD)
2067 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02002068 if (h1s->flags & H1S_F_RX_BLK) {
2069 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002070 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002071 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 +02002072 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002073 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02002074
Christopher Faulet94b2c762019-05-24 15:28:57 +02002075 case H1_MSG_RPBEFORE:
2076 if (type != HTX_BLK_RES_SL)
2077 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002078 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 +02002079 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01002080 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02002081 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002082 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002083 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01002084 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02002085 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01002086 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02002087 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01002088 else if (h1s->status == 204 || h1s->status == 304)
2089 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02002090 h1m->state = H1_MSG_HDR_FIRST;
2091 break;
2092
Christopher Faulet94b2c762019-05-24 15:28:57 +02002093 case H1_MSG_HDR_FIRST:
2094 case H1_MSG_HDR_NAME:
2095 case H1_MSG_HDR_L2_LWS:
2096 if (type == HTX_BLK_EOH)
2097 goto last_lf;
2098 if (type != HTX_BLK_HDR)
2099 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002100
Christopher Faulet9768c262018-10-22 09:34:31 +02002101 h1m->state = H1_MSG_HDR_NAME;
2102 n = htx_get_blk_name(chn_htx, blk);
2103 v = htx_get_blk_value(chn_htx, blk);
2104
Christopher Faulet86d144c2019-08-14 16:32:25 +02002105 /* Skip all pseudo-headers */
2106 if (*(n.ptr) == ':')
2107 goto skip_hdr;
2108
Christopher Faulet91fcf212020-12-02 16:17:15 +01002109 if (isteq(n, ist("transfer-encoding"))) {
2110 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2111 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02002112 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01002113 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002114 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01002115 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
2116 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01002117 /* Only skip C-L header with invalid value. */
2118 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01002119 goto skip_hdr;
2120 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01002121 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01002122 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02002123 if (!v.len)
2124 goto skip_hdr;
2125 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01002126 else if (isteq(n, ist("upgrade"))) {
2127 h1_parse_upgrade_header(h1m, v);
2128 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002129 else if ((isteq(n, ist("sec-websocket-accept")) &&
2130 h1m->flags & H1_MF_RESP) ||
2131 (isteq(n, ist("sec-websocket-key")) &&
2132 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002133 ws_key_found = 1;
2134 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02002135 else if (isteq(n, ist("te"))) {
2136 /* "te" may only be sent with "trailers" if this value
2137 * is present, otherwise it must be deleted.
2138 */
2139 v = istist(v, ist("trailers"));
2140 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2141 goto skip_hdr;
2142 v = ist("trailers");
2143 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002144
Christopher Faulet67d58092019-10-02 10:51:38 +02002145 /* Skip header if same name is used to add the server name */
2146 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2147 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2148 goto skip_hdr;
2149
Christopher Faulet98fbe952019-07-22 16:18:24 +02002150 /* Try to adjust the case of the header name */
2151 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2152 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002153 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002154 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002155 skip_hdr:
2156 h1m->state = H1_MSG_HDR_L2_LWS;
2157 break;
2158
Christopher Faulet94b2c762019-05-24 15:28:57 +02002159 case H1_MSG_LAST_LF:
2160 if (type != HTX_BLK_EOH)
2161 goto error;
2162 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002163 h1m->state = H1_MSG_LAST_LF;
2164 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002165 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002166 /* If the reply comes from haproxy while the request is
2167 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002168 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2169 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2170 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002171 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2172 /* T-E + C-L: force close */
2173 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2174 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2175 }
2176 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2177 /* T-E + HTTP/1.0: force close */
2178 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2179 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2180 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002181
2182 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002183 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002184 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002185 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002186 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002187 /* Try to adjust the case of the header name */
2188 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2189 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002190 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002191 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002192 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002193 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002194 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002195
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002196 if ((h1s->meth != HTTP_METH_CONNECT &&
2197 (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 +01002198 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002199 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002200 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002201 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2202 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002203 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002204 n = ist("transfer-encoding");
2205 v = ist("chunked");
2206 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2207 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002208 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002209 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002210 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002211 h1m->flags |= H1_MF_CHNK;
2212 }
2213
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002214 /* Now add the server name to a header (if requested) */
2215 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2216 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2217 struct server *srv = objt_server(h1c->conn->target);
2218
2219 if (srv) {
2220 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2221 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002222
2223 /* Try to adjust the case of the header name */
2224 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2225 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002226 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002227 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002228 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002229 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002230 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2231 }
2232
Amaury Denoyellec1938232020-12-11 17:53:03 +01002233 /* Add websocket handshake key if needed */
2234 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2235 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002236 if (!(h1m->flags & H1_MF_RESP)) {
2237 /* generate a random websocket key
2238 * stored in the session to
2239 * verify it on the response side
2240 */
2241 h1_generate_random_ws_input_key(h1s->ws_key);
2242
2243 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2244 ist(h1s->ws_key),
2245 &tmp)) {
2246 goto full;
2247 }
2248 }
2249 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002250 /* add the response header key */
2251 char key[29];
2252 h1_calculate_ws_output_key(h1s->ws_key, key);
2253 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2254 ist(key),
2255 &tmp)) {
2256 goto full;
2257 }
2258 }
2259 }
2260
Christopher Faulet6b81df72019-10-01 22:08:43 +02002261 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2262 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2263
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002264 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002265 if (!chunk_memcat(&tmp, "\r\n", 2))
2266 goto full;
2267 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002268 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002269 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002270 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002271 if (!chunk_memcat(&tmp, "\r\n", 2))
2272 goto full;
2273 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002274 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002275 else if ((h1m->flags & H1_MF_RESP) &&
2276 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002277 if (!chunk_memcat(&tmp, "\r\n", 2))
2278 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002279 h1m_init_res(&h1s->res);
2280 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002281 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002282 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002283 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002284 else {
2285 /* EOM flag is set and it is the last block */
2286 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002287 if (h1m->flags & H1_MF_CHNK) {
2288 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2289 goto full;
2290 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002291 else if (!chunk_memcat(&tmp, "\r\n", 2))
2292 goto full;
2293 goto done;
2294 }
2295 else if (!chunk_memcat(&tmp, "\r\n", 2))
2296 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002297 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002298 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002299 break;
2300
Christopher Faulet94b2c762019-05-24 15:28:57 +02002301 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002302 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002303 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002304 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2305 goto trailers;
2306
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002307 /* If the message is not chunked, never
2308 * add the last chunk. */
2309 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002310 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002311 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 +02002312 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002313 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002314 else if (type != HTX_BLK_DATA)
2315 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002316
2317 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 +02002318
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002319 /* It is the last block of this message. After this one,
2320 * only tunneled data may be forwarded. */
2321 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2322 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2323 last_data = 1;
2324 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002325
2326 if (vlen > count) {
2327 /* Get the maximum amount of data we can xferred */
2328 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002329 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002330 }
2331
Christopher Faulet140f1a52021-11-26 16:37:55 +01002332 if (h1m->state == H1_MSG_DATA) {
2333 if (h1m->flags & H1_MF_CLEN) {
2334 if (vlen > h1m->curr_len) {
2335 TRACE_ERROR("too much payload, more than announced",
2336 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2337 goto error;
2338 }
Christopher Faulet140f1a52021-11-26 16:37:55 +01002339 }
2340 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2341 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2342 goto skip_data;
2343 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002344 }
2345
Christopher Fauletd9233f02019-10-14 14:01:24 +02002346 chklen = 0;
2347 if (h1m->flags & H1_MF_CHNK) {
2348 chklen = b_room(&tmp);
2349 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2350 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2351 (chklen < 1048576) ? 5 : 8);
2352 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002353
2354 /* If it is the end of the chunked message (without EOT), reserve the
2355 * last chunk size */
2356 if (last_data)
2357 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002358 }
2359
2360 if (vlen + chklen > b_room(&tmp)) {
2361 /* too large for the buffer */
2362 if (chklen >= b_room(&tmp))
2363 goto full;
2364 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002365 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002366 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002367 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002368 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002369 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002370 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002371
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002372 /* Space already reserved, so it must succeed */
2373 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2374 goto error;
2375
Christopher Faulet6b81df72019-10-01 22:08:43 +02002376 if (h1m->state == H1_MSG_DATA)
2377 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002378 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002379 else
2380 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002381 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002382
2383 skip_data:
Christopher Fauletb4eca0e2022-01-10 17:27:51 +01002384 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN))
2385 h1m->curr_len -= vlen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002386 if (last_data)
2387 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002388 break;
2389
Christopher Faulet94b2c762019-05-24 15:28:57 +02002390 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002391 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002392 goto error;
2393 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002394 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002395
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002396 /* If the message is not chunked, ignore
2397 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002398 if (!(h1m->flags & H1_MF_CHNK)) {
2399 if (type == HTX_BLK_EOT)
2400 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002401 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002402 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002403
Christopher Faulete5596bf2020-12-02 16:13:22 +01002404 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2405 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 +01002406 if (type == HTX_BLK_EOT)
2407 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002408 break;
2409 }
2410
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002411 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002412 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002413 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002414 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2415 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002416 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002417 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002418 else { // HTX_BLK_TLR
2419 n = htx_get_blk_name(chn_htx, blk);
2420 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002421
2422 /* Try to adjust the case of the header name */
2423 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2424 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002425 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002426 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002427 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002428 break;
2429
Christopher Faulet94b2c762019-05-24 15:28:57 +02002430 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002431 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2432 goto error; /* For now return an error */
2433
Christopher Faulet94b2c762019-05-24 15:28:57 +02002434 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002435 if (!(chn_htx->flags & HTX_FL_EOM)) {
2436 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2437 goto error; /* For now return an error */
2438 }
2439
Christopher Faulet94b2c762019-05-24 15:28:57 +02002440 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002441 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002442 h1s->flags |= H1S_F_TX_BLK;
2443 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002444 }
2445 else if ((h1m->flags & H1_MF_RESP) &&
2446 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2447 /* a successful reply to a CONNECT or a protocol switching is sent
2448 * to the client. Switch the response to tunnel mode.
2449 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002450 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002451 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 +01002452 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002453
Christopher Faulet10a86702021-04-07 14:18:11 +02002454 if (h1s->flags & H1S_F_RX_BLK) {
2455 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002456 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002457 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 +02002458 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002459
2460 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2461 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002462 break;
2463
Christopher Faulet9768c262018-10-22 09:34:31 +02002464 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002465 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002466 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002467 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002468 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002469 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002470 TRACE_ERROR("processing output error, set error on h1c/h1s",
2471 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 +01002472 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002473 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002474
2475 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002476 total += vlen;
2477 count -= vlen;
2478 if (sz == vlen)
2479 blk = htx_remove_blk(chn_htx, blk);
2480 else {
2481 htx_cut_data_blk(chn_htx, blk, vlen);
2482 break;
2483 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002484 }
2485
Christopher Faulet9768c262018-10-22 09:34:31 +02002486 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002487 /* when the output buffer is empty, tmp shares the same area so that we
2488 * only have to update pointers and lengths.
2489 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002490 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2491 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002492 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002493 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002494
Willy Tarreau3815b222018-12-11 19:50:43 +01002495 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002496 out:
2497 if (!buf_room_for_htx_data(&h1c->obuf)) {
2498 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002499 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002500 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002501 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002502 /* Both the request and the response reached the DONE state. So set EOI
2503 * flag on the conn-stream. Most of time, the flag will already be set,
2504 * except for protocol upgrades. Report an error if data remains blocked
2505 * in the output buffer.
2506 */
2507 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2508 if (!htx_is_empty(chn_htx)) {
2509 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002510 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 +01002511 }
2512 h1s->cs->flags |= CS_FL_EOI;
2513 }
2514
Christopher Faulet6b81df72019-10-01 22:08:43 +02002515 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002516 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002517
2518 full:
2519 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2520 h1c->flags |= H1C_F_OUT_FULL;
2521 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002522}
2523
Christopher Faulet51dbc942018-09-13 09:05:15 +02002524/*********************************************************/
2525/* functions below are I/O callbacks from the connection */
2526/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002527static void h1_wake_stream_for_recv(struct h1s *h1s)
2528{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002529 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002530 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002531 tasklet_wakeup(h1s->subs->tasklet);
2532 h1s->subs->events &= ~SUB_RETRY_RECV;
2533 if (!h1s->subs->events)
2534 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002535 }
2536}
2537static void h1_wake_stream_for_send(struct h1s *h1s)
2538{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002539 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002540 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002541 tasklet_wakeup(h1s->subs->tasklet);
2542 h1s->subs->events &= ~SUB_RETRY_SEND;
2543 if (!h1s->subs->events)
2544 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002545 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002546}
2547
Christopher Fauletad4daf62021-01-21 17:49:01 +01002548/* alerts the data layer following this sequence :
2549 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2550 * - if its subscribed to send, then it's woken up for send
2551 * - if it was subscribed to neither, its ->wake() callback is called
2552 */
2553static void h1_alert(struct h1s *h1s)
2554{
2555 if (h1s->subs) {
2556 h1_wake_stream_for_recv(h1s);
2557 h1_wake_stream_for_send(h1s);
2558 }
2559 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2560 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2561 h1s->cs->data_cb->wake(h1s->cs);
2562 }
2563}
2564
Christopher Fauletc18fc232020-10-06 17:41:36 +02002565/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2566 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2567 * retryable errors (allocation error or buffer full). On success, the error is
2568 * copied in the output buffer.
2569*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002570static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002571{
2572 int rc = http_get_status_idx(h1c->errcode);
2573 int ret = 0;
2574
2575 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2576
2577 /* Verify if the error is mapped on /dev/null or any empty file */
2578 /// XXX: do a function !
2579 if (h1c->px->replies[rc] &&
2580 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2581 h1c->px->replies[rc]->body.errmsg &&
2582 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2583 /* Empty error, so claim a success */
2584 ret = 1;
2585 goto out;
2586 }
2587
2588 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2589 h1c->flags |= H1C_F_ERR_PENDING;
2590 goto out;
2591 }
2592
2593 if (!h1_get_buf(h1c, &h1c->obuf)) {
2594 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2595 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2596 goto out;
2597 }
2598 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2599 if (unlikely(ret <= 0)) {
2600 if (!ret) {
2601 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2602 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2603 goto out;
2604 }
2605 else {
2606 /* we cannot report this error, so claim a success */
2607 ret = 1;
2608 }
2609 }
2610 h1c->flags &= ~H1C_F_ERR_PENDING;
2611 out:
2612 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2613 return ret;
2614}
2615
2616/* Try to send a 500 internal error. It relies on h1_send_error to send the
2617 * error. This function takes care of incrementing stats and tracked counters.
2618 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002619static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002620{
2621 struct session *sess = h1c->conn->owner;
2622 int ret = 1;
2623
2624 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002625 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002626 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2627 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002628 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002629 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002630
2631 h1c->errcode = 500;
2632 ret = h1_send_error(h1c);
2633 sess_log(sess);
2634 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002635}
2636
Christopher Fauletb3230f72021-09-21 18:38:20 +02002637/* Try to send an error because of a parsing error. By default a 400 bad request
2638 * error is returned. But the status code may be specified by setting
2639 * h1c->errcode. It relies on h1_send_error to send the error. This function
2640 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002641 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002642static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002643{
2644 struct session *sess = h1c->conn->owner;
2645 int ret = 1;
2646
2647 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2648 goto end;
2649
2650 session_inc_http_req_ctr(sess);
2651 session_inc_http_err_ctr(sess);
2652 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002653 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2654 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002655 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002656 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002657
Christopher Fauletb3230f72021-09-21 18:38:20 +02002658 if (!h1c->errcode)
2659 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002660 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002661 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2662 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002663
2664 end:
2665 return ret;
2666}
2667
Christopher Faulet2eed8002020-12-07 11:26:13 +01002668/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2669 * the error. This function takes care of incrementing stats and tracked
2670 * counters.
2671 */
2672static int h1_handle_not_impl_err(struct h1c *h1c)
2673{
2674 struct session *sess = h1c->conn->owner;
2675 int ret = 1;
2676
2677 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2678 goto end;
2679
2680 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002681 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002682 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2683 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002684 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002685 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002686
2687 h1c->errcode = 501;
2688 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002689 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2690 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002691
2692 end:
2693 return ret;
2694}
2695
Christopher Fauletc18fc232020-10-06 17:41:36 +02002696/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2697 * error. This function takes care of incrementing stats and tracked counters.
2698 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002699static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002700{
2701 struct session *sess = h1c->conn->owner;
2702 int ret = 1;
2703
2704 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2705 goto end;
2706
2707 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002708 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002709 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2710 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002711 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002712 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002713
2714 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002715 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2716 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002717 sess_log(sess);
2718 end:
2719 return ret;
2720}
2721
2722
Christopher Faulet51dbc942018-09-13 09:05:15 +02002723/*
2724 * Attempt to read data, and subscribe if none available
2725 */
2726static int h1_recv(struct h1c *h1c)
2727{
2728 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002729 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002730 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002731
Christopher Faulet6b81df72019-10-01 22:08:43 +02002732 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2733
2734 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2735 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002736 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002737 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002738
Christopher Fauletae635762020-09-21 11:47:16 +02002739 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2740 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002741 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002742 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002743
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002744 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2745 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002746 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002747 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002748 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002749
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002750 /*
2751 * If we only have a small amount of data, realign it,
2752 * it's probably cheaper than doing 2 recv() calls.
2753 */
2754 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002755 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002756
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002757 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002758 if (!h1c->h1s ||
2759 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2760 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002761 flags |= CO_RFL_READ_ONCE;
2762
Willy Tarreau45f2b892018-12-05 07:59:27 +01002763 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002764 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002765 if (h1c->flags & H1C_F_IN_FULL) {
2766 h1c->flags &= ~H1C_F_IN_FULL;
2767 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2768 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002769
2770 if (!b_data(&h1c->ibuf)) {
2771 /* try to pre-align the buffer like the rxbufs will be
2772 * to optimize memory copies.
2773 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002774 h1c->ibuf.head = sizeof(struct htx);
2775 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002776 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet41951ab2021-11-26 18:12:51 +01002777 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002778 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002779 if (max && !ret && h1_recv_allowed(h1c)) {
2780 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2781 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002782 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002783 else {
2784 h1_wake_stream_for_recv(h1c->h1s);
2785 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002786 }
2787
Christopher Faulet51dbc942018-09-13 09:05:15 +02002788 if (!b_data(&h1c->ibuf))
2789 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002790 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002791 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002792 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2793 }
2794
2795 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002796 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002797}
2798
2799
2800/*
2801 * Try to send data if possible
2802 */
2803static int h1_send(struct h1c *h1c)
2804{
2805 struct connection *conn = h1c->conn;
2806 unsigned int flags = 0;
2807 size_t ret;
2808 int sent = 0;
2809
Christopher Faulet6b81df72019-10-01 22:08:43 +02002810 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2811
2812 if (conn->flags & CO_FL_ERROR) {
2813 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002814 b_reset(&h1c->obuf);
2815 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002816 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002817
2818 if (!b_data(&h1c->obuf))
2819 goto end;
2820
Christopher Faulet46230362019-10-17 16:04:20 +02002821 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002822 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002823 if (h1c->flags & H1C_F_CO_STREAMER)
2824 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002825
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002826 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002827 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002828 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002829 if (h1c->flags & H1C_F_OUT_FULL) {
2830 h1c->flags &= ~H1C_F_OUT_FULL;
2831 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2832 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01002833 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002834 b_del(&h1c->obuf, ret);
2835 sent = 1;
2836 }
2837
Christopher Faulet145aa472018-12-06 10:56:20 +01002838 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002839 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002840 /* error or output closed, nothing to send, clear the buffer to release it */
2841 b_reset(&h1c->obuf);
2842 }
2843
Christopher Faulet51dbc942018-09-13 09:05:15 +02002844 end:
Christopher Fauletc17c31c2022-02-01 18:25:06 +01002845 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002846 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002847
Christopher Faulet51dbc942018-09-13 09:05:15 +02002848 /* We're done, no more to send */
2849 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002850 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002851 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002852 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002853 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002854 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002855 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002856 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002857 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2858 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002859 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002860 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002861
Christopher Faulet6b81df72019-10-01 22:08:43 +02002862 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002863 return sent;
2864}
2865
Christopher Faulet51dbc942018-09-13 09:05:15 +02002866/* callback called on any event by the connection handler.
2867 * It applies changes and returns zero, or < 0 if it wants immediate
2868 * destruction of the connection.
2869 */
2870static int h1_process(struct h1c * h1c)
2871{
2872 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002873 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002874
Christopher Faulet6b81df72019-10-01 22:08:43 +02002875 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2876
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002877 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002878 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002879 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2880 !(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 +02002881 struct buffer *buf;
2882 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002883
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002884 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2885 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002886 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002887
2888 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002889 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002890 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2891 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002892 /* Try to match H2 preface before parsing the request headers. */
2893 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2894 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002895 if (h1c->flags & H1C_F_ST_ATTACHED) {
2896 /* Force the REOS here to be sure to release the CS.
2897 Here ATTACHED implies !READY, and h1s defined
2898 */
2899 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2900 h1s->flags |= H1S_F_REOS;
2901 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002902 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002903 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002904 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002905 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002906
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002907 /* Create the H1 stream if not already there */
2908 if (!h1s) {
2909 h1s = h1c_frt_stream_new(h1c);
2910 if (!h1s) {
2911 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002912 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002913 goto no_parsing;
2914 }
2915 }
2916
2917 if (h1s->sess->t_idle == -1)
2918 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2919
2920 /* Get the stream rxbuf */
2921 buf = h1_get_buf(h1c, &h1s->rxbuf);
2922 if (!buf) {
2923 h1c->flags |= H1C_F_IN_SALLOC;
2924 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2925 return 0;
2926 }
2927
2928 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002929 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002930 h1_release_buf(h1c, &h1s->rxbuf);
2931 h1_set_idle_expiration(h1c);
2932
2933 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002934 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002935 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002936 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002937 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002938 }
2939 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002940 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002941 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002942 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002943 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002944 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2945 h1_handle_not_impl_err(h1c);
2946 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002947 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002948 }
Christopher Fauletae635762020-09-21 11:47:16 +02002949 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002950 h1_send(h1c);
2951
Christopher Faulet75308302021-11-15 14:51:37 +01002952 /* H1 connection must be released ASAP if:
2953 * - an error occurred on the connection or the H1C or
2954 * - a read0 was received or
2955 * - a silent shutdown was emitted and all outgoing data sent
2956 */
2957 if ((conn->flags & CO_FL_ERROR) ||
2958 conn_xprt_read0_pending(conn) ||
2959 (h1c->flags & H1C_F_ST_ERROR) ||
2960 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002961 if (!(h1c->flags & H1C_F_ST_READY)) {
2962 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002963 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet75308302021-11-15 14:51:37 +01002964 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002965 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002966 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002967 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002968 }
2969
2970 /* Handle pending error, if any (only possible on frontend connection) */
2971 if (h1c->flags & H1C_F_ERR_PENDING) {
2972 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2973 if (h1_send_error(h1c))
2974 h1_send(h1c);
2975 }
Christopher Fauletae635762020-09-21 11:47:16 +02002976
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002977 /* If there is some pending outgoing data or error, just wait */
2978 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2979 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002980
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002981 /* Otherwise we can release the H1 connection */
2982 goto release;
2983 }
2984 else {
2985 /* Here there is still a H1 stream with a conn-stream.
2986 * Report the connection state at the stream level
2987 */
2988 if (conn_xprt_read0_pending(conn)) {
2989 h1s->flags |= H1S_F_REOS;
2990 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2991 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002992 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002993 h1s->cs->flags |= CS_FL_ERROR;
2994 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002995 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002996 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002997 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002998
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002999 if (!b_data(&h1c->ibuf))
3000 h1_release_buf(h1c, &h1c->ibuf);
3001
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003002 /* Check if a soft-stop is in progress.
3003 * Release idling front connection if this is the case.
3004 */
3005 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003006 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
William Dauchya9dd9012022-01-05 22:53:24 +01003007 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
3008 h1c->flags & H1C_F_WAIT_NEXT_REQ)
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02003009 goto release;
3010 }
3011 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003012
3013 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
3014 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
3015 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003016 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003017
Christopher Faulet47365272018-10-31 17:40:50 +01003018 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02003019 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003020 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003021 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01003022
3023 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003024 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003025 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003026 * attached CS first. Here, the H1C must not be READY */
3027 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
3028
3029 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
3030 h1s->cs->flags |= CS_FL_EOS;
3031 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
3032 h1s->cs->flags |= CS_FL_ERROR;
3033 h1_alert(h1s);
3034 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3035 }
3036 else {
3037 h1_release(h1c);
3038 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
3039 }
Christopher Faulet539e0292018-11-19 10:40:09 +01003040 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003041}
3042
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003043struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003044{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003045 struct connection *conn;
3046 struct tasklet *tl = (struct tasklet *)t;
3047 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003048 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003049 int ret = 0;
3050
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003051 if (state & TASK_F_USR1) {
3052 /* the tasklet was idling on an idle connection, it might have
3053 * been stolen, let's be careful!
3054 */
3055 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3056 if (tl->context == NULL) {
3057 /* The connection has been taken over by another thread,
3058 * we're no longer responsible for it, so just free the
3059 * tasklet, and do nothing.
3060 */
3061 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3062 tasklet_free(tl);
3063 return NULL;
3064 }
3065 conn = h1c->conn;
3066 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003067
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003068 /* Remove the connection from the list, to be sure nobody attempts
3069 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003070 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003071 conn_in_list = conn->flags & CO_FL_LIST_MASK;
3072 if (conn_in_list)
3073 conn_delete_from_tree(&conn->hash_node->node);
3074
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003075 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003076 } else {
3077 /* we're certain the connection was not in an idle list */
3078 conn = h1c->conn;
3079 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
3080 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003081 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003082
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003083 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003084 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003085 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02003086 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003087 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003088 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01003089
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003090 /* If we were in an idle list, we want to add it back into it,
3091 * unless h1_process() returned -1, which mean it has destroyed
3092 * the connection (testing !ret is enough, if h1_process() wasn't
3093 * called then ret will be 0 anyway.
3094 */
Willy Tarreau74163142021-03-13 11:30:19 +01003095 if (ret < 0)
3096 t = NULL;
3097
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003098 if (!ret && conn_in_list) {
3099 struct server *srv = objt_server(conn->target);
3100
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003101 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003102 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003103 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003104 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003105 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003106 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003107 }
Willy Tarreau74163142021-03-13 11:30:19 +01003108 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003109}
3110
Christopher Faulet51dbc942018-09-13 09:05:15 +02003111static int h1_wake(struct connection *conn)
3112{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003113 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01003114 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003115
Christopher Faulet6b81df72019-10-01 22:08:43 +02003116 TRACE_POINT(H1_EV_H1C_WAKE, conn);
3117
Christopher Faulet539e0292018-11-19 10:40:09 +01003118 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01003119 ret = h1_process(h1c);
3120 if (ret == 0) {
3121 struct h1s *h1s = h1c->h1s;
3122
Christopher Fauletad4daf62021-01-21 17:49:01 +01003123 if (h1c->flags & H1C_F_ST_ATTACHED)
3124 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01003125 }
3126 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003127}
3128
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003129/* Connection timeout management. The principle is that if there's no receipt
3130 * nor sending for a certain amount of time, the connection is closed.
3131 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003132struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003133{
3134 struct h1c *h1c = context;
3135 int expired = tick_is_expired(t->expire, now_ms);
3136
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003137 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003138
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003139 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003140 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003141 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003142
3143 /* Somebody already stole the connection from us, so we should not
3144 * free it, we just have to free the task.
3145 */
3146 if (!t->context) {
3147 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003148 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003149 goto do_leave;
3150 }
3151
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003152 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003153 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003154 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003155 return t;
3156 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003157
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003158 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003159 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003160 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003161 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003162 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003163 t->expire = TICK_ETERNITY;
3164 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3165 return t;
3166 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003167
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003168 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003169 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3170 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003171 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003172 if (h1_handle_req_tout(h1c))
3173 h1_send(h1c);
3174 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3175 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003176 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003177 return t;
3178 }
3179 }
3180
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003181 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003182 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003183 * attached CS first. Here, the H1C must not be READY */
3184 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3185 h1_alert(h1c->h1s);
3186 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003187 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003188 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3189 return t;
3190 }
3191
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003192 /* We're about to destroy the connection, so make sure nobody attempts
3193 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003194 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003195 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003196 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003197
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003198 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003199 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003200
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003201 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003202 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003203
3204 if (!h1c) {
3205 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003206 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003207 return NULL;
3208 }
3209
3210 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003211 h1_release(h1c);
3212 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003213 return NULL;
3214}
3215
Christopher Faulet51dbc942018-09-13 09:05:15 +02003216/*******************************************/
3217/* functions below are used by the streams */
3218/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003219
Christopher Faulet51dbc942018-09-13 09:05:15 +02003220/*
3221 * Attach a new stream to a connection
3222 * (Used for outgoing connections)
3223 */
Christopher Faulete00ad352021-12-16 14:44:31 +01003224static int h1_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003225{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003226 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003227 struct h1s *h1s;
3228
Christopher Faulet6b81df72019-10-01 22:08:43 +02003229 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003230 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003231 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3232 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003233 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003234
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003235 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003236 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003237 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3238 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003239 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003240
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003241 /* the connection is not idle anymore, let's mark this */
3242 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003243 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003244
Christopher Faulet6b81df72019-10-01 22:08:43 +02003245 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulete00ad352021-12-16 14:44:31 +01003246 return 0;
Christopher Faulet26a26432021-01-27 11:27:50 +01003247 err:
Christopher Faulet26a26432021-01-27 11:27:50 +01003248 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 +01003249 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003250}
3251
3252/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3253 * this mux, it's easy as we can only store a single conn_stream.
3254 */
3255static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3256{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003257 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003258 struct h1s *h1s = h1c->h1s;
3259
3260 if (h1s)
3261 return h1s->cs;
3262
3263 return NULL;
3264}
3265
Christopher Faulet73c12072019-04-08 11:23:22 +02003266static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003267{
Christopher Faulet73c12072019-04-08 11:23:22 +02003268 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003269
Christopher Faulet6b81df72019-10-01 22:08:43 +02003270 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003271 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003272 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003273}
3274
3275/*
3276 * Detach the stream from the connection and possibly release the connection.
3277 */
3278static void h1_detach(struct conn_stream *cs)
3279{
3280 struct h1s *h1s = cs->ctx;
3281 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003282 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003283 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003284
Christopher Faulet6b81df72019-10-01 22:08:43 +02003285 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3286
Christopher Faulet51dbc942018-09-13 09:05:15 +02003287 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003288 if (!h1s) {
3289 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003290 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003291 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003292
Olivier Houchardf502aca2018-12-14 19:42:40 +01003293 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003294 h1c = h1s->h1c;
3295 h1s->cs = NULL;
3296
Christopher Faulet42849b02020-10-05 11:35:17 +02003297 sess->accept_date = date;
3298 sess->tv_accept = now;
3299 sess->t_handshake = 0;
3300 sess->t_idle = -1;
3301
Olivier Houchard8a786902018-12-15 16:05:40 +01003302 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3303 h1s_destroy(h1s);
3304
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003305 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 +02003306 /* If there are any excess server data in the input buffer,
3307 * release it and close the connection ASAP (some data may
3308 * remain in the output buffer). This happens if a server sends
3309 * invalid responses. So in such case, we don't want to reuse
3310 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003311 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003312 if (b_data(&h1c->ibuf)) {
3313 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003314 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003315 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003316 goto release;
3317 }
Christopher Faulet03627242019-07-19 11:34:08 +02003318
Christopher Faulet08016ab2020-07-01 16:10:06 +02003319 if (h1c->conn->flags & CO_FL_PRIVATE) {
3320 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003321 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3322 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003323 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003324 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003325 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003326 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003327 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003328 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003329 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3330 goto end;
3331 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003332 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003333 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003334 if (h1c->conn->owner == sess)
3335 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003336
3337 /* mark that the tasklet may lose its context to another thread and
3338 * that the handler needs to check it under the idle conns lock.
3339 */
3340 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003341 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003342 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3343
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003344 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003345 /* The server doesn't want it, let's kill the connection right away */
3346 h1c->conn->mux->destroy(h1c);
3347 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3348 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003349 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003350 /* At this point, the connection has been added to the
3351 * server idle list, so another thread may already have
3352 * hijacked it, so we can't do anything with it.
3353 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003354 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003355 }
3356 }
3357
Christopher Fauletf1204b82019-07-19 14:51:06 +02003358 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003359 /* 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 +01003360 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003361 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003362 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003363 !h1c->conn->owner) {
3364 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003365 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003366 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003367 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003368 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003369 /* If we have a new request, process it immediately or
3370 * subscribe for reads waiting for new data
3371 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003372 if (unlikely(b_data(&h1c->ibuf))) {
3373 if (h1_process(h1c) == -1)
3374 goto end;
3375 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003376 else
3377 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3378 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003379 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003380 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003381 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003382 end:
3383 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003384}
3385
3386
3387static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3388{
3389 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003390 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003391
3392 if (!h1s)
3393 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003394 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003395
Christopher Faulet99293b02021-11-10 10:30:15 +01003396 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003397
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003398 if (cs->flags & CS_FL_SHR)
3399 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003400 if (cs->flags & CS_FL_KILL_CONN) {
3401 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3402 goto do_shutr;
3403 }
3404 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3405 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003406 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003407 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003408
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003409 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3410 /* Here attached is implicit because there is CS */
3411 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3412 goto end;
3413 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003414 if (h1s->flags & H1S_F_WANT_KAL) {
3415 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003416 goto end;
3417 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003418
Christopher Faulet7f366362019-04-08 10:51:20 +02003419 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003420 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3421 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003422 goto end;
Christopher Faulet897d6122021-12-17 17:28:35 +01003423
3424 if (conn_xprt_ready(h1c->conn) && h1c->conn->xprt->shutr)
3425 h1c->conn->xprt->shutr(h1c->conn, h1c->conn->xprt_ctx, (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003426 end:
3427 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003428}
3429
3430static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3431{
3432 struct h1s *h1s = cs->ctx;
3433 struct h1c *h1c;
3434
3435 if (!h1s)
3436 return;
3437 h1c = h1s->h1c;
3438
Christopher Faulet99293b02021-11-10 10:30:15 +01003439 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003440
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003441 if (cs->flags & CS_FL_SHW)
3442 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003443 if (cs->flags & CS_FL_KILL_CONN) {
3444 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003445 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003446 }
3447 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3448 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3449 goto do_shutw;
3450 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003451
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003452 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3453 /* Here attached is implicit because there is CS */
3454 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3455 goto end;
3456 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003457 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3458 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003459 goto end;
3460 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003461
Christopher Faulet7f366362019-04-08 10:51:20 +02003462 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003463 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauleta85c5222021-10-27 15:36:38 +02003464 if (mode != CS_SHW_NORMAL)
3465 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3466
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003467 if (!b_data(&h1c->obuf))
Christopher Faulet897d6122021-12-17 17:28:35 +01003468 h1_shutw_conn(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003469 end:
3470 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003471}
3472
Christopher Fauleta85c5222021-10-27 15:36:38 +02003473static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003474{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003475 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003476
Willy Tarreau62592ad2021-03-26 09:09:42 +01003477 if (conn->flags & CO_FL_SOCK_WR_SH)
3478 return;
3479
Christopher Fauleta85c5222021-10-27 15:36:38 +02003480 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003481 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003482 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3483 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003484}
3485
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003486/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3487 * The <es> pointer is not allowed to differ from the one passed to the
3488 * subscribe() call. It always returns zero.
3489 */
3490static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003491{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003492 struct h1s *h1s = cs->ctx;
3493
3494 if (!h1s)
3495 return 0;
3496
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003497 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003498 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003499
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003500 es->events &= ~event_type;
3501 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003502 h1s->subs = NULL;
3503
3504 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003505 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003506
3507 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003508 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003509
Christopher Faulet51dbc942018-09-13 09:05:15 +02003510 return 0;
3511}
3512
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003513/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3514 * event subscriber <es> is not allowed to change from a previous call as long
3515 * as at least one event is still subscribed. The <event_type> must only be a
3516 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3517 * the conn_stream <cs> was already detached, in which case it will return -1.
3518 */
3519static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003520{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003521 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003522 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003523
3524 if (!h1s)
3525 return -1;
3526
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003527 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003528 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003529
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003530 es->events |= event_type;
3531 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003532
3533 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003534 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003535
3536
Christopher Faulet6b81df72019-10-01 22:08:43 +02003537 if (event_type & SUB_RETRY_SEND) {
3538 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003539 /*
3540 * If the conn_stream attempt to subscribe, and the
3541 * mux isn't subscribed to the connection, then it
3542 * probably means the connection wasn't established
3543 * yet, so we have to subscribe.
3544 */
3545 h1c = h1s->h1c;
3546 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3547 h1c->conn->xprt->subscribe(h1c->conn,
3548 h1c->conn->xprt_ctx,
3549 SUB_RETRY_SEND,
3550 &h1c->wait_event);
3551 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003552 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003553}
3554
Christopher Faulet564e39c2021-09-21 15:50:55 +02003555/* Called from the upper layer, to receive data.
3556 *
3557 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3558 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3559 * means the caller wants to flush input data (from the mux buffer and the
3560 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3561 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3562 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3563 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3564 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3565 * copy as much data as possible.
3566 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003567static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3568{
3569 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003570 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003571 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003572 size_t ret = 0;
3573
Willy Tarreau022e5e52020-09-10 09:33:15 +02003574 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003575
3576 /* Do nothing for now if not READY */
3577 if (!(h1c->flags & H1C_F_ST_READY)) {
3578 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3579 goto end;
3580 }
3581
Christopher Faulet539e0292018-11-19 10:40:09 +01003582 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003583 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003584 else
3585 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003586
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003587 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3588 h1c->flags |= H1C_F_WANT_SPLICE;
3589 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 +02003590 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003591 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003592 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 +01003593 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003594 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003595
3596 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003597 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003598 return ret;
3599}
3600
3601
3602/* Called from the upper layer, to send data */
3603static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3604{
3605 struct h1s *h1s = cs->ctx;
3606 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003607 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003608
3609 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003610 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003611 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003612
Willy Tarreau022e5e52020-09-10 09:33:15 +02003613 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003614
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003615 /* If we're not connected yet, or we're waiting for a handshake, stop
3616 * now, as we don't want to remove everything from the channel buffer
3617 * before we're sure we can send it.
3618 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003619 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003620 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003621 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003622 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003623
Christopher Fauletdea24742021-01-22 15:12:30 +01003624 if (h1c->flags & H1C_F_ST_ERROR) {
3625 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003626 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 +01003627 return 0;
3628 }
3629
Christopher Faulet46230362019-10-17 16:04:20 +02003630 /* Inherit some flags from the upper layer */
3631 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3632 if (flags & CO_SFL_MSG_MORE)
3633 h1c->flags |= H1C_F_CO_MSG_MORE;
3634 if (flags & CO_SFL_STREAMER)
3635 h1c->flags |= H1C_F_CO_STREAMER;
3636
Christopher Fauletc31872f2019-06-04 22:09:36 +02003637 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003638 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003639
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003640 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003641 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003642 else
3643 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003644
3645 if ((count - ret) > 0)
3646 h1c->flags |= H1C_F_CO_MSG_MORE;
3647
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003648 if (!ret)
3649 break;
3650 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003651 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003652 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003653 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003654 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003655
3656 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003657 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003658 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 +01003659 }
3660
Christopher Faulet7a145d62020-08-05 11:31:16 +02003661 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003662 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003663 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003664}
3665
Willy Tarreaue5733232019-05-22 19:24:06 +02003666#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003667/* Send and get, using splicing */
3668static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3669{
3670 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003671 struct h1c *h1c = h1s->h1c;
3672 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003673 int ret = 0;
3674
Christopher Faulet897d6122021-12-17 17:28:35 +01003675 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003676
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003677 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003678 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003679 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 +02003680 goto end;
3681 }
3682
Christopher Fauletcf307562021-07-26 10:49:39 +02003683 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003684 if (h1s_data_pending(h1s)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003685 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003686 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003687 }
3688
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003689 if (!h1_recv_allowed(h1c)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003690 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet0060be92020-07-03 15:02:25 +02003691 goto end;
3692 }
3693
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003694 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003695 count = h1m->curr_len;
Christopher Faulet897d6122021-12-17 17:28:35 +01003696 ret = h1c->conn->xprt->rcv_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe, count);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003697 if (ret >= 0) {
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003698 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003699 if (ret > h1m->curr_len) {
3700 h1s->flags |= H1S_F_PARSING_ERROR;
3701 h1c->flags |= H1C_F_ST_ERROR;
3702 cs->flags |= CS_FL_ERROR;
3703 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003704 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 +01003705 goto end;
3706 }
3707 h1m->curr_len -= ret;
3708 if (!h1m->curr_len) {
3709 h1m->state = H1_MSG_DONE;
3710 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003711 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003712 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003713 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003714 HA_ATOMIC_ADD(&h1c->px_counters->bytes_in, ret);
3715 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_in, ret);
Christopher Faulete18777b2019-04-16 16:46:36 +02003716 }
3717
Christopher Faulet1be55f92018-10-02 15:59:23 +02003718 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003719 if (conn_xprt_read0_pending(h1c->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003720 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003721 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003722 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003723 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003724
Christopher Faulet94d35102021-04-09 11:58:49 +02003725 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003726 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003727 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003728 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003729 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, h1c->conn, h1s);
3730 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet94d35102021-04-09 11:58:49 +02003731 }
Christopher Faulet27182292020-07-03 15:08:49 +02003732 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003733
Christopher Faulet897d6122021-12-17 17:28:35 +01003734 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003735 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003736}
3737
3738static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3739{
3740 struct h1s *h1s = cs->ctx;
Christopher Faulet140f1a52021-11-26 16:37:55 +01003741 struct h1c *h1c = h1s->h1c;
3742 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003743 int ret = 0;
3744
Christopher Faulet897d6122021-12-17 17:28:35 +01003745 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003746
Christopher Faulet140f1a52021-11-26 16:37:55 +01003747 if (b_data(&h1c->obuf)) {
3748 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet897d6122021-12-17 17:28:35 +01003749 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, h1c->conn, h1s);
3750 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003751 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003752 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003753 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003754
Christopher Faulet897d6122021-12-17 17:28:35 +01003755 ret = h1c->conn->xprt->snd_pipe(h1c->conn, h1c->conn->xprt_ctx, pipe);
Christopher Fauletf5ce3202021-11-26 17:26:19 +01003756 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet140f1a52021-11-26 16:37:55 +01003757 if (ret > h1m->curr_len) {
3758 h1s->flags |= H1S_F_PROCESSING_ERROR;
3759 h1c->flags |= H1C_F_ST_ERROR;
3760 cs->flags |= CS_FL_ERROR;
3761 TRACE_ERROR("too much payload, more than announced",
Christopher Faulet897d6122021-12-17 17:28:35 +01003762 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 +01003763 goto end;
3764 }
3765 h1m->curr_len -= ret;
3766 if (!h1m->curr_len) {
3767 h1m->state = H1_MSG_DONE;
Christopher Faulet897d6122021-12-17 17:28:35 +01003768 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
Christopher Faulet140f1a52021-11-26 16:37:55 +01003769 }
3770 }
Christopher Faulet41951ab2021-11-26 18:12:51 +01003771 HA_ATOMIC_ADD(&h1c->px_counters->bytes_out, ret);
3772 HA_ATOMIC_ADD(&h1c->px_counters->spliced_bytes_out, ret);
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003773
3774 end:
Christopher Faulet897d6122021-12-17 17:28:35 +01003775 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003776 return ret;
3777}
3778#endif
3779
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003780static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3781{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003782 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003783 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003784
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003785 switch (mux_ctl) {
3786 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003787 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003788 ret |= MUX_STATUS_READY;
3789 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003790 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003791 if (output)
3792 *((int *)output) = h1c->errcode;
3793 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3794 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3795 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3796 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003797 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003798 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003799 default:
3800 return -1;
3801 }
3802}
3803
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003804/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003805static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003806{
3807 struct h1c *h1c = conn->ctx;
3808 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003809 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003810
Christopher Fauletf376a312019-01-04 15:16:06 +01003811 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3812 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003813 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3814 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3815 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3816 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3817
3818 if (h1s) {
3819 char *method;
3820
3821 if (h1s->meth < HTTP_METH_OTHER)
3822 method = http_known_methods[h1s->meth].ptr;
3823 else
3824 method = "UNKNOWN";
3825 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3826 " .meth=%s status=%d",
3827 h1s, h1s->flags,
3828 h1m_state_str(h1s->req.state),
3829 h1m_state_str(h1s->res.state), method, h1s->status);
3830 if (h1s->cs)
Christopher Fauletf835dea2021-12-21 14:35:17 +01003831 chunk_appendf(msg, " .cs.flg=0x%08x .cs.app=%p",
3832 h1s->cs->flags, h1s->cs->app);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003833
3834 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3835 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003836 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3837 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3838 h1s->subs->tasklet->calls,
3839 h1s->subs->tasklet->context);
3840 if (h1s->subs->tasklet->calls >= 1000000)
3841 ret = 1;
3842 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3843 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003844 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003845 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003846 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003847}
3848
3849
3850/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3851static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3852{
3853 struct h1_hdr_entry *entry;
3854
3855 /* Be sure there is a non-empty <to> */
3856 if (!strlen(to)) {
3857 memprintf(err, "expect <to>");
3858 return -1;
3859 }
3860
3861 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003862 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003863 memprintf(err, "<from> and <to> must not differ execpt the case");
3864 return -1;
3865 }
3866
3867 /* Be sure <from> does not already existsin the tree */
3868 if (ebis_lookup(&hdrs_map.map, from)) {
3869 memprintf(err, "duplicate entry '%s'", from);
3870 return -1;
3871 }
3872
3873 /* Create the entry and insert it in the tree */
3874 entry = malloc(sizeof(*entry));
3875 if (!entry) {
3876 memprintf(err, "out of memory");
3877 return -1;
3878 }
3879
3880 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003881 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003882 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003883 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003884 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003885 free(entry);
3886 memprintf(err, "out of memory");
3887 return -1;
3888 }
3889 ebis_insert(&hdrs_map.map, &entry->node);
3890 return 0;
3891}
3892
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003893/* Migrate the the connection to the current thread.
3894 * Return 0 if successful, non-zero otherwise.
3895 * Expected to be called with the old thread lock held.
3896 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003897static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003898{
3899 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003900 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003901
3902 if (fd_takeover(conn->handle.fd, conn) != 0)
3903 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003904
3905 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3906 /* We failed to takeover the xprt, even if the connection may
3907 * still be valid, flag it as error'd, as we have already
3908 * taken over the fd, and wake the tasklet, so that it will
3909 * destroy it.
3910 */
3911 conn->flags |= CO_FL_ERROR;
3912 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3913 return -1;
3914 }
3915
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003916 if (h1c->wait_event.events)
3917 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3918 h1c->wait_event.events, &h1c->wait_event);
3919 /* To let the tasklet know it should free itself, and do nothing else,
3920 * set its context to NULL.
3921 */
3922 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003923 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003924
3925 task = h1c->task;
3926 if (task) {
3927 task->context = NULL;
3928 h1c->task = NULL;
3929 __ha_barrier_store();
3930 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003931
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003932 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003933 if (!h1c->task) {
3934 h1_release(h1c);
3935 return -1;
3936 }
3937 h1c->task->process = h1_timeout_task;
3938 h1c->task->context = h1c;
3939 }
3940 h1c->wait_event.tasklet = tasklet_new();
3941 if (!h1c->wait_event.tasklet) {
3942 h1_release(h1c);
3943 return -1;
3944 }
3945 h1c->wait_event.tasklet->process = h1_io_cb;
3946 h1c->wait_event.tasklet->context = h1c;
3947 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3948 SUB_RETRY_RECV, &h1c->wait_event);
3949
3950 return 0;
3951}
3952
3953
Christopher Faulet98fbe952019-07-22 16:18:24 +02003954static void h1_hdeaders_case_adjust_deinit()
3955{
3956 struct ebpt_node *node, *next;
3957 struct h1_hdr_entry *entry;
3958
3959 node = ebpt_first(&hdrs_map.map);
3960 while (node) {
3961 next = ebpt_next(node);
3962 ebpt_delete(node);
3963 entry = container_of(node, struct h1_hdr_entry, node);
3964 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003965 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003966 free(entry);
3967 node = next;
3968 }
3969 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003970}
3971
Christopher Faulet98fbe952019-07-22 16:18:24 +02003972static int cfg_h1_headers_case_adjust_postparser()
3973{
3974 FILE *file = NULL;
3975 char *c, *key_beg, *key_end, *value_beg, *value_end;
3976 char *err;
3977 int rc, line = 0, err_code = 0;
3978
3979 if (!hdrs_map.name)
3980 goto end;
3981
3982 file = fopen(hdrs_map.name, "r");
3983 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003984 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003985 hdrs_map.name);
3986 err_code |= ERR_ALERT | ERR_FATAL;
3987 goto end;
3988 }
3989
3990 /* now parse all lines. The file may contain only two header name per
3991 * line, separated by spaces. All heading and trailing spaces will be
3992 * ignored. Lines starting with a # are ignored.
3993 */
3994 while (fgets(trash.area, trash.size, file) != NULL) {
3995 line++;
3996 c = trash.area;
3997
3998 /* strip leading spaces and tabs */
3999 while (*c == ' ' || *c == '\t')
4000 c++;
4001
4002 /* ignore emptu lines, or lines beginning with a dash */
4003 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
4004 continue;
4005
4006 /* look for the end of the key */
4007 key_beg = c;
4008 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
4009 c++;
4010 key_end = c;
4011
4012 /* strip middle spaces and tabs */
4013 while (*c == ' ' || *c == '\t')
4014 c++;
4015
4016 /* look for the end of the value, it is the end of the line */
4017 value_beg = c;
4018 while (*c && *c != '\n' && *c != '\r')
4019 c++;
4020 value_end = c;
4021
4022 /* trim possibly trailing spaces and tabs */
4023 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
4024 value_end--;
4025
4026 /* set final \0 and check entries */
4027 *key_end = '\0';
4028 *value_end = '\0';
4029
4030 err = NULL;
4031 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
4032 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004033 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004034 hdrs_map.name, err, line);
4035 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004036 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004037 goto end;
4038 }
4039 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004040 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02004041 hdrs_map.name, err, line);
4042 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02004043 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02004044 }
4045 }
4046
4047 end:
4048 if (file)
4049 fclose(file);
4050 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
4051 return err_code;
4052}
4053
4054
4055/* config parser for global "h1-outgoing-header-case-adjust" */
4056static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004057 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004058 char **err)
4059{
4060 if (too_many_args(2, args, err, NULL))
4061 return -1;
4062 if (!*(args[1]) || !*(args[2])) {
4063 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
4064 return -1;
4065 }
4066 return add_hdr_case_adjust(args[1], args[2], err);
4067}
4068
4069/* config parser for global "h1-outgoing-headers-case-adjust-file" */
4070static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01004071 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02004072 char **err)
4073{
4074 if (too_many_args(1, args, err, NULL))
4075 return -1;
4076 if (!*(args[1])) {
4077 memprintf(err, "'%s' expects <file> as argument.", args[0]);
4078 return -1;
4079 }
4080 free(hdrs_map.name);
4081 hdrs_map.name = strdup(args[1]);
4082 return 0;
4083}
4084
4085
4086/* config keyword parsers */
4087static struct cfg_kw_list cfg_kws = {{ }, {
4088 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
4089 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
4090 { 0, NULL, NULL },
4091 }
4092};
4093
4094INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4095REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
4096
4097
Christopher Faulet51dbc942018-09-13 09:05:15 +02004098/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05004099/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02004100/****************************************/
4101
4102/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01004103static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02004104 .init = h1_init,
4105 .wake = h1_wake,
4106 .attach = h1_attach,
4107 .get_first_cs = h1_get_first_cs,
4108 .detach = h1_detach,
4109 .destroy = h1_destroy,
4110 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01004111 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02004112 .rcv_buf = h1_rcv_buf,
4113 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02004114#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02004115 .rcv_pipe = h1_rcv_pipe,
4116 .snd_pipe = h1_snd_pipe,
4117#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02004118 .subscribe = h1_subscribe,
4119 .unsubscribe = h1_unsubscribe,
4120 .shutr = h1_shutr,
4121 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004122 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004123 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004124 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02004125 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02004126 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02004127};
4128
Christopher Faulet3f612f72021-02-05 16:44:21 +01004129static const struct mux_ops mux_h1_ops = {
4130 .init = h1_init,
4131 .wake = h1_wake,
4132 .attach = h1_attach,
4133 .get_first_cs = h1_get_first_cs,
4134 .detach = h1_detach,
4135 .destroy = h1_destroy,
4136 .avail_streams = h1_avail_streams,
4137 .used_streams = h1_used_streams,
4138 .rcv_buf = h1_rcv_buf,
4139 .snd_buf = h1_snd_buf,
4140#if defined(USE_LINUX_SPLICE)
4141 .rcv_pipe = h1_rcv_pipe,
4142 .snd_pipe = h1_snd_pipe,
4143#endif
4144 .subscribe = h1_subscribe,
4145 .unsubscribe = h1_unsubscribe,
4146 .shutr = h1_shutr,
4147 .shutw = h1_shutw,
4148 .show_fd = h1_show_fd,
4149 .ctl = h1_ctl,
4150 .takeover = h1_takeover,
4151 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4152 .name = "H1",
4153};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004154
Christopher Faulet3f612f72021-02-05 16:44:21 +01004155/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4156static struct mux_proto_list mux_proto_h1 =
4157 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4158static struct mux_proto_list mux_proto_http =
4159 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004160
Christopher Faulet3f612f72021-02-05 16:44:21 +01004161INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4162INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004163
Christopher Faulet51dbc942018-09-13 09:05:15 +02004164/*
4165 * Local variables:
4166 * c-indent-level: 8
4167 * c-basic-offset: 8
4168 * End:
4169 */