blob: 686a7a588a6f59008a95d5b63dafb42d94392cf1 [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>
Willy Tarreau5413a872020-06-02 19:33:08 +020018#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020019#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020020#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020022#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/istbuf.h>
24#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020025#include <haproxy/pipe-t.h>
Willy Tarreauadc02402021-05-08 20:28:54 +020026#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020027#include <haproxy/session-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020028#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020029#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020030#include <haproxy/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020031
32/*
33 * H1 Connection flags (32 bits)
34 */
35#define H1C_F_NONE 0x00000000
36
37/* Flags indicating why writing output data are blocked */
38#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
39#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
40/* 0x00000004 - 0x00000008 unused */
41
42/* Flags indicating why reading input data are blocked. */
43#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
44#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletd17ad822020-09-24 15:14:29 +020045#define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */
Christopher Faulet51dbc942018-09-13 09:05:15 +020046
Christopher Faulet7b109f22019-12-05 11:18:31 +010047/* Flags indicating the connection state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010048#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 +010049#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 +010050#define H1C_F_ST_IDLE 0x00000400 /* connection is idle and may be reused
51 * (exclusive to all H1C_F_ST flags and never set when an h1s is attached) */
52#define H1C_F_ST_ERROR 0x00000800 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */
53#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 +010054#define H1C_F_ST_READY 0x00002000 /* Set in ATTACHED state with a READY conn-stream. A conn-stream is not ready when
55 * 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 +010056#define H1C_F_ST_ALIVE (H1C_F_ST_IDLE|H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED)
Christopher Fauleta85c5222021-10-27 15:36:38 +020057#define H1C_F_ST_SILENT_SHUT 0x00004000 /* silent (or dirty) shutdown must be performed */
58/* 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020059
Christopher Fauletb385b502021-01-13 18:47:57 +010060#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
61#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
62#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
63#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
64#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
65#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 +020066
Christopher Faulet10a86702021-04-07 14:18:11 +020067/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010068#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020069
Christopher Faulet51dbc942018-09-13 09:05:15 +020070/*
71 * H1 Stream flags (32 bits)
72 */
Christopher Faulet129817b2018-09-20 16:14:40 +020073#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020074
75#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
76#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet46e058d2021-09-20 07:47:27 +020077#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
78
Willy Tarreauc493c9c2019-06-03 14:18:22 +020079#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020080#define H1S_F_WANT_KAL 0x00000010
81#define H1S_F_WANT_TUN 0x00000020
82#define H1S_F_WANT_CLO 0x00000040
83#define H1S_F_WANT_MSK 0x00000070
84#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010085#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020086
Ilya Shipitsinacf84592021-02-06 22:29:08 +050087/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010088#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 +020089#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
90#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
91#define H1S_F_ERROR 0x00001800 /* stream error mask */
92
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020093#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 +020094#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020095
96/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020097struct h1c {
98 struct connection *conn;
99 struct proxy *px;
100 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +0200101 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200102 struct buffer ibuf; /* Input buffer to store data before parsing */
103 struct buffer obuf; /* Output buffer to store data after reformatting */
104
105 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
106 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
107
108 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100109 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200110 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
111 int timeout; /* client/server timeout duration */
112 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200113};
114
115/* H1 stream descriptor */
116struct h1s {
117 struct h1c *h1c;
118 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100119 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200120
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100121 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200122
Olivier Houchardf502aca2018-12-14 19:42:40 +0100123 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200124 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200125 struct h1m req;
126 struct h1m res;
127
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500128 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200129 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100130
131 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200132};
133
Christopher Faulet98fbe952019-07-22 16:18:24 +0200134/* Map of headers used to convert outgoing headers */
135struct h1_hdrs_map {
136 char *name;
137 struct eb_root map;
138};
139
140/* An entry in a headers map */
141struct h1_hdr_entry {
142 struct ist name;
143 struct ebpt_node node;
144};
145
146/* Declare the headers map */
147static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
148
149
Christopher Faulet6b81df72019-10-01 22:08:43 +0200150/* trace source and events */
151static void h1_trace(enum trace_level level, uint64_t mask,
152 const struct trace_source *src,
153 const struct ist where, const struct ist func,
154 const void *a1, const void *a2, const void *a3, const void *a4);
155
156/* The event representation is split like this :
157 * h1c - internal H1 connection
158 * h1s - internal H1 stream
159 * strm - application layer
160 * rx - data receipt
161 * tx - data transmission
162 *
163 */
164static const struct trace_event h1_trace_events[] = {
165#define H1_EV_H1C_NEW (1ULL << 0)
166 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
167#define H1_EV_H1C_RECV (1ULL << 1)
168 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
169#define H1_EV_H1C_SEND (1ULL << 2)
170 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
171#define H1_EV_H1C_BLK (1ULL << 3)
172 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
173#define H1_EV_H1C_WAKE (1ULL << 4)
174 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
175#define H1_EV_H1C_END (1ULL << 5)
176 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
177#define H1_EV_H1C_ERR (1ULL << 6)
178 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
179
180#define H1_EV_RX_DATA (1ULL << 7)
181 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
182#define H1_EV_RX_EOI (1ULL << 8)
183 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
184#define H1_EV_RX_HDRS (1ULL << 9)
185 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
186#define H1_EV_RX_BODY (1ULL << 10)
187 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
188#define H1_EV_RX_TLRS (1ULL << 11)
189 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
190
191#define H1_EV_TX_DATA (1ULL << 12)
192 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
193#define H1_EV_TX_EOI (1ULL << 13)
194 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
195#define H1_EV_TX_HDRS (1ULL << 14)
196 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
197#define H1_EV_TX_BODY (1ULL << 15)
198 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
199#define H1_EV_TX_TLRS (1ULL << 16)
200 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
201
202#define H1_EV_H1S_NEW (1ULL << 17)
203 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
204#define H1_EV_H1S_BLK (1ULL << 18)
205 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
206#define H1_EV_H1S_END (1ULL << 19)
207 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
208#define H1_EV_H1S_ERR (1ULL << 20)
209 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
210
211#define H1_EV_STRM_NEW (1ULL << 21)
212 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
213#define H1_EV_STRM_RECV (1ULL << 22)
214 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
215#define H1_EV_STRM_SEND (1ULL << 23)
216 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
217#define H1_EV_STRM_WAKE (1ULL << 24)
218 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
219#define H1_EV_STRM_SHUT (1ULL << 25)
220 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
221#define H1_EV_STRM_END (1ULL << 26)
222 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
223#define H1_EV_STRM_ERR (1ULL << 27)
224 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
225
226 { }
227};
228
229static const struct name_desc h1_trace_lockon_args[4] = {
230 /* arg1 */ { /* already used by the connection */ },
231 /* arg2 */ { .name="h1s", .desc="H1 stream" },
232 /* arg3 */ { },
233 /* arg4 */ { }
234};
235
236static const struct name_desc h1_trace_decoding[] = {
237#define H1_VERB_CLEAN 1
238 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
239#define H1_VERB_MINIMAL 2
240 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
241#define H1_VERB_SIMPLE 3
242 { .name="simple", .desc="add request/response status line or htx info when available" },
243#define H1_VERB_ADVANCED 4
244 { .name="advanced", .desc="add header fields or frame decoding when available" },
245#define H1_VERB_COMPLETE 5
246 { .name="complete", .desc="add full data dump when available" },
247 { /* end */ }
248};
249
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200250static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200251 .name = IST("h1"),
252 .desc = "HTTP/1 multiplexer",
253 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
254 .default_cb = h1_trace,
255 .known_events = h1_trace_events,
256 .lockon_args = h1_trace_lockon_args,
257 .decoding = h1_trace_decoding,
258 .report_events = ~0, // report everything by default
259};
260
261#define TRACE_SOURCE &trace_h1
262INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
263
Christopher Faulet51dbc942018-09-13 09:05:15 +0200264/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100265DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
266DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200267
Christopher Faulet51dbc942018-09-13 09:05:15 +0200268static int h1_recv(struct h1c *h1c);
269static int h1_send(struct h1c *h1c);
270static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100271/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100272struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
273struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauleta85c5222021-10-27 15:36:38 +0200274static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200275static void h1_wake_stream_for_recv(struct h1s *h1s);
276static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200277
Christopher Faulet6b81df72019-10-01 22:08:43 +0200278/* the H1 traces always expect that arg1, if non-null, is of type connection
279 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
280 * that arg3, if non-null, is a htx for rx/tx headers.
281 */
282static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
283 const struct ist where, const struct ist func,
284 const void *a1, const void *a2, const void *a3, const void *a4)
285{
286 const struct connection *conn = a1;
287 const struct h1c *h1c = conn ? conn->ctx : NULL;
288 const struct h1s *h1s = a2;
289 const struct htx *htx = a3;
290 const size_t *val = a4;
291
292 if (!h1c)
293 h1c = (h1s ? h1s->h1c : NULL);
294
295 if (!h1c || src->verbosity < H1_VERB_CLEAN)
296 return;
297
298 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200299 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200300
301 /* Display request and response states if h1s is defined */
302 if (h1s)
303 chunk_appendf(&trace_buf, " [%s, %s]",
304 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
305
306 if (src->verbosity == H1_VERB_CLEAN)
307 return;
308
309 /* Display the value to the 4th argument (level > STATE) */
310 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100311 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200312
313 /* Display status-line if possible (verbosity > MINIMAL) */
314 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
315 const struct htx_blk *blk = htx_get_head_blk(htx);
316 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
317 enum htx_blk_type type = htx_get_blk_type(blk);
318
319 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
320 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
321 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
322 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
323 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
324 }
325
326 /* Display h1c info and, if defined, h1s info (pointer + flags) */
327 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
328 if (h1s)
329 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
330
331 if (src->verbosity == H1_VERB_MINIMAL)
332 return;
333
334 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
335 if (src->level > TRACE_LEVEL_USER) {
336 if (src->verbosity == H1_VERB_COMPLETE ||
337 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
338 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
339 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
340 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
341 if (src->verbosity == H1_VERB_COMPLETE ||
342 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
343 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
344 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
345 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
346 }
347
348 /* Display htx info if defined (level > USER) */
349 if (src->level > TRACE_LEVEL_USER && htx) {
350 int full = 0;
351
352 /* Full htx info (level > STATE && verbosity > SIMPLE) */
353 if (src->level > TRACE_LEVEL_STATE) {
354 if (src->verbosity == H1_VERB_COMPLETE)
355 full = 1;
356 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
357 full = 1;
358 }
359
360 chunk_memcat(&trace_buf, "\n\t", 2);
361 htx_dump(&trace_buf, htx, full);
362 }
363}
364
365
Christopher Faulet51dbc942018-09-13 09:05:15 +0200366/*****************************************************/
367/* functions below are for dynamic buffer management */
368/*****************************************************/
369/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100370 * Indicates whether or not we may receive data. The rules are the following :
371 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200372 * must not attempt to receive
373 * - if we are waiting for the connection establishment, we must not attempt
374 * to receive
375 * - if an error was detected on the stream we must not attempt to receive
376 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100377 * - if the input buffer failed to be allocated or is full , we must not try
378 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200379 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200380 * - otherwise must may not attempt to receive
381 */
382static inline int h1_recv_allowed(const struct h1c *h1c)
383{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100384 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100385 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 +0200386 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200387 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200388
Willy Tarreau2febb842020-07-31 09:15:43 +0200389 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
390 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 +0100391 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200392 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100393
Christopher Faulet119ac872020-09-30 17:33:22 +0200394 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
395 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
396 return 0;
397 }
398
Christopher Fauletd17ad822020-09-24 15:14:29 +0200399 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200400 return 1;
401
Christopher Faulet6b81df72019-10-01 22:08:43 +0200402 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 +0200403 return 0;
404}
405
406/*
407 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
408 * flags are used to figure what buffer was requested. It returns 1 if the
409 * allocation succeeds, in which case the connection is woken up, or 0 if it's
410 * impossible to wake up and we prefer to be woken up later.
411 */
412static int h1_buf_available(void *target)
413{
414 struct h1c *h1c = target;
415
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100416 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200417 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 +0200418 h1c->flags &= ~H1C_F_IN_ALLOC;
419 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200420 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200421 return 1;
422 }
423
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100424 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200425 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 +0200426 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200427 if (h1c->h1s)
428 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200429 return 1;
430 }
431
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100432 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200433 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
434 h1c->flags &= ~H1C_F_IN_SALLOC;
435 tasklet_wakeup(h1c->wait_event.tasklet);
436 return 1;
437 }
438
Christopher Faulet51dbc942018-09-13 09:05:15 +0200439 return 0;
440}
441
442/*
443 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
444 */
445static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
446{
447 struct buffer *buf = NULL;
448
Willy Tarreau2b718102021-04-21 07:32:39 +0200449 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100450 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200451 h1c->buf_wait.target = h1c;
452 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200453 LIST_APPEND(&th_ctx->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200454 }
455 return buf;
456}
457
458/*
459 * Release a buffer, if any, and try to wake up entities waiting in the buffer
460 * wait queue.
461 */
462static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
463{
464 if (bptr->size) {
465 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100466 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200467 }
468}
469
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100470/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100471 * 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 +0100472 * not. This flag is only set when no H1S is attached and when the previous
473 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100474 */
475static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200476{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100477 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200478
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100479 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200480}
481
Willy Tarreau00f18a32019-01-26 12:19:01 +0100482/* returns the number of streams still available on a connection */
483static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100484{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100485 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100486}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200487
Christopher Faulet7a145d62020-08-05 11:31:16 +0200488/* Refresh the h1c task timeout if necessary */
489static void h1_refresh_timeout(struct h1c *h1c)
490{
491 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100492 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200493 /* half-closed or dead connections : switch to clientfin/serverfin
494 * timeouts so that we don't hang too long on clients that have
495 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200496 */
497 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200498 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
499 }
500 else if (b_data(&h1c->obuf)) {
501 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200502 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200503 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
504 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100505 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
506 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200507 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100508 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 +0200509 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200510 else {
511 /* alive back connections of front connections with a conn-stream attached */
512 h1c->task->expire = TICK_ETERNITY;
513 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
514 }
515
Christopher Fauletdbe57792020-10-05 17:50:58 +0200516 /* Finally set the idle expiration date if shorter */
517 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200518 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
519 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200520 }
521}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200522
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200523static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200524{
525 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
526 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
527 h1c->idle_exp = TICK_ETERNITY;
528 return;
529 }
530
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100531 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200532 if (!tick_isset(h1c->idle_exp)) {
533 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
534 !b_data(&h1c->ibuf) && /* No input data */
535 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
536 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
537 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
538 }
539 else {
540 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
541 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
542 }
543 }
544 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100545 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200546 if (!tick_isset(h1c->idle_exp)) {
547 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
548 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
549 }
550 }
551 else { // CS_ATTACHED or SHUTDOWN
552 h1c->idle_exp = TICK_ETERNITY;
553 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
554 }
555}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200556/*****************************************************************/
557/* functions below are dedicated to the mux setup and management */
558/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200559
560/* returns non-zero if there are input data pending for stream h1s. */
561static inline size_t h1s_data_pending(const struct h1s *h1s)
562{
563 const struct h1m *h1m;
564
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200565 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100566 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200567}
568
Christopher Faulet16df1782020-12-04 16:47:41 +0100569/* Creates a new conn-stream and the associate stream. <input> is used as input
570 * buffer for the stream. On success, it is transferred to the stream and the
571 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
572 * mux must still take care of it. However, there is nothing special to do
573 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
574 * b_free() on it is always safe. This function returns the conn-stream on
575 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200576static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100577{
578 struct conn_stream *cs;
579
Christopher Faulet6b81df72019-10-01 22:08:43 +0200580 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200581 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200582 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100583 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100584 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200585 }
Christopher Faulet47365272018-10-31 17:40:50 +0100586 h1s->cs = cs;
587 cs->ctx = h1s;
588
589 if (h1s->flags & H1S_F_NOT_FIRST)
590 cs->flags |= CS_FL_NOT_FIRST;
591
Christopher Faulet26256f82020-09-14 11:40:13 +0200592 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200593 TRACE_DEVEL("leaving on stream creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100594 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200595 }
596
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100597 h1s->h1c->flags = (h1s->h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200598 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100599 return cs;
600
601 err:
602 cs_free(cs);
603 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100604 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100605 return NULL;
606}
607
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100608static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
609{
610 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
611
612 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100613 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 +0100614 goto err;
615 }
616
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100617 h1s->h1c->flags |= H1C_F_ST_READY;
618 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
619 return h1s->cs;
620
621 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100622 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100623 return NULL;
624}
625
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200626static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200627{
628 struct h1s *h1s;
629
Christopher Faulet6b81df72019-10-01 22:08:43 +0200630 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
631
Christopher Faulet51dbc942018-09-13 09:05:15 +0200632 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100633 if (!h1s) {
634 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 +0100635 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100636 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200637 h1s->h1c = h1c;
638 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200639 h1s->sess = NULL;
640 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100641 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100642 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200643 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100644 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200645
646 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100647 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200648
Christopher Faulet129817b2018-09-20 16:14:40 +0200649 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100650 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200651
652 h1s->status = 0;
653 h1s->meth = HTTP_METH_OTHER;
654
Christopher Faulet47365272018-10-31 17:40:50 +0100655 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
656 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100657 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100658
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200659 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
660 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200661
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200662 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100663 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200664 return NULL;
665}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100666
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200667static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
668{
669 struct session *sess = h1c->conn->owner;
670 struct h1s *h1s;
671
672 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
673
674 h1s = h1s_new(h1c);
675 if (!h1s)
676 goto fail;
677
678 h1s->sess = sess;
679
680 if (h1c->px->options2 & PR_O2_REQBUG_OK)
681 h1s->req.err_pos = -1;
682
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200683 h1c->idle_exp = TICK_ETERNITY;
684 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200685 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200686 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100687
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200688 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100689 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200690 return NULL;
691}
692
693static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
694{
695 struct h1s *h1s;
696
697 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
698
699 h1s = h1s_new(h1c);
700 if (!h1s)
701 goto fail;
702
Christopher Faulet10a86702021-04-07 14:18:11 +0200703 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200704 h1s->cs = cs;
705 h1s->sess = sess;
706 cs->ctx = h1s;
707
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100708 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200709
710 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
711 h1s->res.err_pos = -1;
712
713 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
714 return h1s;
715
716 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100717 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100718 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200719}
720
721static void h1s_destroy(struct h1s *h1s)
722{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200723 if (h1s) {
724 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200725
Christopher Faulet6b81df72019-10-01 22:08:43 +0200726 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200727 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200728
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100729 if (h1s->subs)
730 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200731
Christopher Fauletd17ad822020-09-24 15:14:29 +0200732 h1_release_buf(h1c, &h1s->rxbuf);
733
Christopher Faulet10a86702021-04-07 14:18:11 +0200734 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100735 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200736 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
737 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200738 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100739 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100740 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 +0200741 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100742
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100743 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100744 !(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 +0100745 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100746 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100747 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100748 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
749 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200750 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100751 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100752 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200753 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200754 pool_free(pool_head_h1s, h1s);
755 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200756}
757
758/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200759 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500760 * to the existing conn_stream (for outgoing connections or for incoming ones
761 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200762 * establishment). <input> is always used as Input buffer and may contain
763 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
764 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200765 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200766static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
767 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200768{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200769 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100770 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200771 void *conn_ctx = conn->ctx;
772
773 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200774
775 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100776 if (!h1c) {
777 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200778 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100779 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200780 h1c->conn = conn;
781 h1c->px = proxy;
782
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100783 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200784 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200785 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200786 h1c->obuf = BUF_NULL;
787 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200788 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200789
Willy Tarreau90f366b2021-02-20 11:49:49 +0100790 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200791 h1c->wait_event.tasklet = tasklet_new();
792 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200793 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200794 h1c->wait_event.tasklet->process = h1_io_cb;
795 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100796 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200797 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200798
Christopher Faulete9b70722019-04-08 10:46:02 +0200799 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200800 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100801 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
802 if (tick_isset(proxy->timeout.serverfin))
803 h1c->shut_timeout = proxy->timeout.serverfin;
804 } else {
805 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
806 if (tick_isset(proxy->timeout.clientfin))
807 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200808
809 LIST_APPEND(&mux_stopping_data[tid].list,
810 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100811 }
812 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200813 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100814 if (!t) {
815 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 +0100816 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100817 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100818
819 h1c->task = t;
820 t->process = h1_timeout_task;
821 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200822
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100823 t->expire = tick_add(now_ms, h1c->timeout);
824 }
825
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100826 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200827
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200828 if (h1c->flags & H1C_F_IS_BACK) {
829 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200830 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
831 goto fail;
832 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100833 else if (conn_ctx) {
834 /* Upgraded frontend connection (from TCP) */
835 struct conn_stream *cs = conn_ctx;
836
837 if (!h1c_frt_stream_new(h1c))
838 goto fail;
839
840 h1c->h1s->cs = cs;
841 cs->ctx = h1c->h1s;
842
843 /* Attach the CS but Not ready yet */
844 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
845 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
846 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
847 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100848
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200849 if (t) {
850 h1_set_idle_expiration(h1c);
851 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100852 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200853 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100854
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200855 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100856 if (b_data(&h1c->ibuf))
857 tasklet_wakeup(h1c->wait_event.tasklet);
858 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200859 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200860
861 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200862 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200863 return 0;
864
865 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200866 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200867 if (h1c->wait_event.tasklet)
868 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200869 pool_free(pool_head_h1c, h1c);
870 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200871 conn->ctx = conn_ctx; // restore saved context
872 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200873 return -1;
874}
875
Christopher Faulet73c12072019-04-08 11:23:22 +0200876/* release function. This one should be called to free all resources allocated
877 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200878 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200879static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200880{
Christopher Faulet61840e72019-04-15 09:33:32 +0200881 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200882
Christopher Faulet6b81df72019-10-01 22:08:43 +0200883 TRACE_POINT(H1_EV_H1C_END);
884
Christopher Faulet51dbc942018-09-13 09:05:15 +0200885 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200886 /* The connection must be aattached to this mux to be released */
887 if (h1c->conn && h1c->conn->ctx == h1c)
888 conn = h1c->conn;
889
Christopher Faulet6b81df72019-10-01 22:08:43 +0200890 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
891
Christopher Faulet61840e72019-04-15 09:33:32 +0200892 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200893 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200894 /* Make sure we're no longer subscribed to anything */
895 if (h1c->wait_event.events)
896 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
897 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200898 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200899 /* connection successfully upgraded to H2, this
900 * mux was already released */
901 return;
902 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100903 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200904 sess_log(conn->owner); /* Log if the upgrade failed */
905 }
906
Olivier Houchard45c44372019-06-11 14:06:23 +0200907
Willy Tarreau2b718102021-04-21 07:32:39 +0200908 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100909 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200910
911 h1_release_buf(h1c, &h1c->ibuf);
912 h1_release_buf(h1c, &h1c->obuf);
913
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100914 if (h1c->task) {
915 h1c->task->context = NULL;
916 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
917 h1c->task = NULL;
918 }
919
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200920 if (h1c->wait_event.tasklet)
921 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200922
Christopher Fauletf2824e62018-10-01 12:12:37 +0200923 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200924 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100925 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200926 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200927 pool_free(pool_head_h1c, h1c);
928 }
929
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200930 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200931 if (!conn_is_back(conn))
932 LIST_DEL_INIT(&conn->stopping_list);
933
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200934 conn->mux = NULL;
935 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200936 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200937
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200938 conn_stop_tracking(conn);
939 conn_full_close(conn);
940 if (conn->destroy_cb)
941 conn->destroy_cb(conn);
942 conn_free(conn);
943 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200944}
945
946/******************************************************/
947/* functions below are for the H1 protocol processing */
948/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200949/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
950 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200951 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100952static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200953{
Christopher Faulet570d1612018-11-26 11:13:57 +0100954 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200955
Christopher Faulet570d1612018-11-26 11:13:57 +0100956 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200957 (*(p + 5) > '1' ||
958 (*(p + 5) == '1' && *(p + 7) >= '1')))
959 h1m->flags |= H1_MF_VER_11;
960}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200961
Christopher Faulet9768c262018-10-22 09:34:31 +0200962/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
963 * greater or equal to 1.1
964 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100965static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200966{
Christopher Faulet570d1612018-11-26 11:13:57 +0100967 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200968
Christopher Faulet570d1612018-11-26 11:13:57 +0100969 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200970 (*(p + 5) > '1' ||
971 (*(p + 5) == '1' && *(p + 7) >= '1')))
972 h1m->flags |= H1_MF_VER_11;
973}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200974
Christopher Fauletf2824e62018-10-01 12:12:37 +0200975/* Deduce the connection mode of the client connection, depending on the
976 * configuration and the H1 message flags. This function is called twice, the
977 * first time when the request is parsed and the second time when the response
978 * is parsed.
979 */
980static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
981{
982 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200983
984 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100985 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +0100986 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100987 h1s->status == 101) {
988 /* Either we've established an explicit tunnel, or we're
989 * switching the protocol. In both cases, we're very unlikely to
990 * understand the next protocols. We have to switch to tunnel
991 * mode, so that we transfer the request and responses then let
992 * this protocol pass unmodified. When we later implement
993 * specific parsers for such protocols, we'll want to check the
994 * Upgrade header which contains information about that protocol
995 * for responses with status 101 (eg: see RFC2817 about TLS).
996 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200997 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200998 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 +0100999 }
1000 else if (h1s->flags & H1S_F_WANT_KAL) {
1001 /* By default the client is in KAL mode. CLOSE mode mean
1002 * it is imposed by the client itself. So only change
1003 * KAL mode here. */
1004 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1005 /* no length known or explicit close => close */
1006 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001007 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 +01001008 }
1009 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1010 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001011 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001012 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001013 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 +01001014 }
1015 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001016 }
1017 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001018 /* Input direction: first pass */
1019 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1020 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001021 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001022 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 +01001023 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001024 }
1025
1026 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001027 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001028 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001029 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);
1030 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001031}
1032
1033/* Deduce the connection mode of the client connection, depending on the
1034 * configuration and the H1 message flags. This function is called twice, the
1035 * first time when the request is parsed and the second time when the response
1036 * is parsed.
1037 */
1038static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1039{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001040 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001041 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001042 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001043
Christopher Fauletf2824e62018-10-01 12:12:37 +02001044 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001045 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001046 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001047 h1s->status == 101) {
1048 /* Either we've established an explicit tunnel, or we're
1049 * switching the protocol. In both cases, we're very unlikely to
1050 * understand the next protocols. We have to switch to tunnel
1051 * mode, so that we transfer the request and responses then let
1052 * this protocol pass unmodified. When we later implement
1053 * specific parsers for such protocols, we'll want to check the
1054 * Upgrade header which contains information about that protocol
1055 * for responses with status 101 (eg: see RFC2817 about TLS).
1056 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001057 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001058 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 +01001059 }
1060 else if (h1s->flags & H1S_F_WANT_KAL) {
1061 /* By default the server is in KAL mode. CLOSE mode mean
1062 * it is imposed by haproxy itself. So only change KAL
1063 * mode here. */
1064 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1065 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1066 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1067 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001068 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 +01001069 }
1070 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001071 }
Christopher Faulet70033782018-12-05 13:50:11 +01001072 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001073 /* Output direction: first pass */
1074 if (h1m->flags & H1_MF_CONN_CLO) {
1075 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001076 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001077 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 +01001078 }
1079 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1080 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1081 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1082 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1083 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1084 /* no explicit keep-alive option httpclose/server-close => close */
1085 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001086 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 +01001087 }
Christopher Faulet70033782018-12-05 13:50:11 +01001088 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001089
1090 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001091 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001092 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001093 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);
1094 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001095}
1096
Christopher Fauletb992af02019-03-28 15:42:24 +01001097static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001098{
1099 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001100
1101 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1102 * token is found
1103 */
1104 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001105 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001106
1107 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001108 if (!(h1m->flags & H1_MF_VER_11)) {
1109 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 +01001110 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001111 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001112 }
1113 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001114 if (h1m->flags & H1_MF_VER_11) {
1115 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001116 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001117 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001118 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001119}
1120
Christopher Fauletb992af02019-03-28 15:42:24 +01001121static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001122{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001123 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1124 * token is found
1125 */
1126 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001127 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001128
1129 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001130 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001131 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1132 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 +01001133 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001134 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001135 }
1136 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001137 if (h1m->flags & H1_MF_VER_11) {
1138 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001139 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001140 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001141 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001142}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001143
Christopher Fauletb992af02019-03-28 15:42:24 +01001144static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001145{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001146 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001147 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001148 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001149 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001150}
1151
Christopher Fauletb992af02019-03-28 15:42:24 +01001152static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1153{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001154 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001155 h1_set_cli_conn_mode(h1s, h1m);
1156 else
1157 h1_set_srv_conn_mode(h1s, h1m);
1158
1159 if (!(h1m->flags & H1_MF_RESP))
1160 h1_update_req_conn_value(h1s, h1m, conn_val);
1161 else
1162 h1_update_res_conn_value(h1s, h1m, conn_val);
1163}
Christopher Faulete44769b2018-11-29 23:01:45 +01001164
Christopher Faulet98fbe952019-07-22 16:18:24 +02001165/* Try to adjust the case of the message header name using the global map
1166 * <hdrs_map>.
1167 */
1168static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1169{
1170 struct ebpt_node *node;
1171 struct h1_hdr_entry *entry;
1172
1173 /* No entry in the map, do nothing */
1174 if (eb_is_empty(&hdrs_map.map))
1175 return;
1176
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001177 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001178 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1179 return;
1180
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001181 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001182 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1183 return;
1184
1185 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1186 if (!node)
1187 return;
1188 entry = container_of(node, struct h1_hdr_entry, node);
1189 name->ptr = entry->name.ptr;
1190 name->len = entry->name.len;
1191}
1192
Christopher Faulete44769b2018-11-29 23:01:45 +01001193/* Append the description of what is present in error snapshot <es> into <out>.
1194 * The description must be small enough to always fit in a buffer. The output
1195 * buffer may be the trash so the trash must not be used inside this function.
1196 */
1197static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1198{
1199 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001200 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1201 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1202 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1203 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1204 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1205 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001206}
1207/*
1208 * Capture a bad request or response and archive it in the proxy's structure.
1209 * By default it tries to report the error position as h1m->err_pos. However if
1210 * this one is not set, it will then report h1m->next, which is the last known
1211 * parsing point. The function is able to deal with wrapping buffers. It always
1212 * displays buffers as a contiguous area starting at buf->p. The direction is
1213 * determined thanks to the h1m's flags.
1214 */
1215static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1216 struct h1m *h1m, struct buffer *buf)
1217{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001218 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001219 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001220 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001221 union error_snapshot_ctx ctx;
1222
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001223 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001224 if (sess == NULL)
1225 sess = si_strm(h1s->cs->data)->sess;
1226 if (!(h1m->flags & H1_MF_RESP))
1227 other_end = si_strm(h1s->cs->data)->be;
1228 else
1229 other_end = sess->fe;
1230 } else
1231 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001232
1233 /* http-specific part now */
1234 ctx.h1.state = h1m->state;
1235 ctx.h1.c_flags = h1c->flags;
1236 ctx.h1.s_flags = h1s->flags;
1237 ctx.h1.m_flags = h1m->flags;
1238 ctx.h1.m_clen = h1m->curr_len;
1239 ctx.h1.m_blen = h1m->body_len;
1240
1241 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1242 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001243 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1244 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001245}
1246
Christopher Fauletadb22202018-12-12 10:32:09 +01001247/* Emit the chunksize followed by a CRLF in front of data of the buffer
1248 * <buf>. It goes backwards and starts with the byte before the buffer's
1249 * head. The caller is responsible for ensuring there is enough room left before
1250 * the buffer's head for the string.
1251 */
1252static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1253{
1254 char *beg, *end;
1255
1256 beg = end = b_head(buf);
1257 *--beg = '\n';
1258 *--beg = '\r';
1259 do {
1260 *--beg = hextab[chksz & 0xF];
1261 } while (chksz >>= 4);
1262 buf->head -= (end - beg);
1263 b_add(buf, end - beg);
1264}
1265
1266/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1267 * ensuring there is enough room left in the buffer for the string. */
1268static void h1_emit_chunk_crlf(struct buffer *buf)
1269{
1270 *(b_peek(buf, b_data(buf))) = '\r';
1271 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1272 b_add(buf, 2);
1273}
1274
Christopher Faulet129817b2018-09-20 16:14:40 +02001275/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001276 * Switch the stream to tunnel mode. This function must only be called on 2xx
1277 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001278 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001279static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001280{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001281 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001282
Christopher Faulet5be651d2021-01-22 15:28:03 +01001283 h1s->req.state = H1_MSG_TUNNEL;
1284 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001285
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001286 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001287 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001288
Christopher Faulet5be651d2021-01-22 15:28:03 +01001289 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 +01001290
Christopher Faulet10a86702021-04-07 14:18:11 +02001291 if (h1s->flags & H1S_F_RX_BLK) {
1292 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001293 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001294 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 +02001295 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001296 if (h1s->flags & H1S_F_TX_BLK) {
1297 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001298 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001299 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 +01001300 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001301}
1302
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001303/* Search for a websocket key header. The message should have been identified
1304 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001305 *
1306 * On the request side, if found the key is stored in the session. It might be
1307 * needed to calculate response key if the server side is using http/2.
1308 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001309 * On the response side, the key might be verified if haproxy has been
1310 * responsible for the generation of a key. This happens when a h2 client is
1311 * interfaced with a h1 server.
1312 *
1313 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001314 */
1315static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1316{
1317 struct htx_blk *blk;
1318 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001319 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001320 int ws_key_found = 0, idx;
1321
1322 idx = htx_get_head(htx); // returns the SL that we skip
1323 while ((idx = htx_get_next(htx, idx)) != -1) {
1324 blk = htx_get_blk(htx, idx);
1325 type = htx_get_blk_type(blk);
1326
1327 if (type == HTX_BLK_UNUSED)
1328 continue;
1329
1330 if (type != HTX_BLK_HDR)
1331 break;
1332
1333 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001334 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001335
Amaury Denoyellec1938232020-12-11 17:53:03 +01001336 /* Websocket key is base64 encoded of 16 bytes */
1337 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001338 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001339 /* Copy the key on request side
1340 * we might need it if the server is using h2 and does
1341 * not provide the response
1342 */
1343 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001344 ws_key_found = 1;
1345 break;
1346 }
1347 else if (isteqi(n, ist("sec-websocket-accept")) &&
1348 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001349 /* Need to verify the response key if the input was
1350 * generated by haproxy
1351 */
1352 if (h1s->ws_key[0]) {
1353 char key[29];
1354 h1_calculate_ws_output_key(h1s->ws_key, key);
1355 if (!isteqi(ist(key), v))
1356 break;
1357 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001358 ws_key_found = 1;
1359 break;
1360 }
1361 }
1362
1363 /* missing websocket key, reject the message */
1364 if (!ws_key_found) {
1365 htx->flags |= HTX_FL_PARSING_ERROR;
1366 return 0;
1367 }
1368
1369 return 1;
1370}
1371
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001372/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001373 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001374 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001375 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1376 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001377 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001378static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1379 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001380{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001381 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001382 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001383
Willy Tarreau022e5e52020-09-10 09:33:15 +02001384 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 +02001385
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001386 if (h1s->meth == HTTP_METH_CONNECT)
1387 h1m->flags |= H1_MF_METH_CONNECT;
1388 if (h1s->meth == HTTP_METH_HEAD)
1389 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001390
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001391 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001392 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001393 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 +02001394 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001395 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001396 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 +02001397 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1398 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001399 else if (ret == -2) {
1400 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);
1401 h1s->flags |= H1S_F_RX_CONGESTED;
1402 }
1403 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001404 goto end;
1405 }
1406
Christopher Faulete136bd12021-09-21 18:44:55 +02001407
1408 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1409 * payload if the c-l is not null or the the payload is chunk-encoded.
1410 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1411 * instead of a 400-Bad-Request.
1412 */
1413 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1414 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1415 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1416 h1s->flags |= H1S_F_PARSING_ERROR;
1417 htx->flags |= HTX_FL_PARSING_ERROR;
1418 h1s->h1c->errcode = 413;
1419 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);
1420 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1421 ret = 0;
1422 goto end;
1423 }
1424
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001425 /* Reject any message with an unknown transfer-encoding. In fact if any
1426 * encoding other than "chunked". A 422-Unprocessable-Content is
1427 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1428 * response.
1429 */
1430 if (h1m->flags & H1_MF_TE_OTHER) {
1431 h1s->flags |= H1S_F_PARSING_ERROR;
1432 htx->flags |= HTX_FL_PARSING_ERROR;
1433 if (!(h1m->flags & H1_MF_RESP))
1434 h1s->h1c->errcode = 422;
1435 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1436 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1437 ret = 0;
1438 goto end;
1439 }
1440
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001441 /* If websocket handshake, search for the websocket key */
1442 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1443 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1444 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1445 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001446 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001447 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 +01001448 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1449
1450 ret = 0;
1451 goto end;
1452 }
1453 }
1454
Christopher Faulet486498c2019-10-11 14:22:00 +02001455 if (h1m->err_pos >= 0) {
1456 /* Maybe we found an error during the parsing while we were
1457 * configured not to block on that, so we have to capture it
1458 * now.
1459 */
1460 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1461 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1462 }
1463
Christopher Faulet5696f542020-12-02 16:08:38 +01001464 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001465 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001466 if (h1s->meth == HTTP_METH_HEAD)
1467 h1s->flags |= H1S_F_BODYLESS_RESP;
1468 }
1469 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001470 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001471 if (h1s->status == 204 || h1s->status == 304)
1472 h1s->flags |= H1S_F_BODYLESS_RESP;
1473 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001474 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001475 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001476
Christopher Faulet129817b2018-09-20 16:14:40 +02001477 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001478 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 +02001479 return ret;
1480}
1481
1482/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001483 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001484 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1485 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001486 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001487static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1488 struct buffer *buf, size_t *ofs, size_t max,
1489 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001490{
Christopher Fauletde471a42021-02-01 16:37:28 +01001491 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001492
Willy Tarreau022e5e52020-09-10 09:33:15 +02001493 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 +02001494 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001495 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001496 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 +01001497 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001498 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001499 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 +02001500 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001501 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001502 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001503 }
1504
Christopher Faulet02a02532019-11-15 09:36:28 +01001505 *ofs += ret;
1506
1507 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001508 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1509 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);
1510 h1s->flags |= H1S_F_RX_CONGESTED;
1511 }
1512
Willy Tarreau022e5e52020-09-10 09:33:15 +02001513 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 +02001514 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001515}
1516
1517/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001518 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1519 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1520 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001521 * responsible to update the parser state <h1m>. If more room is requested,
1522 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001523 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001524static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1525 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001526{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001527 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001528
Willy Tarreau022e5e52020-09-10 09:33:15 +02001529 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 +02001530 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001531 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001532 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 +02001533 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001534 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001535 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 +02001536 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1537 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001538 else if (ret == -2) {
1539 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);
1540 h1s->flags |= H1S_F_RX_CONGESTED;
1541 }
1542 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001543 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001544 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001545
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001546 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001547
1548 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001549 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 +02001550 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001551}
1552
1553/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001554 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001555 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1556 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001557 *
1558 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001559 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001560static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001561{
Christopher Faulet539e0292018-11-19 10:40:09 +01001562 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001563 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001564 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001565 size_t data;
1566 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001567 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001568
Christopher Faulet539e0292018-11-19 10:40:09 +01001569 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001570 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001571
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001572 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001573 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001574
Christopher Faulet2eed8002020-12-07 11:26:13 +01001575 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001576 goto end;
1577
Christopher Faulet10a86702021-04-07 14:18:11 +02001578 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001579 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001580
Christopher Faulet46e058d2021-09-20 07:47:27 +02001581 /* Always remove congestion flags and try to process more input data */
1582 h1s->flags &= ~H1S_F_RX_CONGESTED;
1583
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001584 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001585 size_t used = htx_used_space(htx);
1586
Christopher Faulet129817b2018-09-20 16:14:40 +02001587 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001588 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001589 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001590 if (!ret)
1591 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001592
1593 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1594 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1595
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001596 if ((h1m->flags & H1_MF_RESP) &&
1597 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1598 h1m_init_res(&h1s->res);
1599 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001600 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001601 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001602 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001603 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001604 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001605 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001606 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001607 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001608
1609 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1610 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001611 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001612 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001613 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001614 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001615 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001616 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001617
Christopher Faulet76014fd2019-12-10 11:47:22 +01001618 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1619 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001620 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001621 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001622 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1623 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001624
Christopher Faulet5be651d2021-01-22 15:28:03 +01001625 if ((h1m->flags & H1_MF_RESP) &&
1626 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1627 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001628 else {
1629 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1630 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001631 h1s->flags |= H1S_F_RX_BLK;
1632 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001633 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001634 if (h1s->flags & H1S_F_TX_BLK) {
1635 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001636 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001637 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 +01001638 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001639 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001640 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001641 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001642 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001643 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001644 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001645 if (!ret)
1646 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001647
1648 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1649 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001650 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001651 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001652 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001653 break;
1654 }
1655
Christopher Faulet30db3d72019-05-17 15:35:33 +02001656 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001657 } 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 +01001658
Christopher Faulet129817b2018-09-20 16:14:40 +02001659
Christopher Faulet2eed8002020-12-07 11:26:13 +01001660 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001661 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 +02001662 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001663 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001664
Christopher Faulet539e0292018-11-19 10:40:09 +01001665 b_del(&h1c->ibuf, total);
1666
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001667 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001668 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1669
Christopher Faulet30db3d72019-05-17 15:35:33 +02001670 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001671 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001672 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001673 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 +01001674 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001675 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001676
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001677 if (!b_data(&h1c->ibuf))
1678 h1_release_buf(h1c, &h1c->ibuf);
1679
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001680 if (!(h1c->flags & H1C_F_ST_READY)) {
1681 /* The H1 connection is not ready. Most of time, there is no CS
1682 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1683 * cases, it is only possible on the client side.
1684 */
1685 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1686
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001687 if (h1m->state <= H1_MSG_LAST_LF) {
1688 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1689 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1690 goto end;
1691 }
1692
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001693 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1694 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1695 BUG_ON(h1s->cs);
1696 if (!h1s_new_cs(h1s, buf)) {
1697 h1c->flags |= H1C_F_ST_ERROR;
1698 goto err;
1699 }
1700 }
1701 else {
1702 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1703 BUG_ON(h1s->cs == NULL);
1704 if (!h1s_upgrade_cs(h1s, buf)) {
1705 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001706 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001707 goto err;
1708 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001709 }
1710 }
1711
1712 /* Here h1s->cs is always defined */
Christopher Fauleta583af62020-09-24 15:35:37 +02001713 if (!(h1m->flags & H1_MF_CHNK) &&
1714 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) {
1715 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1716 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1717 }
1718 else {
1719 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1720 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1721 }
1722
Christopher Fauleta22782b2021-02-08 17:18:01 +01001723 /* Set EOI on conn-stream in DONE state iff:
1724 * - it is a response
1725 * - it is a request but no a protocol upgrade nor a CONNECT
1726 *
1727 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001728 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001729 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001730 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1731 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001732 h1s->cs->flags |= CS_FL_EOI;
1733
Christopher Fauletec4207c2021-04-08 18:34:30 +02001734 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001735 /* When Input data are pending for this message, notify upper layer that
1736 * the mux need more space in the HTX buffer to continue if :
1737 *
1738 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1739 * - Headers or trailers are pending to be copied.
1740 */
1741 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001742 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001743 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1744 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001745 else {
1746 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1747 if (h1s->flags & H1S_F_REOS) {
1748 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001749 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1750 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1751 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001752 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001753 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001754 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001755 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001756 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1757 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001758
Christopher Faulet10a86702021-04-07 14:18:11 +02001759 if (h1s->flags & H1S_F_TX_BLK) {
1760 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001761 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001762 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 +01001763 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001764 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001765 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001766
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001767 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001768 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001769 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001770
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001771 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001772 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001773 if (h1s->cs)
1774 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001775 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001776 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001777}
1778
Christopher Faulet129817b2018-09-20 16:14:40 +02001779/*
1780 * Process outgoing data. It parses data and transfer them from the channel buffer into
1781 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1782 * 0 if it couldn't proceed.
1783 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001784static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001785{
Christopher Faulet129817b2018-09-20 16:14:40 +02001786 struct h1s *h1s = h1c->h1s;
1787 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001788 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001789 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001790 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001791 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001792 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001793 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001794
Christopher Faulet94b2c762019-05-24 15:28:57 +02001795 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001796 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1797
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001798 if (htx_is_empty(chn_htx))
1799 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001800
Christopher Faulet10a86702021-04-07 14:18:11 +02001801 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001802 goto end;
1803
Christopher Faulet51dbc942018-09-13 09:05:15 +02001804 if (!h1_get_buf(h1c, &h1c->obuf)) {
1805 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001806 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 +02001807 goto end;
1808 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001809
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001810 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001811
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001812 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001813 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001814
Willy Tarreau3815b222018-12-11 19:50:43 +01001815 /* Perform some optimizations to reduce the number of buffer copies.
1816 * First, if the mux's buffer is empty and the htx area contains
1817 * exactly one data block of the same size as the requested count,
1818 * then it's possible to simply swap the caller's buffer with the
1819 * mux's output buffer and adjust offsets and length to match the
1820 * entire DATA HTX block in the middle. In this case we perform a
1821 * true zero-copy operation from end-to-end. This is the situation
1822 * that happens all the time with large files. Second, if this is not
1823 * possible, but the mux's output buffer is empty, we still have an
1824 * opportunity to avoid the copy to the intermediary buffer, by making
1825 * the intermediary buffer's area point to the output buffer's area.
1826 * In this case we want to skip the HTX header to make sure that copies
1827 * remain aligned and that this operation remains possible all the
1828 * time. This goes for headers, data blocks and any data extracted from
1829 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001830 */
1831 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001832 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001833 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001834 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001835 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001836 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001837 void *old_area;
1838
Christopher Faulet6b81df72019-10-01 22:08:43 +02001839 TRACE_PROTO("sending message data (zero-copy)", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001840 if (h1m->state == H1_MSG_DATA && chn_htx->flags & HTX_FL_EOM) {
1841 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1842 last_data = 1;
1843 }
1844
Christopher Faulete5596bf2020-12-02 16:13:22 +01001845 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001846 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001847 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001848 h1c->obuf.data = count;
1849
1850 buf->area = old_area;
1851 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001852
Christopher Faulet6b81df72019-10-01 22:08:43 +02001853 chn_htx = (struct htx *)buf->area;
1854 htx_reset(chn_htx);
1855
Christopher Fauletadb22202018-12-12 10:32:09 +01001856 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001857 * size and eventually the last chunk. We have at least
1858 * the size of the struct htx to write the chunk
1859 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001860 */
1861 if (h1m->flags & H1_MF_CHNK) {
1862 h1_emit_chunk_size(&h1c->obuf, count);
1863 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001864 if (last_data) {
1865 /* Emit the last chunk too at the buffer's end */
1866 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1867 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001868 }
1869
Christopher Faulet6b81df72019-10-01 22:08:43 +02001870 if (h1m->state == H1_MSG_DATA)
1871 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001872 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001873 else
1874 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001875 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001876
Christopher Faulete5596bf2020-12-02 16:13:22 +01001877 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001878 if (last_data) {
1879 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001880 if (h1s->flags & H1S_F_RX_BLK) {
1881 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001882 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001883 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 +01001884 }
1885
1886 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1887 H1_EV_TX_DATA, h1c->conn, h1s);
1888 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001889 goto out;
1890 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001891 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001892 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001893 else
1894 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001895
Christopher Fauletc2518a52019-06-25 21:41:02 +02001896 tmp.data = 0;
1897 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001898 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001899 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001900 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001901 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001902 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001903 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001904
Christopher Fauletb2e84162018-12-06 11:39:49 +01001905 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001906 if (type != HTX_BLK_DATA && vlen > count)
1907 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001908
Christopher Faulet94b2c762019-05-24 15:28:57 +02001909 if (type == HTX_BLK_UNUSED)
1910 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001911
Christopher Faulet94b2c762019-05-24 15:28:57 +02001912 switch (h1m->state) {
1913 case H1_MSG_RQBEFORE:
1914 if (type != HTX_BLK_REQ_SL)
1915 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001916 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 +02001917 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001918 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001919 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001920 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001921 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001922 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001923 if (sl->flags & HTX_SL_F_BODYLESS)
1924 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001925 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001926 if (h1s->meth == HTTP_METH_HEAD)
1927 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001928 if (h1s->flags & H1S_F_RX_BLK) {
1929 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001930 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001931 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 +02001932 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001933 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001934
Christopher Faulet94b2c762019-05-24 15:28:57 +02001935 case H1_MSG_RPBEFORE:
1936 if (type != HTX_BLK_RES_SL)
1937 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001938 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 +02001939 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001940 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001941 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001942 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001943 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001944 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001945 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001946 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001947 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001948 else if (h1s->status == 204 || h1s->status == 304)
1949 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001950 h1m->state = H1_MSG_HDR_FIRST;
1951 break;
1952
Christopher Faulet94b2c762019-05-24 15:28:57 +02001953 case H1_MSG_HDR_FIRST:
1954 case H1_MSG_HDR_NAME:
1955 case H1_MSG_HDR_L2_LWS:
1956 if (type == HTX_BLK_EOH)
1957 goto last_lf;
1958 if (type != HTX_BLK_HDR)
1959 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001960
Christopher Faulet9768c262018-10-22 09:34:31 +02001961 h1m->state = H1_MSG_HDR_NAME;
1962 n = htx_get_blk_name(chn_htx, blk);
1963 v = htx_get_blk_value(chn_htx, blk);
1964
Christopher Faulet86d144c2019-08-14 16:32:25 +02001965 /* Skip all pseudo-headers */
1966 if (*(n.ptr) == ':')
1967 goto skip_hdr;
1968
Christopher Faulet91fcf212020-12-02 16:17:15 +01001969 if (isteq(n, ist("transfer-encoding"))) {
1970 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1971 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001972 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001973 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001974 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001975 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1976 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001977 /* Only skip C-L header with invalid value. */
1978 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001979 goto skip_hdr;
1980 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001981 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001982 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001983 if (!v.len)
1984 goto skip_hdr;
1985 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001986 else if (isteq(n, ist("upgrade"))) {
1987 h1_parse_upgrade_header(h1m, v);
1988 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001989 else if ((isteq(n, ist("sec-websocket-accept")) &&
1990 h1m->flags & H1_MF_RESP) ||
1991 (isteq(n, ist("sec-websocket-key")) &&
1992 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001993 ws_key_found = 1;
1994 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02001995 else if (isteq(n, ist("te"))) {
1996 /* "te" may only be sent with "trailers" if this value
1997 * is present, otherwise it must be deleted.
1998 */
1999 v = istist(v, ist("trailers"));
2000 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2001 goto skip_hdr;
2002 v = ist("trailers");
2003 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002004
Christopher Faulet67d58092019-10-02 10:51:38 +02002005 /* Skip header if same name is used to add the server name */
2006 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2007 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2008 goto skip_hdr;
2009
Christopher Faulet98fbe952019-07-22 16:18:24 +02002010 /* Try to adjust the case of the header name */
2011 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2012 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002013 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002014 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002015 skip_hdr:
2016 h1m->state = H1_MSG_HDR_L2_LWS;
2017 break;
2018
Christopher Faulet94b2c762019-05-24 15:28:57 +02002019 case H1_MSG_LAST_LF:
2020 if (type != HTX_BLK_EOH)
2021 goto error;
2022 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002023 h1m->state = H1_MSG_LAST_LF;
2024 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002025 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002026 /* If the reply comes from haproxy while the request is
2027 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002028 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2029 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2030 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002031 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2032 /* T-E + C-L: force close */
2033 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2034 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2035 }
2036 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2037 /* T-E + HTTP/1.0: force close */
2038 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2039 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2040 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002041
2042 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002043 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002044 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002045 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002046 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002047 /* Try to adjust the case of the header name */
2048 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2049 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002050 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002051 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002052 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002053 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002054 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002055
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002056 if ((h1s->meth != HTTP_METH_CONNECT &&
2057 (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 +01002058 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002059 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002060 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002061 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2062 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002063 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002064 n = ist("transfer-encoding");
2065 v = ist("chunked");
2066 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2067 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002068 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002069 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002070 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002071 h1m->flags |= H1_MF_CHNK;
2072 }
2073
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002074 /* Now add the server name to a header (if requested) */
2075 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2076 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2077 struct server *srv = objt_server(h1c->conn->target);
2078
2079 if (srv) {
2080 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2081 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002082
2083 /* Try to adjust the case of the header name */
2084 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2085 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002086 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002087 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002088 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002089 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002090 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2091 }
2092
Amaury Denoyellec1938232020-12-11 17:53:03 +01002093 /* Add websocket handshake key if needed */
2094 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2095 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002096 if (!(h1m->flags & H1_MF_RESP)) {
2097 /* generate a random websocket key
2098 * stored in the session to
2099 * verify it on the response side
2100 */
2101 h1_generate_random_ws_input_key(h1s->ws_key);
2102
2103 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2104 ist(h1s->ws_key),
2105 &tmp)) {
2106 goto full;
2107 }
2108 }
2109 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002110 /* add the response header key */
2111 char key[29];
2112 h1_calculate_ws_output_key(h1s->ws_key, key);
2113 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2114 ist(key),
2115 &tmp)) {
2116 goto full;
2117 }
2118 }
2119 }
2120
Christopher Faulet6b81df72019-10-01 22:08:43 +02002121 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2122 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2123
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002124 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002125 if (!chunk_memcat(&tmp, "\r\n", 2))
2126 goto full;
2127 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002128 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002129 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002130 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002131 if (!chunk_memcat(&tmp, "\r\n", 2))
2132 goto full;
2133 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002134 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002135 else if ((h1m->flags & H1_MF_RESP) &&
2136 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002137 if (!chunk_memcat(&tmp, "\r\n", 2))
2138 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002139 h1m_init_res(&h1s->res);
2140 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002141 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002142 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002143 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002144 else {
2145 /* EOM flag is set and it is the last block */
2146 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002147 if (h1m->flags & H1_MF_CHNK) {
2148 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2149 goto full;
2150 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002151 else if (!chunk_memcat(&tmp, "\r\n", 2))
2152 goto full;
2153 goto done;
2154 }
2155 else if (!chunk_memcat(&tmp, "\r\n", 2))
2156 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002157 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002158 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002159 break;
2160
Christopher Faulet94b2c762019-05-24 15:28:57 +02002161 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002162 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002163 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002164 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2165 goto trailers;
2166
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002167 /* If the message is not chunked, never
2168 * add the last chunk. */
2169 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002170 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002171 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 +02002172 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002173 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002174 else if (type != HTX_BLK_DATA)
2175 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002176
2177 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 +02002178
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002179 /* It is the last block of this message. After this one,
2180 * only tunneled data may be forwarded. */
2181 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2182 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2183 last_data = 1;
2184 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002185
2186 if (vlen > count) {
2187 /* Get the maximum amount of data we can xferred */
2188 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002189 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002190 }
2191
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002192 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2193 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2194 goto skip_data;
2195 }
2196
Christopher Fauletd9233f02019-10-14 14:01:24 +02002197 chklen = 0;
2198 if (h1m->flags & H1_MF_CHNK) {
2199 chklen = b_room(&tmp);
2200 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2201 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2202 (chklen < 1048576) ? 5 : 8);
2203 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002204
2205 /* If it is the end of the chunked message (without EOT), reserve the
2206 * last chunk size */
2207 if (last_data)
2208 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002209 }
2210
2211 if (vlen + chklen > b_room(&tmp)) {
2212 /* too large for the buffer */
2213 if (chklen >= b_room(&tmp))
2214 goto full;
2215 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002216 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002217 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002218 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002219 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002220 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002221 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002222
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002223 /* Space already reserved, so it must succeed */
2224 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2225 goto error;
2226
Christopher Faulet6b81df72019-10-01 22:08:43 +02002227 if (h1m->state == H1_MSG_DATA)
2228 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002229 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002230 else
2231 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002232 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002233
2234 skip_data:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002235 if (last_data)
2236 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002237 break;
2238
Christopher Faulet94b2c762019-05-24 15:28:57 +02002239 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002240 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002241 goto error;
2242 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002243 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002244
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002245 /* If the message is not chunked, ignore
2246 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002247 if (!(h1m->flags & H1_MF_CHNK)) {
2248 if (type == HTX_BLK_EOT)
2249 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002250 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002251 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002252
Christopher Faulete5596bf2020-12-02 16:13:22 +01002253 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2254 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 +01002255 if (type == HTX_BLK_EOT)
2256 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002257 break;
2258 }
2259
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002260 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002261 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002262 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002263 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2264 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002265 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002266 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002267 else { // HTX_BLK_TLR
2268 n = htx_get_blk_name(chn_htx, blk);
2269 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002270
2271 /* Try to adjust the case of the header name */
2272 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2273 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002274 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002275 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002276 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002277 break;
2278
Christopher Faulet94b2c762019-05-24 15:28:57 +02002279 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002280 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2281 goto error; /* For now return an error */
2282
Christopher Faulet94b2c762019-05-24 15:28:57 +02002283 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002284 if (!(chn_htx->flags & HTX_FL_EOM)) {
2285 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2286 goto error; /* For now return an error */
2287 }
2288
Christopher Faulet94b2c762019-05-24 15:28:57 +02002289 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002290 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002291 h1s->flags |= H1S_F_TX_BLK;
2292 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002293 }
2294 else if ((h1m->flags & H1_MF_RESP) &&
2295 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2296 /* a successful reply to a CONNECT or a protocol switching is sent
2297 * to the client. Switch the response to tunnel mode.
2298 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002299 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002300 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 +01002301 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002302
Christopher Faulet10a86702021-04-07 14:18:11 +02002303 if (h1s->flags & H1S_F_RX_BLK) {
2304 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002305 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002306 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 +02002307 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002308
2309 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2310 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002311 break;
2312
Christopher Faulet9768c262018-10-22 09:34:31 +02002313 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002314 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002315 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002316 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002317 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002318 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002319 TRACE_ERROR("processing output error, set error on h1c/h1s",
2320 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002321 break;
2322 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002323
2324 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002325 total += vlen;
2326 count -= vlen;
2327 if (sz == vlen)
2328 blk = htx_remove_blk(chn_htx, blk);
2329 else {
2330 htx_cut_data_blk(chn_htx, blk, vlen);
2331 break;
2332 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002333 }
2334
Christopher Faulet9768c262018-10-22 09:34:31 +02002335 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002336 /* when the output buffer is empty, tmp shares the same area so that we
2337 * only have to update pointers and lengths.
2338 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002339 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2340 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002341 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002342 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002343
Willy Tarreau3815b222018-12-11 19:50:43 +01002344 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002345 out:
2346 if (!buf_room_for_htx_data(&h1c->obuf)) {
2347 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002348 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002349 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002350 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002351 /* Both the request and the response reached the DONE state. So set EOI
2352 * flag on the conn-stream. Most of time, the flag will already be set,
2353 * except for protocol upgrades. Report an error if data remains blocked
2354 * in the output buffer.
2355 */
2356 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2357 if (!htx_is_empty(chn_htx)) {
2358 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002359 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 +01002360 }
2361 h1s->cs->flags |= CS_FL_EOI;
2362 }
2363
Christopher Faulet6b81df72019-10-01 22:08:43 +02002364 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002365 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002366
2367 full:
2368 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2369 h1c->flags |= H1C_F_OUT_FULL;
2370 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002371}
2372
Christopher Faulet51dbc942018-09-13 09:05:15 +02002373/*********************************************************/
2374/* functions below are I/O callbacks from the connection */
2375/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002376static void h1_wake_stream_for_recv(struct h1s *h1s)
2377{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002378 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002379 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002380 tasklet_wakeup(h1s->subs->tasklet);
2381 h1s->subs->events &= ~SUB_RETRY_RECV;
2382 if (!h1s->subs->events)
2383 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002384 }
2385}
2386static void h1_wake_stream_for_send(struct h1s *h1s)
2387{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002388 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002389 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002390 tasklet_wakeup(h1s->subs->tasklet);
2391 h1s->subs->events &= ~SUB_RETRY_SEND;
2392 if (!h1s->subs->events)
2393 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002394 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002395}
2396
Christopher Fauletad4daf62021-01-21 17:49:01 +01002397/* alerts the data layer following this sequence :
2398 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2399 * - if its subscribed to send, then it's woken up for send
2400 * - if it was subscribed to neither, its ->wake() callback is called
2401 */
2402static void h1_alert(struct h1s *h1s)
2403{
2404 if (h1s->subs) {
2405 h1_wake_stream_for_recv(h1s);
2406 h1_wake_stream_for_send(h1s);
2407 }
2408 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2409 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2410 h1s->cs->data_cb->wake(h1s->cs);
2411 }
2412}
2413
Christopher Fauletc18fc232020-10-06 17:41:36 +02002414/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2415 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2416 * retryable errors (allocation error or buffer full). On success, the error is
2417 * copied in the output buffer.
2418*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002419static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002420{
2421 int rc = http_get_status_idx(h1c->errcode);
2422 int ret = 0;
2423
2424 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2425
2426 /* Verify if the error is mapped on /dev/null or any empty file */
2427 /// XXX: do a function !
2428 if (h1c->px->replies[rc] &&
2429 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2430 h1c->px->replies[rc]->body.errmsg &&
2431 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2432 /* Empty error, so claim a success */
2433 ret = 1;
2434 goto out;
2435 }
2436
2437 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2438 h1c->flags |= H1C_F_ERR_PENDING;
2439 goto out;
2440 }
2441
2442 if (!h1_get_buf(h1c, &h1c->obuf)) {
2443 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2444 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2445 goto out;
2446 }
2447 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2448 if (unlikely(ret <= 0)) {
2449 if (!ret) {
2450 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2451 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2452 goto out;
2453 }
2454 else {
2455 /* we cannot report this error, so claim a success */
2456 ret = 1;
2457 }
2458 }
2459 h1c->flags &= ~H1C_F_ERR_PENDING;
2460 out:
2461 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2462 return ret;
2463}
2464
2465/* Try to send a 500 internal error. It relies on h1_send_error to send the
2466 * error. This function takes care of incrementing stats and tracked counters.
2467 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002468static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002469{
2470 struct session *sess = h1c->conn->owner;
2471 int ret = 1;
2472
2473 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002474 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002475 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2476 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002477 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002478 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002479
2480 h1c->errcode = 500;
2481 ret = h1_send_error(h1c);
2482 sess_log(sess);
2483 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002484}
2485
Christopher Fauletb3230f72021-09-21 18:38:20 +02002486/* Try to send an error because of a parsing error. By default a 400 bad request
2487 * error is returned. But the status code may be specified by setting
2488 * h1c->errcode. It relies on h1_send_error to send the error. This function
2489 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002490 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002491static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002492{
2493 struct session *sess = h1c->conn->owner;
2494 int ret = 1;
2495
2496 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2497 goto end;
2498
2499 session_inc_http_req_ctr(sess);
2500 session_inc_http_err_ctr(sess);
2501 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002502 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2503 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002504 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002505 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002506
Christopher Fauletb3230f72021-09-21 18:38:20 +02002507 if (!h1c->errcode)
2508 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002509 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002510 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2511 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002512
2513 end:
2514 return ret;
2515}
2516
Christopher Faulet2eed8002020-12-07 11:26:13 +01002517/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2518 * the error. This function takes care of incrementing stats and tracked
2519 * counters.
2520 */
2521static int h1_handle_not_impl_err(struct h1c *h1c)
2522{
2523 struct session *sess = h1c->conn->owner;
2524 int ret = 1;
2525
2526 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2527 goto end;
2528
2529 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002530 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002531 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2532 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002533 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002534 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002535
2536 h1c->errcode = 501;
2537 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002538 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2539 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002540
2541 end:
2542 return ret;
2543}
2544
Christopher Fauletc18fc232020-10-06 17:41:36 +02002545/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2546 * error. This function takes care of incrementing stats and tracked counters.
2547 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002548static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002549{
2550 struct session *sess = h1c->conn->owner;
2551 int ret = 1;
2552
2553 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2554 goto end;
2555
2556 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002557 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002558 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2559 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002560 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002561 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002562
2563 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002564 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2565 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002566 sess_log(sess);
2567 end:
2568 return ret;
2569}
2570
2571
Christopher Faulet51dbc942018-09-13 09:05:15 +02002572/*
2573 * Attempt to read data, and subscribe if none available
2574 */
2575static int h1_recv(struct h1c *h1c)
2576{
2577 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002578 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002579 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002580
Christopher Faulet6b81df72019-10-01 22:08:43 +02002581 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2582
2583 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2584 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002585 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002586 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002587
Christopher Fauletae635762020-09-21 11:47:16 +02002588 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2589 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002590 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002591 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002592
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002593 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2594 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002595 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002596 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002597 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002598
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002599 /*
2600 * If we only have a small amount of data, realign it,
2601 * it's probably cheaper than doing 2 recv() calls.
2602 */
2603 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002604 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002605
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002606 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002607 if (!h1c->h1s ||
2608 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2609 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002610 flags |= CO_RFL_READ_ONCE;
2611
Willy Tarreau45f2b892018-12-05 07:59:27 +01002612 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002613 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002614 if (h1c->flags & H1C_F_IN_FULL) {
2615 h1c->flags &= ~H1C_F_IN_FULL;
2616 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2617 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002618
2619 if (!b_data(&h1c->ibuf)) {
2620 /* try to pre-align the buffer like the rxbufs will be
2621 * to optimize memory copies.
2622 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002623 h1c->ibuf.head = sizeof(struct htx);
2624 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002625 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002626 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002627 if (max && !ret && h1_recv_allowed(h1c)) {
2628 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2629 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002630 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002631 else {
2632 h1_wake_stream_for_recv(h1c->h1s);
2633 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002634 }
2635
Christopher Faulet51dbc942018-09-13 09:05:15 +02002636 if (!b_data(&h1c->ibuf))
2637 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002638 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002639 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002640 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2641 }
2642
2643 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002644 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002645}
2646
2647
2648/*
2649 * Try to send data if possible
2650 */
2651static int h1_send(struct h1c *h1c)
2652{
2653 struct connection *conn = h1c->conn;
2654 unsigned int flags = 0;
2655 size_t ret;
2656 int sent = 0;
2657
Christopher Faulet6b81df72019-10-01 22:08:43 +02002658 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2659
2660 if (conn->flags & CO_FL_ERROR) {
2661 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002662 b_reset(&h1c->obuf);
2663 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002664 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002665
2666 if (!b_data(&h1c->obuf))
2667 goto end;
2668
Christopher Faulet46230362019-10-17 16:04:20 +02002669 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002670 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002671 if (h1c->flags & H1C_F_CO_STREAMER)
2672 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002673
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002674 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002675 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002676 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002677 if (h1c->flags & H1C_F_OUT_FULL) {
2678 h1c->flags &= ~H1C_F_OUT_FULL;
2679 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2680 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002681 b_del(&h1c->obuf, ret);
2682 sent = 1;
2683 }
2684
Christopher Faulet145aa472018-12-06 10:56:20 +01002685 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002686 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002687 /* error or output closed, nothing to send, clear the buffer to release it */
2688 b_reset(&h1c->obuf);
2689 }
2690
Christopher Faulet51dbc942018-09-13 09:05:15 +02002691 end:
Christopher Faulet10a86702021-04-07 14:18:11 +02002692 if (!(h1c->flags & H1C_F_OUT_FULL))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002693 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002694
Christopher Faulet51dbc942018-09-13 09:05:15 +02002695 /* We're done, no more to send */
2696 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002697 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002698 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002699 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002700 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002701 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002702 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002703 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002704 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2705 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002706 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002707 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002708
Christopher Faulet6b81df72019-10-01 22:08:43 +02002709 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002710 return sent;
2711}
2712
Christopher Faulet51dbc942018-09-13 09:05:15 +02002713/* callback called on any event by the connection handler.
2714 * It applies changes and returns zero, or < 0 if it wants immediate
2715 * destruction of the connection.
2716 */
2717static int h1_process(struct h1c * h1c)
2718{
2719 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002720 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002721
Christopher Faulet6b81df72019-10-01 22:08:43 +02002722 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2723
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002724 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002725 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002726 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2727 !(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 +02002728 struct buffer *buf;
2729 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002730
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002731 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2732 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002733 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002734
2735 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002736 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002737 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2738 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002739 /* Try to match H2 preface before parsing the request headers. */
2740 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2741 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002742 if (h1c->flags & H1C_F_ST_ATTACHED) {
2743 /* Force the REOS here to be sure to release the CS.
2744 Here ATTACHED implies !READY, and h1s defined
2745 */
2746 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2747 h1s->flags |= H1S_F_REOS;
2748 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002749 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002750 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002751 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002752 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002753
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002754 /* Create the H1 stream if not already there */
2755 if (!h1s) {
2756 h1s = h1c_frt_stream_new(h1c);
2757 if (!h1s) {
2758 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002759 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002760 goto no_parsing;
2761 }
2762 }
2763
2764 if (h1s->sess->t_idle == -1)
2765 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2766
2767 /* Get the stream rxbuf */
2768 buf = h1_get_buf(h1c, &h1s->rxbuf);
2769 if (!buf) {
2770 h1c->flags |= H1C_F_IN_SALLOC;
2771 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2772 return 0;
2773 }
2774
2775 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002776 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002777 h1_release_buf(h1c, &h1s->rxbuf);
2778 h1_set_idle_expiration(h1c);
2779
2780 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002781 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002782 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002783 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002784 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002785 }
2786 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002787 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002788 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002789 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002790 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002791 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2792 h1_handle_not_impl_err(h1c);
2793 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002794 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002795 }
Christopher Fauletae635762020-09-21 11:47:16 +02002796 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002797 h1_send(h1c);
2798
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002799 if ((conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn) || (h1c->flags & H1C_F_ST_ERROR)) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002800 if (!(h1c->flags & H1C_F_ST_READY)) {
2801 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002802 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002803 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002804 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002805 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002806 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002807 }
2808
2809 /* Handle pending error, if any (only possible on frontend connection) */
2810 if (h1c->flags & H1C_F_ERR_PENDING) {
2811 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2812 if (h1_send_error(h1c))
2813 h1_send(h1c);
2814 }
Christopher Fauletae635762020-09-21 11:47:16 +02002815
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002816 /* If there is some pending outgoing data or error, just wait */
2817 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2818 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002819
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002820 /* Otherwise we can release the H1 connection */
2821 goto release;
2822 }
2823 else {
2824 /* Here there is still a H1 stream with a conn-stream.
2825 * Report the connection state at the stream level
2826 */
2827 if (conn_xprt_read0_pending(conn)) {
2828 h1s->flags |= H1S_F_REOS;
2829 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2830 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002831 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002832 h1s->cs->flags |= CS_FL_ERROR;
2833 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002834 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002835 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002836 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002837
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002838 if (!b_data(&h1c->ibuf))
2839 h1_release_buf(h1c, &h1c->ibuf);
2840
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002841 /* Check if a soft-stop is in progress.
2842 * Release idling front connection if this is the case.
2843 */
2844 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002845 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002846 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
2847 goto release;
2848 }
2849 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002850
2851 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2852 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2853 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002854 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002855
Christopher Faulet47365272018-10-31 17:40:50 +01002856 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002857 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002858 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002859 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002860
2861 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002862 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002863 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002864 * attached CS first. Here, the H1C must not be READY */
2865 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2866
2867 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2868 h1s->cs->flags |= CS_FL_EOS;
2869 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2870 h1s->cs->flags |= CS_FL_ERROR;
2871 h1_alert(h1s);
2872 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2873 }
2874 else {
2875 h1_release(h1c);
2876 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2877 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002878 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002879}
2880
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002881struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002882{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002883 struct connection *conn;
2884 struct tasklet *tl = (struct tasklet *)t;
2885 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002886 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002887 int ret = 0;
2888
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002889 if (state & TASK_F_USR1) {
2890 /* the tasklet was idling on an idle connection, it might have
2891 * been stolen, let's be careful!
2892 */
2893 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2894 if (tl->context == NULL) {
2895 /* The connection has been taken over by another thread,
2896 * we're no longer responsible for it, so just free the
2897 * tasklet, and do nothing.
2898 */
2899 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2900 tasklet_free(tl);
2901 return NULL;
2902 }
2903 conn = h1c->conn;
2904 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002905
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002906 /* Remove the connection from the list, to be sure nobody attempts
2907 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002908 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002909 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2910 if (conn_in_list)
2911 conn_delete_from_tree(&conn->hash_node->node);
2912
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002913 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002914 } else {
2915 /* we're certain the connection was not in an idle list */
2916 conn = h1c->conn;
2917 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2918 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002919 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002920
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002921 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002922 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002923 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002924 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002925 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002926 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002927
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002928 /* If we were in an idle list, we want to add it back into it,
2929 * unless h1_process() returned -1, which mean it has destroyed
2930 * the connection (testing !ret is enough, if h1_process() wasn't
2931 * called then ret will be 0 anyway.
2932 */
Willy Tarreau74163142021-03-13 11:30:19 +01002933 if (ret < 0)
2934 t = NULL;
2935
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002936 if (!ret && conn_in_list) {
2937 struct server *srv = objt_server(conn->target);
2938
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002939 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002940 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002941 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002942 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002943 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002944 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002945 }
Willy Tarreau74163142021-03-13 11:30:19 +01002946 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002947}
2948
Christopher Faulet51dbc942018-09-13 09:05:15 +02002949static int h1_wake(struct connection *conn)
2950{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002951 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002952 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002953
Christopher Faulet6b81df72019-10-01 22:08:43 +02002954 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2955
Christopher Faulet539e0292018-11-19 10:40:09 +01002956 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002957 ret = h1_process(h1c);
2958 if (ret == 0) {
2959 struct h1s *h1s = h1c->h1s;
2960
Christopher Fauletad4daf62021-01-21 17:49:01 +01002961 if (h1c->flags & H1C_F_ST_ATTACHED)
2962 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002963 }
2964 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002965}
2966
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002967/* Connection timeout management. The principle is that if there's no receipt
2968 * nor sending for a certain amount of time, the connection is closed.
2969 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002970struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002971{
2972 struct h1c *h1c = context;
2973 int expired = tick_is_expired(t->expire, now_ms);
2974
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002975 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002976
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002977 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002978 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002979 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002980
2981 /* Somebody already stole the connection from us, so we should not
2982 * free it, we just have to free the task.
2983 */
2984 if (!t->context) {
2985 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002986 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002987 goto do_leave;
2988 }
2989
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002990 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002991 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002992 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002993 return t;
2994 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002995
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002996 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002997 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002998 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002999 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003000 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003001 t->expire = TICK_ETERNITY;
3002 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3003 return t;
3004 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003005
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003006 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003007 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3008 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003009 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003010 if (h1_handle_req_tout(h1c))
3011 h1_send(h1c);
3012 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3013 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003014 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003015 return t;
3016 }
3017 }
3018
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003019 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003020 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003021 * attached CS first. Here, the H1C must not be READY */
3022 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3023 h1_alert(h1c->h1s);
3024 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003025 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003026 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3027 return t;
3028 }
3029
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003030 /* We're about to destroy the connection, so make sure nobody attempts
3031 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003032 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003033 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003034 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003035
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003036 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003037 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003038
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003039 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003040 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003041
3042 if (!h1c) {
3043 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003044 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003045 return NULL;
3046 }
3047
3048 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003049 h1_release(h1c);
3050 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003051 return NULL;
3052}
3053
Christopher Faulet51dbc942018-09-13 09:05:15 +02003054/*******************************************/
3055/* functions below are used by the streams */
3056/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003057
Christopher Faulet51dbc942018-09-13 09:05:15 +02003058/*
3059 * Attach a new stream to a connection
3060 * (Used for outgoing connections)
3061 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003062static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003063{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003064 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003065 struct conn_stream *cs = NULL;
3066 struct h1s *h1s;
3067
Christopher Faulet6b81df72019-10-01 22:08:43 +02003068 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003069 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003070 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3071 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003072 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003073
Christopher Faulet236c93b2020-07-02 09:19:54 +02003074 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003075 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003076 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3077 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003078 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003079
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003080 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003081 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003082 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3083 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003084 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003085
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003086 /* the connection is not idle anymore, let's mark this */
3087 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003088 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003089
Christopher Faulet6b81df72019-10-01 22:08:43 +02003090 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003091 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003092 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003093 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003094 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003095 return NULL;
3096}
3097
3098/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3099 * this mux, it's easy as we can only store a single conn_stream.
3100 */
3101static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3102{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003103 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003104 struct h1s *h1s = h1c->h1s;
3105
3106 if (h1s)
3107 return h1s->cs;
3108
3109 return NULL;
3110}
3111
Christopher Faulet73c12072019-04-08 11:23:22 +02003112static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003113{
Christopher Faulet73c12072019-04-08 11:23:22 +02003114 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003115
Christopher Faulet6b81df72019-10-01 22:08:43 +02003116 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003117 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003118 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003119}
3120
3121/*
3122 * Detach the stream from the connection and possibly release the connection.
3123 */
3124static void h1_detach(struct conn_stream *cs)
3125{
3126 struct h1s *h1s = cs->ctx;
3127 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003128 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003129 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003130
Christopher Faulet6b81df72019-10-01 22:08:43 +02003131 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3132
Christopher Faulet51dbc942018-09-13 09:05:15 +02003133 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003134 if (!h1s) {
3135 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003136 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003137 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003138
Olivier Houchardf502aca2018-12-14 19:42:40 +01003139 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003140 h1c = h1s->h1c;
3141 h1s->cs = NULL;
3142
Christopher Faulet42849b02020-10-05 11:35:17 +02003143 sess->accept_date = date;
3144 sess->tv_accept = now;
3145 sess->t_handshake = 0;
3146 sess->t_idle = -1;
3147
Olivier Houchard8a786902018-12-15 16:05:40 +01003148 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3149 h1s_destroy(h1s);
3150
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003151 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 +02003152 /* If there are any excess server data in the input buffer,
3153 * release it and close the connection ASAP (some data may
3154 * remain in the output buffer). This happens if a server sends
3155 * invalid responses. So in such case, we don't want to reuse
3156 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003157 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003158 if (b_data(&h1c->ibuf)) {
3159 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003160 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003161 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003162 goto release;
3163 }
Christopher Faulet03627242019-07-19 11:34:08 +02003164
Christopher Faulet08016ab2020-07-01 16:10:06 +02003165 if (h1c->conn->flags & CO_FL_PRIVATE) {
3166 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003167 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3168 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003169 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003170 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003171 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003172 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003173 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003174 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003175 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3176 goto end;
3177 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003178 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003179 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003180 if (h1c->conn->owner == sess)
3181 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003182
3183 /* mark that the tasklet may lose its context to another thread and
3184 * that the handler needs to check it under the idle conns lock.
3185 */
3186 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003187 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003188 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3189
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003190 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003191 /* The server doesn't want it, let's kill the connection right away */
3192 h1c->conn->mux->destroy(h1c);
3193 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3194 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003195 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003196 /* At this point, the connection has been added to the
3197 * server idle list, so another thread may already have
3198 * hijacked it, so we can't do anything with it.
3199 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003200 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003201 }
3202 }
3203
Christopher Fauletf1204b82019-07-19 14:51:06 +02003204 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003205 /* 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 +01003206 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003207 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003208 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003209 !h1c->conn->owner) {
3210 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003211 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003212 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003213 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003214 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003215 /* If we have a new request, process it immediately or
3216 * subscribe for reads waiting for new data
3217 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003218 if (unlikely(b_data(&h1c->ibuf))) {
3219 if (h1_process(h1c) == -1)
3220 goto end;
3221 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003222 else
3223 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3224 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003225 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003226 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003227 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003228 end:
3229 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003230}
3231
3232
3233static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3234{
3235 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003236 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003237
3238 if (!h1s)
3239 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003240 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003241
Christopher Faulet6b81df72019-10-01 22:08:43 +02003242 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3243
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003244 if (cs->flags & CS_FL_SHR)
3245 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003246 if (cs->flags & CS_FL_KILL_CONN) {
3247 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3248 goto do_shutr;
3249 }
3250 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3251 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003252 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003253 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003254
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003255 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3256 /* Here attached is implicit because there is CS */
3257 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3258 goto end;
3259 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003260 if (h1s->flags & H1S_F_WANT_KAL) {
3261 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003262 goto end;
3263 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003264
Christopher Faulet7f366362019-04-08 10:51:20 +02003265 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003266 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3267 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003268 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003269 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003270 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003271 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003272 end:
3273 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003274}
3275
3276static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3277{
3278 struct h1s *h1s = cs->ctx;
3279 struct h1c *h1c;
3280
3281 if (!h1s)
3282 return;
3283 h1c = h1s->h1c;
3284
Christopher Faulet6b81df72019-10-01 22:08:43 +02003285 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3286
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003287 if (cs->flags & CS_FL_SHW)
3288 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003289 if (cs->flags & CS_FL_KILL_CONN) {
3290 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003291 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003292 }
3293 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3294 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3295 goto do_shutw;
3296 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003297
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003298 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3299 /* Here attached is implicit because there is CS */
3300 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3301 goto end;
3302 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003303 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3304 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003305 goto end;
3306 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003307
Christopher Faulet7f366362019-04-08 10:51:20 +02003308 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003309 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauleta85c5222021-10-27 15:36:38 +02003310 if (mode != CS_SHW_NORMAL)
3311 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3312
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003313 if (!b_data(&h1c->obuf))
Christopher Fauleta85c5222021-10-27 15:36:38 +02003314 h1_shutw_conn(cs->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003315 end:
3316 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003317}
3318
Christopher Fauleta85c5222021-10-27 15:36:38 +02003319static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003320{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003321 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003322
Willy Tarreau62592ad2021-03-26 09:09:42 +01003323 if (conn->flags & CO_FL_SOCK_WR_SH)
3324 return;
3325
Christopher Fauleta85c5222021-10-27 15:36:38 +02003326 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003327 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003328 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3329 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003330}
3331
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003332/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3333 * The <es> pointer is not allowed to differ from the one passed to the
3334 * subscribe() call. It always returns zero.
3335 */
3336static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003337{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003338 struct h1s *h1s = cs->ctx;
3339
3340 if (!h1s)
3341 return 0;
3342
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003343 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003344 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003345
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003346 es->events &= ~event_type;
3347 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003348 h1s->subs = NULL;
3349
3350 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003351 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003352
3353 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003354 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003355
Christopher Faulet51dbc942018-09-13 09:05:15 +02003356 return 0;
3357}
3358
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003359/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3360 * event subscriber <es> is not allowed to change from a previous call as long
3361 * as at least one event is still subscribed. The <event_type> must only be a
3362 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3363 * the conn_stream <cs> was already detached, in which case it will return -1.
3364 */
3365static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003366{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003367 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003368 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003369
3370 if (!h1s)
3371 return -1;
3372
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003373 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003374 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003375
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003376 es->events |= event_type;
3377 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003378
3379 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003380 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003381
3382
Christopher Faulet6b81df72019-10-01 22:08:43 +02003383 if (event_type & SUB_RETRY_SEND) {
3384 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003385 /*
3386 * If the conn_stream attempt to subscribe, and the
3387 * mux isn't subscribed to the connection, then it
3388 * probably means the connection wasn't established
3389 * yet, so we have to subscribe.
3390 */
3391 h1c = h1s->h1c;
3392 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3393 h1c->conn->xprt->subscribe(h1c->conn,
3394 h1c->conn->xprt_ctx,
3395 SUB_RETRY_SEND,
3396 &h1c->wait_event);
3397 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003398 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003399}
3400
Christopher Faulet564e39c2021-09-21 15:50:55 +02003401/* Called from the upper layer, to receive data.
3402 *
3403 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3404 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3405 * means the caller wants to flush input data (from the mux buffer and the
3406 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3407 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3408 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3409 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3410 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3411 * copy as much data as possible.
3412 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003413static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3414{
3415 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003416 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003417 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003418 size_t ret = 0;
3419
Willy Tarreau022e5e52020-09-10 09:33:15 +02003420 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003421
3422 /* Do nothing for now if not READY */
3423 if (!(h1c->flags & H1C_F_ST_READY)) {
3424 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3425 goto end;
3426 }
3427
Christopher Faulet539e0292018-11-19 10:40:09 +01003428 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003429 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003430 else
3431 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003432
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003433 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3434 h1c->flags |= H1C_F_WANT_SPLICE;
3435 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 +02003436 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003437 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003438 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 +01003439 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003440 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003441
3442 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003443 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003444 return ret;
3445}
3446
3447
3448/* Called from the upper layer, to send data */
3449static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3450{
3451 struct h1s *h1s = cs->ctx;
3452 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003453 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003454
3455 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003456 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003457 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003458
Willy Tarreau022e5e52020-09-10 09:33:15 +02003459 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003460
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003461 /* If we're not connected yet, or we're waiting for a handshake, stop
3462 * now, as we don't want to remove everything from the channel buffer
3463 * before we're sure we can send it.
3464 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003465 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003466 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003467 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003468 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003469
Christopher Fauletdea24742021-01-22 15:12:30 +01003470 if (h1c->flags & H1C_F_ST_ERROR) {
3471 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003472 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 +01003473 return 0;
3474 }
3475
Christopher Faulet46230362019-10-17 16:04:20 +02003476 /* Inherit some flags from the upper layer */
3477 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3478 if (flags & CO_SFL_MSG_MORE)
3479 h1c->flags |= H1C_F_CO_MSG_MORE;
3480 if (flags & CO_SFL_STREAMER)
3481 h1c->flags |= H1C_F_CO_STREAMER;
3482
Christopher Fauletc31872f2019-06-04 22:09:36 +02003483 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003484 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003485
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003486 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003487 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003488 else
3489 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003490
3491 if ((count - ret) > 0)
3492 h1c->flags |= H1C_F_CO_MSG_MORE;
3493
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003494 if (!ret)
3495 break;
3496 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003497 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003498 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003499 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003500 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003501
3502 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003503 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003504 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 +01003505 }
3506
Christopher Faulet7a145d62020-08-05 11:31:16 +02003507 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003508 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003509 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003510}
3511
Willy Tarreaue5733232019-05-22 19:24:06 +02003512#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003513/* Send and get, using splicing */
3514static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3515{
3516 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003517 struct h1c *h1c = h1s->h1c;
3518 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003519 int ret = 0;
3520
Willy Tarreau022e5e52020-09-10 09:33:15 +02003521 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003522
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003523 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003524 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003525 TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulete18777b2019-04-16 16:46:36 +02003526 goto end;
3527 }
3528
Christopher Fauletcf307562021-07-26 10:49:39 +02003529 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003530 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003531 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003532 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003533 }
3534
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003535 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003536 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3537 goto end;
3538 }
3539
Christopher Faulet1be55f92018-10-02 15:59:23 +02003540 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
3541 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003542 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02003543 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02003544 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003545 if (!h1m->curr_len) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003546 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003547 TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003548 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003549 }
3550
Christopher Faulet1be55f92018-10-02 15:59:23 +02003551 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003552 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003553 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003554 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003555 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003556 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003557
Christopher Faulet94d35102021-04-09 11:58:49 +02003558 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003559 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003560 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003561 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3562 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3563 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3564 }
Christopher Faulet27182292020-07-03 15:08:49 +02003565 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003566
Willy Tarreau022e5e52020-09-10 09:33:15 +02003567 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003568 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003569}
3570
3571static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3572{
3573 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003574 int ret = 0;
3575
Willy Tarreau022e5e52020-09-10 09:33:15 +02003576 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003577
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003578 if (b_data(&h1s->h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003579 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
3580 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003581 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003582 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003583 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003584 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003585
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003586 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
3587
3588 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003589 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003590 return ret;
3591}
3592#endif
3593
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003594static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3595{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003596 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003597 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003598
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003599 switch (mux_ctl) {
3600 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003601 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003602 ret |= MUX_STATUS_READY;
3603 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003604 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003605 if (output)
3606 *((int *)output) = h1c->errcode;
3607 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3608 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3609 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3610 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003611 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003612 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003613 default:
3614 return -1;
3615 }
3616}
3617
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003618/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003619static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003620{
3621 struct h1c *h1c = conn->ctx;
3622 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003623 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003624
Christopher Fauletf376a312019-01-04 15:16:06 +01003625 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3626 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003627 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3628 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3629 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3630 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3631
3632 if (h1s) {
3633 char *method;
3634
3635 if (h1s->meth < HTTP_METH_OTHER)
3636 method = http_known_methods[h1s->meth].ptr;
3637 else
3638 method = "UNKNOWN";
3639 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3640 " .meth=%s status=%d",
3641 h1s, h1s->flags,
3642 h1m_state_str(h1s->req.state),
3643 h1m_state_str(h1s->res.state), method, h1s->status);
3644 if (h1s->cs)
3645 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3646 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003647
3648 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3649 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003650 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3651 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3652 h1s->subs->tasklet->calls,
3653 h1s->subs->tasklet->context);
3654 if (h1s->subs->tasklet->calls >= 1000000)
3655 ret = 1;
3656 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3657 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003658 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003659 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003660 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003661}
3662
3663
3664/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3665static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3666{
3667 struct h1_hdr_entry *entry;
3668
3669 /* Be sure there is a non-empty <to> */
3670 if (!strlen(to)) {
3671 memprintf(err, "expect <to>");
3672 return -1;
3673 }
3674
3675 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003676 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003677 memprintf(err, "<from> and <to> must not differ execpt the case");
3678 return -1;
3679 }
3680
3681 /* Be sure <from> does not already existsin the tree */
3682 if (ebis_lookup(&hdrs_map.map, from)) {
3683 memprintf(err, "duplicate entry '%s'", from);
3684 return -1;
3685 }
3686
3687 /* Create the entry and insert it in the tree */
3688 entry = malloc(sizeof(*entry));
3689 if (!entry) {
3690 memprintf(err, "out of memory");
3691 return -1;
3692 }
3693
3694 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003695 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003696 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003697 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003698 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003699 free(entry);
3700 memprintf(err, "out of memory");
3701 return -1;
3702 }
3703 ebis_insert(&hdrs_map.map, &entry->node);
3704 return 0;
3705}
3706
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003707/* Migrate the the connection to the current thread.
3708 * Return 0 if successful, non-zero otherwise.
3709 * Expected to be called with the old thread lock held.
3710 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003711static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003712{
3713 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003714 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003715
3716 if (fd_takeover(conn->handle.fd, conn) != 0)
3717 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003718
3719 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3720 /* We failed to takeover the xprt, even if the connection may
3721 * still be valid, flag it as error'd, as we have already
3722 * taken over the fd, and wake the tasklet, so that it will
3723 * destroy it.
3724 */
3725 conn->flags |= CO_FL_ERROR;
3726 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3727 return -1;
3728 }
3729
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003730 if (h1c->wait_event.events)
3731 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3732 h1c->wait_event.events, &h1c->wait_event);
3733 /* To let the tasklet know it should free itself, and do nothing else,
3734 * set its context to NULL.
3735 */
3736 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003737 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003738
3739 task = h1c->task;
3740 if (task) {
3741 task->context = NULL;
3742 h1c->task = NULL;
3743 __ha_barrier_store();
3744 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003745
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003746 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003747 if (!h1c->task) {
3748 h1_release(h1c);
3749 return -1;
3750 }
3751 h1c->task->process = h1_timeout_task;
3752 h1c->task->context = h1c;
3753 }
3754 h1c->wait_event.tasklet = tasklet_new();
3755 if (!h1c->wait_event.tasklet) {
3756 h1_release(h1c);
3757 return -1;
3758 }
3759 h1c->wait_event.tasklet->process = h1_io_cb;
3760 h1c->wait_event.tasklet->context = h1c;
3761 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3762 SUB_RETRY_RECV, &h1c->wait_event);
3763
3764 return 0;
3765}
3766
3767
Christopher Faulet98fbe952019-07-22 16:18:24 +02003768static void h1_hdeaders_case_adjust_deinit()
3769{
3770 struct ebpt_node *node, *next;
3771 struct h1_hdr_entry *entry;
3772
3773 node = ebpt_first(&hdrs_map.map);
3774 while (node) {
3775 next = ebpt_next(node);
3776 ebpt_delete(node);
3777 entry = container_of(node, struct h1_hdr_entry, node);
3778 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003779 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003780 free(entry);
3781 node = next;
3782 }
3783 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003784}
3785
Christopher Faulet98fbe952019-07-22 16:18:24 +02003786static int cfg_h1_headers_case_adjust_postparser()
3787{
3788 FILE *file = NULL;
3789 char *c, *key_beg, *key_end, *value_beg, *value_end;
3790 char *err;
3791 int rc, line = 0, err_code = 0;
3792
3793 if (!hdrs_map.name)
3794 goto end;
3795
3796 file = fopen(hdrs_map.name, "r");
3797 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003798 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003799 hdrs_map.name);
3800 err_code |= ERR_ALERT | ERR_FATAL;
3801 goto end;
3802 }
3803
3804 /* now parse all lines. The file may contain only two header name per
3805 * line, separated by spaces. All heading and trailing spaces will be
3806 * ignored. Lines starting with a # are ignored.
3807 */
3808 while (fgets(trash.area, trash.size, file) != NULL) {
3809 line++;
3810 c = trash.area;
3811
3812 /* strip leading spaces and tabs */
3813 while (*c == ' ' || *c == '\t')
3814 c++;
3815
3816 /* ignore emptu lines, or lines beginning with a dash */
3817 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3818 continue;
3819
3820 /* look for the end of the key */
3821 key_beg = c;
3822 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3823 c++;
3824 key_end = c;
3825
3826 /* strip middle spaces and tabs */
3827 while (*c == ' ' || *c == '\t')
3828 c++;
3829
3830 /* look for the end of the value, it is the end of the line */
3831 value_beg = c;
3832 while (*c && *c != '\n' && *c != '\r')
3833 c++;
3834 value_end = c;
3835
3836 /* trim possibly trailing spaces and tabs */
3837 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3838 value_end--;
3839
3840 /* set final \0 and check entries */
3841 *key_end = '\0';
3842 *value_end = '\0';
3843
3844 err = NULL;
3845 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3846 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003847 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003848 hdrs_map.name, err, line);
3849 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003850 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003851 goto end;
3852 }
3853 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003854 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003855 hdrs_map.name, err, line);
3856 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003857 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003858 }
3859 }
3860
3861 end:
3862 if (file)
3863 fclose(file);
3864 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3865 return err_code;
3866}
3867
3868
3869/* config parser for global "h1-outgoing-header-case-adjust" */
3870static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003871 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003872 char **err)
3873{
3874 if (too_many_args(2, args, err, NULL))
3875 return -1;
3876 if (!*(args[1]) || !*(args[2])) {
3877 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3878 return -1;
3879 }
3880 return add_hdr_case_adjust(args[1], args[2], err);
3881}
3882
3883/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3884static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003885 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003886 char **err)
3887{
3888 if (too_many_args(1, args, err, NULL))
3889 return -1;
3890 if (!*(args[1])) {
3891 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3892 return -1;
3893 }
3894 free(hdrs_map.name);
3895 hdrs_map.name = strdup(args[1]);
3896 return 0;
3897}
3898
3899
3900/* config keyword parsers */
3901static struct cfg_kw_list cfg_kws = {{ }, {
3902 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3903 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3904 { 0, NULL, NULL },
3905 }
3906};
3907
3908INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3909REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3910
3911
Christopher Faulet51dbc942018-09-13 09:05:15 +02003912/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003913/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003914/****************************************/
3915
3916/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003917static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003918 .init = h1_init,
3919 .wake = h1_wake,
3920 .attach = h1_attach,
3921 .get_first_cs = h1_get_first_cs,
3922 .detach = h1_detach,
3923 .destroy = h1_destroy,
3924 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003925 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003926 .rcv_buf = h1_rcv_buf,
3927 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003928#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003929 .rcv_pipe = h1_rcv_pipe,
3930 .snd_pipe = h1_snd_pipe,
3931#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003932 .subscribe = h1_subscribe,
3933 .unsubscribe = h1_unsubscribe,
3934 .shutr = h1_shutr,
3935 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003936 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003937 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003938 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003939 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003940 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003941};
3942
Christopher Faulet3f612f72021-02-05 16:44:21 +01003943static const struct mux_ops mux_h1_ops = {
3944 .init = h1_init,
3945 .wake = h1_wake,
3946 .attach = h1_attach,
3947 .get_first_cs = h1_get_first_cs,
3948 .detach = h1_detach,
3949 .destroy = h1_destroy,
3950 .avail_streams = h1_avail_streams,
3951 .used_streams = h1_used_streams,
3952 .rcv_buf = h1_rcv_buf,
3953 .snd_buf = h1_snd_buf,
3954#if defined(USE_LINUX_SPLICE)
3955 .rcv_pipe = h1_rcv_pipe,
3956 .snd_pipe = h1_snd_pipe,
3957#endif
3958 .subscribe = h1_subscribe,
3959 .unsubscribe = h1_unsubscribe,
3960 .shutr = h1_shutr,
3961 .shutw = h1_shutw,
3962 .show_fd = h1_show_fd,
3963 .ctl = h1_ctl,
3964 .takeover = h1_takeover,
3965 .flags = MX_FL_HTX|MX_FL_NO_UPG,
3966 .name = "H1",
3967};
Christopher Faulet51dbc942018-09-13 09:05:15 +02003968
Christopher Faulet3f612f72021-02-05 16:44:21 +01003969/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
3970static struct mux_proto_list mux_proto_h1 =
3971 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
3972static struct mux_proto_list mux_proto_http =
3973 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02003974
Christopher Faulet3f612f72021-02-05 16:44:21 +01003975INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
3976INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01003977
Christopher Faulet51dbc942018-09-13 09:05:15 +02003978/*
3979 * Local variables:
3980 * c-indent-level: 8
3981 * c-basic-offset: 8
3982 * End:
3983 */