blob: 1324c20a1bbb4ab81b05e445706cc18b68c95f2b [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 Fauletbde7e052021-11-15 14:51:37 +010056#define H1C_F_ST_SILENT_SHUT 0x00004000 /* silent (or dirty) shutdown must be performed (implied ST_SHUTDOWN) */
Christopher Fauletdb451fb2021-10-27 15:36:38 +020057/* 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020058
Christopher Fauletb385b502021-01-13 18:47:57 +010059#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
60#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
61#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
62#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
63#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
64#define H1C_F_CO_STREAMER 0x00200000 /* set if CO_SFL_STREAMER must be set when calling xprt->snd_buf() */
Christopher Faulet129817b2018-09-20 16:14:40 +020065
Christopher Faulet10a86702021-04-07 14:18:11 +020066/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010067#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020068
Christopher Faulet51dbc942018-09-13 09:05:15 +020069/*
70 * H1 Stream flags (32 bits)
71 */
Christopher Faulet129817b2018-09-20 16:14:40 +020072#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020073
74#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
75#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet58f21da2021-09-20 07:47:27 +020076#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
77
Willy Tarreauc493c9c2019-06-03 14:18:22 +020078#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020079#define H1S_F_WANT_KAL 0x00000010
80#define H1S_F_WANT_TUN 0x00000020
81#define H1S_F_WANT_CLO 0x00000040
82#define H1S_F_WANT_MSK 0x00000070
83#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010084#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020085
Ilya Shipitsinacf84592021-02-06 22:29:08 +050086/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010087#define H1S_F_NOT_IMPL_ERROR 0x00000400 /* Set when a feature is not implemented during the message parsing */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020088#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
89#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
90#define H1S_F_ERROR 0x00001800 /* stream error mask */
91
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020092#define H1S_F_HAVE_SRV_NAME 0x00002000 /* Set during output process if the server name header was added to the request */
Christopher Fauletada34b62019-05-24 16:36:43 +020093#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020094
95/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020096struct h1c {
97 struct connection *conn;
98 struct proxy *px;
99 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +0200100 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200101 struct buffer ibuf; /* Input buffer to store data before parsing */
102 struct buffer obuf; /* Output buffer to store data after reformatting */
103
104 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
105 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
106
107 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100108 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200109 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
110 int timeout; /* client/server timeout duration */
111 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112};
113
114/* H1 stream descriptor */
115struct h1s {
116 struct h1c *h1c;
117 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100118 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200119
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100120 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200121
Olivier Houchardf502aca2018-12-14 19:42:40 +0100122 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200123 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200124 struct h1m req;
125 struct h1m res;
126
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500127 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200128 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100129
130 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200131};
132
Christopher Faulet98fbe952019-07-22 16:18:24 +0200133/* Map of headers used to convert outgoing headers */
134struct h1_hdrs_map {
135 char *name;
136 struct eb_root map;
137};
138
139/* An entry in a headers map */
140struct h1_hdr_entry {
141 struct ist name;
142 struct ebpt_node node;
143};
144
145/* Declare the headers map */
146static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
147
148
Christopher Faulet6b81df72019-10-01 22:08:43 +0200149/* trace source and events */
150static void h1_trace(enum trace_level level, uint64_t mask,
151 const struct trace_source *src,
152 const struct ist where, const struct ist func,
153 const void *a1, const void *a2, const void *a3, const void *a4);
154
155/* The event representation is split like this :
156 * h1c - internal H1 connection
157 * h1s - internal H1 stream
158 * strm - application layer
159 * rx - data receipt
160 * tx - data transmission
161 *
162 */
163static const struct trace_event h1_trace_events[] = {
164#define H1_EV_H1C_NEW (1ULL << 0)
165 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
166#define H1_EV_H1C_RECV (1ULL << 1)
167 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
168#define H1_EV_H1C_SEND (1ULL << 2)
169 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
170#define H1_EV_H1C_BLK (1ULL << 3)
171 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
172#define H1_EV_H1C_WAKE (1ULL << 4)
173 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
174#define H1_EV_H1C_END (1ULL << 5)
175 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
176#define H1_EV_H1C_ERR (1ULL << 6)
177 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
178
179#define H1_EV_RX_DATA (1ULL << 7)
180 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
181#define H1_EV_RX_EOI (1ULL << 8)
182 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
183#define H1_EV_RX_HDRS (1ULL << 9)
184 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
185#define H1_EV_RX_BODY (1ULL << 10)
186 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
187#define H1_EV_RX_TLRS (1ULL << 11)
188 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
189
190#define H1_EV_TX_DATA (1ULL << 12)
191 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
192#define H1_EV_TX_EOI (1ULL << 13)
193 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
194#define H1_EV_TX_HDRS (1ULL << 14)
195 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
196#define H1_EV_TX_BODY (1ULL << 15)
197 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
198#define H1_EV_TX_TLRS (1ULL << 16)
199 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
200
201#define H1_EV_H1S_NEW (1ULL << 17)
202 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
203#define H1_EV_H1S_BLK (1ULL << 18)
204 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
205#define H1_EV_H1S_END (1ULL << 19)
206 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
207#define H1_EV_H1S_ERR (1ULL << 20)
208 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
209
210#define H1_EV_STRM_NEW (1ULL << 21)
211 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
212#define H1_EV_STRM_RECV (1ULL << 22)
213 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
214#define H1_EV_STRM_SEND (1ULL << 23)
215 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
216#define H1_EV_STRM_WAKE (1ULL << 24)
217 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
218#define H1_EV_STRM_SHUT (1ULL << 25)
219 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
220#define H1_EV_STRM_END (1ULL << 26)
221 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
222#define H1_EV_STRM_ERR (1ULL << 27)
223 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
224
225 { }
226};
227
228static const struct name_desc h1_trace_lockon_args[4] = {
229 /* arg1 */ { /* already used by the connection */ },
230 /* arg2 */ { .name="h1s", .desc="H1 stream" },
231 /* arg3 */ { },
232 /* arg4 */ { }
233};
234
235static const struct name_desc h1_trace_decoding[] = {
236#define H1_VERB_CLEAN 1
237 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
238#define H1_VERB_MINIMAL 2
239 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
240#define H1_VERB_SIMPLE 3
241 { .name="simple", .desc="add request/response status line or htx info when available" },
242#define H1_VERB_ADVANCED 4
243 { .name="advanced", .desc="add header fields or frame decoding when available" },
244#define H1_VERB_COMPLETE 5
245 { .name="complete", .desc="add full data dump when available" },
246 { /* end */ }
247};
248
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200249static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200250 .name = IST("h1"),
251 .desc = "HTTP/1 multiplexer",
252 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
253 .default_cb = h1_trace,
254 .known_events = h1_trace_events,
255 .lockon_args = h1_trace_lockon_args,
256 .decoding = h1_trace_decoding,
257 .report_events = ~0, // report everything by default
258};
259
260#define TRACE_SOURCE &trace_h1
261INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
262
Christopher Faulet51dbc942018-09-13 09:05:15 +0200263/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100264DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
265DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200266
Christopher Faulet51dbc942018-09-13 09:05:15 +0200267static int h1_recv(struct h1c *h1c);
268static int h1_send(struct h1c *h1c);
269static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100270/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100271struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
272struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauletdb451fb2021-10-27 15:36:38 +0200273static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200274static void h1_wake_stream_for_recv(struct h1s *h1s);
275static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200276
Christopher Faulet6b81df72019-10-01 22:08:43 +0200277/* the H1 traces always expect that arg1, if non-null, is of type connection
278 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
279 * that arg3, if non-null, is a htx for rx/tx headers.
280 */
281static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
282 const struct ist where, const struct ist func,
283 const void *a1, const void *a2, const void *a3, const void *a4)
284{
285 const struct connection *conn = a1;
286 const struct h1c *h1c = conn ? conn->ctx : NULL;
287 const struct h1s *h1s = a2;
288 const struct htx *htx = a3;
289 const size_t *val = a4;
290
291 if (!h1c)
292 h1c = (h1s ? h1s->h1c : NULL);
293
294 if (!h1c || src->verbosity < H1_VERB_CLEAN)
295 return;
296
297 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200298 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200299
300 /* Display request and response states if h1s is defined */
Christopher Faulet1a62dc32021-11-26 17:31:35 +0100301 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200302 chunk_appendf(&trace_buf, " [%s, %s]",
303 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
304
Christopher Faulet1a62dc32021-11-26 17:31:35 +0100305 if (src->verbosity > H1_VERB_SIMPLE) {
306 chunk_appendf(&trace_buf, " - req=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
307 h1s->req.flags, (unsigned long)h1s->req.curr_len, (unsigned long)h1s->req.body_len);
308 chunk_appendf(&trace_buf, " res=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
309 h1s->res.flags, (unsigned long)h1s->res.curr_len, (unsigned long)h1s->res.body_len);
310 }
311
312 }
313
Christopher Faulet6b81df72019-10-01 22:08:43 +0200314 if (src->verbosity == H1_VERB_CLEAN)
315 return;
316
317 /* Display the value to the 4th argument (level > STATE) */
318 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100319 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200320
321 /* Display status-line if possible (verbosity > MINIMAL) */
322 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
323 const struct htx_blk *blk = htx_get_head_blk(htx);
324 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
325 enum htx_blk_type type = htx_get_blk_type(blk);
326
327 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
328 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
329 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
330 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
331 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
332 }
333
334 /* Display h1c info and, if defined, h1s info (pointer + flags) */
335 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
Christopher Fauletea62e182021-11-10 10:30:15 +0100336 if (h1c->conn)
337 chunk_appendf(&trace_buf, " conn=%p(0x%08x)", h1c->conn, h1c->conn->flags);
338 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200339 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
Christopher Fauletea62e182021-11-10 10:30:15 +0100340 if (h1s->cs)
341 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", h1s->cs, h1s->cs->flags);
342 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200343
344 if (src->verbosity == H1_VERB_MINIMAL)
345 return;
346
347 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
348 if (src->level > TRACE_LEVEL_USER) {
349 if (src->verbosity == H1_VERB_COMPLETE ||
350 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
351 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
352 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
353 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
354 if (src->verbosity == H1_VERB_COMPLETE ||
355 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
356 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
357 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
358 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
359 }
360
361 /* Display htx info if defined (level > USER) */
362 if (src->level > TRACE_LEVEL_USER && htx) {
363 int full = 0;
364
365 /* Full htx info (level > STATE && verbosity > SIMPLE) */
366 if (src->level > TRACE_LEVEL_STATE) {
367 if (src->verbosity == H1_VERB_COMPLETE)
368 full = 1;
369 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
370 full = 1;
371 }
372
373 chunk_memcat(&trace_buf, "\n\t", 2);
374 htx_dump(&trace_buf, htx, full);
375 }
376}
377
378
Christopher Faulet51dbc942018-09-13 09:05:15 +0200379/*****************************************************/
380/* functions below are for dynamic buffer management */
381/*****************************************************/
382/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100383 * Indicates whether or not we may receive data. The rules are the following :
384 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200385 * must not attempt to receive
386 * - if we are waiting for the connection establishment, we must not attempt
387 * to receive
388 * - if an error was detected on the stream we must not attempt to receive
389 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100390 * - if the input buffer failed to be allocated or is full , we must not try
391 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200392 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200393 * - otherwise must may not attempt to receive
394 */
395static inline int h1_recv_allowed(const struct h1c *h1c)
396{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100397 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100398 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 +0200399 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200400 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200401
Willy Tarreau2febb842020-07-31 09:15:43 +0200402 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
403 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 +0100404 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200405 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100406
Christopher Faulet119ac872020-09-30 17:33:22 +0200407 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
408 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
409 return 0;
410 }
411
Christopher Fauletd17ad822020-09-24 15:14:29 +0200412 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200413 return 1;
414
Christopher Faulet6b81df72019-10-01 22:08:43 +0200415 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 +0200416 return 0;
417}
418
419/*
420 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
421 * flags are used to figure what buffer was requested. It returns 1 if the
422 * allocation succeeds, in which case the connection is woken up, or 0 if it's
423 * impossible to wake up and we prefer to be woken up later.
424 */
425static int h1_buf_available(void *target)
426{
427 struct h1c *h1c = target;
428
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100429 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200430 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 +0200431 h1c->flags &= ~H1C_F_IN_ALLOC;
432 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200433 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200434 return 1;
435 }
436
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100437 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200438 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 +0200439 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200440 if (h1c->h1s)
441 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200442 return 1;
443 }
444
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100445 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200446 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
447 h1c->flags &= ~H1C_F_IN_SALLOC;
448 tasklet_wakeup(h1c->wait_event.tasklet);
449 return 1;
450 }
451
Christopher Faulet51dbc942018-09-13 09:05:15 +0200452 return 0;
453}
454
455/*
456 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
457 */
458static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
459{
460 struct buffer *buf = NULL;
461
Willy Tarreau2b718102021-04-21 07:32:39 +0200462 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100463 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200464 h1c->buf_wait.target = h1c;
465 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200466 LIST_APPEND(&ti->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200467 }
468 return buf;
469}
470
471/*
472 * Release a buffer, if any, and try to wake up entities waiting in the buffer
473 * wait queue.
474 */
475static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
476{
477 if (bptr->size) {
478 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100479 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200480 }
481}
482
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100483/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100484 * 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 +0100485 * not. This flag is only set when no H1S is attached and when the previous
486 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100487 */
488static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200489{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100490 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200491
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100492 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200493}
494
Willy Tarreau00f18a32019-01-26 12:19:01 +0100495/* returns the number of streams still available on a connection */
496static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100497{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100498 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100499}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200500
Christopher Faulet7a145d62020-08-05 11:31:16 +0200501/* Refresh the h1c task timeout if necessary */
502static void h1_refresh_timeout(struct h1c *h1c)
503{
504 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100505 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200506 /* half-closed or dead connections : switch to clientfin/serverfin
507 * timeouts so that we don't hang too long on clients that have
508 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200509 */
510 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200511 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
512 }
513 else if (b_data(&h1c->obuf)) {
514 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200515 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200516 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
517 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100518 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
519 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200520 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100521 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 +0200522 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200523 else {
524 /* alive back connections of front connections with a conn-stream attached */
525 h1c->task->expire = TICK_ETERNITY;
526 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
527 }
528
Christopher Fauletdbe57792020-10-05 17:50:58 +0200529 /* Finally set the idle expiration date if shorter */
530 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200531 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
532 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200533 }
534}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200535
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200536static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200537{
538 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
539 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
540 h1c->idle_exp = TICK_ETERNITY;
541 return;
542 }
543
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100544 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200545 if (!tick_isset(h1c->idle_exp)) {
546 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
547 !b_data(&h1c->ibuf) && /* No input data */
548 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
549 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
550 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
551 }
552 else {
553 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
554 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
555 }
556 }
557 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100558 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200559 if (!tick_isset(h1c->idle_exp)) {
560 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
561 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
562 }
563 }
564 else { // CS_ATTACHED or SHUTDOWN
565 h1c->idle_exp = TICK_ETERNITY;
566 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
567 }
568}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200569/*****************************************************************/
570/* functions below are dedicated to the mux setup and management */
571/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200572
573/* returns non-zero if there are input data pending for stream h1s. */
574static inline size_t h1s_data_pending(const struct h1s *h1s)
575{
576 const struct h1m *h1m;
577
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200578 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100579 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200580}
581
Christopher Faulet16df1782020-12-04 16:47:41 +0100582/* Creates a new conn-stream and the associate stream. <input> is used as input
583 * buffer for the stream. On success, it is transferred to the stream and the
584 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
585 * mux must still take care of it. However, there is nothing special to do
586 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
587 * b_free() on it is always safe. This function returns the conn-stream on
588 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200589static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100590{
591 struct conn_stream *cs;
592
Christopher Faulet6b81df72019-10-01 22:08:43 +0200593 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200594 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200595 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100596 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 +0100597 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200598 }
Christopher Faulet47365272018-10-31 17:40:50 +0100599 h1s->cs = cs;
600 cs->ctx = h1s;
601
602 if (h1s->flags & H1S_F_NOT_FIRST)
603 cs->flags |= CS_FL_NOT_FIRST;
604
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +0200605 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
606 cs->flags |= CS_FL_WEBSOCKET;
607
Christopher Faulet26256f82020-09-14 11:40:13 +0200608 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200609 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 +0100610 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200611 }
612
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100613 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 +0200614 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100615 return cs;
616
617 err:
618 cs_free(cs);
619 h1s->cs = NULL;
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 Faulet47365272018-10-31 17:40:50 +0100621 return NULL;
622}
623
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100624static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
625{
626 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
627
628 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100629 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 +0100630 goto err;
631 }
632
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100633 h1s->h1c->flags |= H1C_F_ST_READY;
634 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
635 return h1s->cs;
636
637 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100638 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100639 return NULL;
640}
641
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200642static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200643{
644 struct h1s *h1s;
645
Christopher Faulet6b81df72019-10-01 22:08:43 +0200646 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
647
Christopher Faulet51dbc942018-09-13 09:05:15 +0200648 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100649 if (!h1s) {
650 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 +0100651 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100652 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200653 h1s->h1c = h1c;
654 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200655 h1s->sess = NULL;
656 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100657 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100658 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200659 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100660 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200661
662 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100663 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200664
Christopher Faulet129817b2018-09-20 16:14:40 +0200665 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100666 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200667
668 h1s->status = 0;
669 h1s->meth = HTTP_METH_OTHER;
670
Christopher Faulet47365272018-10-31 17:40:50 +0100671 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
672 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100673 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100674
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200675 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
676 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200677
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200678 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100679 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200680 return NULL;
681}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100682
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200683static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
684{
685 struct session *sess = h1c->conn->owner;
686 struct h1s *h1s;
687
688 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
689
690 h1s = h1s_new(h1c);
691 if (!h1s)
692 goto fail;
693
694 h1s->sess = sess;
695
696 if (h1c->px->options2 & PR_O2_REQBUG_OK)
697 h1s->req.err_pos = -1;
698
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200699 h1c->idle_exp = TICK_ETERNITY;
700 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200701 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200702 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100703
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200704 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100705 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200706 return NULL;
707}
708
709static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
710{
711 struct h1s *h1s;
712
713 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
714
715 h1s = h1s_new(h1c);
716 if (!h1s)
717 goto fail;
718
Christopher Faulet10a86702021-04-07 14:18:11 +0200719 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200720 h1s->cs = cs;
721 h1s->sess = sess;
722 cs->ctx = h1s;
723
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100724 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200725
726 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
727 h1s->res.err_pos = -1;
728
729 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
730 return h1s;
731
732 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100733 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100734 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200735}
736
737static void h1s_destroy(struct h1s *h1s)
738{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200739 if (h1s) {
740 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200741
Christopher Faulet6b81df72019-10-01 22:08:43 +0200742 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200743 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200744
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100745 if (h1s->subs)
746 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200747
Christopher Fauletd17ad822020-09-24 15:14:29 +0200748 h1_release_buf(h1c, &h1s->rxbuf);
749
Christopher Faulet10a86702021-04-07 14:18:11 +0200750 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100751 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200752 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
753 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200754 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100755 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100756 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 +0200757 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100758
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100759 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100760 !(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 +0100761 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100762 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100763 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100764 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
765 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200766 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100767 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100768 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200769 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200770 pool_free(pool_head_h1s, h1s);
771 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200772}
773
774/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200775 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500776 * to the existing conn_stream (for outgoing connections or for incoming ones
777 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200778 * establishment). <input> is always used as Input buffer and may contain
779 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
780 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200781 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200782static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
783 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200784{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200785 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100786 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200787 void *conn_ctx = conn->ctx;
788
789 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200790
791 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100792 if (!h1c) {
793 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200794 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100795 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200796 h1c->conn = conn;
797 h1c->px = proxy;
798
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100799 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200800 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200801 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200802 h1c->obuf = BUF_NULL;
803 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200804 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200805
Willy Tarreau90f366b2021-02-20 11:49:49 +0100806 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200807 h1c->wait_event.tasklet = tasklet_new();
808 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200809 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200810 h1c->wait_event.tasklet->process = h1_io_cb;
811 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100812 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200813 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200814
Christopher Faulete9b70722019-04-08 10:46:02 +0200815 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200816 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100817 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
818 if (tick_isset(proxy->timeout.serverfin))
819 h1c->shut_timeout = proxy->timeout.serverfin;
820 } else {
821 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
822 if (tick_isset(proxy->timeout.clientfin))
823 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200824
825 LIST_APPEND(&mux_stopping_data[tid].list,
826 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100827 }
828 if (tick_isset(h1c->timeout)) {
829 t = task_new(tid_bit);
Christopher Faulet26a26432021-01-27 11:27:50 +0100830 if (!t) {
831 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 +0100832 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100833 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100834
835 h1c->task = t;
836 t->process = h1_timeout_task;
837 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200838
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100839 t->expire = tick_add(now_ms, h1c->timeout);
840 }
841
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100842 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200843
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200844 if (h1c->flags & H1C_F_IS_BACK) {
845 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200846 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
847 goto fail;
848 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100849 else if (conn_ctx) {
850 /* Upgraded frontend connection (from TCP) */
851 struct conn_stream *cs = conn_ctx;
852
853 if (!h1c_frt_stream_new(h1c))
854 goto fail;
855
856 h1c->h1s->cs = cs;
857 cs->ctx = h1c->h1s;
858
859 /* Attach the CS but Not ready yet */
860 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
861 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
862 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
863 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100864
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200865 if (t) {
866 h1_set_idle_expiration(h1c);
867 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100868 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200869 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100870
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200871 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100872 if (b_data(&h1c->ibuf))
873 tasklet_wakeup(h1c->wait_event.tasklet);
874 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200875 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200876
877 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200878 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200879 return 0;
880
881 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200882 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200883 if (h1c->wait_event.tasklet)
884 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200885 pool_free(pool_head_h1c, h1c);
886 fail_h1c:
Willy Tarreau8802bf12022-01-12 17:24:26 +0100887 if (!conn_is_back(conn))
888 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200889 conn->ctx = conn_ctx; // restore saved context
890 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200891 return -1;
892}
893
Christopher Faulet73c12072019-04-08 11:23:22 +0200894/* release function. This one should be called to free all resources allocated
895 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200896 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200897static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200898{
Christopher Faulet61840e72019-04-15 09:33:32 +0200899 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200900
Christopher Faulet6b81df72019-10-01 22:08:43 +0200901 TRACE_POINT(H1_EV_H1C_END);
902
Christopher Faulet51dbc942018-09-13 09:05:15 +0200903 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200904 /* The connection must be aattached to this mux to be released */
905 if (h1c->conn && h1c->conn->ctx == h1c)
906 conn = h1c->conn;
907
Christopher Faulet6b81df72019-10-01 22:08:43 +0200908 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
909
Christopher Faulet61840e72019-04-15 09:33:32 +0200910 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200911 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200912 /* Make sure we're no longer subscribed to anything */
913 if (h1c->wait_event.events)
914 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
915 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200916 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200917 /* connection successfully upgraded to H2, this
918 * mux was already released */
919 return;
920 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100921 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200922 sess_log(conn->owner); /* Log if the upgrade failed */
923 }
924
Olivier Houchard45c44372019-06-11 14:06:23 +0200925
Willy Tarreau2b718102021-04-21 07:32:39 +0200926 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100927 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200928
929 h1_release_buf(h1c, &h1c->ibuf);
930 h1_release_buf(h1c, &h1c->obuf);
931
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100932 if (h1c->task) {
933 h1c->task->context = NULL;
934 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
935 h1c->task = NULL;
936 }
937
Christopher Faulet9b949bc2023-03-24 09:26:16 +0100938 if (h1c->wait_event.tasklet) {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200939 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet9b949bc2023-03-24 09:26:16 +0100940 h1c->wait_event.tasklet = NULL;
941 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200942
Christopher Fauletf2824e62018-10-01 12:12:37 +0200943 h1s_destroy(h1c->h1s);
Christopher Faulet37c42542021-10-27 15:42:13 +0200944 if (conn) {
945 if (h1c->wait_event.events != 0)
946 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
947 &h1c->wait_event);
948 h1_shutw_conn(conn);
949 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200950 pool_free(pool_head_h1c, h1c);
951 }
952
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200953 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200954 if (!conn_is_back(conn))
955 LIST_DEL_INIT(&conn->stopping_list);
956
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200957 conn->mux = NULL;
958 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200959 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200960
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200961 conn_stop_tracking(conn);
962 conn_full_close(conn);
963 if (conn->destroy_cb)
964 conn->destroy_cb(conn);
965 conn_free(conn);
966 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200967}
968
969/******************************************************/
970/* functions below are for the H1 protocol processing */
971/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200972/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
973 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200974 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100975static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200976{
Christopher Faulet570d1612018-11-26 11:13:57 +0100977 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200978
Christopher Faulet570d1612018-11-26 11:13:57 +0100979 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200980 (*(p + 5) > '1' ||
981 (*(p + 5) == '1' && *(p + 7) >= '1')))
982 h1m->flags |= H1_MF_VER_11;
983}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200984
Christopher Faulet9768c262018-10-22 09:34:31 +0200985/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
986 * greater or equal to 1.1
987 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100988static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200989{
Christopher Faulet570d1612018-11-26 11:13:57 +0100990 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200991
Christopher Faulet570d1612018-11-26 11:13:57 +0100992 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200993 (*(p + 5) > '1' ||
994 (*(p + 5) == '1' && *(p + 7) >= '1')))
995 h1m->flags |= H1_MF_VER_11;
996}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200997
Christopher Fauletf2824e62018-10-01 12:12:37 +0200998/* Deduce the connection mode of the client connection, depending on the
999 * configuration and the H1 message flags. This function is called twice, the
1000 * first time when the request is parsed and the second time when the response
1001 * is parsed.
1002 */
1003static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1004{
1005 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001006
1007 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001008 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001009 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001010 h1s->status == 101) {
1011 /* Either we've established an explicit tunnel, or we're
1012 * switching the protocol. In both cases, we're very unlikely to
1013 * understand the next protocols. We have to switch to tunnel
1014 * mode, so that we transfer the request and responses then let
1015 * this protocol pass unmodified. When we later implement
1016 * specific parsers for such protocols, we'll want to check the
1017 * Upgrade header which contains information about that protocol
1018 * for responses with status 101 (eg: see RFC2817 about TLS).
1019 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001020 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001021 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 +01001022 }
1023 else if (h1s->flags & H1S_F_WANT_KAL) {
1024 /* By default the client is in KAL mode. CLOSE mode mean
1025 * it is imposed by the client itself. So only change
1026 * KAL mode here. */
1027 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1028 /* no length known or explicit close => close */
1029 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001030 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 +01001031 }
1032 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1033 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001034 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001035 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001036 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 +01001037 }
1038 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001039 }
1040 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001041 /* Input direction: first pass */
1042 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1043 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001044 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001045 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 +01001046 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001047 }
1048
1049 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001050 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001051 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001052 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);
1053 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001054}
1055
1056/* Deduce the connection mode of the client connection, depending on the
1057 * configuration and the H1 message flags. This function is called twice, the
1058 * first time when the request is parsed and the second time when the response
1059 * is parsed.
1060 */
1061static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1062{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001063 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001064 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001065 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001066
Christopher Fauletf2824e62018-10-01 12:12:37 +02001067 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001068 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001069 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001070 h1s->status == 101) {
1071 /* Either we've established an explicit tunnel, or we're
1072 * switching the protocol. In both cases, we're very unlikely to
1073 * understand the next protocols. We have to switch to tunnel
1074 * mode, so that we transfer the request and responses then let
1075 * this protocol pass unmodified. When we later implement
1076 * specific parsers for such protocols, we'll want to check the
1077 * Upgrade header which contains information about that protocol
1078 * for responses with status 101 (eg: see RFC2817 about TLS).
1079 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001080 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001081 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 +01001082 }
1083 else if (h1s->flags & H1S_F_WANT_KAL) {
1084 /* By default the server is in KAL mode. CLOSE mode mean
1085 * it is imposed by haproxy itself. So only change KAL
1086 * mode here. */
1087 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1088 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1089 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1090 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001091 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 +01001092 }
1093 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001094 }
Christopher Faulet70033782018-12-05 13:50:11 +01001095 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001096 /* Output direction: first pass */
1097 if (h1m->flags & H1_MF_CONN_CLO) {
1098 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001099 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001100 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 +01001101 }
1102 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1103 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1104 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1105 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1106 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1107 /* no explicit keep-alive option httpclose/server-close => close */
1108 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001109 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 +01001110 }
Christopher Faulet70033782018-12-05 13:50:11 +01001111 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001112
1113 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001114 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001115 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001116 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);
1117 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001118}
1119
Christopher Fauletb992af02019-03-28 15:42:24 +01001120static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001121{
1122 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001123
1124 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1125 * token is found
1126 */
1127 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001128 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001129
1130 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001131 if (!(h1m->flags & H1_MF_VER_11)) {
1132 TRACE_STATE("add \"Connection: keep-alive\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001133 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001134 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001135 }
1136 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001137 if (h1m->flags & H1_MF_VER_11) {
1138 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001139 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001140 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001141 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001142}
1143
Christopher Fauletb992af02019-03-28 15:42:24 +01001144static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001145{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001146 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1147 * token is found
1148 */
1149 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001150 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001151
1152 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001153 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001154 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1155 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 +01001156 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001157 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001158 }
1159 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001160 if (h1m->flags & H1_MF_VER_11) {
1161 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001162 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001163 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001164 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001165}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001166
Christopher Fauletb992af02019-03-28 15:42:24 +01001167static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001168{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001169 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001170 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001171 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001172 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001173}
1174
Christopher Fauletb992af02019-03-28 15:42:24 +01001175static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1176{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001177 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001178 h1_set_cli_conn_mode(h1s, h1m);
1179 else
1180 h1_set_srv_conn_mode(h1s, h1m);
1181
1182 if (!(h1m->flags & H1_MF_RESP))
1183 h1_update_req_conn_value(h1s, h1m, conn_val);
1184 else
1185 h1_update_res_conn_value(h1s, h1m, conn_val);
1186}
Christopher Faulete44769b2018-11-29 23:01:45 +01001187
Christopher Faulet98fbe952019-07-22 16:18:24 +02001188/* Try to adjust the case of the message header name using the global map
1189 * <hdrs_map>.
1190 */
1191static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1192{
1193 struct ebpt_node *node;
1194 struct h1_hdr_entry *entry;
1195
1196 /* No entry in the map, do nothing */
1197 if (eb_is_empty(&hdrs_map.map))
1198 return;
1199
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001200 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001201 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1202 return;
1203
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001204 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001205 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1206 return;
1207
1208 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1209 if (!node)
1210 return;
1211 entry = container_of(node, struct h1_hdr_entry, node);
1212 name->ptr = entry->name.ptr;
1213 name->len = entry->name.len;
1214}
1215
Christopher Faulete44769b2018-11-29 23:01:45 +01001216/* Append the description of what is present in error snapshot <es> into <out>.
1217 * The description must be small enough to always fit in a buffer. The output
1218 * buffer may be the trash so the trash must not be used inside this function.
1219 */
1220static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1221{
1222 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001223 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1224 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1225 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1226 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1227 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1228 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001229}
1230/*
1231 * Capture a bad request or response and archive it in the proxy's structure.
1232 * By default it tries to report the error position as h1m->err_pos. However if
1233 * this one is not set, it will then report h1m->next, which is the last known
1234 * parsing point. The function is able to deal with wrapping buffers. It always
1235 * displays buffers as a contiguous area starting at buf->p. The direction is
1236 * determined thanks to the h1m's flags.
1237 */
1238static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1239 struct h1m *h1m, struct buffer *buf)
1240{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001241 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001242 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001243 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001244 union error_snapshot_ctx ctx;
1245
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001246 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001247 if (sess == NULL)
1248 sess = si_strm(h1s->cs->data)->sess;
1249 if (!(h1m->flags & H1_MF_RESP))
1250 other_end = si_strm(h1s->cs->data)->be;
1251 else
1252 other_end = sess->fe;
1253 } else
1254 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001255
1256 /* http-specific part now */
1257 ctx.h1.state = h1m->state;
1258 ctx.h1.c_flags = h1c->flags;
1259 ctx.h1.s_flags = h1s->flags;
1260 ctx.h1.m_flags = h1m->flags;
1261 ctx.h1.m_clen = h1m->curr_len;
1262 ctx.h1.m_blen = h1m->body_len;
1263
1264 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1265 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001266 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1267 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001268}
1269
Christopher Fauletadb22202018-12-12 10:32:09 +01001270/* Emit the chunksize followed by a CRLF in front of data of the buffer
1271 * <buf>. It goes backwards and starts with the byte before the buffer's
1272 * head. The caller is responsible for ensuring there is enough room left before
1273 * the buffer's head for the string.
1274 */
1275static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1276{
1277 char *beg, *end;
1278
1279 beg = end = b_head(buf);
1280 *--beg = '\n';
1281 *--beg = '\r';
1282 do {
1283 *--beg = hextab[chksz & 0xF];
1284 } while (chksz >>= 4);
1285 buf->head -= (end - beg);
1286 b_add(buf, end - beg);
1287}
1288
1289/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1290 * ensuring there is enough room left in the buffer for the string. */
1291static void h1_emit_chunk_crlf(struct buffer *buf)
1292{
1293 *(b_peek(buf, b_data(buf))) = '\r';
1294 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1295 b_add(buf, 2);
1296}
1297
Christopher Faulet129817b2018-09-20 16:14:40 +02001298/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001299 * Switch the stream to tunnel mode. This function must only be called on 2xx
1300 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001301 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001302static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001303{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001304 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001305
Christopher Faulet5be651d2021-01-22 15:28:03 +01001306 h1s->req.state = H1_MSG_TUNNEL;
1307 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001308
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001309 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001310 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001311
Christopher Faulet5be651d2021-01-22 15:28:03 +01001312 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 +01001313
Christopher Faulet10a86702021-04-07 14:18:11 +02001314 if (h1s->flags & H1S_F_RX_BLK) {
1315 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001316 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001317 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 +02001318 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001319 if (h1s->flags & H1S_F_TX_BLK) {
1320 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001321 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001322 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 +01001323 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001324}
1325
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001326/* Search for a websocket key header. The message should have been identified
1327 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001328 *
1329 * On the request side, if found the key is stored in the session. It might be
1330 * needed to calculate response key if the server side is using http/2.
1331 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001332 * On the response side, the key might be verified if haproxy has been
1333 * responsible for the generation of a key. This happens when a h2 client is
1334 * interfaced with a h1 server.
1335 *
1336 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001337 */
1338static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1339{
1340 struct htx_blk *blk;
1341 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001342 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001343 int ws_key_found = 0, idx;
1344
1345 idx = htx_get_head(htx); // returns the SL that we skip
1346 while ((idx = htx_get_next(htx, idx)) != -1) {
1347 blk = htx_get_blk(htx, idx);
1348 type = htx_get_blk_type(blk);
1349
1350 if (type == HTX_BLK_UNUSED)
1351 continue;
1352
1353 if (type != HTX_BLK_HDR)
1354 break;
1355
1356 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001357 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001358
Amaury Denoyellec1938232020-12-11 17:53:03 +01001359 /* Websocket key is base64 encoded of 16 bytes */
1360 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001361 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001362 /* Copy the key on request side
1363 * we might need it if the server is using h2 and does
1364 * not provide the response
1365 */
1366 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001367 ws_key_found = 1;
1368 break;
1369 }
1370 else if (isteqi(n, ist("sec-websocket-accept")) &&
1371 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001372 /* Need to verify the response key if the input was
1373 * generated by haproxy
1374 */
1375 if (h1s->ws_key[0]) {
1376 char key[29];
1377 h1_calculate_ws_output_key(h1s->ws_key, key);
1378 if (!isteqi(ist(key), v))
1379 break;
1380 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001381 ws_key_found = 1;
1382 break;
1383 }
1384 }
1385
1386 /* missing websocket key, reject the message */
1387 if (!ws_key_found) {
1388 htx->flags |= HTX_FL_PARSING_ERROR;
1389 return 0;
1390 }
1391
1392 return 1;
1393}
1394
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001395/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001396 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001397 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet58f21da2021-09-20 07:47:27 +02001398 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1399 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001400 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001401static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001402 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001403{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001404 union h1_sl h1sl;
Christopher Faulet129817b2018-09-20 16:14:40 +02001405 int ret = 0;
1406
Willy Tarreau022e5e52020-09-10 09:33:15 +02001407 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 +02001408
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001409 if (h1s->meth == HTTP_METH_CONNECT)
1410 h1m->flags |= H1_MF_METH_CONNECT;
1411 if (h1s->meth == HTTP_METH_HEAD)
1412 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001413
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001414 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001415 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001416 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001417 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001418 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001419 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 +02001420 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1421 }
Christopher Faulet58f21da2021-09-20 07:47:27 +02001422 else if (ret == -2) {
1423 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);
1424 h1s->flags |= H1S_F_RX_CONGESTED;
1425 }
1426 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001427 goto end;
1428 }
1429
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001430 /* If websocket handshake, search for the websocket key */
1431 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1432 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1433 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1434 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001435 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001436 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 +01001437 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1438
1439 ret = 0;
1440 goto end;
1441 }
1442 }
1443
Christopher Faulet486498c2019-10-11 14:22:00 +02001444 if (h1m->err_pos >= 0) {
1445 /* Maybe we found an error during the parsing while we were
1446 * configured not to block on that, so we have to capture it
1447 * now.
1448 */
1449 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1450 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1451 }
1452
Christopher Faulet5696f542020-12-02 16:08:38 +01001453 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001454 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001455 if (h1s->meth == HTTP_METH_HEAD)
1456 h1s->flags |= H1S_F_BODYLESS_RESP;
1457 }
1458 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001459 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001460 if (h1s->status == 204 || h1s->status == 304)
1461 h1s->flags |= H1S_F_BODYLESS_RESP;
1462 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001463 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001464 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001465
Christopher Faulet129817b2018-09-20 16:14:40 +02001466 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001467 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 +02001468 return ret;
1469}
1470
1471/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001472 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001473 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1474 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001475 */
Christopher Fauletaf542632019-10-01 21:52:49 +02001476static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001477 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001478 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001479{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001480 int ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001481
Willy Tarreau022e5e52020-09-10 09:33:15 +02001482 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 +02001483 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001484 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001485 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 +01001486 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001487 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001488 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 +02001489 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001490 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001491 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001492 }
1493
Christopher Faulet02a02532019-11-15 09:36:28 +01001494 *ofs += ret;
1495
1496 end:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001497 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1498 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);
1499 h1s->flags |= H1S_F_RX_CONGESTED;
1500 }
1501
Willy Tarreau022e5e52020-09-10 09:33:15 +02001502 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 +02001503 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001504}
1505
1506/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001507 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1508 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1509 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet58f21da2021-09-20 07:47:27 +02001510 * responsible to update the parser state <h1m>. If more room is requested,
1511 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001512 */
1513static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1514 struct buffer *buf, size_t *ofs, size_t max)
1515{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001516 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001517
Willy Tarreau022e5e52020-09-10 09:33:15 +02001518 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 +02001519 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001520 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001521 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001522 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001523 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001524 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 +02001525 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1526 }
Christopher Faulet5d0efb72022-04-13 17:48:54 +02001527 else if (ret == -2) {
Christopher Faulet58f21da2021-09-20 07:47:27 +02001528 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);
1529 h1s->flags |= H1S_F_RX_CONGESTED;
1530 }
1531 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001532 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001533 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001534
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001535 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001536
1537 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001538 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 +02001539 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001540}
1541
1542/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001543 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001544 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1545 * it couldn't proceed.
Christopher Faulet58f21da2021-09-20 07:47:27 +02001546 *
1547 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001548 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001549static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001550{
Christopher Faulet539e0292018-11-19 10:40:09 +01001551 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001552 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001553 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001554 size_t data;
1555 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001556 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001557
Christopher Faulet539e0292018-11-19 10:40:09 +01001558 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001559 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001560
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001561 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001562 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001563
Christopher Faulet2eed8002020-12-07 11:26:13 +01001564 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001565 goto end;
1566
Christopher Faulet10a86702021-04-07 14:18:11 +02001567 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001568 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001569
Christopher Faulet58f21da2021-09-20 07:47:27 +02001570 /* Always remove congestion flags and try to process more input data */
1571 h1s->flags &= ~H1S_F_RX_CONGESTED;
1572
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001573 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001574 size_t used = htx_used_space(htx);
1575
Christopher Faulet129817b2018-09-20 16:14:40 +02001576 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001577 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet539e0292018-11-19 10:40:09 +01001578 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001579 if (!ret)
1580 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001581
1582 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1583 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1584
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001585 if ((h1m->flags & H1_MF_RESP) &&
1586 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1587 h1m_init_res(&h1s->res);
1588 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001589 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001590 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001591 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001592 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001593 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001594 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001595 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet129817b2018-09-20 16:14:40 +02001596 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001597
1598 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1599 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001600 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001601 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001602 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
1603 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1604 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001605 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001606
Christopher Faulet76014fd2019-12-10 11:47:22 +01001607 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1608 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001609 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001610 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001611 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1612 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001613
Christopher Faulet5be651d2021-01-22 15:28:03 +01001614 if ((h1m->flags & H1_MF_RESP) &&
1615 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1616 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001617 else {
1618 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1619 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001620 h1s->flags |= H1S_F_RX_BLK;
1621 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001622 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001623 if (h1s->flags & H1S_F_TX_BLK) {
1624 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001625 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001626 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 +01001627 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001628 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001629 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001630 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001631 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001632 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001633 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001634 if (!ret)
1635 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001636
1637 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1638 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001639 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001640 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001641 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001642 break;
1643 }
1644
Christopher Faulet30db3d72019-05-17 15:35:33 +02001645 count -= htx_used_space(htx) - used;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001646 } 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 +01001647
Christopher Faulet129817b2018-09-20 16:14:40 +02001648
Christopher Faulet2eed8002020-12-07 11:26:13 +01001649 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001650 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 +02001651 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001652 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001653
Christopher Faulet539e0292018-11-19 10:40:09 +01001654 b_del(&h1c->ibuf, total);
1655
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001656 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1657
Christopher Faulet30db3d72019-05-17 15:35:33 +02001658 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001659 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001660 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001661 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 +01001662 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001663 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001664
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001665 if (!b_data(&h1c->ibuf))
1666 h1_release_buf(h1c, &h1c->ibuf);
1667
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001668 if (!(h1c->flags & H1C_F_ST_READY)) {
1669 /* The H1 connection is not ready. Most of time, there is no CS
1670 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1671 * cases, it is only possible on the client side.
1672 */
1673 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1674
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001675 if (h1m->state <= H1_MSG_LAST_LF) {
1676 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1677 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1678 goto end;
1679 }
1680
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001681 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1682 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1683 BUG_ON(h1s->cs);
1684 if (!h1s_new_cs(h1s, buf)) {
1685 h1c->flags |= H1C_F_ST_ERROR;
1686 goto err;
1687 }
1688 }
1689 else {
1690 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1691 BUG_ON(h1s->cs == NULL);
1692 if (!h1s_upgrade_cs(h1s, buf)) {
1693 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001694 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001695 goto err;
1696 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001697 }
1698 }
1699
1700 /* Here h1s->cs is always defined */
Christopher Fauletc765de52021-11-26 17:26:19 +01001701 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001702 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1703 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1704 }
1705 else {
1706 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1707 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1708 }
1709
Christopher Fauleta22782b2021-02-08 17:18:01 +01001710 /* Set EOI on conn-stream in DONE state iff:
1711 * - it is a response
1712 * - it is a request but no a protocol upgrade nor a CONNECT
1713 *
1714 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001715 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001716 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001717 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1718 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001719 h1s->cs->flags |= CS_FL_EOI;
1720
Christopher Fauletec4207c2021-04-08 18:34:30 +02001721 out:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001722 /* When Input data are pending for this message, notify upper layer that
1723 * the mux need more space in the HTX buffer to continue if :
1724 *
1725 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1726 * - Headers or trailers are pending to be copied.
1727 */
1728 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001729 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001730 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1731 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001732 else {
1733 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1734 if (h1s->flags & H1S_F_REOS) {
1735 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001736 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1737 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1738 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001739 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001740 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001741 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001742 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001743 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1744 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001745
Christopher Faulet10a86702021-04-07 14:18:11 +02001746 if (h1s->flags & H1S_F_TX_BLK) {
1747 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001748 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001749 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 +01001750 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001751 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001752 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001753
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001754 end:
Christopher Faulet88c6abf2022-07-08 09:02:59 +02001755 htx_to_buf(htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001756 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001757 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001758
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001759 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001760 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001761 if (h1s->cs)
1762 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001763 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001764 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001765}
1766
Christopher Faulet129817b2018-09-20 16:14:40 +02001767/*
1768 * Process outgoing data. It parses data and transfer them from the channel buffer into
1769 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1770 * 0 if it couldn't proceed.
1771 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001772static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1773{
Christopher Faulet129817b2018-09-20 16:14:40 +02001774 struct h1s *h1s = h1c->h1s;
1775 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001776 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001777 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001778 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001779 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001780 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001781 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001782
Christopher Faulet94b2c762019-05-24 15:28:57 +02001783 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001784 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1785
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001786 if (htx_is_empty(chn_htx))
1787 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001788
Christopher Faulet10a86702021-04-07 14:18:11 +02001789 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001790 goto end;
1791
Christopher Faulet51dbc942018-09-13 09:05:15 +02001792 if (!h1_get_buf(h1c, &h1c->obuf)) {
1793 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001794 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 +02001795 goto end;
1796 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001797
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001798 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001799
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001800 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001801 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001802
Willy Tarreau3815b222018-12-11 19:50:43 +01001803 /* Perform some optimizations to reduce the number of buffer copies.
1804 * First, if the mux's buffer is empty and the htx area contains
1805 * exactly one data block of the same size as the requested count,
1806 * then it's possible to simply swap the caller's buffer with the
1807 * mux's output buffer and adjust offsets and length to match the
1808 * entire DATA HTX block in the middle. In this case we perform a
1809 * true zero-copy operation from end-to-end. This is the situation
1810 * that happens all the time with large files. Second, if this is not
1811 * possible, but the mux's output buffer is empty, we still have an
1812 * opportunity to avoid the copy to the intermediary buffer, by making
1813 * the intermediary buffer's area point to the output buffer's area.
1814 * In this case we want to skip the HTX header to make sure that copies
1815 * remain aligned and that this operation remains possible all the
1816 * time. This goes for headers, data blocks and any data extracted from
1817 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001818 */
1819 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001820 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001821 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001822 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001823 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001824 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001825 void *old_area;
1826
Christopher Faulet6b81df72019-10-01 22:08:43 +02001827 TRACE_PROTO("sending message data (zero-copy)", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){count});
Christopher Faulet5f60d182021-11-26 16:37:55 +01001828 if (h1m->state == H1_MSG_DATA) {
1829 if (h1m->flags & H1_MF_CLEN) {
1830 if (count > h1m->curr_len) {
1831 TRACE_ERROR("too much payload, more than announced",
1832 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1833 goto error;
1834 }
1835 h1m->curr_len -= count;
Christopher Faulet18906cf2022-04-07 10:29:38 +02001836 if (!h1m->curr_len)
1837 last_data = 1;
Christopher Faulet5f60d182021-11-26 16:37:55 +01001838 }
1839 if (chn_htx->flags & HTX_FL_EOM) {
1840 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1841 last_data = 1;
1842 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001843 }
1844
Christopher Faulete5596bf2020-12-02 16:13:22 +01001845 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001846 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001847 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001848 h1c->obuf.data = count;
1849
1850 buf->area = old_area;
1851 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001852
Christopher Faulet6b81df72019-10-01 22:08:43 +02001853 chn_htx = (struct htx *)buf->area;
1854 htx_reset(chn_htx);
1855
Christopher Fauletadb22202018-12-12 10:32:09 +01001856 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001857 * size and eventually the last chunk. We have at least
1858 * the size of the struct htx to write the chunk
1859 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001860 */
1861 if (h1m->flags & H1_MF_CHNK) {
1862 h1_emit_chunk_size(&h1c->obuf, count);
1863 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001864 if (last_data) {
1865 /* Emit the last chunk too at the buffer's end */
1866 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1867 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001868 }
1869
Christopher Faulet6b81df72019-10-01 22:08:43 +02001870 if (h1m->state == H1_MSG_DATA)
1871 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001872 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001873 else
1874 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001875 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001876
Christopher Faulete5596bf2020-12-02 16:13:22 +01001877 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001878 if (last_data) {
1879 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001880 if (h1s->flags & H1S_F_RX_BLK) {
1881 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001882 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001883 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001884 }
1885
1886 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1887 H1_EV_TX_DATA, h1c->conn, h1s);
1888 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001889 goto out;
1890 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001891 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001892 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001893 else
1894 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001895
Christopher Fauletc2518a52019-06-25 21:41:02 +02001896 tmp.data = 0;
1897 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001898 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001899 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001900 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001901 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001902 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001903 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001904
Christopher Fauletb2e84162018-12-06 11:39:49 +01001905 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001906 if (type != HTX_BLK_DATA && vlen > count)
1907 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001908
Christopher Faulet94b2c762019-05-24 15:28:57 +02001909 if (type == HTX_BLK_UNUSED)
1910 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001911
Christopher Faulet94b2c762019-05-24 15:28:57 +02001912 switch (h1m->state) {
1913 case H1_MSG_RQBEFORE:
1914 if (type != HTX_BLK_REQ_SL)
1915 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001916 TRACE_USER("sending request headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001917 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001918 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001919 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001920 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001921 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001922 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001923 if (sl->flags & HTX_SL_F_BODYLESS)
1924 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001925 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001926 if (h1s->meth == HTTP_METH_HEAD)
1927 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001928 if (h1s->flags & H1S_F_RX_BLK) {
1929 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001930 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001931 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Faulet089acd52020-09-21 10:57:52 +02001932 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001933 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001934
Christopher Faulet94b2c762019-05-24 15:28:57 +02001935 case H1_MSG_RPBEFORE:
1936 if (type != HTX_BLK_RES_SL)
1937 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001938 TRACE_USER("sending response headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001939 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001940 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001941 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001942 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001943 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001944 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001945 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001946 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001947 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001948 else if (h1s->status == 204 || h1s->status == 304)
1949 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001950 h1m->state = H1_MSG_HDR_FIRST;
1951 break;
1952
Christopher Faulet94b2c762019-05-24 15:28:57 +02001953 case H1_MSG_HDR_FIRST:
1954 case H1_MSG_HDR_NAME:
1955 case H1_MSG_HDR_L2_LWS:
1956 if (type == HTX_BLK_EOH)
1957 goto last_lf;
1958 if (type != HTX_BLK_HDR)
1959 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001960
Christopher Faulet9768c262018-10-22 09:34:31 +02001961 h1m->state = H1_MSG_HDR_NAME;
1962 n = htx_get_blk_name(chn_htx, blk);
1963 v = htx_get_blk_value(chn_htx, blk);
1964
Christopher Faulet86d144c2019-08-14 16:32:25 +02001965 /* Skip all pseudo-headers */
1966 if (*(n.ptr) == ':')
1967 goto skip_hdr;
1968
Christopher Faulet91fcf212020-12-02 16:17:15 +01001969 if (isteq(n, ist("transfer-encoding"))) {
1970 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1971 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001972 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001973 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001974 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001975 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1976 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001977 /* Only skip C-L header with invalid value. */
1978 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001979 goto skip_hdr;
1980 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001981 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001982 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001983 if (!v.len)
1984 goto skip_hdr;
1985 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001986 else if (isteq(n, ist("upgrade"))) {
1987 h1_parse_upgrade_header(h1m, v);
1988 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001989 else if ((isteq(n, ist("sec-websocket-accept")) &&
1990 h1m->flags & H1_MF_RESP) ||
1991 (isteq(n, ist("sec-websocket-key")) &&
1992 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001993 ws_key_found = 1;
1994 }
Christopher Fauletf9bb8d02021-09-28 10:56:36 +02001995 else if (isteq(n, ist("te"))) {
1996 /* "te" may only be sent with "trailers" if this value
1997 * is present, otherwise it must be deleted.
1998 */
1999 v = istist(v, ist("trailers"));
2000 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2001 goto skip_hdr;
2002 v = ist("trailers");
2003 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002004
Christopher Faulet67d58092019-10-02 10:51:38 +02002005 /* Skip header if same name is used to add the server name */
2006 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2007 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2008 goto skip_hdr;
2009
Christopher Faulet98fbe952019-07-22 16:18:24 +02002010 /* Try to adjust the case of the header name */
2011 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2012 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002013 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002014 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002015 skip_hdr:
2016 h1m->state = H1_MSG_HDR_L2_LWS;
2017 break;
2018
Christopher Faulet94b2c762019-05-24 15:28:57 +02002019 case H1_MSG_LAST_LF:
2020 if (type != HTX_BLK_EOH)
2021 goto error;
2022 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002023 h1m->state = H1_MSG_LAST_LF;
2024 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002025 /* If the reply comes from haproxy while the request is
2026 * not finished, we force the connection close. */
2027 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
2028 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2029 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2030 }
2031
2032 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002033 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002034 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002035 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002036 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002037 /* Try to adjust the case of the header name */
2038 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2039 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002040 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002041 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002042 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002043 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002044 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002045
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002046 if ((h1s->meth != HTTP_METH_CONNECT &&
2047 (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 +01002048 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002049 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002050 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002051 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2052 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002053 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002054 n = ist("transfer-encoding");
2055 v = ist("chunked");
2056 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2057 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002058 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002059 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002060 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002061 h1m->flags |= H1_MF_CHNK;
2062 }
2063
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002064 /* Now add the server name to a header (if requested) */
2065 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2066 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2067 struct server *srv = objt_server(h1c->conn->target);
2068
2069 if (srv) {
2070 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2071 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002072
2073 /* Try to adjust the case of the header name */
2074 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2075 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002076 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002077 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002078 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002079 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002080 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2081 }
2082
Amaury Denoyellec1938232020-12-11 17:53:03 +01002083 /* Add websocket handshake key if needed */
2084 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2085 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002086 if (!(h1m->flags & H1_MF_RESP)) {
2087 /* generate a random websocket key
2088 * stored in the session to
2089 * verify it on the response side
2090 */
2091 h1_generate_random_ws_input_key(h1s->ws_key);
2092
2093 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2094 ist(h1s->ws_key),
2095 &tmp)) {
2096 goto full;
2097 }
2098 }
2099 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002100 /* add the response header key */
2101 char key[29];
2102 h1_calculate_ws_output_key(h1s->ws_key, key);
2103 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2104 ist(key),
2105 &tmp)) {
2106 goto full;
2107 }
2108 }
2109 }
2110
Christopher Faulet6b81df72019-10-01 22:08:43 +02002111 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2112 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2113
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002114 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002115 if (!chunk_memcat(&tmp, "\r\n", 2))
2116 goto full;
2117 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002118 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002119 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002120 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002121 if (!chunk_memcat(&tmp, "\r\n", 2))
2122 goto full;
2123 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002124 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002125 else if ((h1m->flags & H1_MF_RESP) &&
2126 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002127 if (!chunk_memcat(&tmp, "\r\n", 2))
2128 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002129 h1m_init_res(&h1s->res);
2130 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002131 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002132 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002133 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002134 else {
Christopher Faulet18906cf2022-04-07 10:29:38 +02002135 /* EOM flag is set or empty payload (C-L to 0) and it is the last block */
2136 if (htx_is_unique_blk(chn_htx, blk) &&
2137 ((chn_htx->flags & HTX_FL_EOM) || ((h1m->flags & H1_MF_CLEN) && !h1m->curr_len))) {
Mickael Torreseadd9822022-11-16 14:29:37 +01002138 if ((h1m->flags & H1_MF_CHNK) && !(h1s->flags & H1S_F_BODYLESS_RESP)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002139 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2140 goto full;
2141 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002142 else if (!chunk_memcat(&tmp, "\r\n", 2))
2143 goto full;
2144 goto done;
2145 }
2146 else if (!chunk_memcat(&tmp, "\r\n", 2))
2147 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002148 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002149 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002150 break;
2151
Christopher Faulet94b2c762019-05-24 15:28:57 +02002152 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002153 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002154 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002155 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2156 goto trailers;
2157
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002158 /* If the message is not chunked, never
2159 * add the last chunk. */
2160 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002161 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002162 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 +02002163 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002164 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002165 else if (type != HTX_BLK_DATA)
2166 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002167
2168 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 +02002169
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002170 /* It is the last block of this message. After this one,
2171 * only tunneled data may be forwarded. */
2172 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2173 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2174 last_data = 1;
2175 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002176
2177 if (vlen > count) {
2178 /* Get the maximum amount of data we can xferred */
2179 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002180 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002181 }
2182
Christopher Faulet5f60d182021-11-26 16:37:55 +01002183 if (h1m->state == H1_MSG_DATA) {
2184 if (h1m->flags & H1_MF_CLEN) {
2185 if (vlen > h1m->curr_len) {
2186 TRACE_ERROR("too much payload, more than announced",
2187 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2188 goto error;
2189 }
Christopher Faulet5f60d182021-11-26 16:37:55 +01002190 }
2191 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2192 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2193 goto skip_data;
2194 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002195 }
2196
Christopher Fauletd9233f02019-10-14 14:01:24 +02002197 chklen = 0;
2198 if (h1m->flags & H1_MF_CHNK) {
2199 chklen = b_room(&tmp);
2200 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2201 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2202 (chklen < 1048576) ? 5 : 8);
2203 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002204
2205 /* If it is the end of the chunked message (without EOT), reserve the
2206 * last chunk size */
2207 if (last_data)
2208 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002209 }
2210
2211 if (vlen + chklen > b_room(&tmp)) {
2212 /* too large for the buffer */
2213 if (chklen >= b_room(&tmp))
2214 goto full;
2215 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002216 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002217 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002218 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002219 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002220 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002221 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002222
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002223 /* Space already reserved, so it must succeed */
2224 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2225 goto error;
2226
Christopher Faulet6b81df72019-10-01 22:08:43 +02002227 if (h1m->state == H1_MSG_DATA)
2228 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002229 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002230 else
2231 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002232 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002233
2234 skip_data:
Christopher Faulet18906cf2022-04-07 10:29:38 +02002235 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet9328a6c2022-01-10 17:27:51 +01002236 h1m->curr_len -= vlen;
Christopher Faulet18906cf2022-04-07 10:29:38 +02002237 if (!h1m->curr_len)
2238 last_data = 1;
2239 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002240 if (last_data)
2241 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002242 break;
2243
Christopher Faulet94b2c762019-05-24 15:28:57 +02002244 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002245 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002246 goto error;
2247 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002248 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002249
Christopher Fauletf9a0f512022-05-05 09:39:42 +02002250 if (!(h1m->flags & H1_MF_CHNK))
2251 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002252
Christopher Faulete5596bf2020-12-02 16:13:22 +01002253 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2254 TRACE_PROTO("Skip trailers for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002255 if (type == HTX_BLK_EOT)
2256 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002257 break;
2258 }
2259
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002260 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002261 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002262 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002263 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2264 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002265 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002266 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002267 else { // HTX_BLK_TLR
2268 n = htx_get_blk_name(chn_htx, blk);
2269 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002270
2271 /* Try to adjust the case of the header name */
2272 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2273 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002274 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002275 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002276 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002277 break;
2278
Christopher Faulet94b2c762019-05-24 15:28:57 +02002279 case H1_MSG_DONE:
Christopher Fauletf9a0f512022-05-05 09:39:42 +02002280 /* If the message is not chunked, ignore
2281 * trailers. It may happen with H2 messages. */
2282 if ((type == HTX_BLK_TLR || type == HTX_BLK_EOT) && !(h1m->flags & H1_MF_CHNK))
2283 break;
2284
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002285 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2286 goto error; /* For now return an error */
2287
Christopher Faulet94b2c762019-05-24 15:28:57 +02002288 done:
2289 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002290 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002291 h1s->flags |= H1S_F_TX_BLK;
2292 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002293 }
2294 else if ((h1m->flags & H1_MF_RESP) &&
2295 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2296 /* a successful reply to a CONNECT or a protocol switching is sent
2297 * to the client. Switch the response to tunnel mode.
2298 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002299 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002300 TRACE_STATE("switch H1 response in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletf3158e92019-11-15 11:14:23 +01002301 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002302
Christopher Faulet10a86702021-04-07 14:18:11 +02002303 if (h1s->flags & H1S_F_RX_BLK) {
2304 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002305 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002306 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletcd67bff2019-06-14 16:54:15 +02002307 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002308
2309 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2310 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002311 break;
2312
Christopher Faulet9768c262018-10-22 09:34:31 +02002313 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002314 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002315 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002316 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002317 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002318 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002319 TRACE_ERROR("processing output error, set error on h1c/h1s",
2320 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet5f60d182021-11-26 16:37:55 +01002321 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002322 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002323
2324 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002325 total += vlen;
2326 count -= vlen;
2327 if (sz == vlen)
2328 blk = htx_remove_blk(chn_htx, blk);
2329 else {
2330 htx_cut_data_blk(chn_htx, blk, vlen);
2331 break;
2332 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002333 }
2334
Christopher Faulet9768c262018-10-22 09:34:31 +02002335 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002336 /* when the output buffer is empty, tmp shares the same area so that we
2337 * only have to update pointers and lengths.
2338 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002339 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2340 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002341 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002342 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002343
Willy Tarreau3815b222018-12-11 19:50:43 +01002344 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002345 out:
2346 if (!buf_room_for_htx_data(&h1c->obuf)) {
2347 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002348 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002349 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002350 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002351 /* Both the request and the response reached the DONE state. So set EOI
2352 * flag on the conn-stream. Most of time, the flag will already be set,
2353 * except for protocol upgrades. Report an error if data remains blocked
2354 * in the output buffer.
2355 */
2356 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2357 if (!htx_is_empty(chn_htx)) {
2358 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002359 TRACE_ERROR("txn done but data waiting to be sent, set error on h1c", H1_EV_H1C_ERR, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002360 }
2361 h1s->cs->flags |= CS_FL_EOI;
2362 }
2363
Christopher Faulet6b81df72019-10-01 22:08:43 +02002364 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002365 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002366
2367 full:
2368 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2369 h1c->flags |= H1C_F_OUT_FULL;
2370 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002371}
2372
Christopher Faulet51dbc942018-09-13 09:05:15 +02002373/*********************************************************/
2374/* functions below are I/O callbacks from the connection */
2375/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002376static void h1_wake_stream_for_recv(struct h1s *h1s)
2377{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002378 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002379 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002380 tasklet_wakeup(h1s->subs->tasklet);
2381 h1s->subs->events &= ~SUB_RETRY_RECV;
2382 if (!h1s->subs->events)
2383 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002384 }
2385}
2386static void h1_wake_stream_for_send(struct h1s *h1s)
2387{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002388 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002389 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002390 tasklet_wakeup(h1s->subs->tasklet);
2391 h1s->subs->events &= ~SUB_RETRY_SEND;
2392 if (!h1s->subs->events)
2393 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002394 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002395}
2396
Christopher Fauletad4daf62021-01-21 17:49:01 +01002397/* alerts the data layer following this sequence :
2398 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2399 * - if its subscribed to send, then it's woken up for send
2400 * - if it was subscribed to neither, its ->wake() callback is called
2401 */
2402static void h1_alert(struct h1s *h1s)
2403{
2404 if (h1s->subs) {
2405 h1_wake_stream_for_recv(h1s);
2406 h1_wake_stream_for_send(h1s);
2407 }
2408 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2409 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2410 h1s->cs->data_cb->wake(h1s->cs);
2411 }
2412}
2413
Christopher Fauletc18fc232020-10-06 17:41:36 +02002414/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2415 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2416 * retryable errors (allocation error or buffer full). On success, the error is
2417 * copied in the output buffer.
2418*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002419static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002420{
2421 int rc = http_get_status_idx(h1c->errcode);
2422 int ret = 0;
2423
2424 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2425
2426 /* Verify if the error is mapped on /dev/null or any empty file */
2427 /// XXX: do a function !
2428 if (h1c->px->replies[rc] &&
2429 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2430 h1c->px->replies[rc]->body.errmsg &&
2431 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2432 /* Empty error, so claim a success */
2433 ret = 1;
2434 goto out;
2435 }
2436
2437 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2438 h1c->flags |= H1C_F_ERR_PENDING;
2439 goto out;
2440 }
2441
2442 if (!h1_get_buf(h1c, &h1c->obuf)) {
2443 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2444 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2445 goto out;
2446 }
2447 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2448 if (unlikely(ret <= 0)) {
2449 if (!ret) {
2450 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2451 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2452 goto out;
2453 }
2454 else {
2455 /* we cannot report this error, so claim a success */
2456 ret = 1;
2457 }
2458 }
2459 h1c->flags &= ~H1C_F_ERR_PENDING;
2460 out:
2461 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2462 return ret;
2463}
2464
2465/* Try to send a 500 internal error. It relies on h1_send_error to send the
2466 * error. This function takes care of incrementing stats and tracked counters.
2467 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002468static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002469{
2470 struct session *sess = h1c->conn->owner;
2471 int ret = 1;
2472
2473 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002474 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002475 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2476 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002477 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002478 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002479
2480 h1c->errcode = 500;
2481 ret = h1_send_error(h1c);
2482 sess_log(sess);
2483 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002484}
2485
Christopher Fauletc18fc232020-10-06 17:41:36 +02002486/* Try to send a 400 bad request error. It relies on h1_send_error to send the
2487 * error. This function takes care of incrementing stats and tracked counters.
2488 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002489static int h1_handle_bad_req(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
2505 h1c->errcode = 400;
2506 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002507 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2508 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002509
2510 end:
2511 return ret;
2512}
2513
Christopher Faulet2eed8002020-12-07 11:26:13 +01002514/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2515 * the error. This function takes care of incrementing stats and tracked
2516 * counters.
2517 */
2518static int h1_handle_not_impl_err(struct h1c *h1c)
2519{
2520 struct session *sess = h1c->conn->owner;
2521 int ret = 1;
2522
2523 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2524 goto end;
2525
2526 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002527 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002528 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2529 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002530 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002531 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002532
2533 h1c->errcode = 501;
2534 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002535 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2536 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002537
2538 end:
2539 return ret;
2540}
2541
Christopher Fauletc18fc232020-10-06 17:41:36 +02002542/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2543 * error. This function takes care of incrementing stats and tracked counters.
2544 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002545static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002546{
2547 struct session *sess = h1c->conn->owner;
2548 int ret = 1;
2549
2550 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2551 goto end;
2552
2553 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002554 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002555 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2556 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002557 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002558 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002559
2560 h1c->errcode = 408;
Christopher Faulet6609cbe2022-11-23 16:58:22 +01002561 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002562 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
Christopher Faulet6609cbe2022-11-23 16:58:22 +01002563 sess_log(sess);
2564
Christopher Fauletc18fc232020-10-06 17:41:36 +02002565 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)
2602 b_slow_realign(&h1c->ibuf, trash.area, 0);
2603
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 Fauletf04721e2022-02-01 18:25:06 +01002690 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
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 Fauletdb451fb2021-10-27 15:36:38 +02002699 h1_shutw_conn(conn);
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 Fauletaf3b83e2021-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);
2774 h1_process_input(h1c, buf, count);
2775 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) {
2785 h1_handle_bad_req(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 Fauletbde7e052021-11-15 14:51:37 +01002797 /* H1 connection must be released ASAP if:
2798 * - an error occurred on the connection or the H1C or
2799 * - a read0 was received or
2800 * - a silent shutdown was emitted and all outgoing data sent
2801 */
2802 if ((conn->flags & CO_FL_ERROR) ||
2803 conn_xprt_read0_pending(conn) ||
2804 (h1c->flags & H1C_F_ST_ERROR) ||
2805 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002806 if (!(h1c->flags & H1C_F_ST_READY)) {
2807 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002808 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Fauletbde7e052021-11-15 14:51:37 +01002809 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002810 if (h1_handle_bad_req(h1c))
2811 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002812 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002813 }
2814
2815 /* Handle pending error, if any (only possible on frontend connection) */
2816 if (h1c->flags & H1C_F_ERR_PENDING) {
2817 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2818 if (h1_send_error(h1c))
2819 h1_send(h1c);
2820 }
Christopher Fauletae635762020-09-21 11:47:16 +02002821
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002822 /* If there is some pending outgoing data or error, just wait */
2823 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2824 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002825
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002826 /* Otherwise we can release the H1 connection */
2827 goto release;
2828 }
2829 else {
2830 /* Here there is still a H1 stream with a conn-stream.
2831 * Report the connection state at the stream level
2832 */
2833 if (conn_xprt_read0_pending(conn)) {
2834 h1s->flags |= H1S_F_REOS;
2835 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2836 }
Willy Tarreaua3d9a372022-08-29 10:22:56 +02002837 if ((h1c->flags & H1C_F_ST_ERROR) || ((conn->flags & CO_FL_ERROR) &&
2838 ((h1s->cs->flags & (CS_FL_EOI|CS_FL_EOS)) || !b_data(&h1c->ibuf))))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002839 h1s->cs->flags |= CS_FL_ERROR;
2840 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002841 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002842 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002843 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002844
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002845 if (!b_data(&h1c->ibuf))
2846 h1_release_buf(h1c, &h1c->ibuf);
2847
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002848 /* Check if a soft-stop is in progress.
2849 * Release idling front connection if this is the case.
2850 */
2851 if (!(h1c->flags & H1C_F_IS_BACK)) {
2852 if (unlikely(h1c->px->disabled)) {
William Dauchy4711a892022-01-05 22:53:24 +01002853 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
2854 h1c->flags & H1C_F_WAIT_NEXT_REQ)
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002855 goto release;
2856 }
2857 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002858
2859 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2860 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2861 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002862 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002863
Christopher Faulet47365272018-10-31 17:40:50 +01002864 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002865 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002866 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002867 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002868
2869 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002870 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002871 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002872 * attached CS first. Here, the H1C must not be READY */
2873 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2874
2875 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2876 h1s->cs->flags |= CS_FL_EOS;
2877 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2878 h1s->cs->flags |= CS_FL_ERROR;
2879 h1_alert(h1s);
2880 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2881 }
2882 else {
2883 h1_release(h1c);
2884 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2885 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002886 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002887}
2888
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002889struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002890{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002891 struct connection *conn;
2892 struct tasklet *tl = (struct tasklet *)t;
2893 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002894 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002895 int ret = 0;
2896
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002897 if (state & TASK_F_USR1) {
2898 /* the tasklet was idling on an idle connection, it might have
2899 * been stolen, let's be careful!
2900 */
2901 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2902 if (tl->context == NULL) {
2903 /* The connection has been taken over by another thread,
2904 * we're no longer responsible for it, so just free the
2905 * tasklet, and do nothing.
2906 */
2907 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2908 tasklet_free(tl);
2909 return NULL;
2910 }
2911 conn = h1c->conn;
2912 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002913
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002914 /* Remove the connection from the list, to be sure nobody attempts
2915 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002916 */
Christopher Fauletc5fd15d2023-03-16 11:43:05 +01002917 conn_in_list = conn_get_idle_flag(conn);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002918 if (conn_in_list)
2919 conn_delete_from_tree(&conn->hash_node->node);
2920
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002921 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002922 } else {
2923 /* we're certain the connection was not in an idle list */
2924 conn = h1c->conn;
2925 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2926 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002927 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002928
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002929 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002930 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002931 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002932 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002933 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002934 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002935
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002936 /* If we were in an idle list, we want to add it back into it,
2937 * unless h1_process() returned -1, which mean it has destroyed
2938 * the connection (testing !ret is enough, if h1_process() wasn't
2939 * called then ret will be 0 anyway.
2940 */
Willy Tarreau74163142021-03-13 11:30:19 +01002941 if (ret < 0)
2942 t = NULL;
2943
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002944 if (!ret && conn_in_list) {
2945 struct server *srv = objt_server(conn->target);
2946
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002947 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002948 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002949 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002950 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002951 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002952 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002953 }
Willy Tarreau74163142021-03-13 11:30:19 +01002954 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002955}
2956
Christopher Faulet51dbc942018-09-13 09:05:15 +02002957static int h1_wake(struct connection *conn)
2958{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002959 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002960 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002961
Christopher Faulet6b81df72019-10-01 22:08:43 +02002962 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2963
Christopher Faulet539e0292018-11-19 10:40:09 +01002964 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002965 ret = h1_process(h1c);
2966 if (ret == 0) {
2967 struct h1s *h1s = h1c->h1s;
2968
Christopher Fauletad4daf62021-01-21 17:49:01 +01002969 if (h1c->flags & H1C_F_ST_ATTACHED)
2970 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002971 }
2972 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002973}
2974
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002975/* Connection timeout management. The principle is that if there's no receipt
2976 * nor sending for a certain amount of time, the connection is closed.
2977 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002978struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002979{
2980 struct h1c *h1c = context;
2981 int expired = tick_is_expired(t->expire, now_ms);
2982
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002983 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002984
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002985 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002986 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002987 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002988
2989 /* Somebody already stole the connection from us, so we should not
2990 * free it, we just have to free the task.
2991 */
2992 if (!t->context) {
2993 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002994 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002995 goto do_leave;
2996 }
2997
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002998 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002999 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003000 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003001 return t;
3002 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003003
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003004 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003005 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003006 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003007 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003008 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003009 t->expire = TICK_ETERNITY;
3010 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3011 return t;
3012 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003013
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003014 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003015 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3016 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003017 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003018 if (h1_handle_req_tout(h1c))
3019 h1_send(h1c);
3020 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3021 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003022 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003023 return t;
3024 }
3025 }
3026
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003027 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003028 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003029 * attached CS first. Here, the H1C must not be READY */
3030 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3031 h1_alert(h1c->h1s);
3032 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003033 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003034 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3035 return t;
3036 }
3037
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003038 /* We're about to destroy the connection, so make sure nobody attempts
3039 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003040 */
Christopher Fauletc5fd15d2023-03-16 11:43:05 +01003041 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003042 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003043
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003044 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003045 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003046
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003047 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003048 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003049
3050 if (!h1c) {
3051 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003052 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003053 return NULL;
3054 }
3055
3056 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003057 h1_release(h1c);
3058 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003059 return NULL;
3060}
3061
Christopher Faulet51dbc942018-09-13 09:05:15 +02003062/*******************************************/
3063/* functions below are used by the streams */
3064/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003065
Christopher Faulet51dbc942018-09-13 09:05:15 +02003066/*
3067 * Attach a new stream to a connection
3068 * (Used for outgoing connections)
3069 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003070static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003071{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003072 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003073 struct conn_stream *cs = NULL;
3074 struct h1s *h1s;
3075
Willy Tarreau0148a6a2022-09-01 15:49:23 +02003076 /* this connection is no more idle (if it was at all) */
3077 h1c->flags &= ~H1C_F_ST_SILENT_SHUT;
3078
Christopher Faulet6b81df72019-10-01 22:08:43 +02003079 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003080 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003081 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3082 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003083 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003084
Christopher Faulet236c93b2020-07-02 09:19:54 +02003085 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003086 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003087 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3088 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003089 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003090
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003091 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003092 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003093 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3094 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003095 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003096
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003097 /* the connection is not idle anymore, let's mark this */
3098 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003099 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003100
Christopher Faulet6b81df72019-10-01 22:08:43 +02003101 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003102 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003103 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003104 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003105 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 +02003106 return NULL;
3107}
3108
3109/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3110 * this mux, it's easy as we can only store a single conn_stream.
3111 */
3112static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3113{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003114 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003115 struct h1s *h1s = h1c->h1s;
3116
3117 if (h1s)
3118 return h1s->cs;
3119
3120 return NULL;
3121}
3122
Christopher Faulet73c12072019-04-08 11:23:22 +02003123static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003124{
Christopher Faulet73c12072019-04-08 11:23:22 +02003125 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003126
Christopher Faulet6b81df72019-10-01 22:08:43 +02003127 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003128 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003129 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003130}
3131
3132/*
3133 * Detach the stream from the connection and possibly release the connection.
3134 */
3135static void h1_detach(struct conn_stream *cs)
3136{
3137 struct h1s *h1s = cs->ctx;
3138 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003139 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003140 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003141
Christopher Faulet6b81df72019-10-01 22:08:43 +02003142 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3143
Christopher Faulet51dbc942018-09-13 09:05:15 +02003144 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003145 if (!h1s) {
3146 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003147 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003148 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003149
Olivier Houchardf502aca2018-12-14 19:42:40 +01003150 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003151 h1c = h1s->h1c;
3152 h1s->cs = NULL;
3153
Christopher Faulet42849b02020-10-05 11:35:17 +02003154 sess->accept_date = date;
3155 sess->tv_accept = now;
3156 sess->t_handshake = 0;
3157 sess->t_idle = -1;
3158
Olivier Houchard8a786902018-12-15 16:05:40 +01003159 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3160 h1s_destroy(h1s);
3161
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003162 if ((h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_IDLE)) == (H1C_F_IS_BACK|H1C_F_ST_IDLE)) {
Willy Tarreau0148a6a2022-09-01 15:49:23 +02003163 /* this connection may be killed at any moment, we want it to
3164 * die "cleanly" (i.e. only an RST).
3165 */
3166 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3167
Christopher Fauletf1204b82019-07-19 14:51:06 +02003168 /* If there are any excess server data in the input buffer,
3169 * release it and close the connection ASAP (some data may
3170 * remain in the output buffer). This happens if a server sends
3171 * invalid responses. So in such case, we don't want to reuse
3172 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003173 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003174 if (b_data(&h1c->ibuf)) {
3175 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003176 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003177 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003178 goto release;
3179 }
Christopher Faulet03627242019-07-19 11:34:08 +02003180
Christopher Faulet08016ab2020-07-01 16:10:06 +02003181 if (h1c->conn->flags & CO_FL_PRIVATE) {
3182 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003183 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3184 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003185 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003186 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003187 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003188 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003189 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003190 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003191 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3192 goto end;
3193 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003194 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003195 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003196 if (h1c->conn->owner == sess)
3197 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003198
3199 /* mark that the tasklet may lose its context to another thread and
3200 * that the handler needs to check it under the idle conns lock.
3201 */
3202 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003203 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003204 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3205
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003206 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003207 /* The server doesn't want it, let's kill the connection right away */
3208 h1c->conn->mux->destroy(h1c);
3209 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3210 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003211 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003212 /* At this point, the connection has been added to the
3213 * server idle list, so another thread may already have
3214 * hijacked it, so we can't do anything with it.
3215 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003216 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003217 }
3218 }
3219
Christopher Fauletf1204b82019-07-19 14:51:06 +02003220 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003221 /* 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 +01003222 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003223 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003224 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003225 !h1c->conn->owner) {
3226 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003227 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003228 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003229 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003230 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003231 /* If we have a new request, process it immediately or
3232 * subscribe for reads waiting for new data
3233 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003234 if (unlikely(b_data(&h1c->ibuf))) {
3235 if (h1_process(h1c) == -1)
3236 goto end;
3237 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003238 else
3239 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3240 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003241 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003242 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003243 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003244 end:
3245 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003246}
3247
3248
3249static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3250{
3251 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003252 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003253
3254 if (!h1s)
3255 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003256 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003257
Christopher Fauletea62e182021-11-10 10:30:15 +01003258 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003259
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003260 if (cs->flags & CS_FL_SHR)
3261 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003262 if (cs->flags & CS_FL_KILL_CONN) {
3263 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3264 goto do_shutr;
3265 }
3266 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3267 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003268 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003269 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003270
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003271 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3272 /* Here attached is implicit because there is CS */
3273 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3274 goto end;
3275 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003276 if (h1s->flags & H1S_F_WANT_KAL) {
3277 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003278 goto end;
3279 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003280
Christopher Faulet7f366362019-04-08 10:51:20 +02003281 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003282 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3283 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003284 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003285 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003286 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003287 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003288 end:
3289 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003290}
3291
3292static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3293{
3294 struct h1s *h1s = cs->ctx;
3295 struct h1c *h1c;
3296
3297 if (!h1s)
3298 return;
3299 h1c = h1s->h1c;
3300
Christopher Fauletea62e182021-11-10 10:30:15 +01003301 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003302
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003303 if (cs->flags & CS_FL_SHW)
3304 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003305 if (cs->flags & CS_FL_KILL_CONN) {
3306 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003307 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003308 }
3309 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3310 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3311 goto do_shutw;
3312 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003313
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003314 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3315 /* Here attached is implicit because there is CS */
3316 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3317 goto end;
3318 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003319 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3320 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003321 goto end;
3322 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003323
Christopher Faulet7f366362019-04-08 10:51:20 +02003324 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003325 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003326 if (mode != CS_SHW_NORMAL)
3327 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3328
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003329 if (!b_data(&h1c->obuf))
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003330 h1_shutw_conn(cs->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003331 end:
3332 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003333}
3334
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003335static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003336{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003337 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003338
Willy Tarreau62592ad2021-03-26 09:09:42 +01003339 if (conn->flags & CO_FL_SOCK_WR_SH)
3340 return;
3341
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003342 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003343 conn_xprt_shutw(conn);
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003344 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
Christopher Faulet9b949bc2023-03-24 09:26:16 +01003345
3346 if (h1c->wait_event.tasklet && !h1c->wait_event.events)
3347 tasklet_wakeup(h1c->wait_event.tasklet);
3348
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003349 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003350}
3351
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003352/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3353 * The <es> pointer is not allowed to differ from the one passed to the
3354 * subscribe() call. It always returns zero.
3355 */
3356static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003357{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003358 struct h1s *h1s = cs->ctx;
3359
3360 if (!h1s)
3361 return 0;
3362
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003363 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003364 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003365
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003366 es->events &= ~event_type;
3367 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003368 h1s->subs = NULL;
3369
3370 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003371 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003372
3373 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003374 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003375
Christopher Faulet51dbc942018-09-13 09:05:15 +02003376 return 0;
3377}
3378
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003379/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3380 * event subscriber <es> is not allowed to change from a previous call as long
3381 * as at least one event is still subscribed. The <event_type> must only be a
3382 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3383 * the conn_stream <cs> was already detached, in which case it will return -1.
3384 */
3385static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003386{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003387 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003388 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003389
3390 if (!h1s)
3391 return -1;
3392
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003393 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003394 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003395
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003396 es->events |= event_type;
3397 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003398
3399 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003400 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003401
3402
Christopher Faulet6b81df72019-10-01 22:08:43 +02003403 if (event_type & SUB_RETRY_SEND) {
3404 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003405 /*
3406 * If the conn_stream attempt to subscribe, and the
3407 * mux isn't subscribed to the connection, then it
3408 * probably means the connection wasn't established
3409 * yet, so we have to subscribe.
3410 */
3411 h1c = h1s->h1c;
3412 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3413 h1c->conn->xprt->subscribe(h1c->conn,
3414 h1c->conn->xprt_ctx,
3415 SUB_RETRY_SEND,
3416 &h1c->wait_event);
3417 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003418 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003419}
3420
Christopher Faulet93a466b2021-09-21 15:50:55 +02003421/* Called from the upper layer, to receive data.
3422 *
3423 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3424 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3425 * means the caller wants to flush input data (from the mux buffer and the
3426 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3427 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3428 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3429 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3430 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3431 * copy as much data as possible.
3432 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003433static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3434{
3435 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003436 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003437 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003438 size_t ret = 0;
3439
Willy Tarreau022e5e52020-09-10 09:33:15 +02003440 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003441
3442 /* Do nothing for now if not READY */
3443 if (!(h1c->flags & H1C_F_ST_READY)) {
3444 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3445 goto end;
3446 }
3447
Christopher Faulet539e0292018-11-19 10:40:09 +01003448 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02003449 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003450 else
3451 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003452
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003453 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3454 h1c->flags |= H1C_F_WANT_SPLICE;
3455 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 +02003456 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003457 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003458 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 +01003459 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003460 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003461
3462 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003463 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003464 return ret;
3465}
3466
3467
3468/* Called from the upper layer, to send data */
3469static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3470{
3471 struct h1s *h1s = cs->ctx;
3472 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003473 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003474
3475 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003476 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003477 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003478
Willy Tarreau022e5e52020-09-10 09:33:15 +02003479 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003480
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003481 /* If we're not connected yet, or we're waiting for a handshake, stop
3482 * now, as we don't want to remove everything from the channel buffer
3483 * before we're sure we can send it.
3484 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003485 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003486 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003487 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003488 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003489
Christopher Fauletdea24742021-01-22 15:12:30 +01003490 if (h1c->flags & H1C_F_ST_ERROR) {
3491 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003492 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 +01003493 return 0;
3494 }
3495
Christopher Faulet46230362019-10-17 16:04:20 +02003496 /* Inherit some flags from the upper layer */
3497 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3498 if (flags & CO_SFL_MSG_MORE)
3499 h1c->flags |= H1C_F_CO_MSG_MORE;
3500 if (flags & CO_SFL_STREAMER)
3501 h1c->flags |= H1C_F_CO_STREAMER;
3502
Christopher Fauletc31872f2019-06-04 22:09:36 +02003503 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003504 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003505
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003506 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
3507 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003508 else
3509 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003510
Christopher Fauletda3db5b2022-09-15 16:21:55 +02003511 if (!ret)
Christopher Fauletc76359d2022-07-08 15:20:31 +02003512 break;
3513
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003514 if ((count - ret) > 0)
3515 h1c->flags |= H1C_F_CO_MSG_MORE;
3516
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003517 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003518 count -= ret;
Christopher Fauletda3db5b2022-09-15 16:21:55 +02003519
Olivier Houchard68787ef2020-01-15 19:13:32 +01003520 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003521 break;
Christopher Fauletda3db5b2022-09-15 16:21:55 +02003522
3523 if ((h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)))
3524 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003525 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003526
Willy Tarreaua3d9a372022-08-29 10:22:56 +02003527 if ((h1c->flags & H1C_F_ST_ERROR) || ((h1c->conn->flags & CO_FL_ERROR) &&
3528 ((cs->flags & (CS_FL_EOI|CS_FL_EOS)) || !b_data(&h1c->ibuf)))) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003529 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003530 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 +01003531 }
3532
Christopher Faulet7a145d62020-08-05 11:31:16 +02003533 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003534 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003535 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003536}
3537
Willy Tarreaue5733232019-05-22 19:24:06 +02003538#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003539/* Send and get, using splicing */
3540static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3541{
3542 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003543 struct h1c *h1c = h1s->h1c;
3544 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003545 int ret = 0;
3546
Willy Tarreau022e5e52020-09-10 09:33:15 +02003547 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003548
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003549 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003550 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003551 TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulete18777b2019-04-16 16:46:36 +02003552 goto end;
3553 }
3554
Christopher Faulet0b34e512021-07-26 10:49:39 +02003555 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003556 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003557 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003558 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003559 }
3560
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003561 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003562 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3563 goto end;
3564 }
3565
Christopher Fauletc765de52021-11-26 17:26:19 +01003566 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003567 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003568 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet5f60d182021-11-26 16:37:55 +01003569 if (ret >= 0) {
Christopher Fauletc765de52021-11-26 17:26:19 +01003570 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet5f60d182021-11-26 16:37:55 +01003571 if (ret > h1m->curr_len) {
3572 h1s->flags |= H1S_F_PARSING_ERROR;
3573 h1c->flags |= H1C_F_ST_ERROR;
3574 cs->flags |= CS_FL_ERROR;
3575 TRACE_ERROR("too much payload, more than announced",
3576 H1_EV_RX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3577 goto end;
3578 }
3579 h1m->curr_len -= ret;
3580 if (!h1m->curr_len) {
3581 h1m->state = H1_MSG_DONE;
3582 h1c->flags &= ~H1C_F_WANT_SPLICE;
3583 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, cs->conn, h1s);
3584 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003585 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003586 }
3587
Christopher Faulet1be55f92018-10-02 15:59:23 +02003588 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003589 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003590 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003591 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003592 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003593 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003594
Christopher Faulet94d35102021-04-09 11:58:49 +02003595 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003596 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003597 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003598 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3599 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3600 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3601 }
Christopher Faulet27182292020-07-03 15:08:49 +02003602 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003603
Willy Tarreau022e5e52020-09-10 09:33:15 +02003604 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003605 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003606}
3607
3608static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3609{
3610 struct h1s *h1s = cs->ctx;
Christopher Faulet5f60d182021-11-26 16:37:55 +01003611 struct h1c *h1c = h1s->h1c;
3612 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003613 int ret = 0;
3614
Willy Tarreau022e5e52020-09-10 09:33:15 +02003615 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003616
Christopher Faulet5f60d182021-11-26 16:37:55 +01003617 if (b_data(&h1c->obuf)) {
3618 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003619 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Christopher Faulet5f60d182021-11-26 16:37:55 +01003620 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003621 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003622 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003623 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003624
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003625 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Fauletc765de52021-11-26 17:26:19 +01003626 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet5f60d182021-11-26 16:37:55 +01003627 if (ret > h1m->curr_len) {
3628 h1s->flags |= H1S_F_PROCESSING_ERROR;
3629 h1c->flags |= H1C_F_ST_ERROR;
3630 cs->flags |= CS_FL_ERROR;
3631 TRACE_ERROR("too much payload, more than announced",
3632 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3633 goto end;
3634 }
3635 h1m->curr_len -= ret;
3636 if (!h1m->curr_len) {
3637 h1m->state = H1_MSG_DONE;
3638 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, cs->conn, h1s);
3639 }
3640 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003641
3642 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003643 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003644 return ret;
3645}
3646#endif
3647
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003648static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3649{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003650 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003651 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003652
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003653 switch (mux_ctl) {
3654 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003655 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003656 ret |= MUX_STATUS_READY;
3657 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003658 case MUX_EXIT_STATUS:
Christopher Fauletc18fc232020-10-06 17:41:36 +02003659 ret = (h1c->errcode == 400 ? MUX_ES_INVALID_ERR :
3660 (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003661 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3662 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3663 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003664 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003665 default:
3666 return -1;
3667 }
3668}
3669
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003670/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003671static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003672{
3673 struct h1c *h1c = conn->ctx;
3674 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003675 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003676
Christopher Fauletf376a312019-01-04 15:16:06 +01003677 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3678 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003679 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3680 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3681 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3682 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3683
3684 if (h1s) {
3685 char *method;
3686
3687 if (h1s->meth < HTTP_METH_OTHER)
3688 method = http_known_methods[h1s->meth].ptr;
3689 else
3690 method = "UNKNOWN";
3691 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3692 " .meth=%s status=%d",
3693 h1s, h1s->flags,
3694 h1m_state_str(h1s->req.state),
3695 h1m_state_str(h1s->res.state), method, h1s->status);
3696 if (h1s->cs)
3697 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3698 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003699
Willy Tarreaudb316fb2022-09-02 14:21:05 +02003700 chunk_appendf(msg, " .subs=%p", h1s->subs);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003701 if (h1s->subs) {
Willy Tarreaudb316fb2022-09-02 14:21:05 +02003702 chunk_appendf(msg, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3703 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003704 h1s->subs->tasklet->calls,
3705 h1s->subs->tasklet->context);
3706 if (h1s->subs->tasklet->calls >= 1000000)
3707 ret = 1;
Willy Tarreaudb316fb2022-09-02 14:21:05 +02003708 resolve_sym_name(msg, NULL, h1s->subs->tasklet->process);
3709 chunk_appendf(msg, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003710 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003711 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003712 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003713}
3714
3715
3716/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3717static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3718{
3719 struct h1_hdr_entry *entry;
3720
3721 /* Be sure there is a non-empty <to> */
3722 if (!strlen(to)) {
3723 memprintf(err, "expect <to>");
3724 return -1;
3725 }
3726
3727 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003728 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003729 memprintf(err, "<from> and <to> must not differ execpt the case");
3730 return -1;
3731 }
3732
3733 /* Be sure <from> does not already existsin the tree */
3734 if (ebis_lookup(&hdrs_map.map, from)) {
3735 memprintf(err, "duplicate entry '%s'", from);
3736 return -1;
3737 }
3738
3739 /* Create the entry and insert it in the tree */
3740 entry = malloc(sizeof(*entry));
3741 if (!entry) {
3742 memprintf(err, "out of memory");
3743 return -1;
3744 }
3745
3746 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003747 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003748 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003749 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003750 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003751 free(entry);
3752 memprintf(err, "out of memory");
3753 return -1;
3754 }
3755 ebis_insert(&hdrs_map.map, &entry->node);
3756 return 0;
3757}
3758
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003759/* Migrate the the connection to the current thread.
3760 * Return 0 if successful, non-zero otherwise.
3761 * Expected to be called with the old thread lock held.
3762 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003763static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003764{
3765 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003766 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003767
3768 if (fd_takeover(conn->handle.fd, conn) != 0)
3769 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003770
3771 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3772 /* We failed to takeover the xprt, even if the connection may
3773 * still be valid, flag it as error'd, as we have already
3774 * taken over the fd, and wake the tasklet, so that it will
3775 * destroy it.
3776 */
3777 conn->flags |= CO_FL_ERROR;
3778 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3779 return -1;
3780 }
3781
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003782 if (h1c->wait_event.events)
3783 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3784 h1c->wait_event.events, &h1c->wait_event);
3785 /* To let the tasklet know it should free itself, and do nothing else,
3786 * set its context to NULL.
3787 */
3788 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003789 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003790
3791 task = h1c->task;
3792 if (task) {
3793 task->context = NULL;
3794 h1c->task = NULL;
3795 __ha_barrier_store();
3796 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003797
3798 h1c->task = task_new(tid_bit);
3799 if (!h1c->task) {
3800 h1_release(h1c);
3801 return -1;
3802 }
3803 h1c->task->process = h1_timeout_task;
3804 h1c->task->context = h1c;
3805 }
3806 h1c->wait_event.tasklet = tasklet_new();
3807 if (!h1c->wait_event.tasklet) {
3808 h1_release(h1c);
3809 return -1;
3810 }
3811 h1c->wait_event.tasklet->process = h1_io_cb;
3812 h1c->wait_event.tasklet->context = h1c;
3813 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3814 SUB_RETRY_RECV, &h1c->wait_event);
3815
3816 return 0;
3817}
3818
3819
Christopher Faulet98fbe952019-07-22 16:18:24 +02003820static void h1_hdeaders_case_adjust_deinit()
3821{
3822 struct ebpt_node *node, *next;
3823 struct h1_hdr_entry *entry;
3824
3825 node = ebpt_first(&hdrs_map.map);
3826 while (node) {
3827 next = ebpt_next(node);
3828 ebpt_delete(node);
3829 entry = container_of(node, struct h1_hdr_entry, node);
3830 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003831 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003832 free(entry);
3833 node = next;
3834 }
3835 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003836}
3837
Christopher Faulet98fbe952019-07-22 16:18:24 +02003838static int cfg_h1_headers_case_adjust_postparser()
3839{
3840 FILE *file = NULL;
3841 char *c, *key_beg, *key_end, *value_beg, *value_end;
3842 char *err;
3843 int rc, line = 0, err_code = 0;
3844
3845 if (!hdrs_map.name)
3846 goto end;
3847
3848 file = fopen(hdrs_map.name, "r");
3849 if (!file) {
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003850 ha_alert("config : h1-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003851 hdrs_map.name);
3852 err_code |= ERR_ALERT | ERR_FATAL;
3853 goto end;
3854 }
3855
3856 /* now parse all lines. The file may contain only two header name per
3857 * line, separated by spaces. All heading and trailing spaces will be
3858 * ignored. Lines starting with a # are ignored.
3859 */
3860 while (fgets(trash.area, trash.size, file) != NULL) {
3861 line++;
3862 c = trash.area;
3863
3864 /* strip leading spaces and tabs */
3865 while (*c == ' ' || *c == '\t')
3866 c++;
3867
3868 /* ignore emptu lines, or lines beginning with a dash */
3869 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3870 continue;
3871
3872 /* look for the end of the key */
3873 key_beg = c;
3874 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3875 c++;
3876 key_end = c;
3877
3878 /* strip middle spaces and tabs */
3879 while (*c == ' ' || *c == '\t')
3880 c++;
3881
3882 /* look for the end of the value, it is the end of the line */
3883 value_beg = c;
3884 while (*c && *c != '\n' && *c != '\r')
3885 c++;
3886 value_end = c;
3887
3888 /* trim possibly trailing spaces and tabs */
3889 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3890 value_end--;
3891
3892 /* set final \0 and check entries */
3893 *key_end = '\0';
3894 *value_end = '\0';
3895
3896 err = NULL;
3897 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3898 if (rc < 0) {
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003899 ha_alert("config : h1-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003900 hdrs_map.name, err, line);
3901 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003902 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003903 goto end;
3904 }
3905 if (rc > 0) {
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003906 ha_warning("config : h1-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003907 hdrs_map.name, err, line);
3908 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003909 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003910 }
3911 }
3912
3913 end:
3914 if (file)
3915 fclose(file);
3916 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3917 return err_code;
3918}
3919
3920
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003921/* config parser for global "h1-header-case-adjust" */
Christopher Faulet98fbe952019-07-22 16:18:24 +02003922static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003923 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003924 char **err)
3925{
3926 if (too_many_args(2, args, err, NULL))
3927 return -1;
3928 if (!*(args[1]) || !*(args[2])) {
3929 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3930 return -1;
3931 }
3932 return add_hdr_case_adjust(args[1], args[2], err);
3933}
3934
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003935/* config parser for global "h1-headers-case-adjust-file" */
Christopher Faulet98fbe952019-07-22 16:18:24 +02003936static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003937 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003938 char **err)
3939{
3940 if (too_many_args(1, args, err, NULL))
3941 return -1;
3942 if (!*(args[1])) {
3943 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3944 return -1;
3945 }
3946 free(hdrs_map.name);
3947 hdrs_map.name = strdup(args[1]);
3948 return 0;
3949}
3950
3951
3952/* config keyword parsers */
3953static struct cfg_kw_list cfg_kws = {{ }, {
3954 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3955 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3956 { 0, NULL, NULL },
3957 }
3958};
3959
3960INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3961REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3962
3963
Christopher Faulet51dbc942018-09-13 09:05:15 +02003964/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003965/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003966/****************************************/
3967
3968/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003969static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003970 .init = h1_init,
3971 .wake = h1_wake,
3972 .attach = h1_attach,
3973 .get_first_cs = h1_get_first_cs,
3974 .detach = h1_detach,
3975 .destroy = h1_destroy,
3976 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003977 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003978 .rcv_buf = h1_rcv_buf,
3979 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003980#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003981 .rcv_pipe = h1_rcv_pipe,
3982 .snd_pipe = h1_snd_pipe,
3983#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003984 .subscribe = h1_subscribe,
3985 .unsubscribe = h1_unsubscribe,
3986 .shutr = h1_shutr,
3987 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003988 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003989 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003990 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003991 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003992 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003993};
3994
Christopher Faulet3f612f72021-02-05 16:44:21 +01003995static const struct mux_ops mux_h1_ops = {
3996 .init = h1_init,
3997 .wake = h1_wake,
3998 .attach = h1_attach,
3999 .get_first_cs = h1_get_first_cs,
4000 .detach = h1_detach,
4001 .destroy = h1_destroy,
4002 .avail_streams = h1_avail_streams,
4003 .used_streams = h1_used_streams,
4004 .rcv_buf = h1_rcv_buf,
4005 .snd_buf = h1_snd_buf,
4006#if defined(USE_LINUX_SPLICE)
4007 .rcv_pipe = h1_rcv_pipe,
4008 .snd_pipe = h1_snd_pipe,
4009#endif
4010 .subscribe = h1_subscribe,
4011 .unsubscribe = h1_unsubscribe,
4012 .shutr = h1_shutr,
4013 .shutw = h1_shutw,
4014 .show_fd = h1_show_fd,
4015 .ctl = h1_ctl,
4016 .takeover = h1_takeover,
4017 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4018 .name = "H1",
4019};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004020
Christopher Faulet3f612f72021-02-05 16:44:21 +01004021/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4022static struct mux_proto_list mux_proto_h1 =
4023 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4024static struct mux_proto_list mux_proto_http =
4025 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004026
Christopher Faulet3f612f72021-02-05 16:44:21 +01004027INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4028INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004029
Christopher Faulet51dbc942018-09-13 09:05:15 +02004030/*
4031 * Local variables:
4032 * c-indent-level: 8
4033 * c-basic-offset: 8
4034 * End:
4035 */