blob: 62bd4771d81e237d7b80c8df4990d9465b07c60b [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>
13
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020014#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020015#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020016#include <haproxy/connection.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020017#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020018#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020019#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020021#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/istbuf.h>
23#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020024#include <haproxy/pipe-t.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020025#include <haproxy/proxy-t.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020026#include <haproxy/session-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020027#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020028#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020029#include <haproxy/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020030
31/*
32 * H1 Connection flags (32 bits)
33 */
34#define H1C_F_NONE 0x00000000
35
36/* Flags indicating why writing output data are blocked */
37#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
38#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
39/* 0x00000004 - 0x00000008 unused */
40
41/* Flags indicating why reading input data are blocked. */
42#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
43#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletd17ad822020-09-24 15:14:29 +020044#define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010045/* 0x00000080 unused */
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() */
65#define H1C_F_WAIT_OUTPUT 0x00400000 /* Don't read more data for now, waiting sync with output side */
66#define H1C_F_WAIT_INPUT 0x00800000 /* Don't send more data for now, waiting sync with input side */
Christopher Faulet129817b2018-09-20 16:14:40 +020067
Christopher Fauletb385b502021-01-13 18:47:57 +010068/* 0x01000000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010069#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020070
Christopher Faulet51dbc942018-09-13 09:05:15 +020071/*
72 * H1 Stream flags (32 bits)
73 */
Christopher Faulet129817b2018-09-20 16:14:40 +020074#define H1S_F_NONE 0x00000000
Ilya Shipitsinf38a0182020-12-21 01:16:17 +050075/* 0x00000001..0x00000004 unused */
Willy Tarreauc493c9c2019-06-03 14:18:22 +020076#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020077#define H1S_F_WANT_KAL 0x00000010
78#define H1S_F_WANT_TUN 0x00000020
79#define H1S_F_WANT_CLO 0x00000040
80#define H1S_F_WANT_MSK 0x00000070
81#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010082#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020083
Ilya Shipitsinacf84592021-02-06 22:29:08 +050084/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010085#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 +020086#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
87#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
88#define H1S_F_ERROR 0x00001800 /* stream error mask */
89
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020090#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 +020091#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020092
93/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020094struct h1c {
95 struct connection *conn;
96 struct proxy *px;
97 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +020098 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +020099 struct buffer ibuf; /* Input buffer to store data before parsing */
100 struct buffer obuf; /* Output buffer to store data after reformatting */
101
102 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
103 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
104
105 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100106 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200107 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
108 int timeout; /* client/server timeout duration */
109 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200110};
111
112/* H1 stream descriptor */
113struct h1s {
114 struct h1c *h1c;
115 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100116 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200117
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100118 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200119
Olivier Houchardf502aca2018-12-14 19:42:40 +0100120 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200121 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200122 struct h1m req;
123 struct h1m res;
124
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500125 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200126 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100127
128 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200129};
130
Christopher Faulet98fbe952019-07-22 16:18:24 +0200131/* Map of headers used to convert outgoing headers */
132struct h1_hdrs_map {
133 char *name;
134 struct eb_root map;
135};
136
137/* An entry in a headers map */
138struct h1_hdr_entry {
139 struct ist name;
140 struct ebpt_node node;
141};
142
143/* Declare the headers map */
144static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
145
146
Christopher Faulet6b81df72019-10-01 22:08:43 +0200147/* trace source and events */
148static void h1_trace(enum trace_level level, uint64_t mask,
149 const struct trace_source *src,
150 const struct ist where, const struct ist func,
151 const void *a1, const void *a2, const void *a3, const void *a4);
152
153/* The event representation is split like this :
154 * h1c - internal H1 connection
155 * h1s - internal H1 stream
156 * strm - application layer
157 * rx - data receipt
158 * tx - data transmission
159 *
160 */
161static const struct trace_event h1_trace_events[] = {
162#define H1_EV_H1C_NEW (1ULL << 0)
163 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
164#define H1_EV_H1C_RECV (1ULL << 1)
165 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
166#define H1_EV_H1C_SEND (1ULL << 2)
167 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
168#define H1_EV_H1C_BLK (1ULL << 3)
169 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
170#define H1_EV_H1C_WAKE (1ULL << 4)
171 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
172#define H1_EV_H1C_END (1ULL << 5)
173 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
174#define H1_EV_H1C_ERR (1ULL << 6)
175 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
176
177#define H1_EV_RX_DATA (1ULL << 7)
178 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
179#define H1_EV_RX_EOI (1ULL << 8)
180 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
181#define H1_EV_RX_HDRS (1ULL << 9)
182 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
183#define H1_EV_RX_BODY (1ULL << 10)
184 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
185#define H1_EV_RX_TLRS (1ULL << 11)
186 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
187
188#define H1_EV_TX_DATA (1ULL << 12)
189 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
190#define H1_EV_TX_EOI (1ULL << 13)
191 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
192#define H1_EV_TX_HDRS (1ULL << 14)
193 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
194#define H1_EV_TX_BODY (1ULL << 15)
195 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
196#define H1_EV_TX_TLRS (1ULL << 16)
197 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
198
199#define H1_EV_H1S_NEW (1ULL << 17)
200 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
201#define H1_EV_H1S_BLK (1ULL << 18)
202 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
203#define H1_EV_H1S_END (1ULL << 19)
204 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
205#define H1_EV_H1S_ERR (1ULL << 20)
206 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
207
208#define H1_EV_STRM_NEW (1ULL << 21)
209 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
210#define H1_EV_STRM_RECV (1ULL << 22)
211 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
212#define H1_EV_STRM_SEND (1ULL << 23)
213 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
214#define H1_EV_STRM_WAKE (1ULL << 24)
215 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
216#define H1_EV_STRM_SHUT (1ULL << 25)
217 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
218#define H1_EV_STRM_END (1ULL << 26)
219 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
220#define H1_EV_STRM_ERR (1ULL << 27)
221 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
222
223 { }
224};
225
226static const struct name_desc h1_trace_lockon_args[4] = {
227 /* arg1 */ { /* already used by the connection */ },
228 /* arg2 */ { .name="h1s", .desc="H1 stream" },
229 /* arg3 */ { },
230 /* arg4 */ { }
231};
232
233static const struct name_desc h1_trace_decoding[] = {
234#define H1_VERB_CLEAN 1
235 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
236#define H1_VERB_MINIMAL 2
237 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
238#define H1_VERB_SIMPLE 3
239 { .name="simple", .desc="add request/response status line or htx info when available" },
240#define H1_VERB_ADVANCED 4
241 { .name="advanced", .desc="add header fields or frame decoding when available" },
242#define H1_VERB_COMPLETE 5
243 { .name="complete", .desc="add full data dump when available" },
244 { /* end */ }
245};
246
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200247static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200248 .name = IST("h1"),
249 .desc = "HTTP/1 multiplexer",
250 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
251 .default_cb = h1_trace,
252 .known_events = h1_trace_events,
253 .lockon_args = h1_trace_lockon_args,
254 .decoding = h1_trace_decoding,
255 .report_events = ~0, // report everything by default
256};
257
258#define TRACE_SOURCE &trace_h1
259INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
260
Christopher Faulet51dbc942018-09-13 09:05:15 +0200261/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100262DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
263DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200264
Christopher Faulet51dbc942018-09-13 09:05:15 +0200265static int h1_recv(struct h1c *h1c);
266static int h1_send(struct h1c *h1c);
267static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100268/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100269struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
270struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200271static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200272static void h1_wake_stream_for_recv(struct h1s *h1s);
273static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200274
Christopher Faulet6b81df72019-10-01 22:08:43 +0200275/* the H1 traces always expect that arg1, if non-null, is of type connection
276 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
277 * that arg3, if non-null, is a htx for rx/tx headers.
278 */
279static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
280 const struct ist where, const struct ist func,
281 const void *a1, const void *a2, const void *a3, const void *a4)
282{
283 const struct connection *conn = a1;
284 const struct h1c *h1c = conn ? conn->ctx : NULL;
285 const struct h1s *h1s = a2;
286 const struct htx *htx = a3;
287 const size_t *val = a4;
288
289 if (!h1c)
290 h1c = (h1s ? h1s->h1c : NULL);
291
292 if (!h1c || src->verbosity < H1_VERB_CLEAN)
293 return;
294
295 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200296 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200297
298 /* Display request and response states if h1s is defined */
299 if (h1s)
300 chunk_appendf(&trace_buf, " [%s, %s]",
301 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
302
303 if (src->verbosity == H1_VERB_CLEAN)
304 return;
305
306 /* Display the value to the 4th argument (level > STATE) */
307 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100308 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200309
310 /* Display status-line if possible (verbosity > MINIMAL) */
311 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
312 const struct htx_blk *blk = htx_get_head_blk(htx);
313 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
314 enum htx_blk_type type = htx_get_blk_type(blk);
315
316 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
317 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
318 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
319 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
320 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
321 }
322
323 /* Display h1c info and, if defined, h1s info (pointer + flags) */
324 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
325 if (h1s)
326 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
327
328 if (src->verbosity == H1_VERB_MINIMAL)
329 return;
330
331 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
332 if (src->level > TRACE_LEVEL_USER) {
333 if (src->verbosity == H1_VERB_COMPLETE ||
334 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
335 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
336 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
337 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
338 if (src->verbosity == H1_VERB_COMPLETE ||
339 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
340 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
341 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
342 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
343 }
344
345 /* Display htx info if defined (level > USER) */
346 if (src->level > TRACE_LEVEL_USER && htx) {
347 int full = 0;
348
349 /* Full htx info (level > STATE && verbosity > SIMPLE) */
350 if (src->level > TRACE_LEVEL_STATE) {
351 if (src->verbosity == H1_VERB_COMPLETE)
352 full = 1;
353 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
354 full = 1;
355 }
356
357 chunk_memcat(&trace_buf, "\n\t", 2);
358 htx_dump(&trace_buf, htx, full);
359 }
360}
361
362
Christopher Faulet51dbc942018-09-13 09:05:15 +0200363/*****************************************************/
364/* functions below are for dynamic buffer management */
365/*****************************************************/
366/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100367 * Indicates whether or not we may receive data. The rules are the following :
368 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200369 * must not attempt to receive
370 * - if we are waiting for the connection establishment, we must not attempt
371 * to receive
372 * - if an error was detected on the stream we must not attempt to receive
373 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100374 * - if the input buffer failed to be allocated or is full , we must not try
375 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200376 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200377 * - otherwise must may not attempt to receive
378 */
379static inline int h1_recv_allowed(const struct h1c *h1c)
380{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100381 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100382 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 +0200383 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200384 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200385
Willy Tarreau2febb842020-07-31 09:15:43 +0200386 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
387 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 +0100388 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200389 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100390
Christopher Faulet119ac872020-09-30 17:33:22 +0200391 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
392 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
393 return 0;
394 }
395
Christopher Fauletb385b502021-01-13 18:47:57 +0100396 if (h1c->flags & H1C_F_WAIT_OUTPUT) {
397 TRACE_DEVEL("recv not allowed (wait_output)", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Willy Tarreauf5ea3a82020-07-31 09:16:23 +0200398 return 0;
399 }
400
Christopher Fauletd17ad822020-09-24 15:14:29 +0200401 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200402 return 1;
403
Christopher Faulet6b81df72019-10-01 22:08:43 +0200404 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 +0200405 return 0;
406}
407
408/*
409 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
410 * flags are used to figure what buffer was requested. It returns 1 if the
411 * allocation succeeds, in which case the connection is woken up, or 0 if it's
412 * impossible to wake up and we prefer to be woken up later.
413 */
414static int h1_buf_available(void *target)
415{
416 struct h1c *h1c = target;
417
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100418 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200419 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 +0200420 h1c->flags &= ~H1C_F_IN_ALLOC;
421 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200422 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200423 return 1;
424 }
425
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100426 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200427 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 +0200428 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200429 if (h1c->h1s)
430 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200431 return 1;
432 }
433
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100434 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200435 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
436 h1c->flags &= ~H1C_F_IN_SALLOC;
437 tasklet_wakeup(h1c->wait_event.tasklet);
438 return 1;
439 }
440
Christopher Faulet51dbc942018-09-13 09:05:15 +0200441 return 0;
442}
443
444/*
445 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
446 */
447static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
448{
449 struct buffer *buf = NULL;
450
Willy Tarreau2b718102021-04-21 07:32:39 +0200451 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100452 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200453 h1c->buf_wait.target = h1c;
454 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200455 LIST_APPEND(&ti->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200456 }
457 return buf;
458}
459
460/*
461 * Release a buffer, if any, and try to wake up entities waiting in the buffer
462 * wait queue.
463 */
464static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
465{
466 if (bptr->size) {
467 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100468 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200469 }
470}
471
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100472/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100473 * 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 +0100474 * not. This flag is only set when no H1S is attached and when the previous
475 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100476 */
477static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200478{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100479 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200480
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100481 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200482}
483
Willy Tarreau00f18a32019-01-26 12:19:01 +0100484/* returns the number of streams still available on a connection */
485static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100486{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100487 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100488}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200489
Christopher Faulet7a145d62020-08-05 11:31:16 +0200490/* Refresh the h1c task timeout if necessary */
491static void h1_refresh_timeout(struct h1c *h1c)
492{
493 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100494 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200495 /* half-closed or dead connections : switch to clientfin/serverfin
496 * timeouts so that we don't hang too long on clients that have
497 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200498 */
499 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200500 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
501 }
502 else if (b_data(&h1c->obuf)) {
503 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200504 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200505 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
506 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100507 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
508 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200509 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100510 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 +0200511 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200512 else {
513 /* alive back connections of front connections with a conn-stream attached */
514 h1c->task->expire = TICK_ETERNITY;
515 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
516 }
517
Christopher Fauletdbe57792020-10-05 17:50:58 +0200518 /* Finally set the idle expiration date if shorter */
519 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200520 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
521 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200522 }
523}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200524
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200525static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200526{
527 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
528 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
529 h1c->idle_exp = TICK_ETERNITY;
530 return;
531 }
532
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100533 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200534 if (!tick_isset(h1c->idle_exp)) {
535 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
536 !b_data(&h1c->ibuf) && /* No input data */
537 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
538 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
539 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
540 }
541 else {
542 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
543 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
544 }
545 }
546 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100547 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200548 if (!tick_isset(h1c->idle_exp)) {
549 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
550 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
551 }
552 }
553 else { // CS_ATTACHED or SHUTDOWN
554 h1c->idle_exp = TICK_ETERNITY;
555 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
556 }
557}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200558/*****************************************************************/
559/* functions below are dedicated to the mux setup and management */
560/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200561
562/* returns non-zero if there are input data pending for stream h1s. */
563static inline size_t h1s_data_pending(const struct h1s *h1s)
564{
565 const struct h1m *h1m;
566
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200567 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100568 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200569}
570
Christopher Faulet16df1782020-12-04 16:47:41 +0100571/* Creates a new conn-stream and the associate stream. <input> is used as input
572 * buffer for the stream. On success, it is transferred to the stream and the
573 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
574 * mux must still take care of it. However, there is nothing special to do
575 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
576 * b_free() on it is always safe. This function returns the conn-stream on
577 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200578static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100579{
580 struct conn_stream *cs;
581
Christopher Faulet6b81df72019-10-01 22:08:43 +0200582 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200583 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200584 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100585 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 +0100586 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200587 }
Christopher Faulet47365272018-10-31 17:40:50 +0100588 h1s->cs = cs;
589 cs->ctx = h1s;
590
591 if (h1s->flags & H1S_F_NOT_FIRST)
592 cs->flags |= CS_FL_NOT_FIRST;
593
Christopher Faulet27182292020-07-03 15:08:49 +0200594 if (global.tune.options & GTUNE_USE_SPLICE) {
595 TRACE_STATE("notify the mux can use splicing", H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +0100596 cs->flags |= CS_FL_MAY_SPLICE;
Christopher Faulet27182292020-07-03 15:08:49 +0200597 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +0100598
Christopher Faulet26256f82020-09-14 11:40:13 +0200599 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200600 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 +0100601 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200602 }
603
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100604 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 +0200605 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100606 return cs;
607
608 err:
609 cs_free(cs);
610 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100611 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100612 return NULL;
613}
614
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100615static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
616{
617 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
618
619 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100620 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 +0100621 goto err;
622 }
623
624 if (global.tune.options & GTUNE_USE_SPLICE) {
625 TRACE_STATE("notify the mux can use splicing", H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
626 h1s->cs->flags |= CS_FL_MAY_SPLICE;
627 }
628
629 h1s->h1c->flags |= H1C_F_ST_READY;
630 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
631 return h1s->cs;
632
633 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100634 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100635 return NULL;
636}
637
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200638static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200639{
640 struct h1s *h1s;
641
Christopher Faulet6b81df72019-10-01 22:08:43 +0200642 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
643
Christopher Faulet51dbc942018-09-13 09:05:15 +0200644 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100645 if (!h1s) {
646 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 +0100647 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100648 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200649 h1s->h1c = h1c;
650 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200651 h1s->sess = NULL;
652 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100653 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100654 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200655 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100656 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200657
658 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100659 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200660
Christopher Faulet129817b2018-09-20 16:14:40 +0200661 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100662 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200663
664 h1s->status = 0;
665 h1s->meth = HTTP_METH_OTHER;
666
Christopher Faulet47365272018-10-31 17:40:50 +0100667 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
668 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100669 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100670
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200671 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
672 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200673
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200674 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100675 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200676 return NULL;
677}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100678
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200679static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
680{
681 struct session *sess = h1c->conn->owner;
682 struct h1s *h1s;
683
684 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
685
686 h1s = h1s_new(h1c);
687 if (!h1s)
688 goto fail;
689
690 h1s->sess = sess;
691
692 if (h1c->px->options2 & PR_O2_REQBUG_OK)
693 h1s->req.err_pos = -1;
694
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200695 h1c->idle_exp = TICK_ETERNITY;
696 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200697 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200698 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100699
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200700 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100701 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200702 return NULL;
703}
704
705static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
706{
707 struct h1s *h1s;
708
709 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
710
711 h1s = h1s_new(h1c);
712 if (!h1s)
713 goto fail;
714
715 h1s->cs = cs;
716 h1s->sess = sess;
717 cs->ctx = h1s;
718
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100719 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200720
721 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
722 h1s->res.err_pos = -1;
723
724 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
725 return h1s;
726
727 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100728 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100729 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200730}
731
732static void h1s_destroy(struct h1s *h1s)
733{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200734 if (h1s) {
735 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200736
Christopher Faulet6b81df72019-10-01 22:08:43 +0200737 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200738 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200739
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100740 if (h1s->subs)
741 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200742
Christopher Fauletd17ad822020-09-24 15:14:29 +0200743 h1_release_buf(h1c, &h1s->rxbuf);
744
Christopher Fauletb385b502021-01-13 18:47:57 +0100745 h1c->flags &= ~(H1C_F_WAIT_INPUT|H1C_F_WAIT_OUTPUT|H1C_F_WANT_SPLICE|
746 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200747 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
748 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200749 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100750 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100751 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 +0200752 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100753
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100754 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100755 !(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 +0100756 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100757 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100758 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100759 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
760 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200761 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100762 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100763 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200764 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200765 pool_free(pool_head_h1s, h1s);
766 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200767}
768
769/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200770 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500771 * to the existing conn_stream (for outgoing connections or for incoming ones
772 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200773 * establishment). <input> is always used as Input buffer and may contain
774 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
775 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200776 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200777static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
778 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200779{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200780 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100781 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200782 void *conn_ctx = conn->ctx;
783
784 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200785
786 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100787 if (!h1c) {
788 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200789 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100790 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200791 h1c->conn = conn;
792 h1c->px = proxy;
793
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100794 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200795 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200796 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200797 h1c->obuf = BUF_NULL;
798 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200799 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200800
Willy Tarreau90f366b2021-02-20 11:49:49 +0100801 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200802 h1c->wait_event.tasklet = tasklet_new();
803 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200804 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200805 h1c->wait_event.tasklet->process = h1_io_cb;
806 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100807 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200808 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200809
Christopher Faulete9b70722019-04-08 10:46:02 +0200810 if (conn_is_back(conn)) {
Christopher Fauletb385b502021-01-13 18:47:57 +0100811 h1c->flags |= (H1C_F_IS_BACK|H1C_F_WAIT_OUTPUT);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100812 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
813 if (tick_isset(proxy->timeout.serverfin))
814 h1c->shut_timeout = proxy->timeout.serverfin;
815 } else {
816 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
817 if (tick_isset(proxy->timeout.clientfin))
818 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200819
820 LIST_APPEND(&mux_stopping_data[tid].list,
821 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100822 }
823 if (tick_isset(h1c->timeout)) {
824 t = task_new(tid_bit);
Christopher Faulet26a26432021-01-27 11:27:50 +0100825 if (!t) {
826 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 +0100827 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100828 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100829
830 h1c->task = t;
831 t->process = h1_timeout_task;
832 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200833
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100834 t->expire = tick_add(now_ms, h1c->timeout);
835 }
836
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100837 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200838
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200839 if (h1c->flags & H1C_F_IS_BACK) {
840 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200841 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
842 goto fail;
843 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100844 else if (conn_ctx) {
845 /* Upgraded frontend connection (from TCP) */
846 struct conn_stream *cs = conn_ctx;
847
848 if (!h1c_frt_stream_new(h1c))
849 goto fail;
850
851 h1c->h1s->cs = cs;
852 cs->ctx = h1c->h1s;
853
854 /* Attach the CS but Not ready yet */
855 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
856 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
857 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
858 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100859
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200860 if (t) {
861 h1_set_idle_expiration(h1c);
862 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100863 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200864 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100865
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200866 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100867 if (b_data(&h1c->ibuf))
868 tasklet_wakeup(h1c->wait_event.tasklet);
869 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200870 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200871
872 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200873 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200874 return 0;
875
876 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200877 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200878 if (h1c->wait_event.tasklet)
879 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200880 pool_free(pool_head_h1c, h1c);
881 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200882 conn->ctx = conn_ctx; // restore saved context
883 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200884 return -1;
885}
886
Christopher Faulet73c12072019-04-08 11:23:22 +0200887/* release function. This one should be called to free all resources allocated
888 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200889 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200890static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200891{
Christopher Faulet61840e72019-04-15 09:33:32 +0200892 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200893
Christopher Faulet6b81df72019-10-01 22:08:43 +0200894 TRACE_POINT(H1_EV_H1C_END);
895
Christopher Faulet51dbc942018-09-13 09:05:15 +0200896 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200897 /* The connection must be aattached to this mux to be released */
898 if (h1c->conn && h1c->conn->ctx == h1c)
899 conn = h1c->conn;
900
Christopher Faulet6b81df72019-10-01 22:08:43 +0200901 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
902
Christopher Faulet61840e72019-04-15 09:33:32 +0200903 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200904 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200905 /* Make sure we're no longer subscribed to anything */
906 if (h1c->wait_event.events)
907 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
908 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200909 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200910 /* connection successfully upgraded to H2, this
911 * mux was already released */
912 return;
913 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100914 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200915 sess_log(conn->owner); /* Log if the upgrade failed */
916 }
917
Olivier Houchard45c44372019-06-11 14:06:23 +0200918
Willy Tarreau2b718102021-04-21 07:32:39 +0200919 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100920 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200921
922 h1_release_buf(h1c, &h1c->ibuf);
923 h1_release_buf(h1c, &h1c->obuf);
924
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100925 if (h1c->task) {
926 h1c->task->context = NULL;
927 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
928 h1c->task = NULL;
929 }
930
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200931 if (h1c->wait_event.tasklet)
932 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200933
Christopher Fauletf2824e62018-10-01 12:12:37 +0200934 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200935 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100936 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200937 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200938 pool_free(pool_head_h1c, h1c);
939 }
940
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200941 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200942 if (!conn_is_back(conn))
943 LIST_DEL_INIT(&conn->stopping_list);
944
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200945 conn->mux = NULL;
946 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200947 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200948
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200949 conn_stop_tracking(conn);
950 conn_full_close(conn);
951 if (conn->destroy_cb)
952 conn->destroy_cb(conn);
953 conn_free(conn);
954 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200955}
956
957/******************************************************/
958/* functions below are for the H1 protocol processing */
959/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200960/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
961 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200962 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100963static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200964{
Christopher Faulet570d1612018-11-26 11:13:57 +0100965 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200966
Christopher Faulet570d1612018-11-26 11:13:57 +0100967 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200968 (*(p + 5) > '1' ||
969 (*(p + 5) == '1' && *(p + 7) >= '1')))
970 h1m->flags |= H1_MF_VER_11;
971}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200972
Christopher Faulet9768c262018-10-22 09:34:31 +0200973/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
974 * greater or equal to 1.1
975 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100976static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200977{
Christopher Faulet570d1612018-11-26 11:13:57 +0100978 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200979
Christopher Faulet570d1612018-11-26 11:13:57 +0100980 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200981 (*(p + 5) > '1' ||
982 (*(p + 5) == '1' && *(p + 7) >= '1')))
983 h1m->flags |= H1_MF_VER_11;
984}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200985
Christopher Fauletf2824e62018-10-01 12:12:37 +0200986/* Deduce the connection mode of the client connection, depending on the
987 * configuration and the H1 message flags. This function is called twice, the
988 * first time when the request is parsed and the second time when the response
989 * is parsed.
990 */
991static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
992{
993 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200994
995 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100996 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +0100997 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100998 h1s->status == 101) {
999 /* Either we've established an explicit tunnel, or we're
1000 * switching the protocol. In both cases, we're very unlikely to
1001 * understand the next protocols. We have to switch to tunnel
1002 * mode, so that we transfer the request and responses then let
1003 * this protocol pass unmodified. When we later implement
1004 * specific parsers for such protocols, we'll want to check the
1005 * Upgrade header which contains information about that protocol
1006 * for responses with status 101 (eg: see RFC2817 about TLS).
1007 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001008 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001009 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 +01001010 }
1011 else if (h1s->flags & H1S_F_WANT_KAL) {
1012 /* By default the client is in KAL mode. CLOSE mode mean
1013 * it is imposed by the client itself. So only change
1014 * KAL mode here. */
1015 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1016 /* no length known or explicit close => close */
1017 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001018 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 +01001019 }
1020 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1021 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001022 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001023 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001024 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 +01001025 }
1026 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001027 }
1028 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001029 /* Input direction: first pass */
1030 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1031 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001032 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001033 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 +01001034 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001035 }
1036
1037 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001038 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001039 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001040 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);
1041 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001042}
1043
1044/* Deduce the connection mode of the client connection, depending on the
1045 * configuration and the H1 message flags. This function is called twice, the
1046 * first time when the request is parsed and the second time when the response
1047 * is parsed.
1048 */
1049static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1050{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001051 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001052 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001053 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001054
Christopher Fauletf2824e62018-10-01 12:12:37 +02001055 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001056 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001057 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001058 h1s->status == 101) {
1059 /* Either we've established an explicit tunnel, or we're
1060 * switching the protocol. In both cases, we're very unlikely to
1061 * understand the next protocols. We have to switch to tunnel
1062 * mode, so that we transfer the request and responses then let
1063 * this protocol pass unmodified. When we later implement
1064 * specific parsers for such protocols, we'll want to check the
1065 * Upgrade header which contains information about that protocol
1066 * for responses with status 101 (eg: see RFC2817 about TLS).
1067 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001068 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001069 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 +01001070 }
1071 else if (h1s->flags & H1S_F_WANT_KAL) {
1072 /* By default the server is in KAL mode. CLOSE mode mean
1073 * it is imposed by haproxy itself. So only change KAL
1074 * mode here. */
1075 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1076 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1077 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1078 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001079 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 +01001080 }
1081 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001082 }
Christopher Faulet70033782018-12-05 13:50:11 +01001083 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001084 /* Output direction: first pass */
1085 if (h1m->flags & H1_MF_CONN_CLO) {
1086 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001087 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001088 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 +01001089 }
1090 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1091 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1092 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1093 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1094 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1095 /* no explicit keep-alive option httpclose/server-close => close */
1096 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001097 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 +01001098 }
Christopher Faulet70033782018-12-05 13:50:11 +01001099 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001100
1101 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001102 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001103 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001104 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);
1105 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001106}
1107
Christopher Fauletb992af02019-03-28 15:42:24 +01001108static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001109{
1110 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001111
1112 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1113 * token is found
1114 */
1115 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001116 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001117
1118 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001119 if (!(h1m->flags & H1_MF_VER_11)) {
1120 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 +01001121 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001122 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001123 }
1124 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001125 if (h1m->flags & H1_MF_VER_11) {
1126 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001127 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001128 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001129 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001130}
1131
Christopher Fauletb992af02019-03-28 15:42:24 +01001132static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001133{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001134 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1135 * token is found
1136 */
1137 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001138 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001139
1140 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001141 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001142 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1143 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 +01001144 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001145 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001146 }
1147 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001148 if (h1m->flags & H1_MF_VER_11) {
1149 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001150 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001151 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001152 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001153}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001154
Christopher Fauletb992af02019-03-28 15:42:24 +01001155static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001156{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001157 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001158 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001159 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001160 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001161}
1162
Christopher Fauletb992af02019-03-28 15:42:24 +01001163static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1164{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001165 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001166 h1_set_cli_conn_mode(h1s, h1m);
1167 else
1168 h1_set_srv_conn_mode(h1s, h1m);
1169
1170 if (!(h1m->flags & H1_MF_RESP))
1171 h1_update_req_conn_value(h1s, h1m, conn_val);
1172 else
1173 h1_update_res_conn_value(h1s, h1m, conn_val);
1174}
Christopher Faulete44769b2018-11-29 23:01:45 +01001175
Christopher Faulet98fbe952019-07-22 16:18:24 +02001176/* Try to adjust the case of the message header name using the global map
1177 * <hdrs_map>.
1178 */
1179static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1180{
1181 struct ebpt_node *node;
1182 struct h1_hdr_entry *entry;
1183
1184 /* No entry in the map, do nothing */
1185 if (eb_is_empty(&hdrs_map.map))
1186 return;
1187
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001188 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001189 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1190 return;
1191
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001192 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001193 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1194 return;
1195
1196 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1197 if (!node)
1198 return;
1199 entry = container_of(node, struct h1_hdr_entry, node);
1200 name->ptr = entry->name.ptr;
1201 name->len = entry->name.len;
1202}
1203
Christopher Faulete44769b2018-11-29 23:01:45 +01001204/* Append the description of what is present in error snapshot <es> into <out>.
1205 * The description must be small enough to always fit in a buffer. The output
1206 * buffer may be the trash so the trash must not be used inside this function.
1207 */
1208static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1209{
1210 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001211 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1212 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1213 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1214 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1215 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1216 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001217}
1218/*
1219 * Capture a bad request or response and archive it in the proxy's structure.
1220 * By default it tries to report the error position as h1m->err_pos. However if
1221 * this one is not set, it will then report h1m->next, which is the last known
1222 * parsing point. The function is able to deal with wrapping buffers. It always
1223 * displays buffers as a contiguous area starting at buf->p. The direction is
1224 * determined thanks to the h1m's flags.
1225 */
1226static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1227 struct h1m *h1m, struct buffer *buf)
1228{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001229 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001230 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001231 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001232 union error_snapshot_ctx ctx;
1233
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001234 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001235 if (sess == NULL)
1236 sess = si_strm(h1s->cs->data)->sess;
1237 if (!(h1m->flags & H1_MF_RESP))
1238 other_end = si_strm(h1s->cs->data)->be;
1239 else
1240 other_end = sess->fe;
1241 } else
1242 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001243
1244 /* http-specific part now */
1245 ctx.h1.state = h1m->state;
1246 ctx.h1.c_flags = h1c->flags;
1247 ctx.h1.s_flags = h1s->flags;
1248 ctx.h1.m_flags = h1m->flags;
1249 ctx.h1.m_clen = h1m->curr_len;
1250 ctx.h1.m_blen = h1m->body_len;
1251
1252 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1253 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001254 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1255 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001256}
1257
Christopher Fauletadb22202018-12-12 10:32:09 +01001258/* Emit the chunksize followed by a CRLF in front of data of the buffer
1259 * <buf>. It goes backwards and starts with the byte before the buffer's
1260 * head. The caller is responsible for ensuring there is enough room left before
1261 * the buffer's head for the string.
1262 */
1263static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1264{
1265 char *beg, *end;
1266
1267 beg = end = b_head(buf);
1268 *--beg = '\n';
1269 *--beg = '\r';
1270 do {
1271 *--beg = hextab[chksz & 0xF];
1272 } while (chksz >>= 4);
1273 buf->head -= (end - beg);
1274 b_add(buf, end - beg);
1275}
1276
1277/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1278 * ensuring there is enough room left in the buffer for the string. */
1279static void h1_emit_chunk_crlf(struct buffer *buf)
1280{
1281 *(b_peek(buf, b_data(buf))) = '\r';
1282 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1283 b_add(buf, 2);
1284}
1285
Christopher Faulet129817b2018-09-20 16:14:40 +02001286/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001287 * Switch the stream to tunnel mode. This function must only be called on 2xx
1288 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001289 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001290static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001291{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001292 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001293
Christopher Faulet5be651d2021-01-22 15:28:03 +01001294 h1s->req.state = H1_MSG_TUNNEL;
1295 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001296
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001297 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001298 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001299
Christopher Faulet5be651d2021-01-22 15:28:03 +01001300 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 +01001301
Christopher Faulet5be651d2021-01-22 15:28:03 +01001302 if (h1c->flags & H1C_F_WAIT_OUTPUT) {
1303 h1c->flags &= ~H1C_F_WAIT_OUTPUT;
1304 if (b_data(&h1c->ibuf))
1305 h1_wake_stream_for_recv(h1s);
1306 tasklet_wakeup(h1c->wait_event.tasklet);
1307 TRACE_STATE("Re-enable read on h1c", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001308 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01001309 if (h1c->flags & H1C_F_WAIT_INPUT) {
1310 h1c->flags &= ~H1C_F_WAIT_INPUT;
1311 h1_wake_stream_for_send(h1s);
1312 if (b_data(&h1c->obuf))
1313 tasklet_wakeup(h1c->wait_event.tasklet);
1314 TRACE_STATE("Re-enable send on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001315 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001316}
1317
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001318/* Search for a websocket key header. The message should have been identified
1319 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001320 *
1321 * On the request side, if found the key is stored in the session. It might be
1322 * needed to calculate response key if the server side is using http/2.
1323 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001324 * On the response side, the key might be verified if haproxy has been
1325 * responsible for the generation of a key. This happens when a h2 client is
1326 * interfaced with a h1 server.
1327 *
1328 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001329 */
1330static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1331{
1332 struct htx_blk *blk;
1333 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001334 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001335 int ws_key_found = 0, idx;
1336
1337 idx = htx_get_head(htx); // returns the SL that we skip
1338 while ((idx = htx_get_next(htx, idx)) != -1) {
1339 blk = htx_get_blk(htx, idx);
1340 type = htx_get_blk_type(blk);
1341
1342 if (type == HTX_BLK_UNUSED)
1343 continue;
1344
1345 if (type != HTX_BLK_HDR)
1346 break;
1347
1348 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001349 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001350
Amaury Denoyellec1938232020-12-11 17:53:03 +01001351 /* Websocket key is base64 encoded of 16 bytes */
1352 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001353 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001354 /* Copy the key on request side
1355 * we might need it if the server is using h2 and does
1356 * not provide the response
1357 */
1358 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001359 ws_key_found = 1;
1360 break;
1361 }
1362 else if (isteqi(n, ist("sec-websocket-accept")) &&
1363 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001364 /* Need to verify the response key if the input was
1365 * generated by haproxy
1366 */
1367 if (h1s->ws_key[0]) {
1368 char key[29];
1369 h1_calculate_ws_output_key(h1s->ws_key, key);
1370 if (!isteqi(ist(key), v))
1371 break;
1372 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001373 ws_key_found = 1;
1374 break;
1375 }
1376 }
1377
1378 /* missing websocket key, reject the message */
1379 if (!ws_key_found) {
1380 htx->flags |= HTX_FL_PARSING_ERROR;
1381 return 0;
1382 }
1383
1384 return 1;
1385}
1386
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001387/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001388 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001389 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001390 * flag. If relies on the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001391 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001392static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001393 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001394{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001395 union h1_sl h1sl;
Christopher Faulet129817b2018-09-20 16:14:40 +02001396 int ret = 0;
1397
Willy Tarreau022e5e52020-09-10 09:33:15 +02001398 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 +02001399
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001400 if (h1s->meth == HTTP_METH_CONNECT)
1401 h1m->flags |= H1_MF_METH_CONNECT;
1402 if (h1s->meth == HTTP_METH_HEAD)
1403 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001404
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001405 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
1406 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001407 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001408 if (htx->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001409 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001410 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 +02001411 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1412 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001413 goto end;
1414 }
1415
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001416 /* If websocket handshake, search for the websocket key */
1417 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1418 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1419 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1420 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001421 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001422 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 +01001423 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1424
1425 ret = 0;
1426 goto end;
1427 }
1428 }
1429
Christopher Faulet486498c2019-10-11 14:22:00 +02001430 if (h1m->err_pos >= 0) {
1431 /* Maybe we found an error during the parsing while we were
1432 * configured not to block on that, so we have to capture it
1433 * now.
1434 */
1435 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1436 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1437 }
1438
Christopher Faulet5696f542020-12-02 16:08:38 +01001439 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001440 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001441 if (h1s->meth == HTTP_METH_HEAD)
1442 h1s->flags |= H1S_F_BODYLESS_RESP;
1443 }
1444 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001445 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001446 if (h1s->status == 204 || h1s->status == 304)
1447 h1s->flags |= H1S_F_BODYLESS_RESP;
1448 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001449 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001450 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001451
Christopher Faulet129817b2018-09-20 16:14:40 +02001452 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001453 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 +02001454 return ret;
1455}
1456
1457/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001458 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001459 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1460 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001461 */
Christopher Fauletaf542632019-10-01 21:52:49 +02001462static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001463 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001464 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001465{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001466 int ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001467
Willy Tarreau022e5e52020-09-10 09:33:15 +02001468 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 +02001469 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001470 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001471 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 +01001472 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001473 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001474 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 +02001475 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001476 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001477 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001478 }
1479
Christopher Faulet02a02532019-11-15 09:36:28 +01001480 *ofs += ret;
1481
1482 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001483 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 +02001484 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001485}
1486
1487/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001488 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1489 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1490 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
1491 * responsible to update the parser state <h1m>.
1492 */
1493static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1494 struct buffer *buf, size_t *ofs, size_t max)
1495{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001496 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001497
Willy Tarreau022e5e52020-09-10 09:33:15 +02001498 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 +02001499 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet02a02532019-11-15 09:36:28 +01001500 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001501 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 +01001502 if (htx->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001503 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001504 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 +02001505 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1506 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001507 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001508 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001509
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001510 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001511
1512 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001513 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 +02001514 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001515}
1516
1517/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001518 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001519 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1520 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001521 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001522static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001523{
Christopher Faulet539e0292018-11-19 10:40:09 +01001524 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001525 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001526 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001527 size_t data;
1528 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001529 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001530
Christopher Faulet539e0292018-11-19 10:40:09 +01001531 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001532 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001533
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001534 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001535 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001536
Christopher Faulet2eed8002020-12-07 11:26:13 +01001537 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001538 goto end;
1539
Christopher Faulet5be651d2021-01-22 15:28:03 +01001540 if (h1c->flags & H1C_F_WAIT_OUTPUT)
1541 goto end;
1542
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001543 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001544 size_t used = htx_used_space(htx);
1545
Christopher Faulet129817b2018-09-20 16:14:40 +02001546 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001547 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet539e0292018-11-19 10:40:09 +01001548 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001549 if (!ret)
1550 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001551
1552 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1553 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1554
Christopher Faulet1d2d77b2020-12-07 18:17:33 +01001555 /* Reject Protocol upgrade request with payload */
1556 if ((h1m->flags & (H1_MF_RESP|H1_MF_CONN_UPG)) == H1_MF_CONN_UPG && h1m->state != H1_MSG_DONE) {
1557 h1s->flags |= H1S_F_NOT_IMPL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001558 TRACE_ERROR("Upgrade with body not implemented, reject H1 message",
1559 H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet1d2d77b2020-12-07 18:17:33 +01001560 break;
1561 }
1562
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001563 if ((h1m->flags & H1_MF_RESP) &&
1564 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1565 h1m_init_res(&h1s->res);
1566 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001567 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001568 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001569 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001570 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001571 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001572 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001573 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet129817b2018-09-20 16:14:40 +02001574 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001575
1576 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1577 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001578 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001579 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001580 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
1581 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1582 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001583 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001584
Christopher Faulet76014fd2019-12-10 11:47:22 +01001585 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1586 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001587 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001588 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001589 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1590 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001591
Christopher Faulet5be651d2021-01-22 15:28:03 +01001592 if ((h1m->flags & H1_MF_RESP) &&
1593 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1594 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001595 else {
1596 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1597 /* Unfinished transaction: block this input side waiting the end of the output side */
1598 h1c->flags |= H1C_F_WAIT_OUTPUT;
1599 TRACE_STATE("Disable read on h1c (wait_output)", H1_EV_RX_DATA|H1_EV_H1C_BLK, h1c->conn, h1s);
1600 }
1601 if (h1s->h1c->flags & H1C_F_WAIT_INPUT) {
1602 h1s->h1c->flags &= ~H1C_F_WAIT_INPUT;
1603 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
1604 TRACE_STATE("Re-enable send on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1605 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001606 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001607 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001608 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001609 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001610 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001611 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001612 if (!ret)
1613 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001614
1615 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1616 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001617 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001618 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001619 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001620 break;
1621 }
1622
Christopher Faulet30db3d72019-05-17 15:35:33 +02001623 count -= htx_used_space(htx) - used;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001624 } while (!(h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) && !(h1c->flags & H1C_F_WAIT_OUTPUT));
1625
Christopher Faulet129817b2018-09-20 16:14:40 +02001626
Christopher Faulet2eed8002020-12-07 11:26:13 +01001627 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001628 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 +02001629 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001630 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001631
Christopher Faulet539e0292018-11-19 10:40:09 +01001632 b_del(&h1c->ibuf, total);
1633
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001634 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001635 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1636
Christopher Faulet30db3d72019-05-17 15:35:33 +02001637 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001638 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001639 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001640 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 +01001641 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001642 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001643
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001644 if (!b_data(&h1c->ibuf))
1645 h1_release_buf(h1c, &h1c->ibuf);
1646
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001647 if (!(h1c->flags & H1C_F_ST_READY)) {
1648 /* The H1 connection is not ready. Most of time, there is no CS
1649 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1650 * cases, it is only possible on the client side.
1651 */
1652 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1653
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001654 if (h1m->state <= H1_MSG_LAST_LF) {
1655 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1656 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1657 goto end;
1658 }
1659
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001660 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1661 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1662 BUG_ON(h1s->cs);
1663 if (!h1s_new_cs(h1s, buf)) {
1664 h1c->flags |= H1C_F_ST_ERROR;
1665 goto err;
1666 }
1667 }
1668 else {
1669 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1670 BUG_ON(h1s->cs == NULL);
1671 if (!h1s_upgrade_cs(h1s, buf)) {
1672 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001673 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001674 goto err;
1675 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001676 }
1677 }
1678
1679 /* Here h1s->cs is always defined */
Christopher Fauleta583af62020-09-24 15:35:37 +02001680 if (!(h1m->flags & H1_MF_CHNK) &&
1681 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) {
1682 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1683 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1684 }
1685 else {
1686 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1687 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1688 }
1689
Christopher Fauleta22782b2021-02-08 17:18:01 +01001690 /* Set EOI on conn-stream in DONE state iff:
1691 * - it is a response
1692 * - it is a request but no a protocol upgrade nor a CONNECT
1693 *
1694 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001695 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001696 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001697 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1698 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001699 h1s->cs->flags |= CS_FL_EOI;
1700
Christopher Faulet6716cc22019-12-20 17:33:24 +01001701 if (h1s_data_pending(h1s) && !htx_is_empty(htx))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001702 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001703 else {
1704 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1705 if (h1s->flags & H1S_F_REOS) {
1706 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001707 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1708 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1709 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001710 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001711 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001712 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001713 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001714 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1715 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001716
1717 if (h1s->h1c->flags & H1C_F_WAIT_INPUT) {
1718 h1s->h1c->flags &= ~H1C_F_WAIT_INPUT;
1719 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
1720 TRACE_STATE("Re-enable send on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1721 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001722 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001723 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001724
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001725 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001726 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001727 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001728
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001729 err:
Christopher Faulet47365272018-10-31 17:40:50 +01001730 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001731 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001732 if (h1s->cs)
1733 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001734 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001735 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001736}
1737
Christopher Faulet129817b2018-09-20 16:14:40 +02001738/*
1739 * Process outgoing data. It parses data and transfer them from the channel buffer into
1740 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1741 * 0 if it couldn't proceed.
1742 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001743static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1744{
Christopher Faulet129817b2018-09-20 16:14:40 +02001745 struct h1s *h1s = h1c->h1s;
1746 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001747 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001748 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001749 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001750 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001751 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001752 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001753
Christopher Faulet94b2c762019-05-24 15:28:57 +02001754 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001755 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1756
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001757 if (htx_is_empty(chn_htx))
1758 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001759
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001760 if (h1s->flags & H1S_F_PROCESSING_ERROR)
1761 goto end;
1762
Christopher Fauletdea24742021-01-22 15:12:30 +01001763 if (h1c->flags & H1C_F_WAIT_INPUT)
1764 goto end;
1765
Christopher Faulet51dbc942018-09-13 09:05:15 +02001766 if (!h1_get_buf(h1c, &h1c->obuf)) {
1767 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001768 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 +02001769 goto end;
1770 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001771
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001772 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001773
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001774 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001775 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001776
Willy Tarreau3815b222018-12-11 19:50:43 +01001777 /* Perform some optimizations to reduce the number of buffer copies.
1778 * First, if the mux's buffer is empty and the htx area contains
1779 * exactly one data block of the same size as the requested count,
1780 * then it's possible to simply swap the caller's buffer with the
1781 * mux's output buffer and adjust offsets and length to match the
1782 * entire DATA HTX block in the middle. In this case we perform a
1783 * true zero-copy operation from end-to-end. This is the situation
1784 * that happens all the time with large files. Second, if this is not
1785 * possible, but the mux's output buffer is empty, we still have an
1786 * opportunity to avoid the copy to the intermediary buffer, by making
1787 * the intermediary buffer's area point to the output buffer's area.
1788 * In this case we want to skip the HTX header to make sure that copies
1789 * remain aligned and that this operation remains possible all the
1790 * time. This goes for headers, data blocks and any data extracted from
1791 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001792 */
1793 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001794 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001795 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001796 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001797 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001798 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001799 void *old_area;
1800
Christopher Faulet6b81df72019-10-01 22:08:43 +02001801 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 +01001802 if (h1m->state == H1_MSG_DATA && chn_htx->flags & HTX_FL_EOM) {
1803 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1804 last_data = 1;
1805 }
1806
Christopher Faulete5596bf2020-12-02 16:13:22 +01001807 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001808 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001809 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001810 h1c->obuf.data = count;
1811
1812 buf->area = old_area;
1813 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001814
Christopher Faulet6b81df72019-10-01 22:08:43 +02001815 chn_htx = (struct htx *)buf->area;
1816 htx_reset(chn_htx);
1817
Christopher Fauletadb22202018-12-12 10:32:09 +01001818 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001819 * size and eventually the last chunk. We have at least
1820 * the size of the struct htx to write the chunk
1821 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001822 */
1823 if (h1m->flags & H1_MF_CHNK) {
1824 h1_emit_chunk_size(&h1c->obuf, count);
1825 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001826 if (last_data) {
1827 /* Emit the last chunk too at the buffer's end */
1828 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1829 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001830 }
1831
Christopher Faulet6b81df72019-10-01 22:08:43 +02001832 if (h1m->state == H1_MSG_DATA)
1833 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001834 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001835 else
1836 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001837 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001838
Christopher Faulete5596bf2020-12-02 16:13:22 +01001839 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001840 if (last_data) {
1841 h1m->state = H1_MSG_DONE;
1842 if (h1s->h1c->flags & H1C_F_WAIT_OUTPUT) {
1843 h1s->h1c->flags &= ~H1C_F_WAIT_OUTPUT;
1844 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1845 TRACE_STATE("Re-enable read on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1846 }
1847
1848 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1849 H1_EV_TX_DATA, h1c->conn, h1s);
1850 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001851 goto out;
1852 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001853 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001854 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001855 else
1856 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001857
Christopher Fauletc2518a52019-06-25 21:41:02 +02001858 tmp.data = 0;
1859 tmp.size = b_room(&h1c->obuf);
Christopher Fauletdea24742021-01-22 15:12:30 +01001860 while (count && !(h1s->flags & H1S_F_PROCESSING_ERROR) && !(h1c->flags & H1C_F_WAIT_INPUT) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001861 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001862 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001863 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001864 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001865 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001866
Christopher Fauletb2e84162018-12-06 11:39:49 +01001867 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001868 if (type != HTX_BLK_DATA && vlen > count)
1869 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001870
Christopher Faulet94b2c762019-05-24 15:28:57 +02001871 if (type == HTX_BLK_UNUSED)
1872 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001873
Christopher Faulet94b2c762019-05-24 15:28:57 +02001874 switch (h1m->state) {
1875 case H1_MSG_RQBEFORE:
1876 if (type != HTX_BLK_REQ_SL)
1877 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001878 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 +02001879 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001880 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001881 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001882 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001883 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001884 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001885 if (sl->flags & HTX_SL_F_BODYLESS)
1886 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001887 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001888 if (h1s->meth == HTTP_METH_HEAD)
1889 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Fauletb385b502021-01-13 18:47:57 +01001890 if (h1c->flags & H1C_F_WAIT_OUTPUT) {
1891 h1c->flags &= ~H1C_F_WAIT_OUTPUT;
Christopher Faulet089acd52020-09-21 10:57:52 +02001892 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1893 TRACE_STATE("Re-enable read on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1894 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001895 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001896
Christopher Faulet94b2c762019-05-24 15:28:57 +02001897 case H1_MSG_RPBEFORE:
1898 if (type != HTX_BLK_RES_SL)
1899 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001900 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 +02001901 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001902 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001903 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001904 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001905 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001906 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001907 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001908 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001909 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001910 else if (h1s->status == 204 || h1s->status == 304)
1911 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001912 h1m->state = H1_MSG_HDR_FIRST;
1913 break;
1914
Christopher Faulet94b2c762019-05-24 15:28:57 +02001915 case H1_MSG_HDR_FIRST:
1916 case H1_MSG_HDR_NAME:
1917 case H1_MSG_HDR_L2_LWS:
1918 if (type == HTX_BLK_EOH)
1919 goto last_lf;
1920 if (type != HTX_BLK_HDR)
1921 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001922
Christopher Faulet9768c262018-10-22 09:34:31 +02001923 h1m->state = H1_MSG_HDR_NAME;
1924 n = htx_get_blk_name(chn_htx, blk);
1925 v = htx_get_blk_value(chn_htx, blk);
1926
Christopher Faulet86d144c2019-08-14 16:32:25 +02001927 /* Skip all pseudo-headers */
1928 if (*(n.ptr) == ':')
1929 goto skip_hdr;
1930
Christopher Faulet91fcf212020-12-02 16:17:15 +01001931 if (isteq(n, ist("transfer-encoding"))) {
1932 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1933 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001934 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001935 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001936 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001937 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1938 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001939 /* Only skip C-L header with invalid value. */
1940 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001941 goto skip_hdr;
1942 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001943 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001944 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001945 if (!v.len)
1946 goto skip_hdr;
1947 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001948 else if (isteq(n, ist("upgrade"))) {
1949 h1_parse_upgrade_header(h1m, v);
1950 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001951 else if ((isteq(n, ist("sec-websocket-accept")) &&
1952 h1m->flags & H1_MF_RESP) ||
1953 (isteq(n, ist("sec-websocket-key")) &&
1954 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001955 ws_key_found = 1;
1956 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001957
Christopher Faulet67d58092019-10-02 10:51:38 +02001958 /* Skip header if same name is used to add the server name */
1959 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
1960 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
1961 goto skip_hdr;
1962
Christopher Faulet98fbe952019-07-22 16:18:24 +02001963 /* Try to adjust the case of the header name */
1964 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1965 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001966 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001967 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001968 skip_hdr:
1969 h1m->state = H1_MSG_HDR_L2_LWS;
1970 break;
1971
Christopher Faulet94b2c762019-05-24 15:28:57 +02001972 case H1_MSG_LAST_LF:
1973 if (type != HTX_BLK_EOH)
1974 goto error;
1975 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001976 h1m->state = H1_MSG_LAST_LF;
1977 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02001978 /* If the reply comes from haproxy while the request is
1979 * not finished, we force the connection close. */
1980 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
1981 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
1982 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1983 }
1984
1985 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02001986 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001987 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001988 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001989 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02001990 /* Try to adjust the case of the header name */
1991 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1992 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001993 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001994 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001995 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001996 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001997 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001998
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001999 if ((h1s->meth != HTTP_METH_CONNECT &&
2000 (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 +01002001 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002002 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002003 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002004 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2005 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002006 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002007 n = ist("transfer-encoding");
2008 v = ist("chunked");
2009 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2010 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002011 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002012 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002013 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002014 h1m->flags |= H1_MF_CHNK;
2015 }
2016
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002017 /* Now add the server name to a header (if requested) */
2018 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2019 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2020 struct server *srv = objt_server(h1c->conn->target);
2021
2022 if (srv) {
2023 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2024 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002025
2026 /* Try to adjust the case of the header name */
2027 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2028 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002029 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002030 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002031 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002032 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002033 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2034 }
2035
Amaury Denoyellec1938232020-12-11 17:53:03 +01002036 /* Add websocket handshake key if needed */
2037 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2038 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002039 if (!(h1m->flags & H1_MF_RESP)) {
2040 /* generate a random websocket key
2041 * stored in the session to
2042 * verify it on the response side
2043 */
2044 h1_generate_random_ws_input_key(h1s->ws_key);
2045
2046 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2047 ist(h1s->ws_key),
2048 &tmp)) {
2049 goto full;
2050 }
2051 }
2052 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002053 /* add the response header key */
2054 char key[29];
2055 h1_calculate_ws_output_key(h1s->ws_key, key);
2056 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2057 ist(key),
2058 &tmp)) {
2059 goto full;
2060 }
2061 }
2062 }
2063
Christopher Faulet6b81df72019-10-01 22:08:43 +02002064 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2065 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2066
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002067 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002068 if (!chunk_memcat(&tmp, "\r\n", 2))
2069 goto full;
2070 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002071 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002072 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002073 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002074 if (!chunk_memcat(&tmp, "\r\n", 2))
2075 goto full;
2076 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002077 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002078 else if ((h1m->flags & H1_MF_RESP) &&
2079 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002080 if (!chunk_memcat(&tmp, "\r\n", 2))
2081 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002082 h1m_init_res(&h1s->res);
2083 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002084 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002085 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002086 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002087 else {
2088 /* EOM flag is set and it is the last block */
2089 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002090 if (h1m->flags & H1_MF_CHNK) {
2091 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2092 goto full;
2093 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002094 else if (!chunk_memcat(&tmp, "\r\n", 2))
2095 goto full;
2096 goto done;
2097 }
2098 else if (!chunk_memcat(&tmp, "\r\n", 2))
2099 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002100 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002101 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002102 break;
2103
Christopher Faulet94b2c762019-05-24 15:28:57 +02002104 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002105 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002106 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002107 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2108 goto trailers;
2109
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002110 /* If the message is not chunked, never
2111 * add the last chunk. */
2112 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002113 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002114 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 +02002115 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002116 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002117 else if (type != HTX_BLK_DATA)
2118 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002119
2120 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 +02002121
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002122 /* It is the last block of this message. After this one,
2123 * only tunneled data may be forwarded. */
2124 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2125 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2126 last_data = 1;
2127 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002128
2129 if (vlen > count) {
2130 /* Get the maximum amount of data we can xferred */
2131 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002132 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002133 }
2134
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002135 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2136 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2137 goto skip_data;
2138 }
2139
Christopher Fauletd9233f02019-10-14 14:01:24 +02002140 chklen = 0;
2141 if (h1m->flags & H1_MF_CHNK) {
2142 chklen = b_room(&tmp);
2143 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2144 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2145 (chklen < 1048576) ? 5 : 8);
2146 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002147
2148 /* If it is the end of the chunked message (without EOT), reserve the
2149 * last chunk size */
2150 if (last_data)
2151 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002152 }
2153
2154 if (vlen + chklen > b_room(&tmp)) {
2155 /* too large for the buffer */
2156 if (chklen >= b_room(&tmp))
2157 goto full;
2158 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002159 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002160 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002161 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002162 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002163 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002164 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002165
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002166 /* Space already reserved, so it must succeed */
2167 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2168 goto error;
2169
Christopher Faulet6b81df72019-10-01 22:08:43 +02002170 if (h1m->state == H1_MSG_DATA)
2171 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002172 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002173 else
2174 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002175 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002176
2177 skip_data:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002178 if (last_data)
2179 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002180 break;
2181
Christopher Faulet94b2c762019-05-24 15:28:57 +02002182 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002183 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002184 goto error;
2185 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002186 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002187
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002188 /* If the message is not chunked, ignore
2189 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002190 if (!(h1m->flags & H1_MF_CHNK)) {
2191 if (type == HTX_BLK_EOT)
2192 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002193 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002194 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002195
Christopher Faulete5596bf2020-12-02 16:13:22 +01002196 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2197 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 +01002198 if (type == HTX_BLK_EOT)
2199 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002200 break;
2201 }
2202
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002203 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002204 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002205 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002206 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2207 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002208 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002209 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002210 else { // HTX_BLK_TLR
2211 n = htx_get_blk_name(chn_htx, blk);
2212 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002213
2214 /* Try to adjust the case of the header name */
2215 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2216 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002217 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002218 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002219 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002220 break;
2221
Christopher Faulet94b2c762019-05-24 15:28:57 +02002222 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002223 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2224 goto error; /* For now return an error */
2225
Christopher Faulet94b2c762019-05-24 15:28:57 +02002226 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002227 if (!(chn_htx->flags & HTX_FL_EOM)) {
2228 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2229 goto error; /* For now return an error */
2230 }
2231
Christopher Faulet94b2c762019-05-24 15:28:57 +02002232 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002233 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
2234 h1c->flags |= H1C_F_WAIT_INPUT;
2235 TRACE_STATE("Disable send on h1c (wait_input)", H1_EV_TX_DATA|H1_EV_H1C_BLK, h1c->conn, h1s);
2236 }
2237 else if ((h1m->flags & H1_MF_RESP) &&
2238 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2239 /* a successful reply to a CONNECT or a protocol switching is sent
2240 * to the client. Switch the response to tunnel mode.
2241 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002242 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002243 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 +01002244 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002245
2246 if (h1s->h1c->flags & H1C_F_WAIT_OUTPUT) {
Christopher Fauletb385b502021-01-13 18:47:57 +01002247 h1s->h1c->flags &= ~H1C_F_WAIT_OUTPUT;
Willy Tarreau2c1f37d2020-03-04 17:50:02 +01002248 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet089acd52020-09-21 10:57:52 +02002249 TRACE_STATE("Re-enable read on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
Christopher Fauletcd67bff2019-06-14 16:54:15 +02002250 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002251
2252 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2253 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002254 break;
2255
Christopher Faulet9768c262018-10-22 09:34:31 +02002256 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002257 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002258 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002259 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002260 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002261 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002262 TRACE_ERROR("processing output error, set error on h1c/h1s",
2263 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 +02002264 break;
2265 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002266
2267 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002268 total += vlen;
2269 count -= vlen;
2270 if (sz == vlen)
2271 blk = htx_remove_blk(chn_htx, blk);
2272 else {
2273 htx_cut_data_blk(chn_htx, blk, vlen);
2274 break;
2275 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002276 }
2277
Christopher Faulet9768c262018-10-22 09:34:31 +02002278 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002279 /* when the output buffer is empty, tmp shares the same area so that we
2280 * only have to update pointers and lengths.
2281 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002282 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2283 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002284 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002285 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002286
Willy Tarreau3815b222018-12-11 19:50:43 +01002287 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002288 out:
2289 if (!buf_room_for_htx_data(&h1c->obuf)) {
2290 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002291 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002292 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002293 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002294 /* Both the request and the response reached the DONE state. So set EOI
2295 * flag on the conn-stream. Most of time, the flag will already be set,
2296 * except for protocol upgrades. Report an error if data remains blocked
2297 * in the output buffer.
2298 */
2299 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2300 if (!htx_is_empty(chn_htx)) {
2301 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002302 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 +01002303 }
2304 h1s->cs->flags |= CS_FL_EOI;
2305 }
2306
Christopher Faulet6b81df72019-10-01 22:08:43 +02002307 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002308 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002309
2310 full:
2311 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2312 h1c->flags |= H1C_F_OUT_FULL;
2313 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002314}
2315
Christopher Faulet51dbc942018-09-13 09:05:15 +02002316/*********************************************************/
2317/* functions below are I/O callbacks from the connection */
2318/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002319static void h1_wake_stream_for_recv(struct h1s *h1s)
2320{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002321 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002322 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002323 tasklet_wakeup(h1s->subs->tasklet);
2324 h1s->subs->events &= ~SUB_RETRY_RECV;
2325 if (!h1s->subs->events)
2326 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002327 }
2328}
2329static void h1_wake_stream_for_send(struct h1s *h1s)
2330{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002331 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002332 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002333 tasklet_wakeup(h1s->subs->tasklet);
2334 h1s->subs->events &= ~SUB_RETRY_SEND;
2335 if (!h1s->subs->events)
2336 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002337 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002338}
2339
Christopher Fauletad4daf62021-01-21 17:49:01 +01002340/* alerts the data layer following this sequence :
2341 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2342 * - if its subscribed to send, then it's woken up for send
2343 * - if it was subscribed to neither, its ->wake() callback is called
2344 */
2345static void h1_alert(struct h1s *h1s)
2346{
2347 if (h1s->subs) {
2348 h1_wake_stream_for_recv(h1s);
2349 h1_wake_stream_for_send(h1s);
2350 }
2351 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2352 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2353 h1s->cs->data_cb->wake(h1s->cs);
2354 }
2355}
2356
Christopher Fauletc18fc232020-10-06 17:41:36 +02002357/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2358 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2359 * retryable errors (allocation error or buffer full). On success, the error is
2360 * copied in the output buffer.
2361*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002362static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002363{
2364 int rc = http_get_status_idx(h1c->errcode);
2365 int ret = 0;
2366
2367 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2368
2369 /* Verify if the error is mapped on /dev/null or any empty file */
2370 /// XXX: do a function !
2371 if (h1c->px->replies[rc] &&
2372 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2373 h1c->px->replies[rc]->body.errmsg &&
2374 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2375 /* Empty error, so claim a success */
2376 ret = 1;
2377 goto out;
2378 }
2379
2380 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2381 h1c->flags |= H1C_F_ERR_PENDING;
2382 goto out;
2383 }
2384
2385 if (!h1_get_buf(h1c, &h1c->obuf)) {
2386 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2387 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2388 goto out;
2389 }
2390 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2391 if (unlikely(ret <= 0)) {
2392 if (!ret) {
2393 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2394 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2395 goto out;
2396 }
2397 else {
2398 /* we cannot report this error, so claim a success */
2399 ret = 1;
2400 }
2401 }
2402 h1c->flags &= ~H1C_F_ERR_PENDING;
2403 out:
2404 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2405 return ret;
2406}
2407
2408/* Try to send a 500 internal error. It relies on h1_send_error to send the
2409 * error. This function takes care of incrementing stats and tracked counters.
2410 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002411static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002412{
2413 struct session *sess = h1c->conn->owner;
2414 int ret = 1;
2415
2416 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002417 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002418 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2419 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002420 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002421 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002422
2423 h1c->errcode = 500;
2424 ret = h1_send_error(h1c);
2425 sess_log(sess);
2426 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002427}
2428
Christopher Fauletc18fc232020-10-06 17:41:36 +02002429/* Try to send a 400 bad request error. It relies on h1_send_error to send the
2430 * error. This function takes care of incrementing stats and tracked counters.
2431 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002432static int h1_handle_bad_req(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002433{
2434 struct session *sess = h1c->conn->owner;
2435 int ret = 1;
2436
2437 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2438 goto end;
2439
2440 session_inc_http_req_ctr(sess);
2441 session_inc_http_err_ctr(sess);
2442 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002443 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2444 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002445 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002446 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002447
2448 h1c->errcode = 400;
2449 ret = h1_send_error(h1c);
2450 sess_log(sess);
2451
2452 end:
2453 return ret;
2454}
2455
Christopher Faulet2eed8002020-12-07 11:26:13 +01002456/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2457 * the error. This function takes care of incrementing stats and tracked
2458 * counters.
2459 */
2460static int h1_handle_not_impl_err(struct h1c *h1c)
2461{
2462 struct session *sess = h1c->conn->owner;
2463 int ret = 1;
2464
2465 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2466 goto end;
2467
2468 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002469 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002470 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2471 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002472 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002473 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002474
2475 h1c->errcode = 501;
2476 ret = h1_send_error(h1c);
2477 sess_log(sess);
2478
2479 end:
2480 return ret;
2481}
2482
Christopher Fauletc18fc232020-10-06 17:41:36 +02002483/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2484 * error. This function takes care of incrementing stats and tracked counters.
2485 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002486static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002487{
2488 struct session *sess = h1c->conn->owner;
2489 int ret = 1;
2490
2491 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2492 goto end;
2493
2494 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002495 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002496 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2497 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002498 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002499 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002500
2501 h1c->errcode = 408;
2502 ret = h1_send_error(h1c);
2503 sess_log(sess);
2504 end:
2505 return ret;
2506}
2507
2508
Christopher Faulet51dbc942018-09-13 09:05:15 +02002509/*
2510 * Attempt to read data, and subscribe if none available
2511 */
2512static int h1_recv(struct h1c *h1c)
2513{
2514 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002515 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002516 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002517
Christopher Faulet6b81df72019-10-01 22:08:43 +02002518 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2519
2520 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2521 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002522 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002523 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002524
Christopher Fauletae635762020-09-21 11:47:16 +02002525 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2526 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002527 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002528 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002529
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002530 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2531 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002532 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002533 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002534 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002535
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002536 /*
2537 * If we only have a small amount of data, realign it,
2538 * it's probably cheaper than doing 2 recv() calls.
2539 */
2540 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
2541 b_slow_realign(&h1c->ibuf, trash.area, 0);
2542
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002543 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002544 if (!h1c->h1s ||
2545 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2546 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002547 flags |= CO_RFL_READ_ONCE;
2548
Willy Tarreau45f2b892018-12-05 07:59:27 +01002549 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002550 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002551 if (h1c->flags & H1C_F_IN_FULL) {
2552 h1c->flags &= ~H1C_F_IN_FULL;
2553 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2554 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002555
2556 if (!b_data(&h1c->ibuf)) {
2557 /* try to pre-align the buffer like the rxbufs will be
2558 * to optimize memory copies.
2559 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002560 h1c->ibuf.head = sizeof(struct htx);
2561 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002562 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002563 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002564 if (max && !ret && h1_recv_allowed(h1c)) {
2565 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2566 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002567 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002568 else {
2569 h1_wake_stream_for_recv(h1c->h1s);
2570 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002571 }
2572
Christopher Faulet51dbc942018-09-13 09:05:15 +02002573 if (!b_data(&h1c->ibuf))
2574 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002575 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002576 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002577 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2578 }
2579
2580 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002581 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002582}
2583
2584
2585/*
2586 * Try to send data if possible
2587 */
2588static int h1_send(struct h1c *h1c)
2589{
2590 struct connection *conn = h1c->conn;
2591 unsigned int flags = 0;
2592 size_t ret;
2593 int sent = 0;
2594
Christopher Faulet6b81df72019-10-01 22:08:43 +02002595 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2596
2597 if (conn->flags & CO_FL_ERROR) {
2598 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002599 b_reset(&h1c->obuf);
2600 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002601 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002602
2603 if (!b_data(&h1c->obuf))
2604 goto end;
2605
Christopher Faulet46230362019-10-17 16:04:20 +02002606 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002607 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002608 if (h1c->flags & H1C_F_CO_STREAMER)
2609 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002610
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002611 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002612 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002613 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002614 if (h1c->flags & H1C_F_OUT_FULL) {
2615 h1c->flags &= ~H1C_F_OUT_FULL;
2616 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2617 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002618 b_del(&h1c->obuf, ret);
2619 sent = 1;
2620 }
2621
Christopher Faulet145aa472018-12-06 10:56:20 +01002622 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002623 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002624 /* error or output closed, nothing to send, clear the buffer to release it */
2625 b_reset(&h1c->obuf);
2626 }
2627
Christopher Faulet51dbc942018-09-13 09:05:15 +02002628 end:
Christopher Fauletb385b502021-01-13 18:47:57 +01002629 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_WAIT_INPUT)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002630 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002631
Christopher Faulet51dbc942018-09-13 09:05:15 +02002632 /* We're done, no more to send */
2633 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002634 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002635 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002636 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002637 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002638 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002639 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002640 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002641 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2642 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002643 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002644 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002645
Christopher Faulet6b81df72019-10-01 22:08:43 +02002646 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002647 return sent;
2648}
2649
Christopher Faulet51dbc942018-09-13 09:05:15 +02002650/* callback called on any event by the connection handler.
2651 * It applies changes and returns zero, or < 0 if it wants immediate
2652 * destruction of the connection.
2653 */
2654static int h1_process(struct h1c * h1c)
2655{
2656 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002657 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002658
Christopher Faulet6b81df72019-10-01 22:08:43 +02002659 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2660
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002661 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002662 if (b_data(&h1c->ibuf) && /* Input data to be processed */
2663 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2664 !(h1c->flags & H1C_F_IN_SALLOC)) { /* No allocation failure on the stream rxbuf */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002665 struct buffer *buf;
2666 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002667
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002668 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2669 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002670 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002671
2672 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002673 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002674 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2675 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002676 /* Try to match H2 preface before parsing the request headers. */
2677 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2678 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002679 if (h1c->flags & H1C_F_ST_ATTACHED) {
2680 /* Force the REOS here to be sure to release the CS.
2681 Here ATTACHED implies !READY, and h1s defined
2682 */
2683 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2684 h1s->flags |= H1S_F_REOS;
2685 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002686 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002687 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002688 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002689 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002690
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002691 /* Create the H1 stream if not already there */
2692 if (!h1s) {
2693 h1s = h1c_frt_stream_new(h1c);
2694 if (!h1s) {
2695 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002696 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002697 goto no_parsing;
2698 }
2699 }
2700
2701 if (h1s->sess->t_idle == -1)
2702 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2703
2704 /* Get the stream rxbuf */
2705 buf = h1_get_buf(h1c, &h1s->rxbuf);
2706 if (!buf) {
2707 h1c->flags |= H1C_F_IN_SALLOC;
2708 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2709 return 0;
2710 }
2711
2712 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
2713 h1_process_input(h1c, buf, count);
2714 h1_release_buf(h1c, &h1s->rxbuf);
2715 h1_set_idle_expiration(h1c);
2716
2717 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002718 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002719 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002720 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002721 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002722 }
2723 else if (h1s->flags & H1S_F_PARSING_ERROR) {
2724 h1_handle_bad_req(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002725 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002726 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002727 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002728 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2729 h1_handle_not_impl_err(h1c);
2730 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002731 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002732 }
Christopher Fauletae635762020-09-21 11:47:16 +02002733 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002734 h1_send(h1c);
2735
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002736 if ((conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn) || (h1c->flags & H1C_F_ST_ERROR)) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002737 if (!(h1c->flags & H1C_F_ST_READY)) {
2738 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002739 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002740 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR))) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002741 if (h1_handle_bad_req(h1c))
2742 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002743 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002744 }
2745
2746 /* Handle pending error, if any (only possible on frontend connection) */
2747 if (h1c->flags & H1C_F_ERR_PENDING) {
2748 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2749 if (h1_send_error(h1c))
2750 h1_send(h1c);
2751 }
Christopher Fauletae635762020-09-21 11:47:16 +02002752
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002753 /* If there is some pending outgoing data or error, just wait */
2754 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2755 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002756
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002757 /* Otherwise we can release the H1 connection */
2758 goto release;
2759 }
2760 else {
2761 /* Here there is still a H1 stream with a conn-stream.
2762 * Report the connection state at the stream level
2763 */
2764 if (conn_xprt_read0_pending(conn)) {
2765 h1s->flags |= H1S_F_REOS;
2766 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2767 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002768 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002769 h1s->cs->flags |= CS_FL_ERROR;
2770 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002771 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002772 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002773 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002774
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002775 if (!b_data(&h1c->ibuf))
2776 h1_release_buf(h1c, &h1c->ibuf);
2777
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002778 /* Check if a soft-stop is in progress.
2779 * Release idling front connection if this is the case.
2780 */
2781 if (!(h1c->flags & H1C_F_IS_BACK)) {
2782 if (unlikely(h1c->px->disabled)) {
2783 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
2784 goto release;
2785 }
2786 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002787
2788 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2789 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2790 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002791 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002792
Christopher Faulet47365272018-10-31 17:40:50 +01002793 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002794 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002795 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002796 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002797
2798 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002799 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002800 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002801 * attached CS first. Here, the H1C must not be READY */
2802 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2803
2804 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2805 h1s->cs->flags |= CS_FL_EOS;
2806 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2807 h1s->cs->flags |= CS_FL_ERROR;
2808 h1_alert(h1s);
2809 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2810 }
2811 else {
2812 h1_release(h1c);
2813 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2814 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002815 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002816}
2817
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002818struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002819{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002820 struct connection *conn;
2821 struct tasklet *tl = (struct tasklet *)t;
2822 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002823 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002824 int ret = 0;
2825
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002826 if (state & TASK_F_USR1) {
2827 /* the tasklet was idling on an idle connection, it might have
2828 * been stolen, let's be careful!
2829 */
2830 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2831 if (tl->context == NULL) {
2832 /* The connection has been taken over by another thread,
2833 * we're no longer responsible for it, so just free the
2834 * tasklet, and do nothing.
2835 */
2836 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2837 tasklet_free(tl);
2838 return NULL;
2839 }
2840 conn = h1c->conn;
2841 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002842
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002843 /* Remove the connection from the list, to be sure nobody attempts
2844 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002845 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002846 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2847 if (conn_in_list)
2848 conn_delete_from_tree(&conn->hash_node->node);
2849
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002850 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002851 } else {
2852 /* we're certain the connection was not in an idle list */
2853 conn = h1c->conn;
2854 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2855 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002856 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002857
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002858 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002859 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002860 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002861 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002862 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002863 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002864
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002865 /* If we were in an idle list, we want to add it back into it,
2866 * unless h1_process() returned -1, which mean it has destroyed
2867 * the connection (testing !ret is enough, if h1_process() wasn't
2868 * called then ret will be 0 anyway.
2869 */
Willy Tarreau74163142021-03-13 11:30:19 +01002870 if (ret < 0)
2871 t = NULL;
2872
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002873 if (!ret && conn_in_list) {
2874 struct server *srv = objt_server(conn->target);
2875
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002876 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002877 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002878 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002879 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002880 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002881 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002882 }
Willy Tarreau74163142021-03-13 11:30:19 +01002883 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002884}
2885
Christopher Faulet51dbc942018-09-13 09:05:15 +02002886static int h1_wake(struct connection *conn)
2887{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002888 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002889 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002890
Christopher Faulet6b81df72019-10-01 22:08:43 +02002891 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2892
Christopher Faulet539e0292018-11-19 10:40:09 +01002893 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002894 ret = h1_process(h1c);
2895 if (ret == 0) {
2896 struct h1s *h1s = h1c->h1s;
2897
Christopher Fauletad4daf62021-01-21 17:49:01 +01002898 if (h1c->flags & H1C_F_ST_ATTACHED)
2899 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002900 }
2901 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002902}
2903
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002904/* Connection timeout management. The principle is that if there's no receipt
2905 * nor sending for a certain amount of time, the connection is closed.
2906 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002907struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002908{
2909 struct h1c *h1c = context;
2910 int expired = tick_is_expired(t->expire, now_ms);
2911
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002912 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002913
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002914 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002915 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002916 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002917
2918 /* Somebody already stole the connection from us, so we should not
2919 * free it, we just have to free the task.
2920 */
2921 if (!t->context) {
2922 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002923 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002924 goto do_leave;
2925 }
2926
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002927 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002928 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002929 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002930 return t;
2931 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002932
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002933 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002934 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002935 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002936 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002937 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002938 t->expire = TICK_ETERNITY;
2939 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
2940 return t;
2941 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002942
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002943 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002944 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
2945 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002946 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002947 if (h1_handle_req_tout(h1c))
2948 h1_send(h1c);
2949 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
2950 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002951 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002952 return t;
2953 }
2954 }
2955
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002956 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002957 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002958 * attached CS first. Here, the H1C must not be READY */
2959 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
2960 h1_alert(h1c->h1s);
2961 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002962 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002963 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2964 return t;
2965 }
2966
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002967 /* We're about to destroy the connection, so make sure nobody attempts
2968 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002969 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002970 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01002971 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002972
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002973 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002974 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002975
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002976 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02002977 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002978
2979 if (!h1c) {
2980 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002981 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002982 return NULL;
2983 }
2984
2985 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002986 h1_release(h1c);
2987 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002988 return NULL;
2989}
2990
Christopher Faulet51dbc942018-09-13 09:05:15 +02002991/*******************************************/
2992/* functions below are used by the streams */
2993/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002994
Christopher Faulet51dbc942018-09-13 09:05:15 +02002995/*
2996 * Attach a new stream to a connection
2997 * (Used for outgoing connections)
2998 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002999static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003000{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003001 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003002 struct conn_stream *cs = NULL;
3003 struct h1s *h1s;
3004
Christopher Faulet6b81df72019-10-01 22:08:43 +02003005 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003006 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003007 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3008 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003009 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003010
Christopher Faulet236c93b2020-07-02 09:19:54 +02003011 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003012 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003013 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3014 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003015 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003016
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003017 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003018 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003019 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3020 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003021 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003022
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003023 /* the connection is not idle anymore, let's mark this */
3024 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003025 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003026
Christopher Faulet6b81df72019-10-01 22:08:43 +02003027 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003028 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003029 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003030 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003031 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 +02003032 return NULL;
3033}
3034
3035/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3036 * this mux, it's easy as we can only store a single conn_stream.
3037 */
3038static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3039{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003040 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003041 struct h1s *h1s = h1c->h1s;
3042
3043 if (h1s)
3044 return h1s->cs;
3045
3046 return NULL;
3047}
3048
Christopher Faulet73c12072019-04-08 11:23:22 +02003049static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003050{
Christopher Faulet73c12072019-04-08 11:23:22 +02003051 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003052
Christopher Faulet6b81df72019-10-01 22:08:43 +02003053 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003054 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003055 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003056}
3057
3058/*
3059 * Detach the stream from the connection and possibly release the connection.
3060 */
3061static void h1_detach(struct conn_stream *cs)
3062{
3063 struct h1s *h1s = cs->ctx;
3064 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003065 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003066 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003067
Christopher Faulet6b81df72019-10-01 22:08:43 +02003068 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3069
Christopher Faulet51dbc942018-09-13 09:05:15 +02003070 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003071 if (!h1s) {
3072 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003073 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003074 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003075
Olivier Houchardf502aca2018-12-14 19:42:40 +01003076 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003077 h1c = h1s->h1c;
3078 h1s->cs = NULL;
3079
Christopher Faulet42849b02020-10-05 11:35:17 +02003080 sess->accept_date = date;
3081 sess->tv_accept = now;
3082 sess->t_handshake = 0;
3083 sess->t_idle = -1;
3084
Olivier Houchard8a786902018-12-15 16:05:40 +01003085 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3086 h1s_destroy(h1s);
3087
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003088 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 +02003089 /* If there are any excess server data in the input buffer,
3090 * release it and close the connection ASAP (some data may
3091 * remain in the output buffer). This happens if a server sends
3092 * invalid responses. So in such case, we don't want to reuse
3093 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003094 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003095 if (b_data(&h1c->ibuf)) {
3096 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003097 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003098 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003099 goto release;
3100 }
Christopher Faulet03627242019-07-19 11:34:08 +02003101
Christopher Faulet08016ab2020-07-01 16:10:06 +02003102 if (h1c->conn->flags & CO_FL_PRIVATE) {
3103 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003104 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3105 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003106 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003107 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003108 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003109 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003110 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003111 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003112 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3113 goto end;
3114 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003115 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003116 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003117 if (h1c->conn->owner == sess)
3118 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003119
3120 /* mark that the tasklet may lose its context to another thread and
3121 * that the handler needs to check it under the idle conns lock.
3122 */
3123 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003124 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003125 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3126
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003127 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003128 /* The server doesn't want it, let's kill the connection right away */
3129 h1c->conn->mux->destroy(h1c);
3130 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3131 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003132 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003133 /* At this point, the connection has been added to the
3134 * server idle list, so another thread may already have
3135 * hijacked it, so we can't do anything with it.
3136 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003137 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003138 }
3139 }
3140
Christopher Fauletf1204b82019-07-19 14:51:06 +02003141 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003142 /* 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 +01003143 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003144 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003145 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003146 !h1c->conn->owner) {
3147 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003148 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003149 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003150 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003151 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003152 /* If we have a new request, process it immediately or
3153 * subscribe for reads waiting for new data
3154 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003155 if (unlikely(b_data(&h1c->ibuf))) {
3156 if (h1_process(h1c) == -1)
3157 goto end;
3158 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003159 else
3160 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3161 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003162 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003163 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003164 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003165 end:
3166 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003167}
3168
3169
3170static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3171{
3172 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003173 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003174
3175 if (!h1s)
3176 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003177 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003178
Christopher Faulet6b81df72019-10-01 22:08:43 +02003179 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3180
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003181 if (cs->flags & CS_FL_SHR)
3182 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003183 if (cs->flags & CS_FL_KILL_CONN) {
3184 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3185 goto do_shutr;
3186 }
3187 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3188 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003189 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003190 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003191
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003192 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3193 /* Here attached is implicit because there is CS */
3194 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3195 goto end;
3196 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003197 if (h1s->flags & H1S_F_WANT_KAL) {
3198 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003199 goto end;
3200 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003201
Christopher Faulet7f366362019-04-08 10:51:20 +02003202 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003203 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3204 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003205 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003206 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003207 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003208 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003209 end:
3210 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003211}
3212
3213static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3214{
3215 struct h1s *h1s = cs->ctx;
3216 struct h1c *h1c;
3217
3218 if (!h1s)
3219 return;
3220 h1c = h1s->h1c;
3221
Christopher Faulet6b81df72019-10-01 22:08:43 +02003222 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3223
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003224 if (cs->flags & CS_FL_SHW)
3225 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003226 if (cs->flags & CS_FL_KILL_CONN) {
3227 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003228 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003229 }
3230 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3231 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3232 goto do_shutw;
3233 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003234
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003235 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3236 /* Here attached is implicit because there is CS */
3237 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3238 goto end;
3239 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003240 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3241 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003242 goto end;
3243 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003244
Christopher Faulet7f366362019-04-08 10:51:20 +02003245 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003246 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003247 if (!b_data(&h1c->obuf))
3248 h1_shutw_conn(cs->conn, mode);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003249 end:
3250 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003251}
3252
Christopher Faulet666a0c42019-01-08 11:12:04 +01003253static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003254{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003255 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003256
Willy Tarreau62592ad2021-03-26 09:09:42 +01003257 if (conn->flags & CO_FL_SOCK_WR_SH)
3258 return;
3259
Christopher Faulet6b81df72019-10-01 22:08:43 +02003260 TRACE_ENTER(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003261 conn_xprt_shutw(conn);
3262 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003263 TRACE_LEAVE(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003264}
3265
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003266/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3267 * The <es> pointer is not allowed to differ from the one passed to the
3268 * subscribe() call. It always returns zero.
3269 */
3270static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003271{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003272 struct h1s *h1s = cs->ctx;
3273
3274 if (!h1s)
3275 return 0;
3276
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003277 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003278 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003279
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003280 es->events &= ~event_type;
3281 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003282 h1s->subs = NULL;
3283
3284 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003285 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003286
3287 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003288 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003289
Christopher Faulet51dbc942018-09-13 09:05:15 +02003290 return 0;
3291}
3292
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003293/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3294 * event subscriber <es> is not allowed to change from a previous call as long
3295 * as at least one event is still subscribed. The <event_type> must only be a
3296 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3297 * the conn_stream <cs> was already detached, in which case it will return -1.
3298 */
3299static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003300{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003301 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003302 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003303
3304 if (!h1s)
3305 return -1;
3306
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003307 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003308 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003309
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003310 es->events |= event_type;
3311 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003312
3313 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003314 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003315
3316
Christopher Faulet6b81df72019-10-01 22:08:43 +02003317 if (event_type & SUB_RETRY_SEND) {
3318 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003319 /*
3320 * If the conn_stream attempt to subscribe, and the
3321 * mux isn't subscribed to the connection, then it
3322 * probably means the connection wasn't established
3323 * yet, so we have to subscribe.
3324 */
3325 h1c = h1s->h1c;
3326 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3327 h1c->conn->xprt->subscribe(h1c->conn,
3328 h1c->conn->xprt_ctx,
3329 SUB_RETRY_SEND,
3330 &h1c->wait_event);
3331 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003332 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003333}
3334
3335/* Called from the upper layer, to receive data */
3336static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3337{
3338 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003339 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003340 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003341 size_t ret = 0;
3342
Willy Tarreau022e5e52020-09-10 09:33:15 +02003343 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003344
3345 /* Do nothing for now if not READY */
3346 if (!(h1c->flags & H1C_F_ST_READY)) {
3347 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3348 goto end;
3349 }
3350
Christopher Faulet539e0292018-11-19 10:40:09 +01003351 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02003352 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003353 else
3354 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003355
Christopher Faulete18777b2019-04-16 16:46:36 +02003356 if (flags & CO_RFL_BUF_FLUSH) {
Christopher Faulet2eaf3092020-07-03 14:51:15 +02003357 if (h1m->state == H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len)) {
Christopher Fauletae635762020-09-21 11:47:16 +02003358 h1c->flags |= H1C_F_WANT_SPLICE;
3359 TRACE_STATE("Block xprt rcv_buf to flush stream's buffer (want_splice)", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003360 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003361 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003362 else {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003363 if (h1m->state != H1_MSG_DONE && !(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau2c1f37d2020-03-04 17:50:02 +01003364 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003365 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003366
3367 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003368 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003369 return ret;
3370}
3371
3372
3373/* Called from the upper layer, to send data */
3374static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3375{
3376 struct h1s *h1s = cs->ctx;
3377 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003378 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003379
3380 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003381 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003382 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003383
Willy Tarreau022e5e52020-09-10 09:33:15 +02003384 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003385
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003386 /* If we're not connected yet, or we're waiting for a handshake, stop
3387 * now, as we don't want to remove everything from the channel buffer
3388 * before we're sure we can send it.
3389 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003390 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003391 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003392 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003393 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003394
Christopher Fauletdea24742021-01-22 15:12:30 +01003395 if (h1c->flags & H1C_F_ST_ERROR) {
3396 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003397 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 +01003398 return 0;
3399 }
3400
Christopher Faulet46230362019-10-17 16:04:20 +02003401 /* Inherit some flags from the upper layer */
3402 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3403 if (flags & CO_SFL_MSG_MORE)
3404 h1c->flags |= H1C_F_CO_MSG_MORE;
3405 if (flags & CO_SFL_STREAMER)
3406 h1c->flags |= H1C_F_CO_STREAMER;
3407
Christopher Fauletc31872f2019-06-04 22:09:36 +02003408 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003409 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003410
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003411 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
3412 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003413 else
3414 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003415
3416 if ((count - ret) > 0)
3417 h1c->flags |= H1C_F_CO_MSG_MORE;
3418
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003419 if (!ret)
3420 break;
3421 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003422 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003423 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003424 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003425 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003426
3427 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003428 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003429 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 +01003430 }
3431
Christopher Faulet7a145d62020-08-05 11:31:16 +02003432 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003433 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003434 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003435}
3436
Willy Tarreaue5733232019-05-22 19:24:06 +02003437#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003438/* Send and get, using splicing */
3439static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3440{
3441 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003442 struct h1c *h1c = h1s->h1c;
3443 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003444 int ret = 0;
3445
Willy Tarreau022e5e52020-09-10 09:33:15 +02003446 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003447
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003448 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003449 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003450 TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003451 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003452 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003453 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003454 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003455 goto end;
3456 }
3457
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003458 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
3459 h1c->flags |= H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003460 TRACE_STATE("Block xprt rcv_buf to perform splicing", H1_EV_STRM_RECV, cs->conn, h1s);
3461 }
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003462 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003463 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003464 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003465 }
3466
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003467 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003468 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3469 goto end;
3470 }
3471
Christopher Faulet1be55f92018-10-02 15:59:23 +02003472 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
3473 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003474 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02003475 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02003476 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003477 if (!h1m->curr_len) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003478 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003479 TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003480 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003481 }
3482
Christopher Faulet1be55f92018-10-02 15:59:23 +02003483 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003484 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003485 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003486 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003487 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003488 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003489
Christopher Fauleta131a8f2020-07-07 10:56:40 +02003490 if ((h1s->flags & H1S_F_REOS) ||
3491 (h1m->state != H1_MSG_TUNNEL && h1m->state != H1_MSG_DATA) ||
Christopher Faulet27182292020-07-03 15:08:49 +02003492 (h1m->state == H1_MSG_DATA && !h1m->curr_len)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003493 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003494 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet27182292020-07-03 15:08:49 +02003495 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003496
Willy Tarreau022e5e52020-09-10 09:33:15 +02003497 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003498 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003499}
3500
3501static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3502{
3503 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003504 int ret = 0;
3505
Willy Tarreau022e5e52020-09-10 09:33:15 +02003506 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003507
Christopher Faulet1be55f92018-10-02 15:59:23 +02003508 if (b_data(&h1s->h1c->obuf))
3509 goto end;
3510
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003511 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003512 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003513 if (pipe->data) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003514 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
3515 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003516 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003517 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003518 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003519
Willy Tarreau022e5e52020-09-10 09:33:15 +02003520 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003521 return ret;
3522}
3523#endif
3524
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003525static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3526{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003527 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003528 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003529
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003530 switch (mux_ctl) {
3531 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003532 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003533 ret |= MUX_STATUS_READY;
3534 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003535 case MUX_EXIT_STATUS:
Christopher Fauletc18fc232020-10-06 17:41:36 +02003536 ret = (h1c->errcode == 400 ? MUX_ES_INVALID_ERR :
3537 (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003538 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3539 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3540 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003541 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003542 default:
3543 return -1;
3544 }
3545}
3546
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003547/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003548static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003549{
3550 struct h1c *h1c = conn->ctx;
3551 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003552 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003553
Christopher Fauletf376a312019-01-04 15:16:06 +01003554 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3555 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003556 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3557 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3558 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3559 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3560
3561 if (h1s) {
3562 char *method;
3563
3564 if (h1s->meth < HTTP_METH_OTHER)
3565 method = http_known_methods[h1s->meth].ptr;
3566 else
3567 method = "UNKNOWN";
3568 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3569 " .meth=%s status=%d",
3570 h1s, h1s->flags,
3571 h1m_state_str(h1s->req.state),
3572 h1m_state_str(h1s->res.state), method, h1s->status);
3573 if (h1s->cs)
3574 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3575 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003576
3577 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3578 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003579 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3580 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3581 h1s->subs->tasklet->calls,
3582 h1s->subs->tasklet->context);
3583 if (h1s->subs->tasklet->calls >= 1000000)
3584 ret = 1;
3585 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3586 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003587 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003588 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003589 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003590}
3591
3592
3593/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3594static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3595{
3596 struct h1_hdr_entry *entry;
3597
3598 /* Be sure there is a non-empty <to> */
3599 if (!strlen(to)) {
3600 memprintf(err, "expect <to>");
3601 return -1;
3602 }
3603
3604 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003605 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003606 memprintf(err, "<from> and <to> must not differ execpt the case");
3607 return -1;
3608 }
3609
3610 /* Be sure <from> does not already existsin the tree */
3611 if (ebis_lookup(&hdrs_map.map, from)) {
3612 memprintf(err, "duplicate entry '%s'", from);
3613 return -1;
3614 }
3615
3616 /* Create the entry and insert it in the tree */
3617 entry = malloc(sizeof(*entry));
3618 if (!entry) {
3619 memprintf(err, "out of memory");
3620 return -1;
3621 }
3622
3623 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003624 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003625 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003626 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003627 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003628 free(entry);
3629 memprintf(err, "out of memory");
3630 return -1;
3631 }
3632 ebis_insert(&hdrs_map.map, &entry->node);
3633 return 0;
3634}
3635
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003636/* Migrate the the connection to the current thread.
3637 * Return 0 if successful, non-zero otherwise.
3638 * Expected to be called with the old thread lock held.
3639 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003640static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003641{
3642 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003643 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003644
3645 if (fd_takeover(conn->handle.fd, conn) != 0)
3646 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003647
3648 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3649 /* We failed to takeover the xprt, even if the connection may
3650 * still be valid, flag it as error'd, as we have already
3651 * taken over the fd, and wake the tasklet, so that it will
3652 * destroy it.
3653 */
3654 conn->flags |= CO_FL_ERROR;
3655 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3656 return -1;
3657 }
3658
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003659 if (h1c->wait_event.events)
3660 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3661 h1c->wait_event.events, &h1c->wait_event);
3662 /* To let the tasklet know it should free itself, and do nothing else,
3663 * set its context to NULL.
3664 */
3665 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003666 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003667
3668 task = h1c->task;
3669 if (task) {
3670 task->context = NULL;
3671 h1c->task = NULL;
3672 __ha_barrier_store();
3673 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003674
3675 h1c->task = task_new(tid_bit);
3676 if (!h1c->task) {
3677 h1_release(h1c);
3678 return -1;
3679 }
3680 h1c->task->process = h1_timeout_task;
3681 h1c->task->context = h1c;
3682 }
3683 h1c->wait_event.tasklet = tasklet_new();
3684 if (!h1c->wait_event.tasklet) {
3685 h1_release(h1c);
3686 return -1;
3687 }
3688 h1c->wait_event.tasklet->process = h1_io_cb;
3689 h1c->wait_event.tasklet->context = h1c;
3690 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3691 SUB_RETRY_RECV, &h1c->wait_event);
3692
3693 return 0;
3694}
3695
3696
Christopher Faulet98fbe952019-07-22 16:18:24 +02003697static void h1_hdeaders_case_adjust_deinit()
3698{
3699 struct ebpt_node *node, *next;
3700 struct h1_hdr_entry *entry;
3701
3702 node = ebpt_first(&hdrs_map.map);
3703 while (node) {
3704 next = ebpt_next(node);
3705 ebpt_delete(node);
3706 entry = container_of(node, struct h1_hdr_entry, node);
3707 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003708 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003709 free(entry);
3710 node = next;
3711 }
3712 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003713}
3714
Christopher Faulet98fbe952019-07-22 16:18:24 +02003715static int cfg_h1_headers_case_adjust_postparser()
3716{
3717 FILE *file = NULL;
3718 char *c, *key_beg, *key_end, *value_beg, *value_end;
3719 char *err;
3720 int rc, line = 0, err_code = 0;
3721
3722 if (!hdrs_map.name)
3723 goto end;
3724
3725 file = fopen(hdrs_map.name, "r");
3726 if (!file) {
3727 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
3728 hdrs_map.name);
3729 err_code |= ERR_ALERT | ERR_FATAL;
3730 goto end;
3731 }
3732
3733 /* now parse all lines. The file may contain only two header name per
3734 * line, separated by spaces. All heading and trailing spaces will be
3735 * ignored. Lines starting with a # are ignored.
3736 */
3737 while (fgets(trash.area, trash.size, file) != NULL) {
3738 line++;
3739 c = trash.area;
3740
3741 /* strip leading spaces and tabs */
3742 while (*c == ' ' || *c == '\t')
3743 c++;
3744
3745 /* ignore emptu lines, or lines beginning with a dash */
3746 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3747 continue;
3748
3749 /* look for the end of the key */
3750 key_beg = c;
3751 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3752 c++;
3753 key_end = c;
3754
3755 /* strip middle spaces and tabs */
3756 while (*c == ' ' || *c == '\t')
3757 c++;
3758
3759 /* look for the end of the value, it is the end of the line */
3760 value_beg = c;
3761 while (*c && *c != '\n' && *c != '\r')
3762 c++;
3763 value_end = c;
3764
3765 /* trim possibly trailing spaces and tabs */
3766 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3767 value_end--;
3768
3769 /* set final \0 and check entries */
3770 *key_end = '\0';
3771 *value_end = '\0';
3772
3773 err = NULL;
3774 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3775 if (rc < 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003776 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3777 hdrs_map.name, err, line);
3778 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003779 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003780 goto end;
3781 }
3782 if (rc > 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003783 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3784 hdrs_map.name, err, line);
3785 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003786 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003787 }
3788 }
3789
3790 end:
3791 if (file)
3792 fclose(file);
3793 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3794 return err_code;
3795}
3796
3797
3798/* config parser for global "h1-outgoing-header-case-adjust" */
3799static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003800 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003801 char **err)
3802{
3803 if (too_many_args(2, args, err, NULL))
3804 return -1;
3805 if (!*(args[1]) || !*(args[2])) {
3806 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3807 return -1;
3808 }
3809 return add_hdr_case_adjust(args[1], args[2], err);
3810}
3811
3812/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3813static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003814 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003815 char **err)
3816{
3817 if (too_many_args(1, args, err, NULL))
3818 return -1;
3819 if (!*(args[1])) {
3820 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3821 return -1;
3822 }
3823 free(hdrs_map.name);
3824 hdrs_map.name = strdup(args[1]);
3825 return 0;
3826}
3827
3828
3829/* config keyword parsers */
3830static struct cfg_kw_list cfg_kws = {{ }, {
3831 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3832 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3833 { 0, NULL, NULL },
3834 }
3835};
3836
3837INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3838REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3839
3840
Christopher Faulet51dbc942018-09-13 09:05:15 +02003841/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003842/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003843/****************************************/
3844
3845/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003846static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003847 .init = h1_init,
3848 .wake = h1_wake,
3849 .attach = h1_attach,
3850 .get_first_cs = h1_get_first_cs,
3851 .detach = h1_detach,
3852 .destroy = h1_destroy,
3853 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003854 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003855 .rcv_buf = h1_rcv_buf,
3856 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003857#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003858 .rcv_pipe = h1_rcv_pipe,
3859 .snd_pipe = h1_snd_pipe,
3860#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003861 .subscribe = h1_subscribe,
3862 .unsubscribe = h1_unsubscribe,
3863 .shutr = h1_shutr,
3864 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003865 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003866 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003867 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003868 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003869 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003870};
3871
Christopher Faulet3f612f72021-02-05 16:44:21 +01003872static const struct mux_ops mux_h1_ops = {
3873 .init = h1_init,
3874 .wake = h1_wake,
3875 .attach = h1_attach,
3876 .get_first_cs = h1_get_first_cs,
3877 .detach = h1_detach,
3878 .destroy = h1_destroy,
3879 .avail_streams = h1_avail_streams,
3880 .used_streams = h1_used_streams,
3881 .rcv_buf = h1_rcv_buf,
3882 .snd_buf = h1_snd_buf,
3883#if defined(USE_LINUX_SPLICE)
3884 .rcv_pipe = h1_rcv_pipe,
3885 .snd_pipe = h1_snd_pipe,
3886#endif
3887 .subscribe = h1_subscribe,
3888 .unsubscribe = h1_unsubscribe,
3889 .shutr = h1_shutr,
3890 .shutw = h1_shutw,
3891 .show_fd = h1_show_fd,
3892 .ctl = h1_ctl,
3893 .takeover = h1_takeover,
3894 .flags = MX_FL_HTX|MX_FL_NO_UPG,
3895 .name = "H1",
3896};
Christopher Faulet51dbc942018-09-13 09:05:15 +02003897
Christopher Faulet3f612f72021-02-05 16:44:21 +01003898/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
3899static struct mux_proto_list mux_proto_h1 =
3900 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
3901static struct mux_proto_list mux_proto_http =
3902 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02003903
Christopher Faulet3f612f72021-02-05 16:44:21 +01003904INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
3905INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01003906
Christopher Faulet51dbc942018-09-13 09:05:15 +02003907/*
3908 * Local variables:
3909 * c-indent-level: 8
3910 * c-basic-offset: 8
3911 * End:
3912 */