blob: 5dfd26cc886bcede252f5b6cb6044b9a232851fc [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 Tarreauadc02402021-05-08 20:28:54 +020025#include <haproxy/proxy.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 Faulet51dbc942018-09-13 09:05:15 +020045
Christopher Faulet7b109f22019-12-05 11:18:31 +010046/* Flags indicating the connection state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010047#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 +010048#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 +010049#define H1C_F_ST_IDLE 0x00000400 /* connection is idle and may be reused
50 * (exclusive to all H1C_F_ST flags and never set when an h1s is attached) */
51#define H1C_F_ST_ERROR 0x00000800 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */
52#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 +010053#define H1C_F_ST_READY 0x00002000 /* Set in ATTACHED state with a READY conn-stream. A conn-stream is not ready when
54 * 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 +010055#define H1C_F_ST_ALIVE (H1C_F_ST_IDLE|H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED)
Christopher Faulet39c7b6b2021-01-21 17:44:35 +010056/* 0x00004000 - 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020057
Christopher Fauletb385b502021-01-13 18:47:57 +010058#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
59#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
60#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
61#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
62#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
63#define H1C_F_CO_STREAMER 0x00200000 /* set if CO_SFL_STREAMER must be set when calling xprt->snd_buf() */
Christopher Faulet129817b2018-09-20 16:14:40 +020064
Christopher Faulet10a86702021-04-07 14:18:11 +020065/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010066#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020067
Christopher Faulet51dbc942018-09-13 09:05:15 +020068/*
69 * H1 Stream flags (32 bits)
70 */
Christopher Faulet129817b2018-09-20 16:14:40 +020071#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020072
73#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
74#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet46e058d2021-09-20 07:47:27 +020075#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
76
Willy Tarreauc493c9c2019-06-03 14:18:22 +020077#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020078#define H1S_F_WANT_KAL 0x00000010
79#define H1S_F_WANT_TUN 0x00000020
80#define H1S_F_WANT_CLO 0x00000040
81#define H1S_F_WANT_MSK 0x00000070
82#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010083#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020084
Ilya Shipitsinacf84592021-02-06 22:29:08 +050085/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010086#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 +020087#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
88#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
89#define H1S_F_ERROR 0x00001800 /* stream error mask */
90
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020091#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 +020092#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020093
94/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020095struct h1c {
96 struct connection *conn;
97 struct proxy *px;
98 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +020099 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200100 struct buffer ibuf; /* Input buffer to store data before parsing */
101 struct buffer obuf; /* Output buffer to store data after reformatting */
102
103 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
104 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
105
106 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100107 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200108 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
109 int timeout; /* client/server timeout duration */
110 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200111};
112
113/* H1 stream descriptor */
114struct h1s {
115 struct h1c *h1c;
116 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100117 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200118
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100119 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200120
Olivier Houchardf502aca2018-12-14 19:42:40 +0100121 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200122 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200123 struct h1m req;
124 struct h1m res;
125
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500126 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200127 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100128
129 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200130};
131
Christopher Faulet98fbe952019-07-22 16:18:24 +0200132/* Map of headers used to convert outgoing headers */
133struct h1_hdrs_map {
134 char *name;
135 struct eb_root map;
136};
137
138/* An entry in a headers map */
139struct h1_hdr_entry {
140 struct ist name;
141 struct ebpt_node node;
142};
143
144/* Declare the headers map */
145static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
146
147
Christopher Faulet6b81df72019-10-01 22:08:43 +0200148/* trace source and events */
149static void h1_trace(enum trace_level level, uint64_t mask,
150 const struct trace_source *src,
151 const struct ist where, const struct ist func,
152 const void *a1, const void *a2, const void *a3, const void *a4);
153
154/* The event representation is split like this :
155 * h1c - internal H1 connection
156 * h1s - internal H1 stream
157 * strm - application layer
158 * rx - data receipt
159 * tx - data transmission
160 *
161 */
162static const struct trace_event h1_trace_events[] = {
163#define H1_EV_H1C_NEW (1ULL << 0)
164 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
165#define H1_EV_H1C_RECV (1ULL << 1)
166 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
167#define H1_EV_H1C_SEND (1ULL << 2)
168 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
169#define H1_EV_H1C_BLK (1ULL << 3)
170 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
171#define H1_EV_H1C_WAKE (1ULL << 4)
172 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
173#define H1_EV_H1C_END (1ULL << 5)
174 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
175#define H1_EV_H1C_ERR (1ULL << 6)
176 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
177
178#define H1_EV_RX_DATA (1ULL << 7)
179 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
180#define H1_EV_RX_EOI (1ULL << 8)
181 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
182#define H1_EV_RX_HDRS (1ULL << 9)
183 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
184#define H1_EV_RX_BODY (1ULL << 10)
185 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
186#define H1_EV_RX_TLRS (1ULL << 11)
187 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
188
189#define H1_EV_TX_DATA (1ULL << 12)
190 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
191#define H1_EV_TX_EOI (1ULL << 13)
192 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
193#define H1_EV_TX_HDRS (1ULL << 14)
194 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
195#define H1_EV_TX_BODY (1ULL << 15)
196 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
197#define H1_EV_TX_TLRS (1ULL << 16)
198 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
199
200#define H1_EV_H1S_NEW (1ULL << 17)
201 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
202#define H1_EV_H1S_BLK (1ULL << 18)
203 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
204#define H1_EV_H1S_END (1ULL << 19)
205 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
206#define H1_EV_H1S_ERR (1ULL << 20)
207 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
208
209#define H1_EV_STRM_NEW (1ULL << 21)
210 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
211#define H1_EV_STRM_RECV (1ULL << 22)
212 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
213#define H1_EV_STRM_SEND (1ULL << 23)
214 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
215#define H1_EV_STRM_WAKE (1ULL << 24)
216 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
217#define H1_EV_STRM_SHUT (1ULL << 25)
218 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
219#define H1_EV_STRM_END (1ULL << 26)
220 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
221#define H1_EV_STRM_ERR (1ULL << 27)
222 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
223
224 { }
225};
226
227static const struct name_desc h1_trace_lockon_args[4] = {
228 /* arg1 */ { /* already used by the connection */ },
229 /* arg2 */ { .name="h1s", .desc="H1 stream" },
230 /* arg3 */ { },
231 /* arg4 */ { }
232};
233
234static const struct name_desc h1_trace_decoding[] = {
235#define H1_VERB_CLEAN 1
236 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
237#define H1_VERB_MINIMAL 2
238 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
239#define H1_VERB_SIMPLE 3
240 { .name="simple", .desc="add request/response status line or htx info when available" },
241#define H1_VERB_ADVANCED 4
242 { .name="advanced", .desc="add header fields or frame decoding when available" },
243#define H1_VERB_COMPLETE 5
244 { .name="complete", .desc="add full data dump when available" },
245 { /* end */ }
246};
247
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200248static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200249 .name = IST("h1"),
250 .desc = "HTTP/1 multiplexer",
251 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
252 .default_cb = h1_trace,
253 .known_events = h1_trace_events,
254 .lockon_args = h1_trace_lockon_args,
255 .decoding = h1_trace_decoding,
256 .report_events = ~0, // report everything by default
257};
258
259#define TRACE_SOURCE &trace_h1
260INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
261
Christopher Faulet51dbc942018-09-13 09:05:15 +0200262/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100263DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
264DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200265
Christopher Faulet51dbc942018-09-13 09:05:15 +0200266static int h1_recv(struct h1c *h1c);
267static int h1_send(struct h1c *h1c);
268static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100269/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100270struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
271struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200272static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200273static void h1_wake_stream_for_recv(struct h1s *h1s);
274static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200275
Christopher Faulet6b81df72019-10-01 22:08:43 +0200276/* the H1 traces always expect that arg1, if non-null, is of type connection
277 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
278 * that arg3, if non-null, is a htx for rx/tx headers.
279 */
280static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
281 const struct ist where, const struct ist func,
282 const void *a1, const void *a2, const void *a3, const void *a4)
283{
284 const struct connection *conn = a1;
285 const struct h1c *h1c = conn ? conn->ctx : NULL;
286 const struct h1s *h1s = a2;
287 const struct htx *htx = a3;
288 const size_t *val = a4;
289
290 if (!h1c)
291 h1c = (h1s ? h1s->h1c : NULL);
292
293 if (!h1c || src->verbosity < H1_VERB_CLEAN)
294 return;
295
296 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200297 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200298
299 /* Display request and response states if h1s is defined */
300 if (h1s)
301 chunk_appendf(&trace_buf, " [%s, %s]",
302 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
303
304 if (src->verbosity == H1_VERB_CLEAN)
305 return;
306
307 /* Display the value to the 4th argument (level > STATE) */
308 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100309 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200310
311 /* Display status-line if possible (verbosity > MINIMAL) */
312 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
313 const struct htx_blk *blk = htx_get_head_blk(htx);
314 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
315 enum htx_blk_type type = htx_get_blk_type(blk);
316
317 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
318 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
319 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
320 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
321 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
322 }
323
324 /* Display h1c info and, if defined, h1s info (pointer + flags) */
325 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
326 if (h1s)
327 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
328
329 if (src->verbosity == H1_VERB_MINIMAL)
330 return;
331
332 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
333 if (src->level > TRACE_LEVEL_USER) {
334 if (src->verbosity == H1_VERB_COMPLETE ||
335 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
336 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
337 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
338 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
339 if (src->verbosity == H1_VERB_COMPLETE ||
340 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
341 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
342 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
343 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
344 }
345
346 /* Display htx info if defined (level > USER) */
347 if (src->level > TRACE_LEVEL_USER && htx) {
348 int full = 0;
349
350 /* Full htx info (level > STATE && verbosity > SIMPLE) */
351 if (src->level > TRACE_LEVEL_STATE) {
352 if (src->verbosity == H1_VERB_COMPLETE)
353 full = 1;
354 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
355 full = 1;
356 }
357
358 chunk_memcat(&trace_buf, "\n\t", 2);
359 htx_dump(&trace_buf, htx, full);
360 }
361}
362
363
Christopher Faulet51dbc942018-09-13 09:05:15 +0200364/*****************************************************/
365/* functions below are for dynamic buffer management */
366/*****************************************************/
367/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100368 * Indicates whether or not we may receive data. The rules are the following :
369 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200370 * must not attempt to receive
371 * - if we are waiting for the connection establishment, we must not attempt
372 * to receive
373 * - if an error was detected on the stream we must not attempt to receive
374 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100375 * - if the input buffer failed to be allocated or is full , we must not try
376 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200377 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200378 * - otherwise must may not attempt to receive
379 */
380static inline int h1_recv_allowed(const struct h1c *h1c)
381{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100382 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100383 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 +0200384 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200385 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200386
Willy Tarreau2febb842020-07-31 09:15:43 +0200387 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
388 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 +0100389 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200390 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100391
Christopher Faulet119ac872020-09-30 17:33:22 +0200392 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
393 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
394 return 0;
395 }
396
Christopher Fauletd17ad822020-09-24 15:14:29 +0200397 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200398 return 1;
399
Christopher Faulet6b81df72019-10-01 22:08:43 +0200400 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 +0200401 return 0;
402}
403
404/*
405 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
406 * flags are used to figure what buffer was requested. It returns 1 if the
407 * allocation succeeds, in which case the connection is woken up, or 0 if it's
408 * impossible to wake up and we prefer to be woken up later.
409 */
410static int h1_buf_available(void *target)
411{
412 struct h1c *h1c = target;
413
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100414 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200415 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 +0200416 h1c->flags &= ~H1C_F_IN_ALLOC;
417 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200418 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200419 return 1;
420 }
421
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100422 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200423 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 +0200424 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200425 if (h1c->h1s)
426 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200427 return 1;
428 }
429
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100430 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200431 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
432 h1c->flags &= ~H1C_F_IN_SALLOC;
433 tasklet_wakeup(h1c->wait_event.tasklet);
434 return 1;
435 }
436
Christopher Faulet51dbc942018-09-13 09:05:15 +0200437 return 0;
438}
439
440/*
441 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
442 */
443static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
444{
445 struct buffer *buf = NULL;
446
Willy Tarreau2b718102021-04-21 07:32:39 +0200447 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100448 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200449 h1c->buf_wait.target = h1c;
450 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200451 LIST_APPEND(&ti->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200452 }
453 return buf;
454}
455
456/*
457 * Release a buffer, if any, and try to wake up entities waiting in the buffer
458 * wait queue.
459 */
460static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
461{
462 if (bptr->size) {
463 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100464 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200465 }
466}
467
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100468/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100469 * 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 +0100470 * not. This flag is only set when no H1S is attached and when the previous
471 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100472 */
473static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200474{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100475 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200476
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100477 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200478}
479
Willy Tarreau00f18a32019-01-26 12:19:01 +0100480/* returns the number of streams still available on a connection */
481static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100482{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100483 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100484}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200485
Christopher Faulet7a145d62020-08-05 11:31:16 +0200486/* Refresh the h1c task timeout if necessary */
487static void h1_refresh_timeout(struct h1c *h1c)
488{
489 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100490 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200491 /* half-closed or dead connections : switch to clientfin/serverfin
492 * timeouts so that we don't hang too long on clients that have
493 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200494 */
495 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200496 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
497 }
498 else if (b_data(&h1c->obuf)) {
499 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200500 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200501 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
502 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100503 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
504 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200505 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100506 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 +0200507 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200508 else {
509 /* alive back connections of front connections with a conn-stream attached */
510 h1c->task->expire = TICK_ETERNITY;
511 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
512 }
513
Christopher Fauletdbe57792020-10-05 17:50:58 +0200514 /* Finally set the idle expiration date if shorter */
515 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200516 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
517 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200518 }
519}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200520
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200521static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200522{
523 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
524 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
525 h1c->idle_exp = TICK_ETERNITY;
526 return;
527 }
528
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100529 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200530 if (!tick_isset(h1c->idle_exp)) {
531 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
532 !b_data(&h1c->ibuf) && /* No input data */
533 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
534 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
535 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
536 }
537 else {
538 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
539 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
540 }
541 }
542 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100543 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200544 if (!tick_isset(h1c->idle_exp)) {
545 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
546 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
547 }
548 }
549 else { // CS_ATTACHED or SHUTDOWN
550 h1c->idle_exp = TICK_ETERNITY;
551 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
552 }
553}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200554/*****************************************************************/
555/* functions below are dedicated to the mux setup and management */
556/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200557
558/* returns non-zero if there are input data pending for stream h1s. */
559static inline size_t h1s_data_pending(const struct h1s *h1s)
560{
561 const struct h1m *h1m;
562
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200563 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100564 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200565}
566
Christopher Faulet16df1782020-12-04 16:47:41 +0100567/* Creates a new conn-stream and the associate stream. <input> is used as input
568 * buffer for the stream. On success, it is transferred to the stream and the
569 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
570 * mux must still take care of it. However, there is nothing special to do
571 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
572 * b_free() on it is always safe. This function returns the conn-stream on
573 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200574static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100575{
576 struct conn_stream *cs;
577
Christopher Faulet6b81df72019-10-01 22:08:43 +0200578 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200579 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200580 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100581 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 +0100582 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200583 }
Christopher Faulet47365272018-10-31 17:40:50 +0100584 h1s->cs = cs;
585 cs->ctx = h1s;
586
587 if (h1s->flags & H1S_F_NOT_FIRST)
588 cs->flags |= CS_FL_NOT_FIRST;
589
Christopher Faulet26256f82020-09-14 11:40:13 +0200590 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200591 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 +0100592 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200593 }
594
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100595 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 +0200596 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100597 return cs;
598
599 err:
600 cs_free(cs);
601 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100602 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100603 return NULL;
604}
605
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100606static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
607{
608 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
609
610 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100611 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 +0100612 goto err;
613 }
614
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100615 h1s->h1c->flags |= H1C_F_ST_READY;
616 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
617 return h1s->cs;
618
619 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100620 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100621 return NULL;
622}
623
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200624static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200625{
626 struct h1s *h1s;
627
Christopher Faulet6b81df72019-10-01 22:08:43 +0200628 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
629
Christopher Faulet51dbc942018-09-13 09:05:15 +0200630 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100631 if (!h1s) {
632 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 +0100633 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100634 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200635 h1s->h1c = h1c;
636 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200637 h1s->sess = NULL;
638 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100639 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100640 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200641 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100642 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200643
644 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100645 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200646
Christopher Faulet129817b2018-09-20 16:14:40 +0200647 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100648 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200649
650 h1s->status = 0;
651 h1s->meth = HTTP_METH_OTHER;
652
Christopher Faulet47365272018-10-31 17:40:50 +0100653 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
654 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100655 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100656
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200657 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
658 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200659
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200660 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100661 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200662 return NULL;
663}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100664
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200665static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
666{
667 struct session *sess = h1c->conn->owner;
668 struct h1s *h1s;
669
670 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
671
672 h1s = h1s_new(h1c);
673 if (!h1s)
674 goto fail;
675
676 h1s->sess = sess;
677
678 if (h1c->px->options2 & PR_O2_REQBUG_OK)
679 h1s->req.err_pos = -1;
680
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200681 h1c->idle_exp = TICK_ETERNITY;
682 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200683 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200684 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100685
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200686 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100687 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200688 return NULL;
689}
690
691static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
692{
693 struct h1s *h1s;
694
695 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
696
697 h1s = h1s_new(h1c);
698 if (!h1s)
699 goto fail;
700
Christopher Faulet10a86702021-04-07 14:18:11 +0200701 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200702 h1s->cs = cs;
703 h1s->sess = sess;
704 cs->ctx = h1s;
705
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100706 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200707
708 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
709 h1s->res.err_pos = -1;
710
711 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
712 return h1s;
713
714 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100715 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100716 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200717}
718
719static void h1s_destroy(struct h1s *h1s)
720{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200721 if (h1s) {
722 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200723
Christopher Faulet6b81df72019-10-01 22:08:43 +0200724 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200725 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200726
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100727 if (h1s->subs)
728 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200729
Christopher Fauletd17ad822020-09-24 15:14:29 +0200730 h1_release_buf(h1c, &h1s->rxbuf);
731
Christopher Faulet10a86702021-04-07 14:18:11 +0200732 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100733 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200734 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
735 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200736 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100737 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100738 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 +0200739 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100740
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100741 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100742 !(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 +0100743 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100744 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100745 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100746 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
747 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200748 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100749 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100750 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200751 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200752 pool_free(pool_head_h1s, h1s);
753 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200754}
755
756/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200757 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500758 * to the existing conn_stream (for outgoing connections or for incoming ones
759 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200760 * establishment). <input> is always used as Input buffer and may contain
761 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
762 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200763 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200764static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
765 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200766{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200767 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100768 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200769 void *conn_ctx = conn->ctx;
770
771 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200772
773 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100774 if (!h1c) {
775 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200776 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100777 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200778 h1c->conn = conn;
779 h1c->px = proxy;
780
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100781 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200782 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200783 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200784 h1c->obuf = BUF_NULL;
785 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200786 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200787
Willy Tarreau90f366b2021-02-20 11:49:49 +0100788 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200789 h1c->wait_event.tasklet = tasklet_new();
790 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200791 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200792 h1c->wait_event.tasklet->process = h1_io_cb;
793 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100794 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200795 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200796
Christopher Faulete9b70722019-04-08 10:46:02 +0200797 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200798 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100799 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
800 if (tick_isset(proxy->timeout.serverfin))
801 h1c->shut_timeout = proxy->timeout.serverfin;
802 } else {
803 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
804 if (tick_isset(proxy->timeout.clientfin))
805 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200806
807 LIST_APPEND(&mux_stopping_data[tid].list,
808 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100809 }
810 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200811 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100812 if (!t) {
813 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 +0100814 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100815 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100816
817 h1c->task = t;
818 t->process = h1_timeout_task;
819 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200820
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100821 t->expire = tick_add(now_ms, h1c->timeout);
822 }
823
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100824 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200825
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200826 if (h1c->flags & H1C_F_IS_BACK) {
827 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200828 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
829 goto fail;
830 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100831 else if (conn_ctx) {
832 /* Upgraded frontend connection (from TCP) */
833 struct conn_stream *cs = conn_ctx;
834
835 if (!h1c_frt_stream_new(h1c))
836 goto fail;
837
838 h1c->h1s->cs = cs;
839 cs->ctx = h1c->h1s;
840
841 /* Attach the CS but Not ready yet */
842 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
843 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
844 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
845 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100846
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200847 if (t) {
848 h1_set_idle_expiration(h1c);
849 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100850 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200851 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100852
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200853 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100854 if (b_data(&h1c->ibuf))
855 tasklet_wakeup(h1c->wait_event.tasklet);
856 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200857 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200858
859 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200860 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200861 return 0;
862
863 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200864 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200865 if (h1c->wait_event.tasklet)
866 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200867 pool_free(pool_head_h1c, h1c);
868 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200869 conn->ctx = conn_ctx; // restore saved context
870 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200871 return -1;
872}
873
Christopher Faulet73c12072019-04-08 11:23:22 +0200874/* release function. This one should be called to free all resources allocated
875 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200876 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200877static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200878{
Christopher Faulet61840e72019-04-15 09:33:32 +0200879 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200880
Christopher Faulet6b81df72019-10-01 22:08:43 +0200881 TRACE_POINT(H1_EV_H1C_END);
882
Christopher Faulet51dbc942018-09-13 09:05:15 +0200883 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200884 /* The connection must be aattached to this mux to be released */
885 if (h1c->conn && h1c->conn->ctx == h1c)
886 conn = h1c->conn;
887
Christopher Faulet6b81df72019-10-01 22:08:43 +0200888 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
889
Christopher Faulet61840e72019-04-15 09:33:32 +0200890 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200891 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200892 /* Make sure we're no longer subscribed to anything */
893 if (h1c->wait_event.events)
894 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
895 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200896 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200897 /* connection successfully upgraded to H2, this
898 * mux was already released */
899 return;
900 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100901 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200902 sess_log(conn->owner); /* Log if the upgrade failed */
903 }
904
Olivier Houchard45c44372019-06-11 14:06:23 +0200905
Willy Tarreau2b718102021-04-21 07:32:39 +0200906 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100907 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200908
909 h1_release_buf(h1c, &h1c->ibuf);
910 h1_release_buf(h1c, &h1c->obuf);
911
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100912 if (h1c->task) {
913 h1c->task->context = NULL;
914 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
915 h1c->task = NULL;
916 }
917
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200918 if (h1c->wait_event.tasklet)
919 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200920
Christopher Fauletf2824e62018-10-01 12:12:37 +0200921 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200922 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100923 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200924 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200925 pool_free(pool_head_h1c, h1c);
926 }
927
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200928 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200929 if (!conn_is_back(conn))
930 LIST_DEL_INIT(&conn->stopping_list);
931
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200932 conn->mux = NULL;
933 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200934 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200935
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200936 conn_stop_tracking(conn);
937 conn_full_close(conn);
938 if (conn->destroy_cb)
939 conn->destroy_cb(conn);
940 conn_free(conn);
941 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200942}
943
944/******************************************************/
945/* functions below are for the H1 protocol processing */
946/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200947/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
948 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200949 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100950static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200951{
Christopher Faulet570d1612018-11-26 11:13:57 +0100952 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200953
Christopher Faulet570d1612018-11-26 11:13:57 +0100954 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200955 (*(p + 5) > '1' ||
956 (*(p + 5) == '1' && *(p + 7) >= '1')))
957 h1m->flags |= H1_MF_VER_11;
958}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200959
Christopher Faulet9768c262018-10-22 09:34:31 +0200960/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
961 * greater or equal to 1.1
962 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100963static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200964{
Christopher Faulet570d1612018-11-26 11:13:57 +0100965 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200966
Christopher Faulet570d1612018-11-26 11:13:57 +0100967 if ((HTX_SL_RES_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 Fauletf2824e62018-10-01 12:12:37 +0200973/* Deduce the connection mode of the client connection, depending on the
974 * configuration and the H1 message flags. This function is called twice, the
975 * first time when the request is parsed and the second time when the response
976 * is parsed.
977 */
978static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
979{
980 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200981
982 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100983 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +0100984 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100985 h1s->status == 101) {
986 /* Either we've established an explicit tunnel, or we're
987 * switching the protocol. In both cases, we're very unlikely to
988 * understand the next protocols. We have to switch to tunnel
989 * mode, so that we transfer the request and responses then let
990 * this protocol pass unmodified. When we later implement
991 * specific parsers for such protocols, we'll want to check the
992 * Upgrade header which contains information about that protocol
993 * for responses with status 101 (eg: see RFC2817 about TLS).
994 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200995 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200996 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 +0100997 }
998 else if (h1s->flags & H1S_F_WANT_KAL) {
999 /* By default the client is in KAL mode. CLOSE mode mean
1000 * it is imposed by the client itself. So only change
1001 * KAL mode here. */
1002 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1003 /* no length known or explicit close => close */
1004 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001005 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 +01001006 }
1007 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1008 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001009 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001010 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001011 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 +01001012 }
1013 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001014 }
1015 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001016 /* Input direction: first pass */
1017 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1018 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001019 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001020 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 +01001021 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001022 }
1023
1024 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001025 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001026 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001027 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);
1028 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001029}
1030
1031/* Deduce the connection mode of the client connection, depending on the
1032 * configuration and the H1 message flags. This function is called twice, the
1033 * first time when the request is parsed and the second time when the response
1034 * is parsed.
1035 */
1036static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1037{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001038 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001039 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001040 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001041
Christopher Fauletf2824e62018-10-01 12:12:37 +02001042 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001043 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001044 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001045 h1s->status == 101) {
1046 /* Either we've established an explicit tunnel, or we're
1047 * switching the protocol. In both cases, we're very unlikely to
1048 * understand the next protocols. We have to switch to tunnel
1049 * mode, so that we transfer the request and responses then let
1050 * this protocol pass unmodified. When we later implement
1051 * specific parsers for such protocols, we'll want to check the
1052 * Upgrade header which contains information about that protocol
1053 * for responses with status 101 (eg: see RFC2817 about TLS).
1054 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001055 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001056 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 +01001057 }
1058 else if (h1s->flags & H1S_F_WANT_KAL) {
1059 /* By default the server is in KAL mode. CLOSE mode mean
1060 * it is imposed by haproxy itself. So only change KAL
1061 * mode here. */
1062 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1063 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1064 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1065 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001066 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 +01001067 }
1068 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001069 }
Christopher Faulet70033782018-12-05 13:50:11 +01001070 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001071 /* Output direction: first pass */
1072 if (h1m->flags & H1_MF_CONN_CLO) {
1073 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001074 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001075 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 +01001076 }
1077 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1078 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1079 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1080 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1081 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1082 /* no explicit keep-alive option httpclose/server-close => close */
1083 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001084 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 +01001085 }
Christopher Faulet70033782018-12-05 13:50:11 +01001086 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001087
1088 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001089 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001090 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001091 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);
1092 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001093}
1094
Christopher Fauletb992af02019-03-28 15:42:24 +01001095static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001096{
1097 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001098
1099 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1100 * token is found
1101 */
1102 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001103 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001104
1105 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001106 if (!(h1m->flags & H1_MF_VER_11)) {
1107 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 +01001108 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001109 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001110 }
1111 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001112 if (h1m->flags & H1_MF_VER_11) {
1113 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001114 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001115 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001116 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001117}
1118
Christopher Fauletb992af02019-03-28 15:42:24 +01001119static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001120{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001121 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1122 * token is found
1123 */
1124 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001125 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001126
1127 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001128 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001129 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1130 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 +01001131 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001132 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001133 }
1134 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001135 if (h1m->flags & H1_MF_VER_11) {
1136 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001137 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001138 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001139 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001140}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001141
Christopher Fauletb992af02019-03-28 15:42:24 +01001142static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001143{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001144 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001145 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001146 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001147 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001148}
1149
Christopher Fauletb992af02019-03-28 15:42:24 +01001150static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1151{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001152 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001153 h1_set_cli_conn_mode(h1s, h1m);
1154 else
1155 h1_set_srv_conn_mode(h1s, h1m);
1156
1157 if (!(h1m->flags & H1_MF_RESP))
1158 h1_update_req_conn_value(h1s, h1m, conn_val);
1159 else
1160 h1_update_res_conn_value(h1s, h1m, conn_val);
1161}
Christopher Faulete44769b2018-11-29 23:01:45 +01001162
Christopher Faulet98fbe952019-07-22 16:18:24 +02001163/* Try to adjust the case of the message header name using the global map
1164 * <hdrs_map>.
1165 */
1166static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1167{
1168 struct ebpt_node *node;
1169 struct h1_hdr_entry *entry;
1170
1171 /* No entry in the map, do nothing */
1172 if (eb_is_empty(&hdrs_map.map))
1173 return;
1174
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001175 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001176 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1177 return;
1178
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001179 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001180 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1181 return;
1182
1183 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1184 if (!node)
1185 return;
1186 entry = container_of(node, struct h1_hdr_entry, node);
1187 name->ptr = entry->name.ptr;
1188 name->len = entry->name.len;
1189}
1190
Christopher Faulete44769b2018-11-29 23:01:45 +01001191/* Append the description of what is present in error snapshot <es> into <out>.
1192 * The description must be small enough to always fit in a buffer. The output
1193 * buffer may be the trash so the trash must not be used inside this function.
1194 */
1195static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1196{
1197 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001198 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1199 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1200 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1201 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1202 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1203 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001204}
1205/*
1206 * Capture a bad request or response and archive it in the proxy's structure.
1207 * By default it tries to report the error position as h1m->err_pos. However if
1208 * this one is not set, it will then report h1m->next, which is the last known
1209 * parsing point. The function is able to deal with wrapping buffers. It always
1210 * displays buffers as a contiguous area starting at buf->p. The direction is
1211 * determined thanks to the h1m's flags.
1212 */
1213static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1214 struct h1m *h1m, struct buffer *buf)
1215{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001216 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001217 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001218 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001219 union error_snapshot_ctx ctx;
1220
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001221 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001222 if (sess == NULL)
1223 sess = si_strm(h1s->cs->data)->sess;
1224 if (!(h1m->flags & H1_MF_RESP))
1225 other_end = si_strm(h1s->cs->data)->be;
1226 else
1227 other_end = sess->fe;
1228 } else
1229 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001230
1231 /* http-specific part now */
1232 ctx.h1.state = h1m->state;
1233 ctx.h1.c_flags = h1c->flags;
1234 ctx.h1.s_flags = h1s->flags;
1235 ctx.h1.m_flags = h1m->flags;
1236 ctx.h1.m_clen = h1m->curr_len;
1237 ctx.h1.m_blen = h1m->body_len;
1238
1239 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1240 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001241 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1242 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001243}
1244
Christopher Fauletadb22202018-12-12 10:32:09 +01001245/* Emit the chunksize followed by a CRLF in front of data of the buffer
1246 * <buf>. It goes backwards and starts with the byte before the buffer's
1247 * head. The caller is responsible for ensuring there is enough room left before
1248 * the buffer's head for the string.
1249 */
1250static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1251{
1252 char *beg, *end;
1253
1254 beg = end = b_head(buf);
1255 *--beg = '\n';
1256 *--beg = '\r';
1257 do {
1258 *--beg = hextab[chksz & 0xF];
1259 } while (chksz >>= 4);
1260 buf->head -= (end - beg);
1261 b_add(buf, end - beg);
1262}
1263
1264/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1265 * ensuring there is enough room left in the buffer for the string. */
1266static void h1_emit_chunk_crlf(struct buffer *buf)
1267{
1268 *(b_peek(buf, b_data(buf))) = '\r';
1269 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1270 b_add(buf, 2);
1271}
1272
Christopher Faulet129817b2018-09-20 16:14:40 +02001273/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001274 * Switch the stream to tunnel mode. This function must only be called on 2xx
1275 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001276 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001277static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001278{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001279 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001280
Christopher Faulet5be651d2021-01-22 15:28:03 +01001281 h1s->req.state = H1_MSG_TUNNEL;
1282 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001283
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001284 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001285 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001286
Christopher Faulet5be651d2021-01-22 15:28:03 +01001287 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 +01001288
Christopher Faulet10a86702021-04-07 14:18:11 +02001289 if (h1s->flags & H1S_F_RX_BLK) {
1290 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001291 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001292 TRACE_STATE("Re-enable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001293 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001294 if (h1s->flags & H1S_F_TX_BLK) {
1295 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001296 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001297 TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001298 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001299}
1300
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001301/* Search for a websocket key header. The message should have been identified
1302 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001303 *
1304 * On the request side, if found the key is stored in the session. It might be
1305 * needed to calculate response key if the server side is using http/2.
1306 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001307 * On the response side, the key might be verified if haproxy has been
1308 * responsible for the generation of a key. This happens when a h2 client is
1309 * interfaced with a h1 server.
1310 *
1311 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001312 */
1313static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1314{
1315 struct htx_blk *blk;
1316 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001317 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001318 int ws_key_found = 0, idx;
1319
1320 idx = htx_get_head(htx); // returns the SL that we skip
1321 while ((idx = htx_get_next(htx, idx)) != -1) {
1322 blk = htx_get_blk(htx, idx);
1323 type = htx_get_blk_type(blk);
1324
1325 if (type == HTX_BLK_UNUSED)
1326 continue;
1327
1328 if (type != HTX_BLK_HDR)
1329 break;
1330
1331 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001332 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001333
Amaury Denoyellec1938232020-12-11 17:53:03 +01001334 /* Websocket key is base64 encoded of 16 bytes */
1335 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001336 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001337 /* Copy the key on request side
1338 * we might need it if the server is using h2 and does
1339 * not provide the response
1340 */
1341 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001342 ws_key_found = 1;
1343 break;
1344 }
1345 else if (isteqi(n, ist("sec-websocket-accept")) &&
1346 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001347 /* Need to verify the response key if the input was
1348 * generated by haproxy
1349 */
1350 if (h1s->ws_key[0]) {
1351 char key[29];
1352 h1_calculate_ws_output_key(h1s->ws_key, key);
1353 if (!isteqi(ist(key), v))
1354 break;
1355 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001356 ws_key_found = 1;
1357 break;
1358 }
1359 }
1360
1361 /* missing websocket key, reject the message */
1362 if (!ws_key_found) {
1363 htx->flags |= HTX_FL_PARSING_ERROR;
1364 return 0;
1365 }
1366
1367 return 1;
1368}
1369
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001370/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001371 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001372 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001373 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1374 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001375 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001376static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1377 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001378{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001379 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001380 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001381
Willy Tarreau022e5e52020-09-10 09:33:15 +02001382 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 +02001383
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001384 if (h1s->meth == HTTP_METH_CONNECT)
1385 h1m->flags |= H1_MF_METH_CONNECT;
1386 if (h1s->meth == HTTP_METH_HEAD)
1387 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001388
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001389 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001390 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001391 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001392 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001393 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001394 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 +02001395 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1396 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001397 else if (ret == -2) {
1398 TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_BLK, h1s->h1c->conn, h1s);
1399 h1s->flags |= H1S_F_RX_CONGESTED;
1400 }
1401 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001402 goto end;
1403 }
1404
Christopher Faulete136bd12021-09-21 18:44:55 +02001405
1406 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1407 * payload if the c-l is not null or the the payload is chunk-encoded.
1408 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1409 * instead of a 400-Bad-Request.
1410 */
1411 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1412 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1413 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1414 h1s->flags |= H1S_F_PARSING_ERROR;
1415 htx->flags |= HTX_FL_PARSING_ERROR;
1416 h1s->h1c->errcode = 413;
1417 TRACE_ERROR("HTTP/1.0 GET/HEAD/DELETE request with a payload forbidden", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1418 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1419 ret = 0;
1420 goto end;
1421 }
1422
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001423 /* Reject any message with an unknown transfer-encoding. In fact if any
1424 * encoding other than "chunked". A 422-Unprocessable-Content is
1425 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1426 * response.
1427 */
1428 if (h1m->flags & H1_MF_TE_OTHER) {
1429 h1s->flags |= H1S_F_PARSING_ERROR;
1430 htx->flags |= HTX_FL_PARSING_ERROR;
1431 if (!(h1m->flags & H1_MF_RESP))
1432 h1s->h1c->errcode = 422;
1433 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1434 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1435 ret = 0;
1436 goto end;
1437 }
1438
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001439 /* If websocket handshake, search for the websocket key */
1440 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1441 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1442 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1443 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001444 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001445 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 +01001446 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1447
1448 ret = 0;
1449 goto end;
1450 }
1451 }
1452
Christopher Faulet486498c2019-10-11 14:22:00 +02001453 if (h1m->err_pos >= 0) {
1454 /* Maybe we found an error during the parsing while we were
1455 * configured not to block on that, so we have to capture it
1456 * now.
1457 */
1458 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1459 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1460 }
1461
Christopher Faulet5696f542020-12-02 16:08:38 +01001462 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001463 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001464 if (h1s->meth == HTTP_METH_HEAD)
1465 h1s->flags |= H1S_F_BODYLESS_RESP;
1466 }
1467 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001468 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001469 if (h1s->status == 204 || h1s->status == 304)
1470 h1s->flags |= H1S_F_BODYLESS_RESP;
1471 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001472 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001473 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001474
Christopher Faulet129817b2018-09-20 16:14:40 +02001475 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001476 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 +02001477 return ret;
1478}
1479
1480/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001481 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001482 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1483 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001484 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001485static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1486 struct buffer *buf, size_t *ofs, size_t max,
1487 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001488{
Christopher Fauletde471a42021-02-01 16:37:28 +01001489 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001490
Willy Tarreau022e5e52020-09-10 09:33:15 +02001491 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 +02001492 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001493 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001494 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 +01001495 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001496 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001497 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 +02001498 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001499 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001500 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001501 }
1502
Christopher Faulet02a02532019-11-15 09:36:28 +01001503 *ofs += ret;
1504
1505 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001506 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1507 TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_BLK, h1s->h1c->conn, h1s);
1508 h1s->flags |= H1S_F_RX_CONGESTED;
1509 }
1510
Willy Tarreau022e5e52020-09-10 09:33:15 +02001511 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 +02001512 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001513}
1514
1515/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001516 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1517 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1518 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001519 * responsible to update the parser state <h1m>. If more room is requested,
1520 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001521 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001522static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1523 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001524{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001525 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001526
Willy Tarreau022e5e52020-09-10 09:33:15 +02001527 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 +02001528 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001529 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001530 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001531 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001532 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001533 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 +02001534 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1535 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001536 else if (ret == -2) {
1537 TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_BLK, h1s->h1c->conn, h1s);
1538 h1s->flags |= H1S_F_RX_CONGESTED;
1539 }
1540 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001541 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001542 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001543
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001544 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001545
1546 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001547 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 +02001548 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001549}
1550
1551/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001552 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001553 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1554 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001555 *
1556 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001557 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001558static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001559{
Christopher Faulet539e0292018-11-19 10:40:09 +01001560 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001561 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001562 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001563 size_t data;
1564 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001565 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001566
Christopher Faulet539e0292018-11-19 10:40:09 +01001567 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001568 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001569
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001570 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001571 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001572
Christopher Faulet2eed8002020-12-07 11:26:13 +01001573 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001574 goto end;
1575
Christopher Faulet10a86702021-04-07 14:18:11 +02001576 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001577 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001578
Christopher Faulet46e058d2021-09-20 07:47:27 +02001579 /* Always remove congestion flags and try to process more input data */
1580 h1s->flags &= ~H1S_F_RX_CONGESTED;
1581
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001582 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001583 size_t used = htx_used_space(htx);
1584
Christopher Faulet129817b2018-09-20 16:14:40 +02001585 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001586 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001587 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001588 if (!ret)
1589 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001590
1591 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1592 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1593
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001594 if ((h1m->flags & H1_MF_RESP) &&
1595 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1596 h1m_init_res(&h1s->res);
1597 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001598 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001599 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001600 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001601 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001602 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001603 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001604 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001605 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001606
1607 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1608 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001609 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001610 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001611 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001612 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001613 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001614 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001615
Christopher Faulet76014fd2019-12-10 11:47:22 +01001616 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1617 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001618 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001619 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001620 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1621 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001622
Christopher Faulet5be651d2021-01-22 15:28:03 +01001623 if ((h1m->flags & H1_MF_RESP) &&
1624 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1625 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001626 else {
1627 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1628 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001629 h1s->flags |= H1S_F_RX_BLK;
1630 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001631 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001632 if (h1s->flags & H1S_F_TX_BLK) {
1633 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001634 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001635 TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001636 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001637 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001638 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001639 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001640 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001641 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001642 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001643 if (!ret)
1644 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001645
1646 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1647 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001648 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001649 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001650 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001651 break;
1652 }
1653
Christopher Faulet30db3d72019-05-17 15:35:33 +02001654 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001655 } while (!(h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR|H1S_F_RX_BLK|H1S_F_RX_CONGESTED)));
Christopher Faulet5be651d2021-01-22 15:28:03 +01001656
Christopher Faulet129817b2018-09-20 16:14:40 +02001657
Christopher Faulet2eed8002020-12-07 11:26:13 +01001658 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001659 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 +02001660 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001661 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001662
Christopher Faulet539e0292018-11-19 10:40:09 +01001663 b_del(&h1c->ibuf, total);
1664
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001665 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001666 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1667
Christopher Faulet30db3d72019-05-17 15:35:33 +02001668 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001669 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001670 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001671 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 +01001672 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001673 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001674
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001675 if (!b_data(&h1c->ibuf))
1676 h1_release_buf(h1c, &h1c->ibuf);
1677
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001678 if (!(h1c->flags & H1C_F_ST_READY)) {
1679 /* The H1 connection is not ready. Most of time, there is no CS
1680 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1681 * cases, it is only possible on the client side.
1682 */
1683 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1684
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001685 if (h1m->state <= H1_MSG_LAST_LF) {
1686 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1687 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1688 goto end;
1689 }
1690
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001691 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1692 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1693 BUG_ON(h1s->cs);
1694 if (!h1s_new_cs(h1s, buf)) {
1695 h1c->flags |= H1C_F_ST_ERROR;
1696 goto err;
1697 }
1698 }
1699 else {
1700 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1701 BUG_ON(h1s->cs == NULL);
1702 if (!h1s_upgrade_cs(h1s, buf)) {
1703 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001704 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001705 goto err;
1706 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001707 }
1708 }
1709
1710 /* Here h1s->cs is always defined */
Christopher Fauleta583af62020-09-24 15:35:37 +02001711 if (!(h1m->flags & H1_MF_CHNK) &&
1712 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) {
1713 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1714 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1715 }
1716 else {
1717 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1718 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1719 }
1720
Christopher Fauleta22782b2021-02-08 17:18:01 +01001721 /* Set EOI on conn-stream in DONE state iff:
1722 * - it is a response
1723 * - it is a request but no a protocol upgrade nor a CONNECT
1724 *
1725 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001726 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001727 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001728 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1729 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001730 h1s->cs->flags |= CS_FL_EOI;
1731
Christopher Fauletec4207c2021-04-08 18:34:30 +02001732 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001733 /* When Input data are pending for this message, notify upper layer that
1734 * the mux need more space in the HTX buffer to continue if :
1735 *
1736 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1737 * - Headers or trailers are pending to be copied.
1738 */
1739 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001740 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001741 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1742 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001743 else {
1744 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1745 if (h1s->flags & H1S_F_REOS) {
1746 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001747 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1748 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1749 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001750 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001751 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001752 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001753 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001754 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1755 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001756
Christopher Faulet10a86702021-04-07 14:18:11 +02001757 if (h1s->flags & H1S_F_TX_BLK) {
1758 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001759 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001760 TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001761 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001762 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001763 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001764
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001765 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001766 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001767 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001768
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001769 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001770 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001771 if (h1s->cs)
1772 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001773 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001774 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001775}
1776
Christopher Faulet129817b2018-09-20 16:14:40 +02001777/*
1778 * Process outgoing data. It parses data and transfer them from the channel buffer into
1779 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1780 * 0 if it couldn't proceed.
1781 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001782static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001783{
Christopher Faulet129817b2018-09-20 16:14:40 +02001784 struct h1s *h1s = h1c->h1s;
1785 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001786 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001787 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001788 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001789 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001790 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001791 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001792
Christopher Faulet94b2c762019-05-24 15:28:57 +02001793 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001794 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1795
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001796 if (htx_is_empty(chn_htx))
1797 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001798
Christopher Faulet10a86702021-04-07 14:18:11 +02001799 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001800 goto end;
1801
Christopher Faulet51dbc942018-09-13 09:05:15 +02001802 if (!h1_get_buf(h1c, &h1c->obuf)) {
1803 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001804 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 +02001805 goto end;
1806 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001807
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001808 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001809
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001810 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001811 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001812
Willy Tarreau3815b222018-12-11 19:50:43 +01001813 /* Perform some optimizations to reduce the number of buffer copies.
1814 * First, if the mux's buffer is empty and the htx area contains
1815 * exactly one data block of the same size as the requested count,
1816 * then it's possible to simply swap the caller's buffer with the
1817 * mux's output buffer and adjust offsets and length to match the
1818 * entire DATA HTX block in the middle. In this case we perform a
1819 * true zero-copy operation from end-to-end. This is the situation
1820 * that happens all the time with large files. Second, if this is not
1821 * possible, but the mux's output buffer is empty, we still have an
1822 * opportunity to avoid the copy to the intermediary buffer, by making
1823 * the intermediary buffer's area point to the output buffer's area.
1824 * In this case we want to skip the HTX header to make sure that copies
1825 * remain aligned and that this operation remains possible all the
1826 * time. This goes for headers, data blocks and any data extracted from
1827 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001828 */
1829 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001830 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001831 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001832 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001833 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001834 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001835 void *old_area;
1836
Christopher Faulet6b81df72019-10-01 22:08:43 +02001837 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 +01001838 if (h1m->state == H1_MSG_DATA && chn_htx->flags & HTX_FL_EOM) {
1839 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1840 last_data = 1;
1841 }
1842
Christopher Faulete5596bf2020-12-02 16:13:22 +01001843 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001844 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001845 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001846 h1c->obuf.data = count;
1847
1848 buf->area = old_area;
1849 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001850
Christopher Faulet6b81df72019-10-01 22:08:43 +02001851 chn_htx = (struct htx *)buf->area;
1852 htx_reset(chn_htx);
1853
Christopher Fauletadb22202018-12-12 10:32:09 +01001854 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001855 * size and eventually the last chunk. We have at least
1856 * the size of the struct htx to write the chunk
1857 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001858 */
1859 if (h1m->flags & H1_MF_CHNK) {
1860 h1_emit_chunk_size(&h1c->obuf, count);
1861 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001862 if (last_data) {
1863 /* Emit the last chunk too at the buffer's end */
1864 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1865 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001866 }
1867
Christopher Faulet6b81df72019-10-01 22:08:43 +02001868 if (h1m->state == H1_MSG_DATA)
1869 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001870 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001871 else
1872 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001873 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001874
Christopher Faulete5596bf2020-12-02 16:13:22 +01001875 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001876 if (last_data) {
1877 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001878 if (h1s->flags & H1S_F_RX_BLK) {
1879 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001880 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001881 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001882 }
1883
1884 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1885 H1_EV_TX_DATA, h1c->conn, h1s);
1886 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001887 goto out;
1888 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001889 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001890 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001891 else
1892 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001893
Christopher Fauletc2518a52019-06-25 21:41:02 +02001894 tmp.data = 0;
1895 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001896 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001897 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001898 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001899 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001900 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001901 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001902
Christopher Fauletb2e84162018-12-06 11:39:49 +01001903 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001904 if (type != HTX_BLK_DATA && vlen > count)
1905 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001906
Christopher Faulet94b2c762019-05-24 15:28:57 +02001907 if (type == HTX_BLK_UNUSED)
1908 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001909
Christopher Faulet94b2c762019-05-24 15:28:57 +02001910 switch (h1m->state) {
1911 case H1_MSG_RQBEFORE:
1912 if (type != HTX_BLK_REQ_SL)
1913 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001914 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 +02001915 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001916 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001917 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001918 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001919 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001920 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001921 if (sl->flags & HTX_SL_F_BODYLESS)
1922 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001923 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001924 if (h1s->meth == HTTP_METH_HEAD)
1925 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001926 if (h1s->flags & H1S_F_RX_BLK) {
1927 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001928 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001929 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Faulet089acd52020-09-21 10:57:52 +02001930 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001931 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001932
Christopher Faulet94b2c762019-05-24 15:28:57 +02001933 case H1_MSG_RPBEFORE:
1934 if (type != HTX_BLK_RES_SL)
1935 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001936 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 +02001937 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001938 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001939 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001940 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001941 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001942 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001943 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001944 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001945 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001946 else if (h1s->status == 204 || h1s->status == 304)
1947 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001948 h1m->state = H1_MSG_HDR_FIRST;
1949 break;
1950
Christopher Faulet94b2c762019-05-24 15:28:57 +02001951 case H1_MSG_HDR_FIRST:
1952 case H1_MSG_HDR_NAME:
1953 case H1_MSG_HDR_L2_LWS:
1954 if (type == HTX_BLK_EOH)
1955 goto last_lf;
1956 if (type != HTX_BLK_HDR)
1957 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001958
Christopher Faulet9768c262018-10-22 09:34:31 +02001959 h1m->state = H1_MSG_HDR_NAME;
1960 n = htx_get_blk_name(chn_htx, blk);
1961 v = htx_get_blk_value(chn_htx, blk);
1962
Christopher Faulet86d144c2019-08-14 16:32:25 +02001963 /* Skip all pseudo-headers */
1964 if (*(n.ptr) == ':')
1965 goto skip_hdr;
1966
Christopher Faulet91fcf212020-12-02 16:17:15 +01001967 if (isteq(n, ist("transfer-encoding"))) {
1968 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1969 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001970 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001971 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001972 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001973 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1974 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001975 /* Only skip C-L header with invalid value. */
1976 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001977 goto skip_hdr;
1978 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001979 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001980 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001981 if (!v.len)
1982 goto skip_hdr;
1983 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001984 else if (isteq(n, ist("upgrade"))) {
1985 h1_parse_upgrade_header(h1m, v);
1986 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001987 else if ((isteq(n, ist("sec-websocket-accept")) &&
1988 h1m->flags & H1_MF_RESP) ||
1989 (isteq(n, ist("sec-websocket-key")) &&
1990 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001991 ws_key_found = 1;
1992 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02001993 else if (isteq(n, ist("te"))) {
1994 /* "te" may only be sent with "trailers" if this value
1995 * is present, otherwise it must be deleted.
1996 */
1997 v = istist(v, ist("trailers"));
1998 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
1999 goto skip_hdr;
2000 v = ist("trailers");
2001 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002002
Christopher Faulet67d58092019-10-02 10:51:38 +02002003 /* Skip header if same name is used to add the server name */
2004 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2005 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2006 goto skip_hdr;
2007
Christopher Faulet98fbe952019-07-22 16:18:24 +02002008 /* Try to adjust the case of the header name */
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 Faulet9768c262018-10-22 09:34:31 +02002013 skip_hdr:
2014 h1m->state = H1_MSG_HDR_L2_LWS;
2015 break;
2016
Christopher Faulet94b2c762019-05-24 15:28:57 +02002017 case H1_MSG_LAST_LF:
2018 if (type != HTX_BLK_EOH)
2019 goto error;
2020 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002021 h1m->state = H1_MSG_LAST_LF;
2022 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002023 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002024 /* If the reply comes from haproxy while the request is
2025 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002026 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2027 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2028 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002029 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2030 /* T-E + C-L: force close */
2031 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2032 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2033 }
2034 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2035 /* T-E + HTTP/1.0: force close */
2036 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2037 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2038 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002039
2040 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002041 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002042 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002043 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002044 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002045 /* Try to adjust the case of the header name */
2046 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2047 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002048 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002049 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002050 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002051 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002052 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002053
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002054 if ((h1s->meth != HTTP_METH_CONNECT &&
2055 (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 +01002056 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002057 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002058 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002059 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2060 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002061 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002062 n = ist("transfer-encoding");
2063 v = ist("chunked");
2064 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2065 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002066 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002067 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002068 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002069 h1m->flags |= H1_MF_CHNK;
2070 }
2071
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002072 /* Now add the server name to a header (if requested) */
2073 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2074 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2075 struct server *srv = objt_server(h1c->conn->target);
2076
2077 if (srv) {
2078 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2079 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002080
2081 /* Try to adjust the case of the header name */
2082 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2083 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002084 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002085 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002086 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002087 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002088 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2089 }
2090
Amaury Denoyellec1938232020-12-11 17:53:03 +01002091 /* Add websocket handshake key if needed */
2092 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2093 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002094 if (!(h1m->flags & H1_MF_RESP)) {
2095 /* generate a random websocket key
2096 * stored in the session to
2097 * verify it on the response side
2098 */
2099 h1_generate_random_ws_input_key(h1s->ws_key);
2100
2101 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2102 ist(h1s->ws_key),
2103 &tmp)) {
2104 goto full;
2105 }
2106 }
2107 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002108 /* add the response header key */
2109 char key[29];
2110 h1_calculate_ws_output_key(h1s->ws_key, key);
2111 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2112 ist(key),
2113 &tmp)) {
2114 goto full;
2115 }
2116 }
2117 }
2118
Christopher Faulet6b81df72019-10-01 22:08:43 +02002119 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2120 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2121
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002122 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002123 if (!chunk_memcat(&tmp, "\r\n", 2))
2124 goto full;
2125 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002126 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002127 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002128 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002129 if (!chunk_memcat(&tmp, "\r\n", 2))
2130 goto full;
2131 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002132 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002133 else if ((h1m->flags & H1_MF_RESP) &&
2134 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002135 if (!chunk_memcat(&tmp, "\r\n", 2))
2136 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002137 h1m_init_res(&h1s->res);
2138 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002139 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002140 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002141 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002142 else {
2143 /* EOM flag is set and it is the last block */
2144 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002145 if (h1m->flags & H1_MF_CHNK) {
2146 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2147 goto full;
2148 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002149 else if (!chunk_memcat(&tmp, "\r\n", 2))
2150 goto full;
2151 goto done;
2152 }
2153 else if (!chunk_memcat(&tmp, "\r\n", 2))
2154 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002155 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002156 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002157 break;
2158
Christopher Faulet94b2c762019-05-24 15:28:57 +02002159 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002160 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002161 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002162 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2163 goto trailers;
2164
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002165 /* If the message is not chunked, never
2166 * add the last chunk. */
2167 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002168 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002169 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 +02002170 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002171 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002172 else if (type != HTX_BLK_DATA)
2173 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002174
2175 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 +02002176
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002177 /* It is the last block of this message. After this one,
2178 * only tunneled data may be forwarded. */
2179 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2180 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2181 last_data = 1;
2182 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002183
2184 if (vlen > count) {
2185 /* Get the maximum amount of data we can xferred */
2186 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002187 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002188 }
2189
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002190 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2191 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2192 goto skip_data;
2193 }
2194
Christopher Fauletd9233f02019-10-14 14:01:24 +02002195 chklen = 0;
2196 if (h1m->flags & H1_MF_CHNK) {
2197 chklen = b_room(&tmp);
2198 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2199 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2200 (chklen < 1048576) ? 5 : 8);
2201 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002202
2203 /* If it is the end of the chunked message (without EOT), reserve the
2204 * last chunk size */
2205 if (last_data)
2206 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002207 }
2208
2209 if (vlen + chklen > b_room(&tmp)) {
2210 /* too large for the buffer */
2211 if (chklen >= b_room(&tmp))
2212 goto full;
2213 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002214 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002215 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002216 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002217 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002218 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002219 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002220
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002221 /* Space already reserved, so it must succeed */
2222 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2223 goto error;
2224
Christopher Faulet6b81df72019-10-01 22:08:43 +02002225 if (h1m->state == H1_MSG_DATA)
2226 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002227 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002228 else
2229 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002230 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002231
2232 skip_data:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002233 if (last_data)
2234 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002235 break;
2236
Christopher Faulet94b2c762019-05-24 15:28:57 +02002237 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002238 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002239 goto error;
2240 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002241 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002242
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002243 /* If the message is not chunked, ignore
2244 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002245 if (!(h1m->flags & H1_MF_CHNK)) {
2246 if (type == HTX_BLK_EOT)
2247 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002248 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002249 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002250
Christopher Faulete5596bf2020-12-02 16:13:22 +01002251 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2252 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 +01002253 if (type == HTX_BLK_EOT)
2254 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002255 break;
2256 }
2257
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002258 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002259 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002260 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002261 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2262 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002263 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002264 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002265 else { // HTX_BLK_TLR
2266 n = htx_get_blk_name(chn_htx, blk);
2267 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002268
2269 /* Try to adjust the case of the header name */
2270 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2271 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002272 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002273 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002274 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002275 break;
2276
Christopher Faulet94b2c762019-05-24 15:28:57 +02002277 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002278 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2279 goto error; /* For now return an error */
2280
Christopher Faulet94b2c762019-05-24 15:28:57 +02002281 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002282 if (!(chn_htx->flags & HTX_FL_EOM)) {
2283 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2284 goto error; /* For now return an error */
2285 }
2286
Christopher Faulet94b2c762019-05-24 15:28:57 +02002287 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002288 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002289 h1s->flags |= H1S_F_TX_BLK;
2290 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002291 }
2292 else if ((h1m->flags & H1_MF_RESP) &&
2293 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2294 /* a successful reply to a CONNECT or a protocol switching is sent
2295 * to the client. Switch the response to tunnel mode.
2296 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002297 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002298 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 +01002299 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002300
Christopher Faulet10a86702021-04-07 14:18:11 +02002301 if (h1s->flags & H1S_F_RX_BLK) {
2302 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002303 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002304 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletcd67bff2019-06-14 16:54:15 +02002305 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002306
2307 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2308 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002309 break;
2310
Christopher Faulet9768c262018-10-22 09:34:31 +02002311 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002312 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002313 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002314 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002315 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002316 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002317 TRACE_ERROR("processing output error, set error on h1c/h1s",
2318 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 +02002319 break;
2320 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002321
2322 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002323 total += vlen;
2324 count -= vlen;
2325 if (sz == vlen)
2326 blk = htx_remove_blk(chn_htx, blk);
2327 else {
2328 htx_cut_data_blk(chn_htx, blk, vlen);
2329 break;
2330 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002331 }
2332
Christopher Faulet9768c262018-10-22 09:34:31 +02002333 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002334 /* when the output buffer is empty, tmp shares the same area so that we
2335 * only have to update pointers and lengths.
2336 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002337 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2338 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002339 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002340 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002341
Willy Tarreau3815b222018-12-11 19:50:43 +01002342 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002343 out:
2344 if (!buf_room_for_htx_data(&h1c->obuf)) {
2345 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002346 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002347 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002348 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002349 /* Both the request and the response reached the DONE state. So set EOI
2350 * flag on the conn-stream. Most of time, the flag will already be set,
2351 * except for protocol upgrades. Report an error if data remains blocked
2352 * in the output buffer.
2353 */
2354 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2355 if (!htx_is_empty(chn_htx)) {
2356 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002357 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 +01002358 }
2359 h1s->cs->flags |= CS_FL_EOI;
2360 }
2361
Christopher Faulet6b81df72019-10-01 22:08:43 +02002362 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002363 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002364
2365 full:
2366 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2367 h1c->flags |= H1C_F_OUT_FULL;
2368 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002369}
2370
Christopher Faulet51dbc942018-09-13 09:05:15 +02002371/*********************************************************/
2372/* functions below are I/O callbacks from the connection */
2373/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002374static void h1_wake_stream_for_recv(struct h1s *h1s)
2375{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002376 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002377 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002378 tasklet_wakeup(h1s->subs->tasklet);
2379 h1s->subs->events &= ~SUB_RETRY_RECV;
2380 if (!h1s->subs->events)
2381 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002382 }
2383}
2384static void h1_wake_stream_for_send(struct h1s *h1s)
2385{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002386 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002387 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002388 tasklet_wakeup(h1s->subs->tasklet);
2389 h1s->subs->events &= ~SUB_RETRY_SEND;
2390 if (!h1s->subs->events)
2391 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002392 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002393}
2394
Christopher Fauletad4daf62021-01-21 17:49:01 +01002395/* alerts the data layer following this sequence :
2396 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2397 * - if its subscribed to send, then it's woken up for send
2398 * - if it was subscribed to neither, its ->wake() callback is called
2399 */
2400static void h1_alert(struct h1s *h1s)
2401{
2402 if (h1s->subs) {
2403 h1_wake_stream_for_recv(h1s);
2404 h1_wake_stream_for_send(h1s);
2405 }
2406 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2407 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2408 h1s->cs->data_cb->wake(h1s->cs);
2409 }
2410}
2411
Christopher Fauletc18fc232020-10-06 17:41:36 +02002412/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2413 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2414 * retryable errors (allocation error or buffer full). On success, the error is
2415 * copied in the output buffer.
2416*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002417static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002418{
2419 int rc = http_get_status_idx(h1c->errcode);
2420 int ret = 0;
2421
2422 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2423
2424 /* Verify if the error is mapped on /dev/null or any empty file */
2425 /// XXX: do a function !
2426 if (h1c->px->replies[rc] &&
2427 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2428 h1c->px->replies[rc]->body.errmsg &&
2429 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2430 /* Empty error, so claim a success */
2431 ret = 1;
2432 goto out;
2433 }
2434
2435 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2436 h1c->flags |= H1C_F_ERR_PENDING;
2437 goto out;
2438 }
2439
2440 if (!h1_get_buf(h1c, &h1c->obuf)) {
2441 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2442 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2443 goto out;
2444 }
2445 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2446 if (unlikely(ret <= 0)) {
2447 if (!ret) {
2448 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2449 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2450 goto out;
2451 }
2452 else {
2453 /* we cannot report this error, so claim a success */
2454 ret = 1;
2455 }
2456 }
2457 h1c->flags &= ~H1C_F_ERR_PENDING;
2458 out:
2459 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2460 return ret;
2461}
2462
2463/* Try to send a 500 internal error. It relies on h1_send_error to send the
2464 * error. This function takes care of incrementing stats and tracked counters.
2465 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002466static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002467{
2468 struct session *sess = h1c->conn->owner;
2469 int ret = 1;
2470
2471 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002472 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002473 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2474 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002475 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002476 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002477
2478 h1c->errcode = 500;
2479 ret = h1_send_error(h1c);
2480 sess_log(sess);
2481 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002482}
2483
Christopher Fauletb3230f72021-09-21 18:38:20 +02002484/* Try to send an error because of a parsing error. By default a 400 bad request
2485 * error is returned. But the status code may be specified by setting
2486 * h1c->errcode. It relies on h1_send_error to send the error. This function
2487 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002488 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002489static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002490{
2491 struct session *sess = h1c->conn->owner;
2492 int ret = 1;
2493
2494 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2495 goto end;
2496
2497 session_inc_http_req_ctr(sess);
2498 session_inc_http_err_ctr(sess);
2499 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002500 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2501 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002502 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002503 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002504
Christopher Fauletb3230f72021-09-21 18:38:20 +02002505 if (!h1c->errcode)
2506 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002507 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002508 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2509 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002510
2511 end:
2512 return ret;
2513}
2514
Christopher Faulet2eed8002020-12-07 11:26:13 +01002515/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2516 * the error. This function takes care of incrementing stats and tracked
2517 * counters.
2518 */
2519static int h1_handle_not_impl_err(struct h1c *h1c)
2520{
2521 struct session *sess = h1c->conn->owner;
2522 int ret = 1;
2523
2524 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2525 goto end;
2526
2527 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002528 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002529 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2530 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002531 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002532 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002533
2534 h1c->errcode = 501;
2535 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002536 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2537 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002538
2539 end:
2540 return ret;
2541}
2542
Christopher Fauletc18fc232020-10-06 17:41:36 +02002543/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2544 * error. This function takes care of incrementing stats and tracked counters.
2545 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002546static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002547{
2548 struct session *sess = h1c->conn->owner;
2549 int ret = 1;
2550
2551 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2552 goto end;
2553
2554 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002555 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002556 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2557 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002558 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002559 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002560
2561 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002562 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2563 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002564 sess_log(sess);
2565 end:
2566 return ret;
2567}
2568
2569
Christopher Faulet51dbc942018-09-13 09:05:15 +02002570/*
2571 * Attempt to read data, and subscribe if none available
2572 */
2573static int h1_recv(struct h1c *h1c)
2574{
2575 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002576 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002577 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002578
Christopher Faulet6b81df72019-10-01 22:08:43 +02002579 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2580
2581 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2582 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002583 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002584 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002585
Christopher Fauletae635762020-09-21 11:47:16 +02002586 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2587 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002588 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002589 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002590
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002591 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2592 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002593 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002594 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002595 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002596
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002597 /*
2598 * If we only have a small amount of data, realign it,
2599 * it's probably cheaper than doing 2 recv() calls.
2600 */
2601 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002602 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002603
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002604 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002605 if (!h1c->h1s ||
2606 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2607 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002608 flags |= CO_RFL_READ_ONCE;
2609
Willy Tarreau45f2b892018-12-05 07:59:27 +01002610 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002611 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002612 if (h1c->flags & H1C_F_IN_FULL) {
2613 h1c->flags &= ~H1C_F_IN_FULL;
2614 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2615 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002616
2617 if (!b_data(&h1c->ibuf)) {
2618 /* try to pre-align the buffer like the rxbufs will be
2619 * to optimize memory copies.
2620 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002621 h1c->ibuf.head = sizeof(struct htx);
2622 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002623 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002624 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002625 if (max && !ret && h1_recv_allowed(h1c)) {
2626 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2627 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002628 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002629 else {
2630 h1_wake_stream_for_recv(h1c->h1s);
2631 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002632 }
2633
Christopher Faulet51dbc942018-09-13 09:05:15 +02002634 if (!b_data(&h1c->ibuf))
2635 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002636 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002637 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002638 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2639 }
2640
2641 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002642 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002643}
2644
2645
2646/*
2647 * Try to send data if possible
2648 */
2649static int h1_send(struct h1c *h1c)
2650{
2651 struct connection *conn = h1c->conn;
2652 unsigned int flags = 0;
2653 size_t ret;
2654 int sent = 0;
2655
Christopher Faulet6b81df72019-10-01 22:08:43 +02002656 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2657
2658 if (conn->flags & CO_FL_ERROR) {
2659 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002660 b_reset(&h1c->obuf);
2661 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002662 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002663
2664 if (!b_data(&h1c->obuf))
2665 goto end;
2666
Christopher Faulet46230362019-10-17 16:04:20 +02002667 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002668 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002669 if (h1c->flags & H1C_F_CO_STREAMER)
2670 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002671
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002672 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002673 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002674 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002675 if (h1c->flags & H1C_F_OUT_FULL) {
2676 h1c->flags &= ~H1C_F_OUT_FULL;
2677 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2678 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002679 b_del(&h1c->obuf, ret);
2680 sent = 1;
2681 }
2682
Christopher Faulet145aa472018-12-06 10:56:20 +01002683 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002684 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002685 /* error or output closed, nothing to send, clear the buffer to release it */
2686 b_reset(&h1c->obuf);
2687 }
2688
Christopher Faulet51dbc942018-09-13 09:05:15 +02002689 end:
Christopher Faulet10a86702021-04-07 14:18:11 +02002690 if (!(h1c->flags & H1C_F_OUT_FULL))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002691 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002692
Christopher Faulet51dbc942018-09-13 09:05:15 +02002693 /* We're done, no more to send */
2694 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002695 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002696 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002697 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002698 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002699 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002700 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002701 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002702 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2703 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002704 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002705 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002706
Christopher Faulet6b81df72019-10-01 22:08:43 +02002707 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002708 return sent;
2709}
2710
Christopher Faulet51dbc942018-09-13 09:05:15 +02002711/* callback called on any event by the connection handler.
2712 * It applies changes and returns zero, or < 0 if it wants immediate
2713 * destruction of the connection.
2714 */
2715static int h1_process(struct h1c * h1c)
2716{
2717 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002718 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002719
Christopher Faulet6b81df72019-10-01 22:08:43 +02002720 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2721
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002722 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002723 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002724 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2725 !(h1c->flags & (H1C_F_IN_SALLOC|H1C_F_ST_ERROR))) { /* No allocation failure on the stream rxbuf and no ERROR on the H1C */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002726 struct buffer *buf;
2727 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002728
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002729 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2730 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002731 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002732
2733 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002734 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002735 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2736 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002737 /* Try to match H2 preface before parsing the request headers. */
2738 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2739 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002740 if (h1c->flags & H1C_F_ST_ATTACHED) {
2741 /* Force the REOS here to be sure to release the CS.
2742 Here ATTACHED implies !READY, and h1s defined
2743 */
2744 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2745 h1s->flags |= H1S_F_REOS;
2746 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002747 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002748 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002749 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002750 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002751
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002752 /* Create the H1 stream if not already there */
2753 if (!h1s) {
2754 h1s = h1c_frt_stream_new(h1c);
2755 if (!h1s) {
2756 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002757 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002758 goto no_parsing;
2759 }
2760 }
2761
2762 if (h1s->sess->t_idle == -1)
2763 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2764
2765 /* Get the stream rxbuf */
2766 buf = h1_get_buf(h1c, &h1s->rxbuf);
2767 if (!buf) {
2768 h1c->flags |= H1C_F_IN_SALLOC;
2769 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2770 return 0;
2771 }
2772
2773 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002774 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002775 h1_release_buf(h1c, &h1s->rxbuf);
2776 h1_set_idle_expiration(h1c);
2777
2778 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002779 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002780 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002781 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002782 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002783 }
2784 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002785 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002786 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002787 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002788 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002789 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2790 h1_handle_not_impl_err(h1c);
2791 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002792 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002793 }
Christopher Fauletae635762020-09-21 11:47:16 +02002794 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002795 h1_send(h1c);
2796
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002797 if ((conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn) || (h1c->flags & H1C_F_ST_ERROR)) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002798 if (!(h1c->flags & H1C_F_ST_READY)) {
2799 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002800 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002801 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002802 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002803 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002804 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002805 }
2806
2807 /* Handle pending error, if any (only possible on frontend connection) */
2808 if (h1c->flags & H1C_F_ERR_PENDING) {
2809 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2810 if (h1_send_error(h1c))
2811 h1_send(h1c);
2812 }
Christopher Fauletae635762020-09-21 11:47:16 +02002813
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002814 /* If there is some pending outgoing data or error, just wait */
2815 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2816 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002817
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002818 /* Otherwise we can release the H1 connection */
2819 goto release;
2820 }
2821 else {
2822 /* Here there is still a H1 stream with a conn-stream.
2823 * Report the connection state at the stream level
2824 */
2825 if (conn_xprt_read0_pending(conn)) {
2826 h1s->flags |= H1S_F_REOS;
2827 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2828 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002829 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002830 h1s->cs->flags |= CS_FL_ERROR;
2831 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002832 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002833 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002834 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002835
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002836 if (!b_data(&h1c->ibuf))
2837 h1_release_buf(h1c, &h1c->ibuf);
2838
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002839 /* Check if a soft-stop is in progress.
2840 * Release idling front connection if this is the case.
2841 */
2842 if (!(h1c->flags & H1C_F_IS_BACK)) {
2843 if (unlikely(h1c->px->disabled)) {
2844 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
2845 goto release;
2846 }
2847 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002848
2849 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2850 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2851 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002852 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002853
Christopher Faulet47365272018-10-31 17:40:50 +01002854 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002855 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002856 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002857 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002858
2859 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002860 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002861 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002862 * attached CS first. Here, the H1C must not be READY */
2863 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2864
2865 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2866 h1s->cs->flags |= CS_FL_EOS;
2867 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2868 h1s->cs->flags |= CS_FL_ERROR;
2869 h1_alert(h1s);
2870 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2871 }
2872 else {
2873 h1_release(h1c);
2874 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2875 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002876 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002877}
2878
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002879struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002880{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002881 struct connection *conn;
2882 struct tasklet *tl = (struct tasklet *)t;
2883 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002884 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002885 int ret = 0;
2886
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002887 if (state & TASK_F_USR1) {
2888 /* the tasklet was idling on an idle connection, it might have
2889 * been stolen, let's be careful!
2890 */
2891 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2892 if (tl->context == NULL) {
2893 /* The connection has been taken over by another thread,
2894 * we're no longer responsible for it, so just free the
2895 * tasklet, and do nothing.
2896 */
2897 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2898 tasklet_free(tl);
2899 return NULL;
2900 }
2901 conn = h1c->conn;
2902 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002903
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002904 /* Remove the connection from the list, to be sure nobody attempts
2905 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002906 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002907 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2908 if (conn_in_list)
2909 conn_delete_from_tree(&conn->hash_node->node);
2910
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002911 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002912 } else {
2913 /* we're certain the connection was not in an idle list */
2914 conn = h1c->conn;
2915 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2916 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002917 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002918
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002919 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002920 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002921 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002922 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002923 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002924 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002925
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002926 /* If we were in an idle list, we want to add it back into it,
2927 * unless h1_process() returned -1, which mean it has destroyed
2928 * the connection (testing !ret is enough, if h1_process() wasn't
2929 * called then ret will be 0 anyway.
2930 */
Willy Tarreau74163142021-03-13 11:30:19 +01002931 if (ret < 0)
2932 t = NULL;
2933
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002934 if (!ret && conn_in_list) {
2935 struct server *srv = objt_server(conn->target);
2936
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002937 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002938 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002939 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002940 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002941 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002942 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002943 }
Willy Tarreau74163142021-03-13 11:30:19 +01002944 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002945}
2946
Christopher Faulet51dbc942018-09-13 09:05:15 +02002947static int h1_wake(struct connection *conn)
2948{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002949 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002950 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002951
Christopher Faulet6b81df72019-10-01 22:08:43 +02002952 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2953
Christopher Faulet539e0292018-11-19 10:40:09 +01002954 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002955 ret = h1_process(h1c);
2956 if (ret == 0) {
2957 struct h1s *h1s = h1c->h1s;
2958
Christopher Fauletad4daf62021-01-21 17:49:01 +01002959 if (h1c->flags & H1C_F_ST_ATTACHED)
2960 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002961 }
2962 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002963}
2964
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002965/* Connection timeout management. The principle is that if there's no receipt
2966 * nor sending for a certain amount of time, the connection is closed.
2967 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002968struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002969{
2970 struct h1c *h1c = context;
2971 int expired = tick_is_expired(t->expire, now_ms);
2972
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002973 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002974
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002975 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002976 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002977 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002978
2979 /* Somebody already stole the connection from us, so we should not
2980 * free it, we just have to free the task.
2981 */
2982 if (!t->context) {
2983 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002984 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002985 goto do_leave;
2986 }
2987
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002988 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002989 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002990 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002991 return t;
2992 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002993
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002994 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002995 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002996 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002997 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002998 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002999 t->expire = TICK_ETERNITY;
3000 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3001 return t;
3002 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003003
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003004 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003005 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3006 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003007 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003008 if (h1_handle_req_tout(h1c))
3009 h1_send(h1c);
3010 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3011 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003012 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003013 return t;
3014 }
3015 }
3016
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003017 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003018 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003019 * attached CS first. Here, the H1C must not be READY */
3020 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3021 h1_alert(h1c->h1s);
3022 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003023 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003024 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3025 return t;
3026 }
3027
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003028 /* We're about to destroy the connection, so make sure nobody attempts
3029 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003030 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003031 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003032 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003033
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003034 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003035 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003036
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003037 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003038 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003039
3040 if (!h1c) {
3041 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003042 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003043 return NULL;
3044 }
3045
3046 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003047 h1_release(h1c);
3048 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003049 return NULL;
3050}
3051
Christopher Faulet51dbc942018-09-13 09:05:15 +02003052/*******************************************/
3053/* functions below are used by the streams */
3054/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003055
Christopher Faulet51dbc942018-09-13 09:05:15 +02003056/*
3057 * Attach a new stream to a connection
3058 * (Used for outgoing connections)
3059 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003060static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003061{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003062 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003063 struct conn_stream *cs = NULL;
3064 struct h1s *h1s;
3065
Christopher Faulet6b81df72019-10-01 22:08:43 +02003066 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003067 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003068 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3069 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003070 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003071
Christopher Faulet236c93b2020-07-02 09:19:54 +02003072 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003073 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003074 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3075 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003076 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003077
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003078 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003079 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003080 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3081 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003082 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003083
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003084 /* the connection is not idle anymore, let's mark this */
3085 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003086 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003087
Christopher Faulet6b81df72019-10-01 22:08:43 +02003088 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003089 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003090 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003091 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003092 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 +02003093 return NULL;
3094}
3095
3096/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3097 * this mux, it's easy as we can only store a single conn_stream.
3098 */
3099static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3100{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003101 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003102 struct h1s *h1s = h1c->h1s;
3103
3104 if (h1s)
3105 return h1s->cs;
3106
3107 return NULL;
3108}
3109
Christopher Faulet73c12072019-04-08 11:23:22 +02003110static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003111{
Christopher Faulet73c12072019-04-08 11:23:22 +02003112 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003113
Christopher Faulet6b81df72019-10-01 22:08:43 +02003114 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003115 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003116 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003117}
3118
3119/*
3120 * Detach the stream from the connection and possibly release the connection.
3121 */
3122static void h1_detach(struct conn_stream *cs)
3123{
3124 struct h1s *h1s = cs->ctx;
3125 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003126 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003127 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003128
Christopher Faulet6b81df72019-10-01 22:08:43 +02003129 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3130
Christopher Faulet51dbc942018-09-13 09:05:15 +02003131 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003132 if (!h1s) {
3133 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003134 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003135 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003136
Olivier Houchardf502aca2018-12-14 19:42:40 +01003137 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003138 h1c = h1s->h1c;
3139 h1s->cs = NULL;
3140
Christopher Faulet42849b02020-10-05 11:35:17 +02003141 sess->accept_date = date;
3142 sess->tv_accept = now;
3143 sess->t_handshake = 0;
3144 sess->t_idle = -1;
3145
Olivier Houchard8a786902018-12-15 16:05:40 +01003146 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3147 h1s_destroy(h1s);
3148
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003149 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 +02003150 /* If there are any excess server data in the input buffer,
3151 * release it and close the connection ASAP (some data may
3152 * remain in the output buffer). This happens if a server sends
3153 * invalid responses. So in such case, we don't want to reuse
3154 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003155 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003156 if (b_data(&h1c->ibuf)) {
3157 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003158 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003159 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003160 goto release;
3161 }
Christopher Faulet03627242019-07-19 11:34:08 +02003162
Christopher Faulet08016ab2020-07-01 16:10:06 +02003163 if (h1c->conn->flags & CO_FL_PRIVATE) {
3164 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003165 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3166 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003167 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003168 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003169 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003170 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003171 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003172 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003173 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3174 goto end;
3175 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003176 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003177 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003178 if (h1c->conn->owner == sess)
3179 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003180
3181 /* mark that the tasklet may lose its context to another thread and
3182 * that the handler needs to check it under the idle conns lock.
3183 */
3184 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003185 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003186 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3187
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003188 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003189 /* The server doesn't want it, let's kill the connection right away */
3190 h1c->conn->mux->destroy(h1c);
3191 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3192 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003193 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003194 /* At this point, the connection has been added to the
3195 * server idle list, so another thread may already have
3196 * hijacked it, so we can't do anything with it.
3197 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003198 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003199 }
3200 }
3201
Christopher Fauletf1204b82019-07-19 14:51:06 +02003202 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003203 /* 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 +01003204 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003205 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003206 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003207 !h1c->conn->owner) {
3208 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003209 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003210 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003211 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003212 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003213 /* If we have a new request, process it immediately or
3214 * subscribe for reads waiting for new data
3215 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003216 if (unlikely(b_data(&h1c->ibuf))) {
3217 if (h1_process(h1c) == -1)
3218 goto end;
3219 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003220 else
3221 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3222 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003223 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003224 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003225 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003226 end:
3227 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003228}
3229
3230
3231static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3232{
3233 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003234 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003235
3236 if (!h1s)
3237 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003238 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003239
Christopher Faulet6b81df72019-10-01 22:08:43 +02003240 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3241
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003242 if (cs->flags & CS_FL_SHR)
3243 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003244 if (cs->flags & CS_FL_KILL_CONN) {
3245 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3246 goto do_shutr;
3247 }
3248 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3249 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003250 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003251 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003252
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003253 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3254 /* Here attached is implicit because there is CS */
3255 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3256 goto end;
3257 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003258 if (h1s->flags & H1S_F_WANT_KAL) {
3259 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003260 goto end;
3261 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003262
Christopher Faulet7f366362019-04-08 10:51:20 +02003263 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003264 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3265 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003266 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003267 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003268 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003269 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003270 end:
3271 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003272}
3273
3274static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3275{
3276 struct h1s *h1s = cs->ctx;
3277 struct h1c *h1c;
3278
3279 if (!h1s)
3280 return;
3281 h1c = h1s->h1c;
3282
Christopher Faulet6b81df72019-10-01 22:08:43 +02003283 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3284
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003285 if (cs->flags & CS_FL_SHW)
3286 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003287 if (cs->flags & CS_FL_KILL_CONN) {
3288 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003289 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003290 }
3291 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3292 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3293 goto do_shutw;
3294 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003295
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003296 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3297 /* Here attached is implicit because there is CS */
3298 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3299 goto end;
3300 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003301 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3302 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003303 goto end;
3304 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003305
Christopher Faulet7f366362019-04-08 10:51:20 +02003306 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003307 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003308 if (!b_data(&h1c->obuf))
3309 h1_shutw_conn(cs->conn, mode);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003310 end:
3311 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003312}
3313
Christopher Faulet666a0c42019-01-08 11:12:04 +01003314static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003315{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003316 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003317
Willy Tarreau62592ad2021-03-26 09:09:42 +01003318 if (conn->flags & CO_FL_SOCK_WR_SH)
3319 return;
3320
Christopher Faulet6b81df72019-10-01 22:08:43 +02003321 TRACE_ENTER(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003322 conn_xprt_shutw(conn);
3323 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003324 TRACE_LEAVE(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003325}
3326
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003327/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3328 * The <es> pointer is not allowed to differ from the one passed to the
3329 * subscribe() call. It always returns zero.
3330 */
3331static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003332{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003333 struct h1s *h1s = cs->ctx;
3334
3335 if (!h1s)
3336 return 0;
3337
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003338 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003339 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003340
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003341 es->events &= ~event_type;
3342 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003343 h1s->subs = NULL;
3344
3345 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003346 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003347
3348 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003349 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003350
Christopher Faulet51dbc942018-09-13 09:05:15 +02003351 return 0;
3352}
3353
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003354/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3355 * event subscriber <es> is not allowed to change from a previous call as long
3356 * as at least one event is still subscribed. The <event_type> must only be a
3357 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3358 * the conn_stream <cs> was already detached, in which case it will return -1.
3359 */
3360static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003361{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003362 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003363 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003364
3365 if (!h1s)
3366 return -1;
3367
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003368 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003369 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003370
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003371 es->events |= event_type;
3372 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003373
3374 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003375 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003376
3377
Christopher Faulet6b81df72019-10-01 22:08:43 +02003378 if (event_type & SUB_RETRY_SEND) {
3379 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003380 /*
3381 * If the conn_stream attempt to subscribe, and the
3382 * mux isn't subscribed to the connection, then it
3383 * probably means the connection wasn't established
3384 * yet, so we have to subscribe.
3385 */
3386 h1c = h1s->h1c;
3387 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3388 h1c->conn->xprt->subscribe(h1c->conn,
3389 h1c->conn->xprt_ctx,
3390 SUB_RETRY_SEND,
3391 &h1c->wait_event);
3392 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003393 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003394}
3395
Christopher Faulet564e39c2021-09-21 15:50:55 +02003396/* Called from the upper layer, to receive data.
3397 *
3398 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3399 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3400 * means the caller wants to flush input data (from the mux buffer and the
3401 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3402 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3403 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3404 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3405 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3406 * copy as much data as possible.
3407 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003408static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3409{
3410 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003411 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003412 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003413 size_t ret = 0;
3414
Willy Tarreau022e5e52020-09-10 09:33:15 +02003415 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003416
3417 /* Do nothing for now if not READY */
3418 if (!(h1c->flags & H1C_F_ST_READY)) {
3419 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3420 goto end;
3421 }
3422
Christopher Faulet539e0292018-11-19 10:40:09 +01003423 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003424 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003425 else
3426 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003427
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003428 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3429 h1c->flags |= H1C_F_WANT_SPLICE;
3430 TRACE_STATE("Block xprt rcv_buf to flush stream's buffer (want_splice)", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulete18777b2019-04-16 16:46:36 +02003431 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003432 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003433 if (((flags & CO_RFL_KEEP_RECV) || (h1m->state != H1_MSG_DONE)) && !(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau2c1f37d2020-03-04 17:50:02 +01003434 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003435 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003436
3437 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003438 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003439 return ret;
3440}
3441
3442
3443/* Called from the upper layer, to send data */
3444static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3445{
3446 struct h1s *h1s = cs->ctx;
3447 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003448 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003449
3450 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003451 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003452 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003453
Willy Tarreau022e5e52020-09-10 09:33:15 +02003454 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003455
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003456 /* If we're not connected yet, or we're waiting for a handshake, stop
3457 * now, as we don't want to remove everything from the channel buffer
3458 * before we're sure we can send it.
3459 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003460 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003461 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003462 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003463 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003464
Christopher Fauletdea24742021-01-22 15:12:30 +01003465 if (h1c->flags & H1C_F_ST_ERROR) {
3466 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003467 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 +01003468 return 0;
3469 }
3470
Christopher Faulet46230362019-10-17 16:04:20 +02003471 /* Inherit some flags from the upper layer */
3472 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3473 if (flags & CO_SFL_MSG_MORE)
3474 h1c->flags |= H1C_F_CO_MSG_MORE;
3475 if (flags & CO_SFL_STREAMER)
3476 h1c->flags |= H1C_F_CO_STREAMER;
3477
Christopher Fauletc31872f2019-06-04 22:09:36 +02003478 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003479 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003480
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003481 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003482 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003483 else
3484 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003485
3486 if ((count - ret) > 0)
3487 h1c->flags |= H1C_F_CO_MSG_MORE;
3488
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003489 if (!ret)
3490 break;
3491 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003492 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003493 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003494 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003495 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003496
3497 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003498 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003499 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 +01003500 }
3501
Christopher Faulet7a145d62020-08-05 11:31:16 +02003502 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003503 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003504 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003505}
3506
Willy Tarreaue5733232019-05-22 19:24:06 +02003507#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003508/* Send and get, using splicing */
3509static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3510{
3511 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003512 struct h1c *h1c = h1s->h1c;
3513 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003514 int ret = 0;
3515
Willy Tarreau022e5e52020-09-10 09:33:15 +02003516 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003517
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003518 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003519 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003520 TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulete18777b2019-04-16 16:46:36 +02003521 goto end;
3522 }
3523
Christopher Fauletcf307562021-07-26 10:49:39 +02003524 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003525 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003526 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003527 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003528 }
3529
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003530 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003531 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3532 goto end;
3533 }
3534
Christopher Faulet1be55f92018-10-02 15:59:23 +02003535 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
3536 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003537 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02003538 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02003539 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003540 if (!h1m->curr_len) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003541 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003542 TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003543 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003544 }
3545
Christopher Faulet1be55f92018-10-02 15:59:23 +02003546 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003547 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003548 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003549 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003550 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003551 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003552
Christopher Faulet94d35102021-04-09 11:58:49 +02003553 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003554 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003555 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003556 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3557 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3558 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3559 }
Christopher Faulet27182292020-07-03 15:08:49 +02003560 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003561
Willy Tarreau022e5e52020-09-10 09:33:15 +02003562 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003563 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003564}
3565
3566static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3567{
3568 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003569 int ret = 0;
3570
Willy Tarreau022e5e52020-09-10 09:33:15 +02003571 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003572
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003573 if (b_data(&h1s->h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003574 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
3575 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003576 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003577 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003578 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003579 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003580
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003581 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
3582
3583 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003584 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003585 return ret;
3586}
3587#endif
3588
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003589static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3590{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003591 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003592 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003593
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003594 switch (mux_ctl) {
3595 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003596 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003597 ret |= MUX_STATUS_READY;
3598 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003599 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003600 if (output)
3601 *((int *)output) = h1c->errcode;
3602 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3603 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3604 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3605 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003606 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003607 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003608 default:
3609 return -1;
3610 }
3611}
3612
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003613/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003614static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003615{
3616 struct h1c *h1c = conn->ctx;
3617 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003618 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003619
Christopher Fauletf376a312019-01-04 15:16:06 +01003620 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3621 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003622 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3623 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3624 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3625 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3626
3627 if (h1s) {
3628 char *method;
3629
3630 if (h1s->meth < HTTP_METH_OTHER)
3631 method = http_known_methods[h1s->meth].ptr;
3632 else
3633 method = "UNKNOWN";
3634 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3635 " .meth=%s status=%d",
3636 h1s, h1s->flags,
3637 h1m_state_str(h1s->req.state),
3638 h1m_state_str(h1s->res.state), method, h1s->status);
3639 if (h1s->cs)
3640 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3641 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003642
3643 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3644 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003645 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3646 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3647 h1s->subs->tasklet->calls,
3648 h1s->subs->tasklet->context);
3649 if (h1s->subs->tasklet->calls >= 1000000)
3650 ret = 1;
3651 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3652 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003653 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003654 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003655 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003656}
3657
3658
3659/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3660static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3661{
3662 struct h1_hdr_entry *entry;
3663
3664 /* Be sure there is a non-empty <to> */
3665 if (!strlen(to)) {
3666 memprintf(err, "expect <to>");
3667 return -1;
3668 }
3669
3670 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003671 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003672 memprintf(err, "<from> and <to> must not differ execpt the case");
3673 return -1;
3674 }
3675
3676 /* Be sure <from> does not already existsin the tree */
3677 if (ebis_lookup(&hdrs_map.map, from)) {
3678 memprintf(err, "duplicate entry '%s'", from);
3679 return -1;
3680 }
3681
3682 /* Create the entry and insert it in the tree */
3683 entry = malloc(sizeof(*entry));
3684 if (!entry) {
3685 memprintf(err, "out of memory");
3686 return -1;
3687 }
3688
3689 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003690 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003691 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003692 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003693 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003694 free(entry);
3695 memprintf(err, "out of memory");
3696 return -1;
3697 }
3698 ebis_insert(&hdrs_map.map, &entry->node);
3699 return 0;
3700}
3701
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003702/* Migrate the the connection to the current thread.
3703 * Return 0 if successful, non-zero otherwise.
3704 * Expected to be called with the old thread lock held.
3705 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003706static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003707{
3708 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003709 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003710
3711 if (fd_takeover(conn->handle.fd, conn) != 0)
3712 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003713
3714 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3715 /* We failed to takeover the xprt, even if the connection may
3716 * still be valid, flag it as error'd, as we have already
3717 * taken over the fd, and wake the tasklet, so that it will
3718 * destroy it.
3719 */
3720 conn->flags |= CO_FL_ERROR;
3721 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3722 return -1;
3723 }
3724
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003725 if (h1c->wait_event.events)
3726 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3727 h1c->wait_event.events, &h1c->wait_event);
3728 /* To let the tasklet know it should free itself, and do nothing else,
3729 * set its context to NULL.
3730 */
3731 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003732 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003733
3734 task = h1c->task;
3735 if (task) {
3736 task->context = NULL;
3737 h1c->task = NULL;
3738 __ha_barrier_store();
3739 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003740
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003741 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003742 if (!h1c->task) {
3743 h1_release(h1c);
3744 return -1;
3745 }
3746 h1c->task->process = h1_timeout_task;
3747 h1c->task->context = h1c;
3748 }
3749 h1c->wait_event.tasklet = tasklet_new();
3750 if (!h1c->wait_event.tasklet) {
3751 h1_release(h1c);
3752 return -1;
3753 }
3754 h1c->wait_event.tasklet->process = h1_io_cb;
3755 h1c->wait_event.tasklet->context = h1c;
3756 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3757 SUB_RETRY_RECV, &h1c->wait_event);
3758
3759 return 0;
3760}
3761
3762
Christopher Faulet98fbe952019-07-22 16:18:24 +02003763static void h1_hdeaders_case_adjust_deinit()
3764{
3765 struct ebpt_node *node, *next;
3766 struct h1_hdr_entry *entry;
3767
3768 node = ebpt_first(&hdrs_map.map);
3769 while (node) {
3770 next = ebpt_next(node);
3771 ebpt_delete(node);
3772 entry = container_of(node, struct h1_hdr_entry, node);
3773 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003774 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003775 free(entry);
3776 node = next;
3777 }
3778 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003779}
3780
Christopher Faulet98fbe952019-07-22 16:18:24 +02003781static int cfg_h1_headers_case_adjust_postparser()
3782{
3783 FILE *file = NULL;
3784 char *c, *key_beg, *key_end, *value_beg, *value_end;
3785 char *err;
3786 int rc, line = 0, err_code = 0;
3787
3788 if (!hdrs_map.name)
3789 goto end;
3790
3791 file = fopen(hdrs_map.name, "r");
3792 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003793 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003794 hdrs_map.name);
3795 err_code |= ERR_ALERT | ERR_FATAL;
3796 goto end;
3797 }
3798
3799 /* now parse all lines. The file may contain only two header name per
3800 * line, separated by spaces. All heading and trailing spaces will be
3801 * ignored. Lines starting with a # are ignored.
3802 */
3803 while (fgets(trash.area, trash.size, file) != NULL) {
3804 line++;
3805 c = trash.area;
3806
3807 /* strip leading spaces and tabs */
3808 while (*c == ' ' || *c == '\t')
3809 c++;
3810
3811 /* ignore emptu lines, or lines beginning with a dash */
3812 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3813 continue;
3814
3815 /* look for the end of the key */
3816 key_beg = c;
3817 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3818 c++;
3819 key_end = c;
3820
3821 /* strip middle spaces and tabs */
3822 while (*c == ' ' || *c == '\t')
3823 c++;
3824
3825 /* look for the end of the value, it is the end of the line */
3826 value_beg = c;
3827 while (*c && *c != '\n' && *c != '\r')
3828 c++;
3829 value_end = c;
3830
3831 /* trim possibly trailing spaces and tabs */
3832 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3833 value_end--;
3834
3835 /* set final \0 and check entries */
3836 *key_end = '\0';
3837 *value_end = '\0';
3838
3839 err = NULL;
3840 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3841 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003842 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003843 hdrs_map.name, err, line);
3844 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003845 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003846 goto end;
3847 }
3848 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003849 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003850 hdrs_map.name, err, line);
3851 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003852 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003853 }
3854 }
3855
3856 end:
3857 if (file)
3858 fclose(file);
3859 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3860 return err_code;
3861}
3862
3863
3864/* config parser for global "h1-outgoing-header-case-adjust" */
3865static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003866 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003867 char **err)
3868{
3869 if (too_many_args(2, args, err, NULL))
3870 return -1;
3871 if (!*(args[1]) || !*(args[2])) {
3872 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3873 return -1;
3874 }
3875 return add_hdr_case_adjust(args[1], args[2], err);
3876}
3877
3878/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3879static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003880 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003881 char **err)
3882{
3883 if (too_many_args(1, args, err, NULL))
3884 return -1;
3885 if (!*(args[1])) {
3886 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3887 return -1;
3888 }
3889 free(hdrs_map.name);
3890 hdrs_map.name = strdup(args[1]);
3891 return 0;
3892}
3893
3894
3895/* config keyword parsers */
3896static struct cfg_kw_list cfg_kws = {{ }, {
3897 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3898 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3899 { 0, NULL, NULL },
3900 }
3901};
3902
3903INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3904REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3905
3906
Christopher Faulet51dbc942018-09-13 09:05:15 +02003907/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003908/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003909/****************************************/
3910
3911/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003912static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003913 .init = h1_init,
3914 .wake = h1_wake,
3915 .attach = h1_attach,
3916 .get_first_cs = h1_get_first_cs,
3917 .detach = h1_detach,
3918 .destroy = h1_destroy,
3919 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003920 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003921 .rcv_buf = h1_rcv_buf,
3922 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003923#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003924 .rcv_pipe = h1_rcv_pipe,
3925 .snd_pipe = h1_snd_pipe,
3926#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003927 .subscribe = h1_subscribe,
3928 .unsubscribe = h1_unsubscribe,
3929 .shutr = h1_shutr,
3930 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003931 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003932 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003933 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003934 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003935 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003936};
3937
Christopher Faulet3f612f72021-02-05 16:44:21 +01003938static const struct mux_ops mux_h1_ops = {
3939 .init = h1_init,
3940 .wake = h1_wake,
3941 .attach = h1_attach,
3942 .get_first_cs = h1_get_first_cs,
3943 .detach = h1_detach,
3944 .destroy = h1_destroy,
3945 .avail_streams = h1_avail_streams,
3946 .used_streams = h1_used_streams,
3947 .rcv_buf = h1_rcv_buf,
3948 .snd_buf = h1_snd_buf,
3949#if defined(USE_LINUX_SPLICE)
3950 .rcv_pipe = h1_rcv_pipe,
3951 .snd_pipe = h1_snd_pipe,
3952#endif
3953 .subscribe = h1_subscribe,
3954 .unsubscribe = h1_unsubscribe,
3955 .shutr = h1_shutr,
3956 .shutw = h1_shutw,
3957 .show_fd = h1_show_fd,
3958 .ctl = h1_ctl,
3959 .takeover = h1_takeover,
3960 .flags = MX_FL_HTX|MX_FL_NO_UPG,
3961 .name = "H1",
3962};
Christopher Faulet51dbc942018-09-13 09:05:15 +02003963
Christopher Faulet3f612f72021-02-05 16:44:21 +01003964/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
3965static struct mux_proto_list mux_proto_h1 =
3966 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
3967static struct mux_proto_list mux_proto_http =
3968 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02003969
Christopher Faulet3f612f72021-02-05 16:44:21 +01003970INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
3971INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01003972
Christopher Faulet51dbc942018-09-13 09:05:15 +02003973/*
3974 * Local variables:
3975 * c-indent-level: 8
3976 * c-basic-offset: 8
3977 * End:
3978 */