blob: 3e2e094fcb780ada218990af282b1264c12ef03a [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 Faulet39c7b6b2021-01-21 17:44:35 +010057/* 0x00004000 - 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020058
Christopher Fauletb385b502021-01-13 18:47:57 +010059#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
60#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
61#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
62#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
63#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
64#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 +020065
Christopher Faulet10a86702021-04-07 14:18:11 +020066/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010067#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020068
Christopher Faulet51dbc942018-09-13 09:05:15 +020069/*
70 * H1 Stream flags (32 bits)
71 */
Christopher Faulet129817b2018-09-20 16:14:40 +020072#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020073
74#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
75#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet46e058d2021-09-20 07:47:27 +020076#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
77
Willy Tarreauc493c9c2019-06-03 14:18:22 +020078#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020079#define H1S_F_WANT_KAL 0x00000010
80#define H1S_F_WANT_TUN 0x00000020
81#define H1S_F_WANT_CLO 0x00000040
82#define H1S_F_WANT_MSK 0x00000070
83#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010084#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020085
Ilya Shipitsinacf84592021-02-06 22:29:08 +050086/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010087#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 +020088#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
89#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
90#define H1S_F_ERROR 0x00001800 /* stream error mask */
91
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020092#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 +020093#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020094
95/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020096struct h1c {
97 struct connection *conn;
98 struct proxy *px;
99 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +0200100 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200101 struct buffer ibuf; /* Input buffer to store data before parsing */
102 struct buffer obuf; /* Output buffer to store data after reformatting */
103
104 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
105 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
106
107 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100108 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200109 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
110 int timeout; /* client/server timeout duration */
111 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112};
113
114/* H1 stream descriptor */
115struct h1s {
116 struct h1c *h1c;
117 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100118 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200119
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100120 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200121
Olivier Houchardf502aca2018-12-14 19:42:40 +0100122 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200123 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200124 struct h1m req;
125 struct h1m res;
126
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500127 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200128 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100129
130 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200131};
132
Christopher Faulet98fbe952019-07-22 16:18:24 +0200133/* Map of headers used to convert outgoing headers */
134struct h1_hdrs_map {
135 char *name;
136 struct eb_root map;
137};
138
139/* An entry in a headers map */
140struct h1_hdr_entry {
141 struct ist name;
142 struct ebpt_node node;
143};
144
145/* Declare the headers map */
146static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
147
148
Christopher Faulet6b81df72019-10-01 22:08:43 +0200149/* trace source and events */
150static void h1_trace(enum trace_level level, uint64_t mask,
151 const struct trace_source *src,
152 const struct ist where, const struct ist func,
153 const void *a1, const void *a2, const void *a3, const void *a4);
154
155/* The event representation is split like this :
156 * h1c - internal H1 connection
157 * h1s - internal H1 stream
158 * strm - application layer
159 * rx - data receipt
160 * tx - data transmission
161 *
162 */
163static const struct trace_event h1_trace_events[] = {
164#define H1_EV_H1C_NEW (1ULL << 0)
165 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
166#define H1_EV_H1C_RECV (1ULL << 1)
167 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
168#define H1_EV_H1C_SEND (1ULL << 2)
169 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
170#define H1_EV_H1C_BLK (1ULL << 3)
171 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
172#define H1_EV_H1C_WAKE (1ULL << 4)
173 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
174#define H1_EV_H1C_END (1ULL << 5)
175 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
176#define H1_EV_H1C_ERR (1ULL << 6)
177 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
178
179#define H1_EV_RX_DATA (1ULL << 7)
180 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
181#define H1_EV_RX_EOI (1ULL << 8)
182 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
183#define H1_EV_RX_HDRS (1ULL << 9)
184 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
185#define H1_EV_RX_BODY (1ULL << 10)
186 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
187#define H1_EV_RX_TLRS (1ULL << 11)
188 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
189
190#define H1_EV_TX_DATA (1ULL << 12)
191 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
192#define H1_EV_TX_EOI (1ULL << 13)
193 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
194#define H1_EV_TX_HDRS (1ULL << 14)
195 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
196#define H1_EV_TX_BODY (1ULL << 15)
197 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
198#define H1_EV_TX_TLRS (1ULL << 16)
199 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
200
201#define H1_EV_H1S_NEW (1ULL << 17)
202 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
203#define H1_EV_H1S_BLK (1ULL << 18)
204 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
205#define H1_EV_H1S_END (1ULL << 19)
206 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
207#define H1_EV_H1S_ERR (1ULL << 20)
208 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
209
210#define H1_EV_STRM_NEW (1ULL << 21)
211 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
212#define H1_EV_STRM_RECV (1ULL << 22)
213 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
214#define H1_EV_STRM_SEND (1ULL << 23)
215 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
216#define H1_EV_STRM_WAKE (1ULL << 24)
217 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
218#define H1_EV_STRM_SHUT (1ULL << 25)
219 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
220#define H1_EV_STRM_END (1ULL << 26)
221 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
222#define H1_EV_STRM_ERR (1ULL << 27)
223 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
224
225 { }
226};
227
228static const struct name_desc h1_trace_lockon_args[4] = {
229 /* arg1 */ { /* already used by the connection */ },
230 /* arg2 */ { .name="h1s", .desc="H1 stream" },
231 /* arg3 */ { },
232 /* arg4 */ { }
233};
234
235static const struct name_desc h1_trace_decoding[] = {
236#define H1_VERB_CLEAN 1
237 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
238#define H1_VERB_MINIMAL 2
239 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
240#define H1_VERB_SIMPLE 3
241 { .name="simple", .desc="add request/response status line or htx info when available" },
242#define H1_VERB_ADVANCED 4
243 { .name="advanced", .desc="add header fields or frame decoding when available" },
244#define H1_VERB_COMPLETE 5
245 { .name="complete", .desc="add full data dump when available" },
246 { /* end */ }
247};
248
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200249static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200250 .name = IST("h1"),
251 .desc = "HTTP/1 multiplexer",
252 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
253 .default_cb = h1_trace,
254 .known_events = h1_trace_events,
255 .lockon_args = h1_trace_lockon_args,
256 .decoding = h1_trace_decoding,
257 .report_events = ~0, // report everything by default
258};
259
260#define TRACE_SOURCE &trace_h1
261INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
262
Christopher Faulet51dbc942018-09-13 09:05:15 +0200263/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100264DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
265DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200266
Christopher Faulet51dbc942018-09-13 09:05:15 +0200267static int h1_recv(struct h1c *h1c);
268static int h1_send(struct h1c *h1c);
269static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100270/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100271struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
272struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200273static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200274static void h1_wake_stream_for_recv(struct h1s *h1s);
275static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200276
Christopher Faulet6b81df72019-10-01 22:08:43 +0200277/* the H1 traces always expect that arg1, if non-null, is of type connection
278 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
279 * that arg3, if non-null, is a htx for rx/tx headers.
280 */
281static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
282 const struct ist where, const struct ist func,
283 const void *a1, const void *a2, const void *a3, const void *a4)
284{
285 const struct connection *conn = a1;
286 const struct h1c *h1c = conn ? conn->ctx : NULL;
287 const struct h1s *h1s = a2;
288 const struct htx *htx = a3;
289 const size_t *val = a4;
290
291 if (!h1c)
292 h1c = (h1s ? h1s->h1c : NULL);
293
294 if (!h1c || src->verbosity < H1_VERB_CLEAN)
295 return;
296
297 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200298 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200299
300 /* Display request and response states if h1s is defined */
301 if (h1s)
302 chunk_appendf(&trace_buf, " [%s, %s]",
303 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
304
305 if (src->verbosity == H1_VERB_CLEAN)
306 return;
307
308 /* Display the value to the 4th argument (level > STATE) */
309 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100310 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200311
312 /* Display status-line if possible (verbosity > MINIMAL) */
313 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
314 const struct htx_blk *blk = htx_get_head_blk(htx);
315 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
316 enum htx_blk_type type = htx_get_blk_type(blk);
317
318 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
319 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
320 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
321 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
322 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
323 }
324
325 /* Display h1c info and, if defined, h1s info (pointer + flags) */
326 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
327 if (h1s)
328 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
329
330 if (src->verbosity == H1_VERB_MINIMAL)
331 return;
332
333 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
334 if (src->level > TRACE_LEVEL_USER) {
335 if (src->verbosity == H1_VERB_COMPLETE ||
336 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
337 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
338 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
339 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
340 if (src->verbosity == H1_VERB_COMPLETE ||
341 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
342 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
343 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
344 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
345 }
346
347 /* Display htx info if defined (level > USER) */
348 if (src->level > TRACE_LEVEL_USER && htx) {
349 int full = 0;
350
351 /* Full htx info (level > STATE && verbosity > SIMPLE) */
352 if (src->level > TRACE_LEVEL_STATE) {
353 if (src->verbosity == H1_VERB_COMPLETE)
354 full = 1;
355 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
356 full = 1;
357 }
358
359 chunk_memcat(&trace_buf, "\n\t", 2);
360 htx_dump(&trace_buf, htx, full);
361 }
362}
363
364
Christopher Faulet51dbc942018-09-13 09:05:15 +0200365/*****************************************************/
366/* functions below are for dynamic buffer management */
367/*****************************************************/
368/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100369 * Indicates whether or not we may receive data. The rules are the following :
370 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200371 * must not attempt to receive
372 * - if we are waiting for the connection establishment, we must not attempt
373 * to receive
374 * - if an error was detected on the stream we must not attempt to receive
375 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100376 * - if the input buffer failed to be allocated or is full , we must not try
377 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200378 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200379 * - otherwise must may not attempt to receive
380 */
381static inline int h1_recv_allowed(const struct h1c *h1c)
382{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100383 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100384 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 +0200385 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200386 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200387
Willy Tarreau2febb842020-07-31 09:15:43 +0200388 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
389 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 +0100390 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200391 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100392
Christopher Faulet119ac872020-09-30 17:33:22 +0200393 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
394 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
395 return 0;
396 }
397
Christopher Fauletd17ad822020-09-24 15:14:29 +0200398 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200399 return 1;
400
Christopher Faulet6b81df72019-10-01 22:08:43 +0200401 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 +0200402 return 0;
403}
404
405/*
406 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
407 * flags are used to figure what buffer was requested. It returns 1 if the
408 * allocation succeeds, in which case the connection is woken up, or 0 if it's
409 * impossible to wake up and we prefer to be woken up later.
410 */
411static int h1_buf_available(void *target)
412{
413 struct h1c *h1c = target;
414
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100415 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200416 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 +0200417 h1c->flags &= ~H1C_F_IN_ALLOC;
418 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200419 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200420 return 1;
421 }
422
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100423 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200424 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 +0200425 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200426 if (h1c->h1s)
427 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200428 return 1;
429 }
430
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100431 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200432 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
433 h1c->flags &= ~H1C_F_IN_SALLOC;
434 tasklet_wakeup(h1c->wait_event.tasklet);
435 return 1;
436 }
437
Christopher Faulet51dbc942018-09-13 09:05:15 +0200438 return 0;
439}
440
441/*
442 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
443 */
444static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
445{
446 struct buffer *buf = NULL;
447
Willy Tarreau2b718102021-04-21 07:32:39 +0200448 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100449 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200450 h1c->buf_wait.target = h1c;
451 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200452 LIST_APPEND(&ti->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200453 }
454 return buf;
455}
456
457/*
458 * Release a buffer, if any, and try to wake up entities waiting in the buffer
459 * wait queue.
460 */
461static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
462{
463 if (bptr->size) {
464 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100465 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200466 }
467}
468
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100469/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100470 * 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 +0100471 * not. This flag is only set when no H1S is attached and when the previous
472 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100473 */
474static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200475{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100476 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200477
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100478 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200479}
480
Willy Tarreau00f18a32019-01-26 12:19:01 +0100481/* returns the number of streams still available on a connection */
482static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100483{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100484 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100485}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200486
Christopher Faulet7a145d62020-08-05 11:31:16 +0200487/* Refresh the h1c task timeout if necessary */
488static void h1_refresh_timeout(struct h1c *h1c)
489{
490 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100491 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200492 /* half-closed or dead connections : switch to clientfin/serverfin
493 * timeouts so that we don't hang too long on clients that have
494 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200495 */
496 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200497 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
498 }
499 else if (b_data(&h1c->obuf)) {
500 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200501 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200502 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
503 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100504 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
505 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200506 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100507 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 +0200508 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200509 else {
510 /* alive back connections of front connections with a conn-stream attached */
511 h1c->task->expire = TICK_ETERNITY;
512 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
513 }
514
Christopher Fauletdbe57792020-10-05 17:50:58 +0200515 /* Finally set the idle expiration date if shorter */
516 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200517 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
518 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200519 }
520}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200521
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200522static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200523{
524 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
525 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
526 h1c->idle_exp = TICK_ETERNITY;
527 return;
528 }
529
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100530 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200531 if (!tick_isset(h1c->idle_exp)) {
532 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
533 !b_data(&h1c->ibuf) && /* No input data */
534 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
535 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
536 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
537 }
538 else {
539 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
540 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
541 }
542 }
543 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100544 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200545 if (!tick_isset(h1c->idle_exp)) {
546 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
547 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
548 }
549 }
550 else { // CS_ATTACHED or SHUTDOWN
551 h1c->idle_exp = TICK_ETERNITY;
552 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
553 }
554}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200555/*****************************************************************/
556/* functions below are dedicated to the mux setup and management */
557/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200558
559/* returns non-zero if there are input data pending for stream h1s. */
560static inline size_t h1s_data_pending(const struct h1s *h1s)
561{
562 const struct h1m *h1m;
563
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200564 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100565 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200566}
567
Christopher Faulet16df1782020-12-04 16:47:41 +0100568/* Creates a new conn-stream and the associate stream. <input> is used as input
569 * buffer for the stream. On success, it is transferred to the stream and the
570 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
571 * mux must still take care of it. However, there is nothing special to do
572 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
573 * b_free() on it is always safe. This function returns the conn-stream on
574 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200575static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100576{
577 struct conn_stream *cs;
578
Christopher Faulet6b81df72019-10-01 22:08:43 +0200579 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200580 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200581 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100582 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 +0100583 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200584 }
Christopher Faulet47365272018-10-31 17:40:50 +0100585 h1s->cs = cs;
586 cs->ctx = h1s;
587
588 if (h1s->flags & H1S_F_NOT_FIRST)
589 cs->flags |= CS_FL_NOT_FIRST;
590
Christopher Faulet26256f82020-09-14 11:40:13 +0200591 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200592 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 +0100593 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200594 }
595
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100596 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 +0200597 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100598 return cs;
599
600 err:
601 cs_free(cs);
602 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100603 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100604 return NULL;
605}
606
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100607static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
608{
609 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
610
611 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100612 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 +0100613 goto err;
614 }
615
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100616 h1s->h1c->flags |= H1C_F_ST_READY;
617 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
618 return h1s->cs;
619
620 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100621 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100622 return NULL;
623}
624
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200625static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200626{
627 struct h1s *h1s;
628
Christopher Faulet6b81df72019-10-01 22:08:43 +0200629 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
630
Christopher Faulet51dbc942018-09-13 09:05:15 +0200631 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100632 if (!h1s) {
633 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 +0100634 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100635 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200636 h1s->h1c = h1c;
637 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200638 h1s->sess = NULL;
639 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100640 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100641 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200642 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100643 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200644
645 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100646 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200647
Christopher Faulet129817b2018-09-20 16:14:40 +0200648 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100649 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200650
651 h1s->status = 0;
652 h1s->meth = HTTP_METH_OTHER;
653
Christopher Faulet47365272018-10-31 17:40:50 +0100654 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
655 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100656 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100657
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200658 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
659 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200660
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200661 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100662 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200663 return NULL;
664}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100665
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200666static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
667{
668 struct session *sess = h1c->conn->owner;
669 struct h1s *h1s;
670
671 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
672
673 h1s = h1s_new(h1c);
674 if (!h1s)
675 goto fail;
676
677 h1s->sess = sess;
678
679 if (h1c->px->options2 & PR_O2_REQBUG_OK)
680 h1s->req.err_pos = -1;
681
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200682 h1c->idle_exp = TICK_ETERNITY;
683 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200684 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200685 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100686
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200687 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100688 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200689 return NULL;
690}
691
692static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
693{
694 struct h1s *h1s;
695
696 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
697
698 h1s = h1s_new(h1c);
699 if (!h1s)
700 goto fail;
701
Christopher Faulet10a86702021-04-07 14:18:11 +0200702 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200703 h1s->cs = cs;
704 h1s->sess = sess;
705 cs->ctx = h1s;
706
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100707 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200708
709 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
710 h1s->res.err_pos = -1;
711
712 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
713 return h1s;
714
715 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100716 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100717 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200718}
719
720static void h1s_destroy(struct h1s *h1s)
721{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200722 if (h1s) {
723 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200724
Christopher Faulet6b81df72019-10-01 22:08:43 +0200725 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200726 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200727
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100728 if (h1s->subs)
729 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200730
Christopher Fauletd17ad822020-09-24 15:14:29 +0200731 h1_release_buf(h1c, &h1s->rxbuf);
732
Christopher Faulet10a86702021-04-07 14:18:11 +0200733 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100734 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200735 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
736 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200737 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100738 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100739 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 +0200740 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100741
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100742 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100743 !(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 +0100744 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100745 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100746 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100747 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
748 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200749 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100750 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100751 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200752 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200753 pool_free(pool_head_h1s, h1s);
754 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200755}
756
757/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200758 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500759 * to the existing conn_stream (for outgoing connections or for incoming ones
760 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200761 * establishment). <input> is always used as Input buffer and may contain
762 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
763 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200764 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200765static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
766 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200767{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200768 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100769 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200770 void *conn_ctx = conn->ctx;
771
772 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200773
774 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100775 if (!h1c) {
776 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200777 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100778 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200779 h1c->conn = conn;
780 h1c->px = proxy;
781
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100782 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200783 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200784 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200785 h1c->obuf = BUF_NULL;
786 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200787 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200788
Willy Tarreau90f366b2021-02-20 11:49:49 +0100789 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200790 h1c->wait_event.tasklet = tasklet_new();
791 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200792 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200793 h1c->wait_event.tasklet->process = h1_io_cb;
794 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100795 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200796 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200797
Christopher Faulete9b70722019-04-08 10:46:02 +0200798 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200799 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100800 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
801 if (tick_isset(proxy->timeout.serverfin))
802 h1c->shut_timeout = proxy->timeout.serverfin;
803 } else {
804 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
805 if (tick_isset(proxy->timeout.clientfin))
806 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200807
808 LIST_APPEND(&mux_stopping_data[tid].list,
809 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100810 }
811 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200812 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100813 if (!t) {
814 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 +0100815 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100816 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100817
818 h1c->task = t;
819 t->process = h1_timeout_task;
820 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200821
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100822 t->expire = tick_add(now_ms, h1c->timeout);
823 }
824
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100825 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200826
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200827 if (h1c->flags & H1C_F_IS_BACK) {
828 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200829 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
830 goto fail;
831 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100832 else if (conn_ctx) {
833 /* Upgraded frontend connection (from TCP) */
834 struct conn_stream *cs = conn_ctx;
835
836 if (!h1c_frt_stream_new(h1c))
837 goto fail;
838
839 h1c->h1s->cs = cs;
840 cs->ctx = h1c->h1s;
841
842 /* Attach the CS but Not ready yet */
843 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
844 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
845 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
846 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100847
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200848 if (t) {
849 h1_set_idle_expiration(h1c);
850 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100851 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200852 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100853
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200854 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100855 if (b_data(&h1c->ibuf))
856 tasklet_wakeup(h1c->wait_event.tasklet);
857 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200858 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200859
860 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200861 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200862 return 0;
863
864 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200865 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200866 if (h1c->wait_event.tasklet)
867 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200868 pool_free(pool_head_h1c, h1c);
869 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200870 conn->ctx = conn_ctx; // restore saved context
871 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200872 return -1;
873}
874
Christopher Faulet73c12072019-04-08 11:23:22 +0200875/* release function. This one should be called to free all resources allocated
876 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200877 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200878static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200879{
Christopher Faulet61840e72019-04-15 09:33:32 +0200880 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200881
Christopher Faulet6b81df72019-10-01 22:08:43 +0200882 TRACE_POINT(H1_EV_H1C_END);
883
Christopher Faulet51dbc942018-09-13 09:05:15 +0200884 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200885 /* The connection must be aattached to this mux to be released */
886 if (h1c->conn && h1c->conn->ctx == h1c)
887 conn = h1c->conn;
888
Christopher Faulet6b81df72019-10-01 22:08:43 +0200889 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
890
Christopher Faulet61840e72019-04-15 09:33:32 +0200891 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200892 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200893 /* Make sure we're no longer subscribed to anything */
894 if (h1c->wait_event.events)
895 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
896 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200897 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200898 /* connection successfully upgraded to H2, this
899 * mux was already released */
900 return;
901 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100902 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200903 sess_log(conn->owner); /* Log if the upgrade failed */
904 }
905
Olivier Houchard45c44372019-06-11 14:06:23 +0200906
Willy Tarreau2b718102021-04-21 07:32:39 +0200907 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100908 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200909
910 h1_release_buf(h1c, &h1c->ibuf);
911 h1_release_buf(h1c, &h1c->obuf);
912
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100913 if (h1c->task) {
914 h1c->task->context = NULL;
915 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
916 h1c->task = NULL;
917 }
918
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200919 if (h1c->wait_event.tasklet)
920 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200921
Christopher Fauletf2824e62018-10-01 12:12:37 +0200922 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200923 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100924 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200925 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200926 pool_free(pool_head_h1c, h1c);
927 }
928
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200929 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200930 if (!conn_is_back(conn))
931 LIST_DEL_INIT(&conn->stopping_list);
932
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200933 conn->mux = NULL;
934 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200935 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200936
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200937 conn_stop_tracking(conn);
938 conn_full_close(conn);
939 if (conn->destroy_cb)
940 conn->destroy_cb(conn);
941 conn_free(conn);
942 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200943}
944
945/******************************************************/
946/* functions below are for the H1 protocol processing */
947/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200948/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
949 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200950 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100951static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200952{
Christopher Faulet570d1612018-11-26 11:13:57 +0100953 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200954
Christopher Faulet570d1612018-11-26 11:13:57 +0100955 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200956 (*(p + 5) > '1' ||
957 (*(p + 5) == '1' && *(p + 7) >= '1')))
958 h1m->flags |= H1_MF_VER_11;
959}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200960
Christopher Faulet9768c262018-10-22 09:34:31 +0200961/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
962 * greater or equal to 1.1
963 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100964static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200965{
Christopher Faulet570d1612018-11-26 11:13:57 +0100966 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200967
Christopher Faulet570d1612018-11-26 11:13:57 +0100968 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200969 (*(p + 5) > '1' ||
970 (*(p + 5) == '1' && *(p + 7) >= '1')))
971 h1m->flags |= H1_MF_VER_11;
972}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200973
Christopher Fauletf2824e62018-10-01 12:12:37 +0200974/* Deduce the connection mode of the client connection, depending on the
975 * configuration and the H1 message flags. This function is called twice, the
976 * first time when the request is parsed and the second time when the response
977 * is parsed.
978 */
979static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
980{
981 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200982
983 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100984 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +0100985 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100986 h1s->status == 101) {
987 /* Either we've established an explicit tunnel, or we're
988 * switching the protocol. In both cases, we're very unlikely to
989 * understand the next protocols. We have to switch to tunnel
990 * mode, so that we transfer the request and responses then let
991 * this protocol pass unmodified. When we later implement
992 * specific parsers for such protocols, we'll want to check the
993 * Upgrade header which contains information about that protocol
994 * for responses with status 101 (eg: see RFC2817 about TLS).
995 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200996 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200997 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 +0100998 }
999 else if (h1s->flags & H1S_F_WANT_KAL) {
1000 /* By default the client is in KAL mode. CLOSE mode mean
1001 * it is imposed by the client itself. So only change
1002 * KAL mode here. */
1003 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1004 /* no length known or explicit close => close */
1005 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001006 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 +01001007 }
1008 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1009 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001010 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001011 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001012 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 +01001013 }
1014 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001015 }
1016 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001017 /* Input direction: first pass */
1018 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1019 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001020 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001021 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 +01001022 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001023 }
1024
1025 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001026 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001027 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001028 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);
1029 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001030}
1031
1032/* Deduce the connection mode of the client connection, depending on the
1033 * configuration and the H1 message flags. This function is called twice, the
1034 * first time when the request is parsed and the second time when the response
1035 * is parsed.
1036 */
1037static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1038{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001039 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001040 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001041 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001042
Christopher Fauletf2824e62018-10-01 12:12:37 +02001043 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001044 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001045 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001046 h1s->status == 101) {
1047 /* Either we've established an explicit tunnel, or we're
1048 * switching the protocol. In both cases, we're very unlikely to
1049 * understand the next protocols. We have to switch to tunnel
1050 * mode, so that we transfer the request and responses then let
1051 * this protocol pass unmodified. When we later implement
1052 * specific parsers for such protocols, we'll want to check the
1053 * Upgrade header which contains information about that protocol
1054 * for responses with status 101 (eg: see RFC2817 about TLS).
1055 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001056 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001057 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 +01001058 }
1059 else if (h1s->flags & H1S_F_WANT_KAL) {
1060 /* By default the server is in KAL mode. CLOSE mode mean
1061 * it is imposed by haproxy itself. So only change KAL
1062 * mode here. */
1063 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1064 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1065 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1066 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001067 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 +01001068 }
1069 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001070 }
Christopher Faulet70033782018-12-05 13:50:11 +01001071 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001072 /* Output direction: first pass */
1073 if (h1m->flags & H1_MF_CONN_CLO) {
1074 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001075 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001076 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 +01001077 }
1078 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1079 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1080 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1081 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1082 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1083 /* no explicit keep-alive option httpclose/server-close => close */
1084 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001085 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 +01001086 }
Christopher Faulet70033782018-12-05 13:50:11 +01001087 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001088
1089 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001090 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001091 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001092 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);
1093 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001094}
1095
Christopher Fauletb992af02019-03-28 15:42:24 +01001096static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001097{
1098 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001099
1100 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1101 * token is found
1102 */
1103 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001104 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001105
1106 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001107 if (!(h1m->flags & H1_MF_VER_11)) {
1108 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 +01001109 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001110 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001111 }
1112 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001113 if (h1m->flags & H1_MF_VER_11) {
1114 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001115 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001116 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001117 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001118}
1119
Christopher Fauletb992af02019-03-28 15:42:24 +01001120static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001121{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001122 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1123 * token is found
1124 */
1125 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001126 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001127
1128 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001129 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001130 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1131 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 +01001132 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001133 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001134 }
1135 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001136 if (h1m->flags & H1_MF_VER_11) {
1137 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001138 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001139 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001140 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001141}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001142
Christopher Fauletb992af02019-03-28 15:42:24 +01001143static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001144{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001145 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001146 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001147 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001148 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001149}
1150
Christopher Fauletb992af02019-03-28 15:42:24 +01001151static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1152{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001153 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001154 h1_set_cli_conn_mode(h1s, h1m);
1155 else
1156 h1_set_srv_conn_mode(h1s, h1m);
1157
1158 if (!(h1m->flags & H1_MF_RESP))
1159 h1_update_req_conn_value(h1s, h1m, conn_val);
1160 else
1161 h1_update_res_conn_value(h1s, h1m, conn_val);
1162}
Christopher Faulete44769b2018-11-29 23:01:45 +01001163
Christopher Faulet98fbe952019-07-22 16:18:24 +02001164/* Try to adjust the case of the message header name using the global map
1165 * <hdrs_map>.
1166 */
1167static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1168{
1169 struct ebpt_node *node;
1170 struct h1_hdr_entry *entry;
1171
1172 /* No entry in the map, do nothing */
1173 if (eb_is_empty(&hdrs_map.map))
1174 return;
1175
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001176 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001177 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1178 return;
1179
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001180 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001181 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1182 return;
1183
1184 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1185 if (!node)
1186 return;
1187 entry = container_of(node, struct h1_hdr_entry, node);
1188 name->ptr = entry->name.ptr;
1189 name->len = entry->name.len;
1190}
1191
Christopher Faulete44769b2018-11-29 23:01:45 +01001192/* Append the description of what is present in error snapshot <es> into <out>.
1193 * The description must be small enough to always fit in a buffer. The output
1194 * buffer may be the trash so the trash must not be used inside this function.
1195 */
1196static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1197{
1198 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001199 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1200 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1201 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1202 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1203 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1204 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001205}
1206/*
1207 * Capture a bad request or response and archive it in the proxy's structure.
1208 * By default it tries to report the error position as h1m->err_pos. However if
1209 * this one is not set, it will then report h1m->next, which is the last known
1210 * parsing point. The function is able to deal with wrapping buffers. It always
1211 * displays buffers as a contiguous area starting at buf->p. The direction is
1212 * determined thanks to the h1m's flags.
1213 */
1214static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1215 struct h1m *h1m, struct buffer *buf)
1216{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001217 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001218 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001219 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001220 union error_snapshot_ctx ctx;
1221
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001222 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001223 if (sess == NULL)
1224 sess = si_strm(h1s->cs->data)->sess;
1225 if (!(h1m->flags & H1_MF_RESP))
1226 other_end = si_strm(h1s->cs->data)->be;
1227 else
1228 other_end = sess->fe;
1229 } else
1230 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001231
1232 /* http-specific part now */
1233 ctx.h1.state = h1m->state;
1234 ctx.h1.c_flags = h1c->flags;
1235 ctx.h1.s_flags = h1s->flags;
1236 ctx.h1.m_flags = h1m->flags;
1237 ctx.h1.m_clen = h1m->curr_len;
1238 ctx.h1.m_blen = h1m->body_len;
1239
1240 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1241 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001242 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1243 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001244}
1245
Christopher Fauletadb22202018-12-12 10:32:09 +01001246/* Emit the chunksize followed by a CRLF in front of data of the buffer
1247 * <buf>. It goes backwards and starts with the byte before the buffer's
1248 * head. The caller is responsible for ensuring there is enough room left before
1249 * the buffer's head for the string.
1250 */
1251static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1252{
1253 char *beg, *end;
1254
1255 beg = end = b_head(buf);
1256 *--beg = '\n';
1257 *--beg = '\r';
1258 do {
1259 *--beg = hextab[chksz & 0xF];
1260 } while (chksz >>= 4);
1261 buf->head -= (end - beg);
1262 b_add(buf, end - beg);
1263}
1264
1265/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1266 * ensuring there is enough room left in the buffer for the string. */
1267static void h1_emit_chunk_crlf(struct buffer *buf)
1268{
1269 *(b_peek(buf, b_data(buf))) = '\r';
1270 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1271 b_add(buf, 2);
1272}
1273
Christopher Faulet129817b2018-09-20 16:14:40 +02001274/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001275 * Switch the stream to tunnel mode. This function must only be called on 2xx
1276 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001277 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001278static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001279{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001280 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001281
Christopher Faulet5be651d2021-01-22 15:28:03 +01001282 h1s->req.state = H1_MSG_TUNNEL;
1283 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001284
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001285 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001286 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001287
Christopher Faulet5be651d2021-01-22 15:28:03 +01001288 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 +01001289
Christopher Faulet10a86702021-04-07 14:18:11 +02001290 if (h1s->flags & H1S_F_RX_BLK) {
1291 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001292 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001293 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 +02001294 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001295 if (h1s->flags & H1S_F_TX_BLK) {
1296 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001297 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001298 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 +01001299 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001300}
1301
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001302/* Search for a websocket key header. The message should have been identified
1303 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001304 *
1305 * On the request side, if found the key is stored in the session. It might be
1306 * needed to calculate response key if the server side is using http/2.
1307 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001308 * On the response side, the key might be verified if haproxy has been
1309 * responsible for the generation of a key. This happens when a h2 client is
1310 * interfaced with a h1 server.
1311 *
1312 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001313 */
1314static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1315{
1316 struct htx_blk *blk;
1317 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001318 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001319 int ws_key_found = 0, idx;
1320
1321 idx = htx_get_head(htx); // returns the SL that we skip
1322 while ((idx = htx_get_next(htx, idx)) != -1) {
1323 blk = htx_get_blk(htx, idx);
1324 type = htx_get_blk_type(blk);
1325
1326 if (type == HTX_BLK_UNUSED)
1327 continue;
1328
1329 if (type != HTX_BLK_HDR)
1330 break;
1331
1332 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001333 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001334
Amaury Denoyellec1938232020-12-11 17:53:03 +01001335 /* Websocket key is base64 encoded of 16 bytes */
1336 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001337 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001338 /* Copy the key on request side
1339 * we might need it if the server is using h2 and does
1340 * not provide the response
1341 */
1342 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001343 ws_key_found = 1;
1344 break;
1345 }
1346 else if (isteqi(n, ist("sec-websocket-accept")) &&
1347 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001348 /* Need to verify the response key if the input was
1349 * generated by haproxy
1350 */
1351 if (h1s->ws_key[0]) {
1352 char key[29];
1353 h1_calculate_ws_output_key(h1s->ws_key, key);
1354 if (!isteqi(ist(key), v))
1355 break;
1356 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001357 ws_key_found = 1;
1358 break;
1359 }
1360 }
1361
1362 /* missing websocket key, reject the message */
1363 if (!ws_key_found) {
1364 htx->flags |= HTX_FL_PARSING_ERROR;
1365 return 0;
1366 }
1367
1368 return 1;
1369}
1370
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001371/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001372 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001373 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001374 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1375 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001376 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001377static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1378 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001379{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001380 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001381 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001382
Willy Tarreau022e5e52020-09-10 09:33:15 +02001383 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 +02001384
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001385 if (h1s->meth == HTTP_METH_CONNECT)
1386 h1m->flags |= H1_MF_METH_CONNECT;
1387 if (h1s->meth == HTTP_METH_HEAD)
1388 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001389
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001390 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001391 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001392 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 +02001393 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001394 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001395 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 +02001396 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1397 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001398 else if (ret == -2) {
1399 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);
1400 h1s->flags |= H1S_F_RX_CONGESTED;
1401 }
1402 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001403 goto end;
1404 }
1405
Christopher Faulete136bd12021-09-21 18:44:55 +02001406
1407 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1408 * payload if the c-l is not null or the the payload is chunk-encoded.
1409 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1410 * instead of a 400-Bad-Request.
1411 */
1412 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1413 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1414 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1415 h1s->flags |= H1S_F_PARSING_ERROR;
1416 htx->flags |= HTX_FL_PARSING_ERROR;
1417 h1s->h1c->errcode = 413;
1418 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);
1419 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1420 ret = 0;
1421 goto end;
1422 }
1423
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001424 /* Reject any message with an unknown transfer-encoding. In fact if any
1425 * encoding other than "chunked". A 422-Unprocessable-Content is
1426 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1427 * response.
1428 */
1429 if (h1m->flags & H1_MF_TE_OTHER) {
1430 h1s->flags |= H1S_F_PARSING_ERROR;
1431 htx->flags |= HTX_FL_PARSING_ERROR;
1432 if (!(h1m->flags & H1_MF_RESP))
1433 h1s->h1c->errcode = 422;
1434 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1435 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1436 ret = 0;
1437 goto end;
1438 }
1439
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001440 /* If websocket handshake, search for the websocket key */
1441 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1442 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1443 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1444 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001445 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001446 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 +01001447 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1448
1449 ret = 0;
1450 goto end;
1451 }
1452 }
1453
Christopher Faulet486498c2019-10-11 14:22:00 +02001454 if (h1m->err_pos >= 0) {
1455 /* Maybe we found an error during the parsing while we were
1456 * configured not to block on that, so we have to capture it
1457 * now.
1458 */
1459 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1460 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1461 }
1462
Christopher Faulet5696f542020-12-02 16:08:38 +01001463 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001464 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001465 if (h1s->meth == HTTP_METH_HEAD)
1466 h1s->flags |= H1S_F_BODYLESS_RESP;
1467 }
1468 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001469 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001470 if (h1s->status == 204 || h1s->status == 304)
1471 h1s->flags |= H1S_F_BODYLESS_RESP;
1472 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001473 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001474 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001475
Christopher Faulet129817b2018-09-20 16:14:40 +02001476 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001477 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 +02001478 return ret;
1479}
1480
1481/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001482 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001483 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1484 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001485 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001486static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1487 struct buffer *buf, size_t *ofs, size_t max,
1488 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001489{
Christopher Fauletde471a42021-02-01 16:37:28 +01001490 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001491
Willy Tarreau022e5e52020-09-10 09:33:15 +02001492 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 +02001493 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001494 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001495 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 +01001496 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001497 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001498 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 +02001499 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001500 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001501 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001502 }
1503
Christopher Faulet02a02532019-11-15 09:36:28 +01001504 *ofs += ret;
1505
1506 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001507 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1508 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);
1509 h1s->flags |= H1S_F_RX_CONGESTED;
1510 }
1511
Willy Tarreau022e5e52020-09-10 09:33:15 +02001512 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 +02001513 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001514}
1515
1516/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001517 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1518 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1519 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001520 * responsible to update the parser state <h1m>. If more room is requested,
1521 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001522 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001523static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1524 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001525{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001526 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001527
Willy Tarreau022e5e52020-09-10 09:33:15 +02001528 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 +02001529 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001530 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001531 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 +02001532 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001533 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001534 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 +02001535 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1536 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001537 else if (ret == -2) {
1538 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);
1539 h1s->flags |= H1S_F_RX_CONGESTED;
1540 }
1541 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001542 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001543 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001544
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001545 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001546
1547 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001548 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 +02001549 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001550}
1551
1552/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001553 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001554 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1555 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001556 *
1557 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001558 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001559static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001560{
Christopher Faulet539e0292018-11-19 10:40:09 +01001561 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001562 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001563 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001564 size_t data;
1565 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001566 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001567
Christopher Faulet539e0292018-11-19 10:40:09 +01001568 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001569 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001570
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001571 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001572 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001573
Christopher Faulet2eed8002020-12-07 11:26:13 +01001574 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001575 goto end;
1576
Christopher Faulet10a86702021-04-07 14:18:11 +02001577 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001578 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001579
Christopher Faulet46e058d2021-09-20 07:47:27 +02001580 /* Always remove congestion flags and try to process more input data */
1581 h1s->flags &= ~H1S_F_RX_CONGESTED;
1582
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001583 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001584 size_t used = htx_used_space(htx);
1585
Christopher Faulet129817b2018-09-20 16:14:40 +02001586 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001587 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001588 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001589 if (!ret)
1590 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001591
1592 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1593 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1594
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001595 if ((h1m->flags & H1_MF_RESP) &&
1596 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1597 h1m_init_res(&h1s->res);
1598 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001599 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001600 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001601 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001602 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001603 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001604 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001605 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001606 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001607
1608 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1609 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001610 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001611 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001612 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001613 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001614 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001615 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001616
Christopher Faulet76014fd2019-12-10 11:47:22 +01001617 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1618 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001619 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001620 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001621 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1622 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001623
Christopher Faulet5be651d2021-01-22 15:28:03 +01001624 if ((h1m->flags & H1_MF_RESP) &&
1625 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1626 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001627 else {
1628 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1629 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001630 h1s->flags |= H1S_F_RX_BLK;
1631 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001632 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001633 if (h1s->flags & H1S_F_TX_BLK) {
1634 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001635 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001636 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 +01001637 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001638 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001639 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001640 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001641 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001642 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001643 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001644 if (!ret)
1645 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001646
1647 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1648 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001649 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001650 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001651 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001652 break;
1653 }
1654
Christopher Faulet30db3d72019-05-17 15:35:33 +02001655 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001656 } 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 +01001657
Christopher Faulet129817b2018-09-20 16:14:40 +02001658
Christopher Faulet2eed8002020-12-07 11:26:13 +01001659 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001660 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 +02001661 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001662 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001663
Christopher Faulet539e0292018-11-19 10:40:09 +01001664 b_del(&h1c->ibuf, total);
1665
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001666 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001667 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1668
Christopher Faulet30db3d72019-05-17 15:35:33 +02001669 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001670 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001671 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001672 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 +01001673 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001674 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001675
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001676 if (!b_data(&h1c->ibuf))
1677 h1_release_buf(h1c, &h1c->ibuf);
1678
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001679 if (!(h1c->flags & H1C_F_ST_READY)) {
1680 /* The H1 connection is not ready. Most of time, there is no CS
1681 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1682 * cases, it is only possible on the client side.
1683 */
1684 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1685
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001686 if (h1m->state <= H1_MSG_LAST_LF) {
1687 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1688 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1689 goto end;
1690 }
1691
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001692 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1693 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1694 BUG_ON(h1s->cs);
1695 if (!h1s_new_cs(h1s, buf)) {
1696 h1c->flags |= H1C_F_ST_ERROR;
1697 goto err;
1698 }
1699 }
1700 else {
1701 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1702 BUG_ON(h1s->cs == NULL);
1703 if (!h1s_upgrade_cs(h1s, buf)) {
1704 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001705 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001706 goto err;
1707 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001708 }
1709 }
1710
1711 /* Here h1s->cs is always defined */
Christopher Fauleta583af62020-09-24 15:35:37 +02001712 if (!(h1m->flags & H1_MF_CHNK) &&
1713 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) {
1714 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1715 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1716 }
1717 else {
1718 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1719 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1720 }
1721
Christopher Fauleta22782b2021-02-08 17:18:01 +01001722 /* Set EOI on conn-stream in DONE state iff:
1723 * - it is a response
1724 * - it is a request but no a protocol upgrade nor a CONNECT
1725 *
1726 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001727 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001728 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001729 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1730 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001731 h1s->cs->flags |= CS_FL_EOI;
1732
Christopher Fauletec4207c2021-04-08 18:34:30 +02001733 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001734 /* When Input data are pending for this message, notify upper layer that
1735 * the mux need more space in the HTX buffer to continue if :
1736 *
1737 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1738 * - Headers or trailers are pending to be copied.
1739 */
1740 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001741 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001742 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1743 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001744 else {
1745 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1746 if (h1s->flags & H1S_F_REOS) {
1747 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001748 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1749 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1750 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001751 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001752 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001753 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001754 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001755 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1756 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001757
Christopher Faulet10a86702021-04-07 14:18:11 +02001758 if (h1s->flags & H1S_F_TX_BLK) {
1759 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001760 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001761 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 +01001762 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001763 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001764 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001765
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001766 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001767 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001768 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001769
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001770 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001771 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001772 if (h1s->cs)
1773 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001774 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001775 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001776}
1777
Christopher Faulet129817b2018-09-20 16:14:40 +02001778/*
1779 * Process outgoing data. It parses data and transfer them from the channel buffer into
1780 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1781 * 0 if it couldn't proceed.
1782 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001783static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001784{
Christopher Faulet129817b2018-09-20 16:14:40 +02001785 struct h1s *h1s = h1c->h1s;
1786 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001787 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001788 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001789 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001790 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001791 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001792 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001793
Christopher Faulet94b2c762019-05-24 15:28:57 +02001794 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001795 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1796
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001797 if (htx_is_empty(chn_htx))
1798 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001799
Christopher Faulet10a86702021-04-07 14:18:11 +02001800 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001801 goto end;
1802
Christopher Faulet51dbc942018-09-13 09:05:15 +02001803 if (!h1_get_buf(h1c, &h1c->obuf)) {
1804 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001805 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 +02001806 goto end;
1807 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001808
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001809 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001810
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001811 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001812 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001813
Willy Tarreau3815b222018-12-11 19:50:43 +01001814 /* Perform some optimizations to reduce the number of buffer copies.
1815 * First, if the mux's buffer is empty and the htx area contains
1816 * exactly one data block of the same size as the requested count,
1817 * then it's possible to simply swap the caller's buffer with the
1818 * mux's output buffer and adjust offsets and length to match the
1819 * entire DATA HTX block in the middle. In this case we perform a
1820 * true zero-copy operation from end-to-end. This is the situation
1821 * that happens all the time with large files. Second, if this is not
1822 * possible, but the mux's output buffer is empty, we still have an
1823 * opportunity to avoid the copy to the intermediary buffer, by making
1824 * the intermediary buffer's area point to the output buffer's area.
1825 * In this case we want to skip the HTX header to make sure that copies
1826 * remain aligned and that this operation remains possible all the
1827 * time. This goes for headers, data blocks and any data extracted from
1828 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001829 */
1830 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001831 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001832 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001833 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001834 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001835 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001836 void *old_area;
1837
Christopher Faulet6b81df72019-10-01 22:08:43 +02001838 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 +01001839 if (h1m->state == H1_MSG_DATA && chn_htx->flags & HTX_FL_EOM) {
1840 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1841 last_data = 1;
1842 }
1843
Christopher Faulete5596bf2020-12-02 16:13:22 +01001844 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001845 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001846 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001847 h1c->obuf.data = count;
1848
1849 buf->area = old_area;
1850 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001851
Christopher Faulet6b81df72019-10-01 22:08:43 +02001852 chn_htx = (struct htx *)buf->area;
1853 htx_reset(chn_htx);
1854
Christopher Fauletadb22202018-12-12 10:32:09 +01001855 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001856 * size and eventually the last chunk. We have at least
1857 * the size of the struct htx to write the chunk
1858 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001859 */
1860 if (h1m->flags & H1_MF_CHNK) {
1861 h1_emit_chunk_size(&h1c->obuf, count);
1862 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001863 if (last_data) {
1864 /* Emit the last chunk too at the buffer's end */
1865 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1866 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001867 }
1868
Christopher Faulet6b81df72019-10-01 22:08:43 +02001869 if (h1m->state == H1_MSG_DATA)
1870 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001871 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001872 else
1873 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001874 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001875
Christopher Faulete5596bf2020-12-02 16:13:22 +01001876 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001877 if (last_data) {
1878 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001879 if (h1s->flags & H1S_F_RX_BLK) {
1880 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001881 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001882 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 +01001883 }
1884
1885 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1886 H1_EV_TX_DATA, h1c->conn, h1s);
1887 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001888 goto out;
1889 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001890 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001891 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001892 else
1893 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001894
Christopher Fauletc2518a52019-06-25 21:41:02 +02001895 tmp.data = 0;
1896 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001897 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001898 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001899 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001900 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001901 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001902 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001903
Christopher Fauletb2e84162018-12-06 11:39:49 +01001904 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001905 if (type != HTX_BLK_DATA && vlen > count)
1906 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001907
Christopher Faulet94b2c762019-05-24 15:28:57 +02001908 if (type == HTX_BLK_UNUSED)
1909 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001910
Christopher Faulet94b2c762019-05-24 15:28:57 +02001911 switch (h1m->state) {
1912 case H1_MSG_RQBEFORE:
1913 if (type != HTX_BLK_REQ_SL)
1914 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001915 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 +02001916 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001917 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001918 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001919 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001920 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001921 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001922 if (sl->flags & HTX_SL_F_BODYLESS)
1923 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001924 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001925 if (h1s->meth == HTTP_METH_HEAD)
1926 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001927 if (h1s->flags & H1S_F_RX_BLK) {
1928 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001929 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001930 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 +02001931 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001932 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001933
Christopher Faulet94b2c762019-05-24 15:28:57 +02001934 case H1_MSG_RPBEFORE:
1935 if (type != HTX_BLK_RES_SL)
1936 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001937 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 +02001938 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001939 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001940 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001941 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001942 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001943 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001944 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001945 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001946 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001947 else if (h1s->status == 204 || h1s->status == 304)
1948 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001949 h1m->state = H1_MSG_HDR_FIRST;
1950 break;
1951
Christopher Faulet94b2c762019-05-24 15:28:57 +02001952 case H1_MSG_HDR_FIRST:
1953 case H1_MSG_HDR_NAME:
1954 case H1_MSG_HDR_L2_LWS:
1955 if (type == HTX_BLK_EOH)
1956 goto last_lf;
1957 if (type != HTX_BLK_HDR)
1958 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001959
Christopher Faulet9768c262018-10-22 09:34:31 +02001960 h1m->state = H1_MSG_HDR_NAME;
1961 n = htx_get_blk_name(chn_htx, blk);
1962 v = htx_get_blk_value(chn_htx, blk);
1963
Christopher Faulet86d144c2019-08-14 16:32:25 +02001964 /* Skip all pseudo-headers */
1965 if (*(n.ptr) == ':')
1966 goto skip_hdr;
1967
Christopher Faulet91fcf212020-12-02 16:17:15 +01001968 if (isteq(n, ist("transfer-encoding"))) {
1969 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1970 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001971 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001972 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001973 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001974 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1975 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001976 /* Only skip C-L header with invalid value. */
1977 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001978 goto skip_hdr;
1979 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001980 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001981 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001982 if (!v.len)
1983 goto skip_hdr;
1984 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001985 else if (isteq(n, ist("upgrade"))) {
1986 h1_parse_upgrade_header(h1m, v);
1987 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001988 else if ((isteq(n, ist("sec-websocket-accept")) &&
1989 h1m->flags & H1_MF_RESP) ||
1990 (isteq(n, ist("sec-websocket-key")) &&
1991 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001992 ws_key_found = 1;
1993 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02001994 else if (isteq(n, ist("te"))) {
1995 /* "te" may only be sent with "trailers" if this value
1996 * is present, otherwise it must be deleted.
1997 */
1998 v = istist(v, ist("trailers"));
1999 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2000 goto skip_hdr;
2001 v = ist("trailers");
2002 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002003
Christopher Faulet67d58092019-10-02 10:51:38 +02002004 /* Skip header if same name is used to add the server name */
2005 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2006 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2007 goto skip_hdr;
2008
Christopher Faulet98fbe952019-07-22 16:18:24 +02002009 /* Try to adjust the case of the header name */
2010 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2011 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002012 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002013 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002014 skip_hdr:
2015 h1m->state = H1_MSG_HDR_L2_LWS;
2016 break;
2017
Christopher Faulet94b2c762019-05-24 15:28:57 +02002018 case H1_MSG_LAST_LF:
2019 if (type != HTX_BLK_EOH)
2020 goto error;
2021 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002022 h1m->state = H1_MSG_LAST_LF;
2023 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002024 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002025 /* If the reply comes from haproxy while the request is
2026 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002027 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2028 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2029 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002030 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2031 /* T-E + C-L: force close */
2032 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2033 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2034 }
2035 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2036 /* T-E + HTTP/1.0: force close */
2037 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2038 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2039 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002040
2041 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002042 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002043 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002044 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002045 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002046 /* Try to adjust the case of the header name */
2047 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2048 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002049 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002050 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002051 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002052 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002053 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002054
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002055 if ((h1s->meth != HTTP_METH_CONNECT &&
2056 (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 +01002057 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002058 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002059 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002060 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2061 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002062 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002063 n = ist("transfer-encoding");
2064 v = ist("chunked");
2065 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2066 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002067 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002068 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002069 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002070 h1m->flags |= H1_MF_CHNK;
2071 }
2072
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002073 /* Now add the server name to a header (if requested) */
2074 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2075 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2076 struct server *srv = objt_server(h1c->conn->target);
2077
2078 if (srv) {
2079 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2080 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002081
2082 /* Try to adjust the case of the header name */
2083 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2084 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002085 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002086 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002087 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002088 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002089 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2090 }
2091
Amaury Denoyellec1938232020-12-11 17:53:03 +01002092 /* Add websocket handshake key if needed */
2093 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2094 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002095 if (!(h1m->flags & H1_MF_RESP)) {
2096 /* generate a random websocket key
2097 * stored in the session to
2098 * verify it on the response side
2099 */
2100 h1_generate_random_ws_input_key(h1s->ws_key);
2101
2102 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2103 ist(h1s->ws_key),
2104 &tmp)) {
2105 goto full;
2106 }
2107 }
2108 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002109 /* add the response header key */
2110 char key[29];
2111 h1_calculate_ws_output_key(h1s->ws_key, key);
2112 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2113 ist(key),
2114 &tmp)) {
2115 goto full;
2116 }
2117 }
2118 }
2119
Christopher Faulet6b81df72019-10-01 22:08:43 +02002120 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2121 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2122
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002123 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002124 if (!chunk_memcat(&tmp, "\r\n", 2))
2125 goto full;
2126 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002127 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002128 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002129 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002130 if (!chunk_memcat(&tmp, "\r\n", 2))
2131 goto full;
2132 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002133 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002134 else if ((h1m->flags & H1_MF_RESP) &&
2135 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002136 if (!chunk_memcat(&tmp, "\r\n", 2))
2137 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002138 h1m_init_res(&h1s->res);
2139 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002140 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002141 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002142 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002143 else {
2144 /* EOM flag is set and it is the last block */
2145 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002146 if (h1m->flags & H1_MF_CHNK) {
2147 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2148 goto full;
2149 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002150 else if (!chunk_memcat(&tmp, "\r\n", 2))
2151 goto full;
2152 goto done;
2153 }
2154 else if (!chunk_memcat(&tmp, "\r\n", 2))
2155 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002156 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002157 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002158 break;
2159
Christopher Faulet94b2c762019-05-24 15:28:57 +02002160 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002161 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002162 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002163 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2164 goto trailers;
2165
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002166 /* If the message is not chunked, never
2167 * add the last chunk. */
2168 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002169 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002170 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 +02002171 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002172 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002173 else if (type != HTX_BLK_DATA)
2174 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002175
2176 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 +02002177
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002178 /* It is the last block of this message. After this one,
2179 * only tunneled data may be forwarded. */
2180 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2181 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2182 last_data = 1;
2183 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002184
2185 if (vlen > count) {
2186 /* Get the maximum amount of data we can xferred */
2187 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002188 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002189 }
2190
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002191 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2192 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2193 goto skip_data;
2194 }
2195
Christopher Fauletd9233f02019-10-14 14:01:24 +02002196 chklen = 0;
2197 if (h1m->flags & H1_MF_CHNK) {
2198 chklen = b_room(&tmp);
2199 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2200 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2201 (chklen < 1048576) ? 5 : 8);
2202 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002203
2204 /* If it is the end of the chunked message (without EOT), reserve the
2205 * last chunk size */
2206 if (last_data)
2207 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002208 }
2209
2210 if (vlen + chklen > b_room(&tmp)) {
2211 /* too large for the buffer */
2212 if (chklen >= b_room(&tmp))
2213 goto full;
2214 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002215 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002216 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002217 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002218 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002219 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002220 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002221
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002222 /* Space already reserved, so it must succeed */
2223 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2224 goto error;
2225
Christopher Faulet6b81df72019-10-01 22:08:43 +02002226 if (h1m->state == H1_MSG_DATA)
2227 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002228 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002229 else
2230 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002231 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002232
2233 skip_data:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002234 if (last_data)
2235 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002236 break;
2237
Christopher Faulet94b2c762019-05-24 15:28:57 +02002238 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002239 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002240 goto error;
2241 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002242 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002243
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002244 /* If the message is not chunked, ignore
2245 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002246 if (!(h1m->flags & H1_MF_CHNK)) {
2247 if (type == HTX_BLK_EOT)
2248 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002249 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002250 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002251
Christopher Faulete5596bf2020-12-02 16:13:22 +01002252 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2253 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 +01002254 if (type == HTX_BLK_EOT)
2255 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002256 break;
2257 }
2258
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002259 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002260 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002261 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002262 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2263 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002264 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002265 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002266 else { // HTX_BLK_TLR
2267 n = htx_get_blk_name(chn_htx, blk);
2268 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002269
2270 /* Try to adjust the case of the header name */
2271 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2272 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002273 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002274 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002275 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002276 break;
2277
Christopher Faulet94b2c762019-05-24 15:28:57 +02002278 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002279 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2280 goto error; /* For now return an error */
2281
Christopher Faulet94b2c762019-05-24 15:28:57 +02002282 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002283 if (!(chn_htx->flags & HTX_FL_EOM)) {
2284 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2285 goto error; /* For now return an error */
2286 }
2287
Christopher Faulet94b2c762019-05-24 15:28:57 +02002288 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002289 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002290 h1s->flags |= H1S_F_TX_BLK;
2291 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002292 }
2293 else if ((h1m->flags & H1_MF_RESP) &&
2294 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2295 /* a successful reply to a CONNECT or a protocol switching is sent
2296 * to the client. Switch the response to tunnel mode.
2297 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002298 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002299 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 +01002300 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002301
Christopher Faulet10a86702021-04-07 14:18:11 +02002302 if (h1s->flags & H1S_F_RX_BLK) {
2303 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002304 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002305 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 +02002306 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002307
2308 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2309 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002310 break;
2311
Christopher Faulet9768c262018-10-22 09:34:31 +02002312 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002313 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002314 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002315 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002316 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002317 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002318 TRACE_ERROR("processing output error, set error on h1c/h1s",
2319 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 +02002320 break;
2321 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002322
2323 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002324 total += vlen;
2325 count -= vlen;
2326 if (sz == vlen)
2327 blk = htx_remove_blk(chn_htx, blk);
2328 else {
2329 htx_cut_data_blk(chn_htx, blk, vlen);
2330 break;
2331 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002332 }
2333
Christopher Faulet9768c262018-10-22 09:34:31 +02002334 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002335 /* when the output buffer is empty, tmp shares the same area so that we
2336 * only have to update pointers and lengths.
2337 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002338 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2339 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002340 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002341 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002342
Willy Tarreau3815b222018-12-11 19:50:43 +01002343 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002344 out:
2345 if (!buf_room_for_htx_data(&h1c->obuf)) {
2346 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002347 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002348 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002349 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002350 /* Both the request and the response reached the DONE state. So set EOI
2351 * flag on the conn-stream. Most of time, the flag will already be set,
2352 * except for protocol upgrades. Report an error if data remains blocked
2353 * in the output buffer.
2354 */
2355 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2356 if (!htx_is_empty(chn_htx)) {
2357 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002358 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 +01002359 }
2360 h1s->cs->flags |= CS_FL_EOI;
2361 }
2362
Christopher Faulet6b81df72019-10-01 22:08:43 +02002363 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002364 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002365
2366 full:
2367 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2368 h1c->flags |= H1C_F_OUT_FULL;
2369 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002370}
2371
Christopher Faulet51dbc942018-09-13 09:05:15 +02002372/*********************************************************/
2373/* functions below are I/O callbacks from the connection */
2374/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002375static void h1_wake_stream_for_recv(struct h1s *h1s)
2376{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002377 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002378 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002379 tasklet_wakeup(h1s->subs->tasklet);
2380 h1s->subs->events &= ~SUB_RETRY_RECV;
2381 if (!h1s->subs->events)
2382 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002383 }
2384}
2385static void h1_wake_stream_for_send(struct h1s *h1s)
2386{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002387 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002388 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002389 tasklet_wakeup(h1s->subs->tasklet);
2390 h1s->subs->events &= ~SUB_RETRY_SEND;
2391 if (!h1s->subs->events)
2392 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002393 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002394}
2395
Christopher Fauletad4daf62021-01-21 17:49:01 +01002396/* alerts the data layer following this sequence :
2397 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2398 * - if its subscribed to send, then it's woken up for send
2399 * - if it was subscribed to neither, its ->wake() callback is called
2400 */
2401static void h1_alert(struct h1s *h1s)
2402{
2403 if (h1s->subs) {
2404 h1_wake_stream_for_recv(h1s);
2405 h1_wake_stream_for_send(h1s);
2406 }
2407 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2408 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2409 h1s->cs->data_cb->wake(h1s->cs);
2410 }
2411}
2412
Christopher Fauletc18fc232020-10-06 17:41:36 +02002413/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2414 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2415 * retryable errors (allocation error or buffer full). On success, the error is
2416 * copied in the output buffer.
2417*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002418static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002419{
2420 int rc = http_get_status_idx(h1c->errcode);
2421 int ret = 0;
2422
2423 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2424
2425 /* Verify if the error is mapped on /dev/null or any empty file */
2426 /// XXX: do a function !
2427 if (h1c->px->replies[rc] &&
2428 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2429 h1c->px->replies[rc]->body.errmsg &&
2430 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2431 /* Empty error, so claim a success */
2432 ret = 1;
2433 goto out;
2434 }
2435
2436 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2437 h1c->flags |= H1C_F_ERR_PENDING;
2438 goto out;
2439 }
2440
2441 if (!h1_get_buf(h1c, &h1c->obuf)) {
2442 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2443 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2444 goto out;
2445 }
2446 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2447 if (unlikely(ret <= 0)) {
2448 if (!ret) {
2449 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2450 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2451 goto out;
2452 }
2453 else {
2454 /* we cannot report this error, so claim a success */
2455 ret = 1;
2456 }
2457 }
2458 h1c->flags &= ~H1C_F_ERR_PENDING;
2459 out:
2460 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2461 return ret;
2462}
2463
2464/* Try to send a 500 internal error. It relies on h1_send_error to send the
2465 * error. This function takes care of incrementing stats and tracked counters.
2466 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002467static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002468{
2469 struct session *sess = h1c->conn->owner;
2470 int ret = 1;
2471
2472 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002473 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002474 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2475 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002476 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002477 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002478
2479 h1c->errcode = 500;
2480 ret = h1_send_error(h1c);
2481 sess_log(sess);
2482 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002483}
2484
Christopher Fauletb3230f72021-09-21 18:38:20 +02002485/* Try to send an error because of a parsing error. By default a 400 bad request
2486 * error is returned. But the status code may be specified by setting
2487 * h1c->errcode. It relies on h1_send_error to send the error. This function
2488 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002489 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002490static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002491{
2492 struct session *sess = h1c->conn->owner;
2493 int ret = 1;
2494
2495 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2496 goto end;
2497
2498 session_inc_http_req_ctr(sess);
2499 session_inc_http_err_ctr(sess);
2500 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002501 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2502 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002503 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002504 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002505
Christopher Fauletb3230f72021-09-21 18:38:20 +02002506 if (!h1c->errcode)
2507 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002508 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002509 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2510 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002511
2512 end:
2513 return ret;
2514}
2515
Christopher Faulet2eed8002020-12-07 11:26:13 +01002516/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2517 * the error. This function takes care of incrementing stats and tracked
2518 * counters.
2519 */
2520static int h1_handle_not_impl_err(struct h1c *h1c)
2521{
2522 struct session *sess = h1c->conn->owner;
2523 int ret = 1;
2524
2525 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2526 goto end;
2527
2528 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002529 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002530 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2531 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002532 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002533 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002534
2535 h1c->errcode = 501;
2536 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002537 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2538 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002539
2540 end:
2541 return ret;
2542}
2543
Christopher Fauletc18fc232020-10-06 17:41:36 +02002544/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2545 * error. This function takes care of incrementing stats and tracked counters.
2546 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002547static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002548{
2549 struct session *sess = h1c->conn->owner;
2550 int ret = 1;
2551
2552 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2553 goto end;
2554
2555 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002556 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002557 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2558 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002559 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002560 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002561
2562 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002563 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2564 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002565 sess_log(sess);
2566 end:
2567 return ret;
2568}
2569
2570
Christopher Faulet51dbc942018-09-13 09:05:15 +02002571/*
2572 * Attempt to read data, and subscribe if none available
2573 */
2574static int h1_recv(struct h1c *h1c)
2575{
2576 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002577 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002578 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002579
Christopher Faulet6b81df72019-10-01 22:08:43 +02002580 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2581
2582 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2583 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002584 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002585 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002586
Christopher Fauletae635762020-09-21 11:47:16 +02002587 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2588 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002589 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002590 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002591
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002592 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2593 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002594 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002595 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002596 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002597
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002598 /*
2599 * If we only have a small amount of data, realign it,
2600 * it's probably cheaper than doing 2 recv() calls.
2601 */
2602 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002603 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002604
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002605 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002606 if (!h1c->h1s ||
2607 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2608 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002609 flags |= CO_RFL_READ_ONCE;
2610
Willy Tarreau45f2b892018-12-05 07:59:27 +01002611 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002612 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002613 if (h1c->flags & H1C_F_IN_FULL) {
2614 h1c->flags &= ~H1C_F_IN_FULL;
2615 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2616 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002617
2618 if (!b_data(&h1c->ibuf)) {
2619 /* try to pre-align the buffer like the rxbufs will be
2620 * to optimize memory copies.
2621 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002622 h1c->ibuf.head = sizeof(struct htx);
2623 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002624 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002625 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002626 if (max && !ret && h1_recv_allowed(h1c)) {
2627 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2628 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002629 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002630 else {
2631 h1_wake_stream_for_recv(h1c->h1s);
2632 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002633 }
2634
Christopher Faulet51dbc942018-09-13 09:05:15 +02002635 if (!b_data(&h1c->ibuf))
2636 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002637 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002638 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002639 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2640 }
2641
2642 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002643 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002644}
2645
2646
2647/*
2648 * Try to send data if possible
2649 */
2650static int h1_send(struct h1c *h1c)
2651{
2652 struct connection *conn = h1c->conn;
2653 unsigned int flags = 0;
2654 size_t ret;
2655 int sent = 0;
2656
Christopher Faulet6b81df72019-10-01 22:08:43 +02002657 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2658
2659 if (conn->flags & CO_FL_ERROR) {
2660 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002661 b_reset(&h1c->obuf);
2662 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002663 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002664
2665 if (!b_data(&h1c->obuf))
2666 goto end;
2667
Christopher Faulet46230362019-10-17 16:04:20 +02002668 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002669 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002670 if (h1c->flags & H1C_F_CO_STREAMER)
2671 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002672
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002673 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002674 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002675 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002676 if (h1c->flags & H1C_F_OUT_FULL) {
2677 h1c->flags &= ~H1C_F_OUT_FULL;
2678 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2679 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002680 b_del(&h1c->obuf, ret);
2681 sent = 1;
2682 }
2683
Christopher Faulet145aa472018-12-06 10:56:20 +01002684 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002685 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002686 /* error or output closed, nothing to send, clear the buffer to release it */
2687 b_reset(&h1c->obuf);
2688 }
2689
Christopher Faulet51dbc942018-09-13 09:05:15 +02002690 end:
Christopher Faulet10a86702021-04-07 14:18:11 +02002691 if (!(h1c->flags & H1C_F_OUT_FULL))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002692 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002693
Christopher Faulet51dbc942018-09-13 09:05:15 +02002694 /* We're done, no more to send */
2695 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002696 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002697 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002698 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002699 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002700 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002701 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002702 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002703 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2704 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002705 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002706 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002707
Christopher Faulet6b81df72019-10-01 22:08:43 +02002708 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002709 return sent;
2710}
2711
Christopher Faulet51dbc942018-09-13 09:05:15 +02002712/* callback called on any event by the connection handler.
2713 * It applies changes and returns zero, or < 0 if it wants immediate
2714 * destruction of the connection.
2715 */
2716static int h1_process(struct h1c * h1c)
2717{
2718 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002719 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002720
Christopher Faulet6b81df72019-10-01 22:08:43 +02002721 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2722
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002723 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002724 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002725 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2726 !(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 +02002727 struct buffer *buf;
2728 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002729
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002730 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2731 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002732 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002733
2734 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002735 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002736 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2737 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002738 /* Try to match H2 preface before parsing the request headers. */
2739 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2740 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002741 if (h1c->flags & H1C_F_ST_ATTACHED) {
2742 /* Force the REOS here to be sure to release the CS.
2743 Here ATTACHED implies !READY, and h1s defined
2744 */
2745 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2746 h1s->flags |= H1S_F_REOS;
2747 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002748 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002749 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002750 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002751 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002752
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002753 /* Create the H1 stream if not already there */
2754 if (!h1s) {
2755 h1s = h1c_frt_stream_new(h1c);
2756 if (!h1s) {
2757 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002758 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002759 goto no_parsing;
2760 }
2761 }
2762
2763 if (h1s->sess->t_idle == -1)
2764 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2765
2766 /* Get the stream rxbuf */
2767 buf = h1_get_buf(h1c, &h1s->rxbuf);
2768 if (!buf) {
2769 h1c->flags |= H1C_F_IN_SALLOC;
2770 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2771 return 0;
2772 }
2773
2774 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002775 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002776 h1_release_buf(h1c, &h1s->rxbuf);
2777 h1_set_idle_expiration(h1c);
2778
2779 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002780 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002781 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002782 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002783 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002784 }
2785 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002786 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002787 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002788 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002789 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002790 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2791 h1_handle_not_impl_err(h1c);
2792 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002793 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002794 }
Christopher Fauletae635762020-09-21 11:47:16 +02002795 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002796 h1_send(h1c);
2797
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002798 if ((conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn) || (h1c->flags & H1C_F_ST_ERROR)) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002799 if (!(h1c->flags & H1C_F_ST_READY)) {
2800 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002801 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002802 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002803 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002804 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002805 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002806 }
2807
2808 /* Handle pending error, if any (only possible on frontend connection) */
2809 if (h1c->flags & H1C_F_ERR_PENDING) {
2810 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2811 if (h1_send_error(h1c))
2812 h1_send(h1c);
2813 }
Christopher Fauletae635762020-09-21 11:47:16 +02002814
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002815 /* If there is some pending outgoing data or error, just wait */
2816 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2817 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002818
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002819 /* Otherwise we can release the H1 connection */
2820 goto release;
2821 }
2822 else {
2823 /* Here there is still a H1 stream with a conn-stream.
2824 * Report the connection state at the stream level
2825 */
2826 if (conn_xprt_read0_pending(conn)) {
2827 h1s->flags |= H1S_F_REOS;
2828 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2829 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002830 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002831 h1s->cs->flags |= CS_FL_ERROR;
2832 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002833 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002834 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002835 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002836
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002837 if (!b_data(&h1c->ibuf))
2838 h1_release_buf(h1c, &h1c->ibuf);
2839
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002840 /* Check if a soft-stop is in progress.
2841 * Release idling front connection if this is the case.
2842 */
2843 if (!(h1c->flags & H1C_F_IS_BACK)) {
2844 if (unlikely(h1c->px->disabled)) {
2845 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
2846 goto release;
2847 }
2848 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002849
2850 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2851 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2852 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002853 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002854
Christopher Faulet47365272018-10-31 17:40:50 +01002855 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002856 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002857 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002858 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002859
2860 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002861 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002862 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002863 * attached CS first. Here, the H1C must not be READY */
2864 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2865
2866 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2867 h1s->cs->flags |= CS_FL_EOS;
2868 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2869 h1s->cs->flags |= CS_FL_ERROR;
2870 h1_alert(h1s);
2871 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2872 }
2873 else {
2874 h1_release(h1c);
2875 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2876 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002877 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002878}
2879
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002880struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002881{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002882 struct connection *conn;
2883 struct tasklet *tl = (struct tasklet *)t;
2884 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002885 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002886 int ret = 0;
2887
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002888 if (state & TASK_F_USR1) {
2889 /* the tasklet was idling on an idle connection, it might have
2890 * been stolen, let's be careful!
2891 */
2892 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2893 if (tl->context == NULL) {
2894 /* The connection has been taken over by another thread,
2895 * we're no longer responsible for it, so just free the
2896 * tasklet, and do nothing.
2897 */
2898 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2899 tasklet_free(tl);
2900 return NULL;
2901 }
2902 conn = h1c->conn;
2903 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002904
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002905 /* Remove the connection from the list, to be sure nobody attempts
2906 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002907 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002908 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2909 if (conn_in_list)
2910 conn_delete_from_tree(&conn->hash_node->node);
2911
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002912 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002913 } else {
2914 /* we're certain the connection was not in an idle list */
2915 conn = h1c->conn;
2916 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2917 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002918 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002919
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002920 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002921 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002922 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002923 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002924 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002925 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002926
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002927 /* If we were in an idle list, we want to add it back into it,
2928 * unless h1_process() returned -1, which mean it has destroyed
2929 * the connection (testing !ret is enough, if h1_process() wasn't
2930 * called then ret will be 0 anyway.
2931 */
Willy Tarreau74163142021-03-13 11:30:19 +01002932 if (ret < 0)
2933 t = NULL;
2934
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002935 if (!ret && conn_in_list) {
2936 struct server *srv = objt_server(conn->target);
2937
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002938 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002939 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002940 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002941 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002942 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002943 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002944 }
Willy Tarreau74163142021-03-13 11:30:19 +01002945 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002946}
2947
Christopher Faulet51dbc942018-09-13 09:05:15 +02002948static int h1_wake(struct connection *conn)
2949{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002950 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002951 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002952
Christopher Faulet6b81df72019-10-01 22:08:43 +02002953 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2954
Christopher Faulet539e0292018-11-19 10:40:09 +01002955 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002956 ret = h1_process(h1c);
2957 if (ret == 0) {
2958 struct h1s *h1s = h1c->h1s;
2959
Christopher Fauletad4daf62021-01-21 17:49:01 +01002960 if (h1c->flags & H1C_F_ST_ATTACHED)
2961 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002962 }
2963 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002964}
2965
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002966/* Connection timeout management. The principle is that if there's no receipt
2967 * nor sending for a certain amount of time, the connection is closed.
2968 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002969struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002970{
2971 struct h1c *h1c = context;
2972 int expired = tick_is_expired(t->expire, now_ms);
2973
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002974 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002975
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002976 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002977 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002978 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002979
2980 /* Somebody already stole the connection from us, so we should not
2981 * free it, we just have to free the task.
2982 */
2983 if (!t->context) {
2984 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002985 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002986 goto do_leave;
2987 }
2988
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002989 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002990 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002991 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002992 return t;
2993 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002994
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002995 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002996 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002997 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002998 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002999 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003000 t->expire = TICK_ETERNITY;
3001 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3002 return t;
3003 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003004
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003005 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003006 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3007 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003008 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003009 if (h1_handle_req_tout(h1c))
3010 h1_send(h1c);
3011 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3012 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003013 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003014 return t;
3015 }
3016 }
3017
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003018 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003019 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003020 * attached CS first. Here, the H1C must not be READY */
3021 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3022 h1_alert(h1c->h1s);
3023 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003024 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003025 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3026 return t;
3027 }
3028
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003029 /* We're about to destroy the connection, so make sure nobody attempts
3030 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003031 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003032 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003033 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003034
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003035 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003036 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003037
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003038 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003039 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003040
3041 if (!h1c) {
3042 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003043 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003044 return NULL;
3045 }
3046
3047 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003048 h1_release(h1c);
3049 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003050 return NULL;
3051}
3052
Christopher Faulet51dbc942018-09-13 09:05:15 +02003053/*******************************************/
3054/* functions below are used by the streams */
3055/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003056
Christopher Faulet51dbc942018-09-13 09:05:15 +02003057/*
3058 * Attach a new stream to a connection
3059 * (Used for outgoing connections)
3060 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003061static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003062{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003063 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003064 struct conn_stream *cs = NULL;
3065 struct h1s *h1s;
3066
Christopher Faulet6b81df72019-10-01 22:08:43 +02003067 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003068 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003069 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3070 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003071 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003072
Christopher Faulet236c93b2020-07-02 09:19:54 +02003073 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003074 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003075 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3076 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003077 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003078
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003079 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003080 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003081 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3082 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003083 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003084
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003085 /* the connection is not idle anymore, let's mark this */
3086 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003087 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003088
Christopher Faulet6b81df72019-10-01 22:08:43 +02003089 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003090 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003091 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003092 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003093 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 +02003094 return NULL;
3095}
3096
3097/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3098 * this mux, it's easy as we can only store a single conn_stream.
3099 */
3100static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3101{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003102 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003103 struct h1s *h1s = h1c->h1s;
3104
3105 if (h1s)
3106 return h1s->cs;
3107
3108 return NULL;
3109}
3110
Christopher Faulet73c12072019-04-08 11:23:22 +02003111static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003112{
Christopher Faulet73c12072019-04-08 11:23:22 +02003113 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003114
Christopher Faulet6b81df72019-10-01 22:08:43 +02003115 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003116 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003117 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003118}
3119
3120/*
3121 * Detach the stream from the connection and possibly release the connection.
3122 */
3123static void h1_detach(struct conn_stream *cs)
3124{
3125 struct h1s *h1s = cs->ctx;
3126 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003127 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003128 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003129
Christopher Faulet6b81df72019-10-01 22:08:43 +02003130 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3131
Christopher Faulet51dbc942018-09-13 09:05:15 +02003132 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003133 if (!h1s) {
3134 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003135 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003136 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003137
Olivier Houchardf502aca2018-12-14 19:42:40 +01003138 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003139 h1c = h1s->h1c;
3140 h1s->cs = NULL;
3141
Christopher Faulet42849b02020-10-05 11:35:17 +02003142 sess->accept_date = date;
3143 sess->tv_accept = now;
3144 sess->t_handshake = 0;
3145 sess->t_idle = -1;
3146
Olivier Houchard8a786902018-12-15 16:05:40 +01003147 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3148 h1s_destroy(h1s);
3149
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003150 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 +02003151 /* If there are any excess server data in the input buffer,
3152 * release it and close the connection ASAP (some data may
3153 * remain in the output buffer). This happens if a server sends
3154 * invalid responses. So in such case, we don't want to reuse
3155 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003156 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003157 if (b_data(&h1c->ibuf)) {
3158 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003159 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003160 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003161 goto release;
3162 }
Christopher Faulet03627242019-07-19 11:34:08 +02003163
Christopher Faulet08016ab2020-07-01 16:10:06 +02003164 if (h1c->conn->flags & CO_FL_PRIVATE) {
3165 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003166 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3167 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003168 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003169 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003170 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003171 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003172 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003173 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003174 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3175 goto end;
3176 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003177 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003178 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003179 if (h1c->conn->owner == sess)
3180 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003181
3182 /* mark that the tasklet may lose its context to another thread and
3183 * that the handler needs to check it under the idle conns lock.
3184 */
3185 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003186 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003187 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3188
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003189 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003190 /* The server doesn't want it, let's kill the connection right away */
3191 h1c->conn->mux->destroy(h1c);
3192 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3193 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003194 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003195 /* At this point, the connection has been added to the
3196 * server idle list, so another thread may already have
3197 * hijacked it, so we can't do anything with it.
3198 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003199 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003200 }
3201 }
3202
Christopher Fauletf1204b82019-07-19 14:51:06 +02003203 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003204 /* 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 +01003205 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003206 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003207 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003208 !h1c->conn->owner) {
3209 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003210 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003211 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003212 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003213 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003214 /* If we have a new request, process it immediately or
3215 * subscribe for reads waiting for new data
3216 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003217 if (unlikely(b_data(&h1c->ibuf))) {
3218 if (h1_process(h1c) == -1)
3219 goto end;
3220 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003221 else
3222 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3223 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003224 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003225 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003226 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003227 end:
3228 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003229}
3230
3231
3232static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3233{
3234 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003235 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003236
3237 if (!h1s)
3238 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003239 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003240
Christopher Faulet6b81df72019-10-01 22:08:43 +02003241 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3242
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003243 if (cs->flags & CS_FL_SHR)
3244 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003245 if (cs->flags & CS_FL_KILL_CONN) {
3246 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3247 goto do_shutr;
3248 }
3249 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3250 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003251 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003252 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003253
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003254 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3255 /* Here attached is implicit because there is CS */
3256 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3257 goto end;
3258 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003259 if (h1s->flags & H1S_F_WANT_KAL) {
3260 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003261 goto end;
3262 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003263
Christopher Faulet7f366362019-04-08 10:51:20 +02003264 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003265 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3266 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003267 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003268 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003269 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003270 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003271 end:
3272 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003273}
3274
3275static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3276{
3277 struct h1s *h1s = cs->ctx;
3278 struct h1c *h1c;
3279
3280 if (!h1s)
3281 return;
3282 h1c = h1s->h1c;
3283
Christopher Faulet6b81df72019-10-01 22:08:43 +02003284 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3285
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003286 if (cs->flags & CS_FL_SHW)
3287 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003288 if (cs->flags & CS_FL_KILL_CONN) {
3289 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003290 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003291 }
3292 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3293 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3294 goto do_shutw;
3295 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003296
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003297 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3298 /* Here attached is implicit because there is CS */
3299 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3300 goto end;
3301 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003302 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3303 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003304 goto end;
3305 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003306
Christopher Faulet7f366362019-04-08 10:51:20 +02003307 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003308 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003309 if (!b_data(&h1c->obuf))
3310 h1_shutw_conn(cs->conn, mode);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003311 end:
3312 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003313}
3314
Christopher Faulet666a0c42019-01-08 11:12:04 +01003315static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003316{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003317 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003318
Willy Tarreau62592ad2021-03-26 09:09:42 +01003319 if (conn->flags & CO_FL_SOCK_WR_SH)
3320 return;
3321
Christopher Faulet6b81df72019-10-01 22:08:43 +02003322 TRACE_ENTER(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003323 conn_xprt_shutw(conn);
3324 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003325 TRACE_LEAVE(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003326}
3327
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003328/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3329 * The <es> pointer is not allowed to differ from the one passed to the
3330 * subscribe() call. It always returns zero.
3331 */
3332static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003333{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003334 struct h1s *h1s = cs->ctx;
3335
3336 if (!h1s)
3337 return 0;
3338
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003339 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003340 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003341
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003342 es->events &= ~event_type;
3343 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003344 h1s->subs = NULL;
3345
3346 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003347 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003348
3349 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003350 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003351
Christopher Faulet51dbc942018-09-13 09:05:15 +02003352 return 0;
3353}
3354
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003355/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3356 * event subscriber <es> is not allowed to change from a previous call as long
3357 * as at least one event is still subscribed. The <event_type> must only be a
3358 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3359 * the conn_stream <cs> was already detached, in which case it will return -1.
3360 */
3361static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003362{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003363 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003364 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003365
3366 if (!h1s)
3367 return -1;
3368
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003369 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003370 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003371
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003372 es->events |= event_type;
3373 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003374
3375 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003376 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003377
3378
Christopher Faulet6b81df72019-10-01 22:08:43 +02003379 if (event_type & SUB_RETRY_SEND) {
3380 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003381 /*
3382 * If the conn_stream attempt to subscribe, and the
3383 * mux isn't subscribed to the connection, then it
3384 * probably means the connection wasn't established
3385 * yet, so we have to subscribe.
3386 */
3387 h1c = h1s->h1c;
3388 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3389 h1c->conn->xprt->subscribe(h1c->conn,
3390 h1c->conn->xprt_ctx,
3391 SUB_RETRY_SEND,
3392 &h1c->wait_event);
3393 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003394 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003395}
3396
Christopher Faulet564e39c2021-09-21 15:50:55 +02003397/* Called from the upper layer, to receive data.
3398 *
3399 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3400 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3401 * means the caller wants to flush input data (from the mux buffer and the
3402 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3403 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3404 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3405 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3406 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3407 * copy as much data as possible.
3408 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003409static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3410{
3411 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003412 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003413 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003414 size_t ret = 0;
3415
Willy Tarreau022e5e52020-09-10 09:33:15 +02003416 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003417
3418 /* Do nothing for now if not READY */
3419 if (!(h1c->flags & H1C_F_ST_READY)) {
3420 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3421 goto end;
3422 }
3423
Christopher Faulet539e0292018-11-19 10:40:09 +01003424 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003425 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003426 else
3427 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003428
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003429 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3430 h1c->flags |= H1C_F_WANT_SPLICE;
3431 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 +02003432 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003433 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003434 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 +01003435 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003436 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003437
3438 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003439 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003440 return ret;
3441}
3442
3443
3444/* Called from the upper layer, to send data */
3445static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3446{
3447 struct h1s *h1s = cs->ctx;
3448 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003449 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003450
3451 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003452 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003453 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003454
Willy Tarreau022e5e52020-09-10 09:33:15 +02003455 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003456
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003457 /* If we're not connected yet, or we're waiting for a handshake, stop
3458 * now, as we don't want to remove everything from the channel buffer
3459 * before we're sure we can send it.
3460 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003461 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003462 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003463 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003464 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003465
Christopher Fauletdea24742021-01-22 15:12:30 +01003466 if (h1c->flags & H1C_F_ST_ERROR) {
3467 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003468 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 +01003469 return 0;
3470 }
3471
Christopher Faulet46230362019-10-17 16:04:20 +02003472 /* Inherit some flags from the upper layer */
3473 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3474 if (flags & CO_SFL_MSG_MORE)
3475 h1c->flags |= H1C_F_CO_MSG_MORE;
3476 if (flags & CO_SFL_STREAMER)
3477 h1c->flags |= H1C_F_CO_STREAMER;
3478
Christopher Fauletc31872f2019-06-04 22:09:36 +02003479 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003480 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003481
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003482 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003483 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003484 else
3485 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003486
3487 if ((count - ret) > 0)
3488 h1c->flags |= H1C_F_CO_MSG_MORE;
3489
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003490 if (!ret)
3491 break;
3492 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003493 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003494 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003495 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003496 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003497
3498 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003499 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003500 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 +01003501 }
3502
Christopher Faulet7a145d62020-08-05 11:31:16 +02003503 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003504 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003505 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003506}
3507
Willy Tarreaue5733232019-05-22 19:24:06 +02003508#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003509/* Send and get, using splicing */
3510static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3511{
3512 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003513 struct h1c *h1c = h1s->h1c;
3514 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003515 int ret = 0;
3516
Willy Tarreau022e5e52020-09-10 09:33:15 +02003517 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003518
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003519 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003520 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003521 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 +02003522 goto end;
3523 }
3524
Christopher Fauletcf307562021-07-26 10:49:39 +02003525 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003526 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003527 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003528 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003529 }
3530
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003531 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003532 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3533 goto end;
3534 }
3535
Christopher Faulet1be55f92018-10-02 15:59:23 +02003536 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
3537 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003538 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02003539 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02003540 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003541 if (!h1m->curr_len) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003542 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003543 TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003544 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003545 }
3546
Christopher Faulet1be55f92018-10-02 15:59:23 +02003547 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003548 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003549 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003550 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003551 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003552 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003553
Christopher Faulet94d35102021-04-09 11:58:49 +02003554 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003555 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003556 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003557 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3558 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3559 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3560 }
Christopher Faulet27182292020-07-03 15:08:49 +02003561 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003562
Willy Tarreau022e5e52020-09-10 09:33:15 +02003563 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003564 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003565}
3566
3567static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3568{
3569 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003570 int ret = 0;
3571
Willy Tarreau022e5e52020-09-10 09:33:15 +02003572 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003573
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003574 if (b_data(&h1s->h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003575 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
3576 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003577 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003578 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003579 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003580 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003581
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003582 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
3583
3584 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003585 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003586 return ret;
3587}
3588#endif
3589
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003590static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3591{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003592 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003593 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003594
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003595 switch (mux_ctl) {
3596 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003597 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003598 ret |= MUX_STATUS_READY;
3599 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003600 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003601 if (output)
3602 *((int *)output) = h1c->errcode;
3603 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3604 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3605 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3606 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003607 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003608 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003609 default:
3610 return -1;
3611 }
3612}
3613
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003614/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003615static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003616{
3617 struct h1c *h1c = conn->ctx;
3618 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003619 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003620
Christopher Fauletf376a312019-01-04 15:16:06 +01003621 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3622 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003623 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3624 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3625 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3626 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3627
3628 if (h1s) {
3629 char *method;
3630
3631 if (h1s->meth < HTTP_METH_OTHER)
3632 method = http_known_methods[h1s->meth].ptr;
3633 else
3634 method = "UNKNOWN";
3635 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3636 " .meth=%s status=%d",
3637 h1s, h1s->flags,
3638 h1m_state_str(h1s->req.state),
3639 h1m_state_str(h1s->res.state), method, h1s->status);
3640 if (h1s->cs)
3641 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3642 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003643
3644 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3645 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003646 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3647 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3648 h1s->subs->tasklet->calls,
3649 h1s->subs->tasklet->context);
3650 if (h1s->subs->tasklet->calls >= 1000000)
3651 ret = 1;
3652 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3653 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003654 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003655 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003656 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003657}
3658
3659
3660/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3661static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3662{
3663 struct h1_hdr_entry *entry;
3664
3665 /* Be sure there is a non-empty <to> */
3666 if (!strlen(to)) {
3667 memprintf(err, "expect <to>");
3668 return -1;
3669 }
3670
3671 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003672 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003673 memprintf(err, "<from> and <to> must not differ execpt the case");
3674 return -1;
3675 }
3676
3677 /* Be sure <from> does not already existsin the tree */
3678 if (ebis_lookup(&hdrs_map.map, from)) {
3679 memprintf(err, "duplicate entry '%s'", from);
3680 return -1;
3681 }
3682
3683 /* Create the entry and insert it in the tree */
3684 entry = malloc(sizeof(*entry));
3685 if (!entry) {
3686 memprintf(err, "out of memory");
3687 return -1;
3688 }
3689
3690 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003691 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003692 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003693 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003694 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003695 free(entry);
3696 memprintf(err, "out of memory");
3697 return -1;
3698 }
3699 ebis_insert(&hdrs_map.map, &entry->node);
3700 return 0;
3701}
3702
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003703/* Migrate the the connection to the current thread.
3704 * Return 0 if successful, non-zero otherwise.
3705 * Expected to be called with the old thread lock held.
3706 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003707static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003708{
3709 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003710 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003711
3712 if (fd_takeover(conn->handle.fd, conn) != 0)
3713 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003714
3715 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3716 /* We failed to takeover the xprt, even if the connection may
3717 * still be valid, flag it as error'd, as we have already
3718 * taken over the fd, and wake the tasklet, so that it will
3719 * destroy it.
3720 */
3721 conn->flags |= CO_FL_ERROR;
3722 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3723 return -1;
3724 }
3725
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003726 if (h1c->wait_event.events)
3727 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3728 h1c->wait_event.events, &h1c->wait_event);
3729 /* To let the tasklet know it should free itself, and do nothing else,
3730 * set its context to NULL.
3731 */
3732 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003733 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003734
3735 task = h1c->task;
3736 if (task) {
3737 task->context = NULL;
3738 h1c->task = NULL;
3739 __ha_barrier_store();
3740 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003741
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003742 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003743 if (!h1c->task) {
3744 h1_release(h1c);
3745 return -1;
3746 }
3747 h1c->task->process = h1_timeout_task;
3748 h1c->task->context = h1c;
3749 }
3750 h1c->wait_event.tasklet = tasklet_new();
3751 if (!h1c->wait_event.tasklet) {
3752 h1_release(h1c);
3753 return -1;
3754 }
3755 h1c->wait_event.tasklet->process = h1_io_cb;
3756 h1c->wait_event.tasklet->context = h1c;
3757 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3758 SUB_RETRY_RECV, &h1c->wait_event);
3759
3760 return 0;
3761}
3762
3763
Christopher Faulet98fbe952019-07-22 16:18:24 +02003764static void h1_hdeaders_case_adjust_deinit()
3765{
3766 struct ebpt_node *node, *next;
3767 struct h1_hdr_entry *entry;
3768
3769 node = ebpt_first(&hdrs_map.map);
3770 while (node) {
3771 next = ebpt_next(node);
3772 ebpt_delete(node);
3773 entry = container_of(node, struct h1_hdr_entry, node);
3774 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003775 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003776 free(entry);
3777 node = next;
3778 }
3779 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003780}
3781
Christopher Faulet98fbe952019-07-22 16:18:24 +02003782static int cfg_h1_headers_case_adjust_postparser()
3783{
3784 FILE *file = NULL;
3785 char *c, *key_beg, *key_end, *value_beg, *value_end;
3786 char *err;
3787 int rc, line = 0, err_code = 0;
3788
3789 if (!hdrs_map.name)
3790 goto end;
3791
3792 file = fopen(hdrs_map.name, "r");
3793 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003794 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003795 hdrs_map.name);
3796 err_code |= ERR_ALERT | ERR_FATAL;
3797 goto end;
3798 }
3799
3800 /* now parse all lines. The file may contain only two header name per
3801 * line, separated by spaces. All heading and trailing spaces will be
3802 * ignored. Lines starting with a # are ignored.
3803 */
3804 while (fgets(trash.area, trash.size, file) != NULL) {
3805 line++;
3806 c = trash.area;
3807
3808 /* strip leading spaces and tabs */
3809 while (*c == ' ' || *c == '\t')
3810 c++;
3811
3812 /* ignore emptu lines, or lines beginning with a dash */
3813 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3814 continue;
3815
3816 /* look for the end of the key */
3817 key_beg = c;
3818 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3819 c++;
3820 key_end = c;
3821
3822 /* strip middle spaces and tabs */
3823 while (*c == ' ' || *c == '\t')
3824 c++;
3825
3826 /* look for the end of the value, it is the end of the line */
3827 value_beg = c;
3828 while (*c && *c != '\n' && *c != '\r')
3829 c++;
3830 value_end = c;
3831
3832 /* trim possibly trailing spaces and tabs */
3833 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3834 value_end--;
3835
3836 /* set final \0 and check entries */
3837 *key_end = '\0';
3838 *value_end = '\0';
3839
3840 err = NULL;
3841 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3842 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003843 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003844 hdrs_map.name, err, line);
3845 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003846 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003847 goto end;
3848 }
3849 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003850 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003851 hdrs_map.name, err, line);
3852 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003853 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003854 }
3855 }
3856
3857 end:
3858 if (file)
3859 fclose(file);
3860 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3861 return err_code;
3862}
3863
3864
3865/* config parser for global "h1-outgoing-header-case-adjust" */
3866static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003867 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003868 char **err)
3869{
3870 if (too_many_args(2, args, err, NULL))
3871 return -1;
3872 if (!*(args[1]) || !*(args[2])) {
3873 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3874 return -1;
3875 }
3876 return add_hdr_case_adjust(args[1], args[2], err);
3877}
3878
3879/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3880static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003881 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003882 char **err)
3883{
3884 if (too_many_args(1, args, err, NULL))
3885 return -1;
3886 if (!*(args[1])) {
3887 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3888 return -1;
3889 }
3890 free(hdrs_map.name);
3891 hdrs_map.name = strdup(args[1]);
3892 return 0;
3893}
3894
3895
3896/* config keyword parsers */
3897static struct cfg_kw_list cfg_kws = {{ }, {
3898 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3899 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3900 { 0, NULL, NULL },
3901 }
3902};
3903
3904INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3905REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3906
3907
Christopher Faulet51dbc942018-09-13 09:05:15 +02003908/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003909/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003910/****************************************/
3911
3912/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003913static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003914 .init = h1_init,
3915 .wake = h1_wake,
3916 .attach = h1_attach,
3917 .get_first_cs = h1_get_first_cs,
3918 .detach = h1_detach,
3919 .destroy = h1_destroy,
3920 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003921 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003922 .rcv_buf = h1_rcv_buf,
3923 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003924#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003925 .rcv_pipe = h1_rcv_pipe,
3926 .snd_pipe = h1_snd_pipe,
3927#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003928 .subscribe = h1_subscribe,
3929 .unsubscribe = h1_unsubscribe,
3930 .shutr = h1_shutr,
3931 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003932 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003933 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003934 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003935 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003936 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003937};
3938
Christopher Faulet3f612f72021-02-05 16:44:21 +01003939static const struct mux_ops mux_h1_ops = {
3940 .init = h1_init,
3941 .wake = h1_wake,
3942 .attach = h1_attach,
3943 .get_first_cs = h1_get_first_cs,
3944 .detach = h1_detach,
3945 .destroy = h1_destroy,
3946 .avail_streams = h1_avail_streams,
3947 .used_streams = h1_used_streams,
3948 .rcv_buf = h1_rcv_buf,
3949 .snd_buf = h1_snd_buf,
3950#if defined(USE_LINUX_SPLICE)
3951 .rcv_pipe = h1_rcv_pipe,
3952 .snd_pipe = h1_snd_pipe,
3953#endif
3954 .subscribe = h1_subscribe,
3955 .unsubscribe = h1_unsubscribe,
3956 .shutr = h1_shutr,
3957 .shutw = h1_shutw,
3958 .show_fd = h1_show_fd,
3959 .ctl = h1_ctl,
3960 .takeover = h1_takeover,
3961 .flags = MX_FL_HTX|MX_FL_NO_UPG,
3962 .name = "H1",
3963};
Christopher Faulet51dbc942018-09-13 09:05:15 +02003964
Christopher Faulet3f612f72021-02-05 16:44:21 +01003965/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
3966static struct mux_proto_list mux_proto_h1 =
3967 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
3968static struct mux_proto_list mux_proto_http =
3969 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02003970
Christopher Faulet3f612f72021-02-05 16:44:21 +01003971INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
3972INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01003973
Christopher Faulet51dbc942018-09-13 09:05:15 +02003974/*
3975 * Local variables:
3976 * c-indent-level: 8
3977 * c-basic-offset: 8
3978 * End:
3979 */