blob: 24d1b74f6f9e0d0dcd567a87dc6a689dcb875266 [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 Faulet84502f32023-11-07 18:36:02 +0100518 else if ((h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_IDLE)) == H1C_F_ST_IDLE) {
519 /* idle front connections. */
520 h1c->task->expire = (tick_isset(h1c->idle_exp) ? h1c->idle_exp : tick_add(now_ms, h1c->timeout));
521 TRACE_DEVEL("refreshing connection's timeout (idle front h1c)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
522 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100523 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
524 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200525 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100526 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 +0200527 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200528 else {
529 /* alive back connections of front connections with a conn-stream attached */
530 h1c->task->expire = TICK_ETERNITY;
531 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
532 }
533
Christopher Fauletdbe57792020-10-05 17:50:58 +0200534 /* Finally set the idle expiration date if shorter */
535 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200536 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
537 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200538 }
539}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200540
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200541static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200542{
543 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
544 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
545 h1c->idle_exp = TICK_ETERNITY;
546 return;
547 }
548
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100549 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200550 if (!tick_isset(h1c->idle_exp)) {
551 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
552 !b_data(&h1c->ibuf) && /* No input data */
553 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
554 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
555 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
556 }
557 else {
558 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
559 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
560 }
561 }
562 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100563 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200564 if (!tick_isset(h1c->idle_exp)) {
565 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
566 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
567 }
568 }
569 else { // CS_ATTACHED or SHUTDOWN
570 h1c->idle_exp = TICK_ETERNITY;
571 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
572 }
573}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200574/*****************************************************************/
575/* functions below are dedicated to the mux setup and management */
576/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200577
578/* returns non-zero if there are input data pending for stream h1s. */
579static inline size_t h1s_data_pending(const struct h1s *h1s)
580{
581 const struct h1m *h1m;
582
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200583 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100584 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200585}
586
Christopher Faulet16df1782020-12-04 16:47:41 +0100587/* Creates a new conn-stream and the associate stream. <input> is used as input
588 * buffer for the stream. On success, it is transferred to the stream and the
589 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
590 * mux must still take care of it. However, there is nothing special to do
591 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
592 * b_free() on it is always safe. This function returns the conn-stream on
593 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200594static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100595{
596 struct conn_stream *cs;
597
Christopher Faulet6b81df72019-10-01 22:08:43 +0200598 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200599 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200600 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100601 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 +0100602 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200603 }
Christopher Faulet47365272018-10-31 17:40:50 +0100604 h1s->cs = cs;
605 cs->ctx = h1s;
606
607 if (h1s->flags & H1S_F_NOT_FIRST)
608 cs->flags |= CS_FL_NOT_FIRST;
609
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +0200610 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
611 cs->flags |= CS_FL_WEBSOCKET;
612
Christopher Faulet26256f82020-09-14 11:40:13 +0200613 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200614 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 +0100615 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200616 }
617
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100618 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 +0200619 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100620 return cs;
621
622 err:
623 cs_free(cs);
624 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100625 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100626 return NULL;
627}
628
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100629static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
630{
631 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
632
633 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100634 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 +0100635 goto err;
636 }
637
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100638 h1s->h1c->flags |= H1C_F_ST_READY;
639 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
640 return h1s->cs;
641
642 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100643 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100644 return NULL;
645}
646
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200647static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200648{
649 struct h1s *h1s;
650
Christopher Faulet6b81df72019-10-01 22:08:43 +0200651 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
652
Christopher Faulet51dbc942018-09-13 09:05:15 +0200653 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100654 if (!h1s) {
655 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 +0100656 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100657 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200658 h1s->h1c = h1c;
659 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200660 h1s->sess = NULL;
661 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100662 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100663 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200664 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100665 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200666
667 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100668 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200669
Christopher Faulet129817b2018-09-20 16:14:40 +0200670 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100671 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200672
673 h1s->status = 0;
674 h1s->meth = HTTP_METH_OTHER;
675
Christopher Faulet47365272018-10-31 17:40:50 +0100676 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
677 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100678 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100679
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200680 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
681 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200682
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200683 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100684 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200685 return NULL;
686}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100687
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200688static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
689{
690 struct session *sess = h1c->conn->owner;
691 struct h1s *h1s;
692
693 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
694
695 h1s = h1s_new(h1c);
696 if (!h1s)
697 goto fail;
698
699 h1s->sess = sess;
700
701 if (h1c->px->options2 & PR_O2_REQBUG_OK)
702 h1s->req.err_pos = -1;
703
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200704 h1c->idle_exp = TICK_ETERNITY;
705 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200706 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200707 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100708
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200709 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100710 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200711 return NULL;
712}
713
714static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
715{
716 struct h1s *h1s;
717
718 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
719
720 h1s = h1s_new(h1c);
721 if (!h1s)
722 goto fail;
723
Christopher Faulet10a86702021-04-07 14:18:11 +0200724 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200725 h1s->cs = cs;
726 h1s->sess = sess;
727 cs->ctx = h1s;
728
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100729 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200730
731 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
732 h1s->res.err_pos = -1;
733
734 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
735 return h1s;
736
737 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100738 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100739 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200740}
741
742static void h1s_destroy(struct h1s *h1s)
743{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200744 if (h1s) {
745 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200746
Christopher Faulet6b81df72019-10-01 22:08:43 +0200747 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200748 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200749
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100750 if (h1s->subs)
751 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200752
Christopher Fauletd17ad822020-09-24 15:14:29 +0200753 h1_release_buf(h1c, &h1s->rxbuf);
754
Christopher Faulet10a86702021-04-07 14:18:11 +0200755 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100756 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200757 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
758 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200759 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100760 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100761 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 +0200762 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100763
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100764 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100765 !(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 +0100766 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100767 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100768 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100769 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
770 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200771 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100772 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100773 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200774 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200775 pool_free(pool_head_h1s, h1s);
776 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200777}
778
779/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200780 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500781 * to the existing conn_stream (for outgoing connections or for incoming ones
782 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200783 * establishment). <input> is always used as Input buffer and may contain
784 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
785 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200786 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200787static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
788 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200789{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200790 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100791 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200792 void *conn_ctx = conn->ctx;
793
794 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200795
796 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100797 if (!h1c) {
798 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200799 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100800 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200801 h1c->conn = conn;
802 h1c->px = proxy;
803
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100804 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200805 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200806 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200807 h1c->obuf = BUF_NULL;
808 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200809 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200810
Willy Tarreau90f366b2021-02-20 11:49:49 +0100811 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200812 h1c->wait_event.tasklet = tasklet_new();
813 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200814 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200815 h1c->wait_event.tasklet->process = h1_io_cb;
816 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100817 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200818 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200819
Christopher Faulete9b70722019-04-08 10:46:02 +0200820 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200821 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100822 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
823 if (tick_isset(proxy->timeout.serverfin))
824 h1c->shut_timeout = proxy->timeout.serverfin;
825 } else {
826 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
827 if (tick_isset(proxy->timeout.clientfin))
828 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200829
830 LIST_APPEND(&mux_stopping_data[tid].list,
831 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100832 }
833 if (tick_isset(h1c->timeout)) {
834 t = task_new(tid_bit);
Christopher Faulet26a26432021-01-27 11:27:50 +0100835 if (!t) {
836 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 +0100837 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100838 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100839
840 h1c->task = t;
841 t->process = h1_timeout_task;
842 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200843
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100844 t->expire = tick_add(now_ms, h1c->timeout);
845 }
846
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100847 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200848
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200849 if (h1c->flags & H1C_F_IS_BACK) {
850 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200851 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
852 goto fail;
853 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100854 else if (conn_ctx) {
855 /* Upgraded frontend connection (from TCP) */
856 struct conn_stream *cs = conn_ctx;
857
858 if (!h1c_frt_stream_new(h1c))
859 goto fail;
860
861 h1c->h1s->cs = cs;
862 cs->ctx = h1c->h1s;
863
864 /* Attach the CS but Not ready yet */
865 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
866 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
867 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
868 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100869
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200870 if (t) {
871 h1_set_idle_expiration(h1c);
872 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100873 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200874 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100875
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200876 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100877 if (b_data(&h1c->ibuf))
878 tasklet_wakeup(h1c->wait_event.tasklet);
879 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200880 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200881
882 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200883 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200884 return 0;
885
886 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200887 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200888 if (h1c->wait_event.tasklet)
889 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200890 pool_free(pool_head_h1c, h1c);
891 fail_h1c:
Willy Tarreau8802bf12022-01-12 17:24:26 +0100892 if (!conn_is_back(conn))
893 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200894 conn->ctx = conn_ctx; // restore saved context
895 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200896 return -1;
897}
898
Christopher Faulet73c12072019-04-08 11:23:22 +0200899/* release function. This one should be called to free all resources allocated
900 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200901 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200902static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200903{
Christopher Faulet61840e72019-04-15 09:33:32 +0200904 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200905
Christopher Faulet6b81df72019-10-01 22:08:43 +0200906 TRACE_POINT(H1_EV_H1C_END);
907
Christopher Faulet51dbc942018-09-13 09:05:15 +0200908 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200909 /* The connection must be aattached to this mux to be released */
910 if (h1c->conn && h1c->conn->ctx == h1c)
911 conn = h1c->conn;
912
Christopher Faulet6b81df72019-10-01 22:08:43 +0200913 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
914
Christopher Faulet61840e72019-04-15 09:33:32 +0200915 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200916 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200917 /* Make sure we're no longer subscribed to anything */
918 if (h1c->wait_event.events)
919 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
920 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200921 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200922 /* connection successfully upgraded to H2, this
923 * mux was already released */
924 return;
925 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100926 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200927 sess_log(conn->owner); /* Log if the upgrade failed */
928 }
929
Olivier Houchard45c44372019-06-11 14:06:23 +0200930
Willy Tarreau2b718102021-04-21 07:32:39 +0200931 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100932 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200933
934 h1_release_buf(h1c, &h1c->ibuf);
935 h1_release_buf(h1c, &h1c->obuf);
936
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100937 if (h1c->task) {
938 h1c->task->context = NULL;
939 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
940 h1c->task = NULL;
941 }
942
Christopher Faulet9b949bc2023-03-24 09:26:16 +0100943 if (h1c->wait_event.tasklet) {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200944 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet9b949bc2023-03-24 09:26:16 +0100945 h1c->wait_event.tasklet = NULL;
946 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200947
Christopher Fauletf2824e62018-10-01 12:12:37 +0200948 h1s_destroy(h1c->h1s);
Christopher Faulet37c42542021-10-27 15:42:13 +0200949 if (conn) {
950 if (h1c->wait_event.events != 0)
951 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
952 &h1c->wait_event);
953 h1_shutw_conn(conn);
954 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200955 pool_free(pool_head_h1c, h1c);
956 }
957
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200958 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200959 if (!conn_is_back(conn))
960 LIST_DEL_INIT(&conn->stopping_list);
961
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200962 conn->mux = NULL;
963 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200964 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200965
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200966 conn_stop_tracking(conn);
967 conn_full_close(conn);
968 if (conn->destroy_cb)
969 conn->destroy_cb(conn);
970 conn_free(conn);
971 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200972}
973
974/******************************************************/
975/* functions below are for the H1 protocol processing */
976/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200977/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
978 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200979 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100980static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200981{
Christopher Faulet570d1612018-11-26 11:13:57 +0100982 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200983
Christopher Faulet570d1612018-11-26 11:13:57 +0100984 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200985 (*(p + 5) > '1' ||
986 (*(p + 5) == '1' && *(p + 7) >= '1')))
987 h1m->flags |= H1_MF_VER_11;
988}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200989
Christopher Faulet9768c262018-10-22 09:34:31 +0200990/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
991 * greater or equal to 1.1
992 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100993static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200994{
Christopher Faulet570d1612018-11-26 11:13:57 +0100995 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200996
Christopher Faulet570d1612018-11-26 11:13:57 +0100997 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200998 (*(p + 5) > '1' ||
999 (*(p + 5) == '1' && *(p + 7) >= '1')))
1000 h1m->flags |= H1_MF_VER_11;
1001}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001002
Christopher Fauletf2824e62018-10-01 12:12:37 +02001003/* Deduce the connection mode of the client connection, depending on the
1004 * configuration and the H1 message flags. This function is called twice, the
1005 * first time when the request is parsed and the second time when the response
1006 * is parsed.
1007 */
1008static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1009{
1010 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001011
1012 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001013 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001014 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001015 h1s->status == 101) {
1016 /* Either we've established an explicit tunnel, or we're
1017 * switching the protocol. In both cases, we're very unlikely to
1018 * understand the next protocols. We have to switch to tunnel
1019 * mode, so that we transfer the request and responses then let
1020 * this protocol pass unmodified. When we later implement
1021 * specific parsers for such protocols, we'll want to check the
1022 * Upgrade header which contains information about that protocol
1023 * for responses with status 101 (eg: see RFC2817 about TLS).
1024 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001025 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001026 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 +01001027 }
1028 else if (h1s->flags & H1S_F_WANT_KAL) {
1029 /* By default the client is in KAL mode. CLOSE mode mean
1030 * it is imposed by the client itself. So only change
1031 * KAL mode here. */
1032 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1033 /* no length known or explicit close => close */
1034 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001035 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 +01001036 }
1037 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1038 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001039 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001040 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001041 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 +01001042 }
1043 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001044 }
1045 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001046 /* Input direction: first pass */
1047 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1048 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001049 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001050 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 +01001051 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001052 }
1053
1054 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001055 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001056 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001057 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);
1058 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001059}
1060
1061/* Deduce the connection mode of the client connection, depending on the
1062 * configuration and the H1 message flags. This function is called twice, the
1063 * first time when the request is parsed and the second time when the response
1064 * is parsed.
1065 */
1066static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1067{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001068 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001069 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001070 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001071
Christopher Fauletf2824e62018-10-01 12:12:37 +02001072 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001073 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001074 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001075 h1s->status == 101) {
1076 /* Either we've established an explicit tunnel, or we're
1077 * switching the protocol. In both cases, we're very unlikely to
1078 * understand the next protocols. We have to switch to tunnel
1079 * mode, so that we transfer the request and responses then let
1080 * this protocol pass unmodified. When we later implement
1081 * specific parsers for such protocols, we'll want to check the
1082 * Upgrade header which contains information about that protocol
1083 * for responses with status 101 (eg: see RFC2817 about TLS).
1084 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001085 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001086 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 +01001087 }
1088 else if (h1s->flags & H1S_F_WANT_KAL) {
1089 /* By default the server is in KAL mode. CLOSE mode mean
1090 * it is imposed by haproxy itself. So only change KAL
1091 * mode here. */
1092 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1093 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1094 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1095 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001096 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 +01001097 }
1098 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001099 }
Christopher Faulet70033782018-12-05 13:50:11 +01001100 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001101 /* Output direction: first pass */
1102 if (h1m->flags & H1_MF_CONN_CLO) {
1103 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001104 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001105 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 +01001106 }
1107 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1108 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1109 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1110 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1111 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1112 /* no explicit keep-alive option httpclose/server-close => close */
1113 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001114 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 +01001115 }
Christopher Faulet70033782018-12-05 13:50:11 +01001116 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001117
1118 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001119 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001120 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001121 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);
1122 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001123}
1124
Christopher Fauletb992af02019-03-28 15:42:24 +01001125static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001126{
1127 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001128
1129 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1130 * token is found
1131 */
1132 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001133 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001134
1135 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001136 if (!(h1m->flags & H1_MF_VER_11)) {
1137 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 +01001138 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001139 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001140 }
1141 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001142 if (h1m->flags & H1_MF_VER_11) {
1143 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001144 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001145 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001146 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001147}
1148
Christopher Fauletb992af02019-03-28 15:42:24 +01001149static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001150{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001151 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1152 * token is found
1153 */
1154 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001155 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001156
1157 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001158 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001159 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1160 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 +01001161 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001162 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001163 }
1164 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001165 if (h1m->flags & H1_MF_VER_11) {
1166 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001167 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001168 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001169 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001170}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001171
Christopher Fauletb992af02019-03-28 15:42:24 +01001172static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001173{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001174 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001175 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001176 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001177 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001178}
1179
Christopher Fauletb992af02019-03-28 15:42:24 +01001180static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1181{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001182 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001183 h1_set_cli_conn_mode(h1s, h1m);
1184 else
1185 h1_set_srv_conn_mode(h1s, h1m);
1186
1187 if (!(h1m->flags & H1_MF_RESP))
1188 h1_update_req_conn_value(h1s, h1m, conn_val);
1189 else
1190 h1_update_res_conn_value(h1s, h1m, conn_val);
1191}
Christopher Faulete44769b2018-11-29 23:01:45 +01001192
Christopher Faulet98fbe952019-07-22 16:18:24 +02001193/* Try to adjust the case of the message header name using the global map
1194 * <hdrs_map>.
1195 */
1196static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1197{
1198 struct ebpt_node *node;
1199 struct h1_hdr_entry *entry;
1200
1201 /* No entry in the map, do nothing */
1202 if (eb_is_empty(&hdrs_map.map))
1203 return;
1204
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001205 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001206 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1207 return;
1208
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001209 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001210 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1211 return;
1212
1213 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1214 if (!node)
1215 return;
1216 entry = container_of(node, struct h1_hdr_entry, node);
1217 name->ptr = entry->name.ptr;
1218 name->len = entry->name.len;
1219}
1220
Christopher Faulete44769b2018-11-29 23:01:45 +01001221/* Append the description of what is present in error snapshot <es> into <out>.
1222 * The description must be small enough to always fit in a buffer. The output
1223 * buffer may be the trash so the trash must not be used inside this function.
1224 */
1225static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1226{
1227 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001228 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1229 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1230 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1231 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1232 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1233 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001234}
1235/*
1236 * Capture a bad request or response and archive it in the proxy's structure.
1237 * By default it tries to report the error position as h1m->err_pos. However if
1238 * this one is not set, it will then report h1m->next, which is the last known
1239 * parsing point. The function is able to deal with wrapping buffers. It always
1240 * displays buffers as a contiguous area starting at buf->p. The direction is
1241 * determined thanks to the h1m's flags.
1242 */
1243static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1244 struct h1m *h1m, struct buffer *buf)
1245{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001246 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001247 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001248 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001249 union error_snapshot_ctx ctx;
1250
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001251 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001252 if (sess == NULL)
1253 sess = si_strm(h1s->cs->data)->sess;
1254 if (!(h1m->flags & H1_MF_RESP))
1255 other_end = si_strm(h1s->cs->data)->be;
1256 else
1257 other_end = sess->fe;
1258 } else
1259 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001260
1261 /* http-specific part now */
1262 ctx.h1.state = h1m->state;
1263 ctx.h1.c_flags = h1c->flags;
1264 ctx.h1.s_flags = h1s->flags;
1265 ctx.h1.m_flags = h1m->flags;
1266 ctx.h1.m_clen = h1m->curr_len;
1267 ctx.h1.m_blen = h1m->body_len;
1268
1269 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1270 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001271 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1272 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001273}
1274
Christopher Fauletadb22202018-12-12 10:32:09 +01001275/* Emit the chunksize followed by a CRLF in front of data of the buffer
1276 * <buf>. It goes backwards and starts with the byte before the buffer's
1277 * head. The caller is responsible for ensuring there is enough room left before
1278 * the buffer's head for the string.
1279 */
1280static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1281{
1282 char *beg, *end;
1283
1284 beg = end = b_head(buf);
1285 *--beg = '\n';
1286 *--beg = '\r';
1287 do {
1288 *--beg = hextab[chksz & 0xF];
1289 } while (chksz >>= 4);
1290 buf->head -= (end - beg);
1291 b_add(buf, end - beg);
1292}
1293
1294/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1295 * ensuring there is enough room left in the buffer for the string. */
1296static void h1_emit_chunk_crlf(struct buffer *buf)
1297{
1298 *(b_peek(buf, b_data(buf))) = '\r';
1299 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1300 b_add(buf, 2);
1301}
1302
Christopher Faulet129817b2018-09-20 16:14:40 +02001303/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001304 * Switch the stream to tunnel mode. This function must only be called on 2xx
1305 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001306 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001307static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001308{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001309 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001310
Christopher Faulet5be651d2021-01-22 15:28:03 +01001311 h1s->req.state = H1_MSG_TUNNEL;
1312 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001313
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001314 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001315 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001316
Christopher Faulet5be651d2021-01-22 15:28:03 +01001317 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 +01001318
Christopher Faulet10a86702021-04-07 14:18:11 +02001319 if (h1s->flags & H1S_F_RX_BLK) {
1320 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001321 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001322 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 +02001323 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001324 if (h1s->flags & H1S_F_TX_BLK) {
1325 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001326 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001327 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 +01001328 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001329}
1330
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001331/* Search for a websocket key header. The message should have been identified
1332 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001333 *
1334 * On the request side, if found the key is stored in the session. It might be
1335 * needed to calculate response key if the server side is using http/2.
1336 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001337 * On the response side, the key might be verified if haproxy has been
1338 * responsible for the generation of a key. This happens when a h2 client is
1339 * interfaced with a h1 server.
1340 *
1341 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001342 */
1343static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1344{
1345 struct htx_blk *blk;
1346 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001347 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001348 int ws_key_found = 0, idx;
1349
1350 idx = htx_get_head(htx); // returns the SL that we skip
1351 while ((idx = htx_get_next(htx, idx)) != -1) {
1352 blk = htx_get_blk(htx, idx);
1353 type = htx_get_blk_type(blk);
1354
1355 if (type == HTX_BLK_UNUSED)
1356 continue;
1357
1358 if (type != HTX_BLK_HDR)
1359 break;
1360
1361 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001362 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001363
Amaury Denoyellec1938232020-12-11 17:53:03 +01001364 /* Websocket key is base64 encoded of 16 bytes */
1365 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001366 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001367 /* Copy the key on request side
1368 * we might need it if the server is using h2 and does
1369 * not provide the response
1370 */
1371 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001372 ws_key_found = 1;
1373 break;
1374 }
1375 else if (isteqi(n, ist("sec-websocket-accept")) &&
1376 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001377 /* Need to verify the response key if the input was
1378 * generated by haproxy
1379 */
1380 if (h1s->ws_key[0]) {
1381 char key[29];
1382 h1_calculate_ws_output_key(h1s->ws_key, key);
1383 if (!isteqi(ist(key), v))
1384 break;
1385 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001386 ws_key_found = 1;
1387 break;
1388 }
1389 }
1390
1391 /* missing websocket key, reject the message */
1392 if (!ws_key_found) {
1393 htx->flags |= HTX_FL_PARSING_ERROR;
1394 return 0;
1395 }
1396
1397 return 1;
1398}
1399
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001400/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001401 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001402 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet58f21da2021-09-20 07:47:27 +02001403 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1404 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001405 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001406static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001407 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001408{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001409 union h1_sl h1sl;
Christopher Faulet129817b2018-09-20 16:14:40 +02001410 int ret = 0;
1411
Willy Tarreau022e5e52020-09-10 09:33:15 +02001412 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 +02001413
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001414 if (h1s->meth == HTTP_METH_CONNECT)
1415 h1m->flags |= H1_MF_METH_CONNECT;
1416 if (h1s->meth == HTTP_METH_HEAD)
1417 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001418
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001419 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001420 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001421 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 +02001422 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001423 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001424 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 +02001425 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1426 }
Christopher Faulet58f21da2021-09-20 07:47:27 +02001427 else if (ret == -2) {
1428 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);
1429 h1s->flags |= H1S_F_RX_CONGESTED;
1430 }
1431 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001432 goto end;
1433 }
1434
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001435 /* If websocket handshake, search for the websocket key */
1436 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1437 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1438 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1439 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001440 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001441 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 +01001442 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1443
1444 ret = 0;
1445 goto end;
1446 }
1447 }
1448
Christopher Faulet486498c2019-10-11 14:22:00 +02001449 if (h1m->err_pos >= 0) {
1450 /* Maybe we found an error during the parsing while we were
1451 * configured not to block on that, so we have to capture it
1452 * now.
1453 */
1454 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1455 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1456 }
1457
Christopher Faulet5696f542020-12-02 16:08:38 +01001458 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001459 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001460 if (h1s->meth == HTTP_METH_HEAD)
1461 h1s->flags |= H1S_F_BODYLESS_RESP;
1462 }
1463 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001464 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001465 if (h1s->status == 204 || h1s->status == 304)
1466 h1s->flags |= H1S_F_BODYLESS_RESP;
1467 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001468 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001469 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001470
Christopher Faulet129817b2018-09-20 16:14:40 +02001471 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001472 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 +02001473 return ret;
1474}
1475
1476/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001477 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001478 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1479 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001480 */
Christopher Fauletaf542632019-10-01 21:52:49 +02001481static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001482 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001483 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001484{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001485 int ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001486
Willy Tarreau022e5e52020-09-10 09:33:15 +02001487 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 +02001488 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001489 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001490 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 +01001491 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001492 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001493 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 +02001494 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001495 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001496 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001497 }
1498
Christopher Faulet02a02532019-11-15 09:36:28 +01001499 *ofs += ret;
1500
1501 end:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001502 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1503 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);
1504 h1s->flags |= H1S_F_RX_CONGESTED;
1505 }
1506
Willy Tarreau022e5e52020-09-10 09:33:15 +02001507 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 +02001508 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001509}
1510
1511/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001512 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1513 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1514 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet58f21da2021-09-20 07:47:27 +02001515 * responsible to update the parser state <h1m>. If more room is requested,
1516 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001517 */
1518static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1519 struct buffer *buf, size_t *ofs, size_t max)
1520{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001521 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001522
Willy Tarreau022e5e52020-09-10 09:33:15 +02001523 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 +02001524 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001525 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001526 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 +02001527 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001528 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001529 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 +02001530 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1531 }
Christopher Faulet5d0efb72022-04-13 17:48:54 +02001532 else if (ret == -2) {
Christopher Faulet58f21da2021-09-20 07:47:27 +02001533 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);
1534 h1s->flags |= H1S_F_RX_CONGESTED;
1535 }
1536 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001537 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001538 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001539
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001540 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001541
1542 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001543 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 +02001544 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001545}
1546
1547/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001548 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001549 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1550 * it couldn't proceed.
Christopher Faulet58f21da2021-09-20 07:47:27 +02001551 *
1552 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001553 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001554static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001555{
Christopher Faulet539e0292018-11-19 10:40:09 +01001556 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001557 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001558 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001559 size_t data;
1560 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001561 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001562
Christopher Faulet539e0292018-11-19 10:40:09 +01001563 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001564 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001565
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001566 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001567 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001568
Christopher Faulet2eed8002020-12-07 11:26:13 +01001569 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001570 goto end;
1571
Christopher Faulet10a86702021-04-07 14:18:11 +02001572 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001573 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001574
Christopher Faulet58f21da2021-09-20 07:47:27 +02001575 /* Always remove congestion flags and try to process more input data */
1576 h1s->flags &= ~H1S_F_RX_CONGESTED;
1577
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001578 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001579 size_t used = htx_used_space(htx);
1580
Christopher Faulet129817b2018-09-20 16:14:40 +02001581 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001582 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet539e0292018-11-19 10:40:09 +01001583 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001584 if (!ret)
1585 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001586
1587 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1588 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1589
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001590 if ((h1m->flags & H1_MF_RESP) &&
1591 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1592 h1m_init_res(&h1s->res);
1593 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001594 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001595 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001596 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001597 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001598 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001599 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001600 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet129817b2018-09-20 16:14:40 +02001601 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001602
1603 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1604 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001605 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001606 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001607 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
1608 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1609 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001610 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001611
Christopher Faulet76014fd2019-12-10 11:47:22 +01001612 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1613 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001614 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001615 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001616 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1617 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001618
Christopher Faulet5be651d2021-01-22 15:28:03 +01001619 if ((h1m->flags & H1_MF_RESP) &&
1620 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1621 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001622 else {
1623 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1624 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001625 h1s->flags |= H1S_F_RX_BLK;
1626 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001627 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001628 if (h1s->flags & H1S_F_TX_BLK) {
1629 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001630 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001631 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 +01001632 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001633 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001634 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001635 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001636 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001637 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001638 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001639 if (!ret)
1640 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001641
1642 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1643 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001644 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001645 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001646 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001647 break;
1648 }
1649
Christopher Faulet30db3d72019-05-17 15:35:33 +02001650 count -= htx_used_space(htx) - used;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001651 } 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 +01001652
Christopher Faulet129817b2018-09-20 16:14:40 +02001653
Christopher Faulet2eed8002020-12-07 11:26:13 +01001654 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001655 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 +02001656 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001657 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001658
Christopher Faulet539e0292018-11-19 10:40:09 +01001659 b_del(&h1c->ibuf, total);
1660
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001661 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1662
Christopher Faulet30db3d72019-05-17 15:35:33 +02001663 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001664 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001665 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001666 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 +01001667 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001668 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001669
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001670 if (!b_data(&h1c->ibuf))
1671 h1_release_buf(h1c, &h1c->ibuf);
1672
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001673 if (!(h1c->flags & H1C_F_ST_READY)) {
1674 /* The H1 connection is not ready. Most of time, there is no CS
1675 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1676 * cases, it is only possible on the client side.
1677 */
1678 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1679
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001680 if (h1m->state <= H1_MSG_LAST_LF) {
1681 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1682 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1683 goto end;
1684 }
1685
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001686 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1687 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1688 BUG_ON(h1s->cs);
1689 if (!h1s_new_cs(h1s, buf)) {
1690 h1c->flags |= H1C_F_ST_ERROR;
1691 goto err;
1692 }
1693 }
1694 else {
1695 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1696 BUG_ON(h1s->cs == NULL);
1697 if (!h1s_upgrade_cs(h1s, buf)) {
1698 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001699 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001700 goto err;
1701 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001702 }
1703 }
1704
1705 /* Here h1s->cs is always defined */
Christopher Fauletc765de52021-11-26 17:26:19 +01001706 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001707 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1708 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1709 }
1710 else {
1711 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1712 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1713 }
1714
Christopher Fauleta22782b2021-02-08 17:18:01 +01001715 /* Set EOI on conn-stream in DONE state iff:
1716 * - it is a response
1717 * - it is a request but no a protocol upgrade nor a CONNECT
1718 *
1719 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001720 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001721 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001722 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1723 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001724 h1s->cs->flags |= CS_FL_EOI;
1725
Christopher Fauletec4207c2021-04-08 18:34:30 +02001726 out:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001727 /* When Input data are pending for this message, notify upper layer that
1728 * the mux need more space in the HTX buffer to continue if :
1729 *
1730 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1731 * - Headers or trailers are pending to be copied.
1732 */
1733 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001734 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001735 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1736 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001737 else {
1738 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1739 if (h1s->flags & H1S_F_REOS) {
1740 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001741 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1742 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1743 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001744 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001745 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001746 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001747 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001748 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1749 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001750
Christopher Faulet10a86702021-04-07 14:18:11 +02001751 if (h1s->flags & H1S_F_TX_BLK) {
1752 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001753 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001754 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 +01001755 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001756 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001757 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001758
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001759 end:
Christopher Faulet88c6abf2022-07-08 09:02:59 +02001760 htx_to_buf(htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001761 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001762 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001763
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001764 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001765 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001766 if (h1s->cs)
1767 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001768 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001769 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001770}
1771
Christopher Faulet129817b2018-09-20 16:14:40 +02001772/*
1773 * Process outgoing data. It parses data and transfer them from the channel buffer into
1774 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1775 * 0 if it couldn't proceed.
1776 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001777static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1778{
Christopher Faulet129817b2018-09-20 16:14:40 +02001779 struct h1s *h1s = h1c->h1s;
1780 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001781 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001782 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001783 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001784 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001785 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001786 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001787
Christopher Faulet94b2c762019-05-24 15:28:57 +02001788 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001789 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1790
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001791 if (htx_is_empty(chn_htx))
1792 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001793
Christopher Faulet10a86702021-04-07 14:18:11 +02001794 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001795 goto end;
1796
Christopher Faulet51dbc942018-09-13 09:05:15 +02001797 if (!h1_get_buf(h1c, &h1c->obuf)) {
1798 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001799 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 +02001800 goto end;
1801 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001802
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001803 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001804
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001805 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001806 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001807
Willy Tarreau3815b222018-12-11 19:50:43 +01001808 /* Perform some optimizations to reduce the number of buffer copies.
1809 * First, if the mux's buffer is empty and the htx area contains
1810 * exactly one data block of the same size as the requested count,
1811 * then it's possible to simply swap the caller's buffer with the
1812 * mux's output buffer and adjust offsets and length to match the
1813 * entire DATA HTX block in the middle. In this case we perform a
1814 * true zero-copy operation from end-to-end. This is the situation
1815 * that happens all the time with large files. Second, if this is not
1816 * possible, but the mux's output buffer is empty, we still have an
1817 * opportunity to avoid the copy to the intermediary buffer, by making
1818 * the intermediary buffer's area point to the output buffer's area.
1819 * In this case we want to skip the HTX header to make sure that copies
1820 * remain aligned and that this operation remains possible all the
1821 * time. This goes for headers, data blocks and any data extracted from
1822 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001823 */
1824 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001825 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001826 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001827 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001828 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001829 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001830 void *old_area;
1831
Christopher Faulet6b81df72019-10-01 22:08:43 +02001832 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 +01001833 if (h1m->state == H1_MSG_DATA) {
1834 if (h1m->flags & H1_MF_CLEN) {
1835 if (count > h1m->curr_len) {
1836 TRACE_ERROR("too much payload, more than announced",
1837 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1838 goto error;
1839 }
1840 h1m->curr_len -= count;
Christopher Faulet18906cf2022-04-07 10:29:38 +02001841 if (!h1m->curr_len)
1842 last_data = 1;
Christopher Faulet5f60d182021-11-26 16:37:55 +01001843 }
1844 if (chn_htx->flags & HTX_FL_EOM) {
1845 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1846 last_data = 1;
1847 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001848 }
1849
Christopher Faulete5596bf2020-12-02 16:13:22 +01001850 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001851 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001852 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001853 h1c->obuf.data = count;
1854
1855 buf->area = old_area;
1856 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001857
Christopher Faulet6b81df72019-10-01 22:08:43 +02001858 chn_htx = (struct htx *)buf->area;
1859 htx_reset(chn_htx);
1860
Christopher Fauletadb22202018-12-12 10:32:09 +01001861 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001862 * size and eventually the last chunk. We have at least
1863 * the size of the struct htx to write the chunk
1864 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001865 */
1866 if (h1m->flags & H1_MF_CHNK) {
1867 h1_emit_chunk_size(&h1c->obuf, count);
1868 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001869 if (last_data) {
1870 /* Emit the last chunk too at the buffer's end */
1871 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1872 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001873 }
1874
Christopher Faulet6b81df72019-10-01 22:08:43 +02001875 if (h1m->state == H1_MSG_DATA)
1876 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001877 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001878 else
1879 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001880 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001881
Christopher Faulete5596bf2020-12-02 16:13:22 +01001882 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001883 if (last_data) {
1884 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001885 if (h1s->flags & H1S_F_RX_BLK) {
1886 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001887 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001888 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 +01001889 }
1890
1891 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1892 H1_EV_TX_DATA, h1c->conn, h1s);
1893 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001894 goto out;
1895 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001896 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001897 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001898 else
1899 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001900
Christopher Fauletc2518a52019-06-25 21:41:02 +02001901 tmp.data = 0;
1902 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001903 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001904 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001905 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001906 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001907 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001908 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001909
Christopher Fauletb2e84162018-12-06 11:39:49 +01001910 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001911 if (type != HTX_BLK_DATA && vlen > count)
1912 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001913
Christopher Faulet94b2c762019-05-24 15:28:57 +02001914 if (type == HTX_BLK_UNUSED)
1915 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001916
Christopher Faulet94b2c762019-05-24 15:28:57 +02001917 switch (h1m->state) {
1918 case H1_MSG_RQBEFORE:
1919 if (type != HTX_BLK_REQ_SL)
1920 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001921 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 +02001922 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001923 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001924 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001925 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001926 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001927 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001928 if (sl->flags & HTX_SL_F_BODYLESS)
1929 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001930 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001931 if (h1s->meth == HTTP_METH_HEAD)
1932 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001933 if (h1s->flags & H1S_F_RX_BLK) {
1934 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001935 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001936 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 +02001937 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001938 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001939
Christopher Faulet94b2c762019-05-24 15:28:57 +02001940 case H1_MSG_RPBEFORE:
1941 if (type != HTX_BLK_RES_SL)
1942 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001943 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 +02001944 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001945 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001946 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001947 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001948 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001949 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001950 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001951 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001952 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001953 else if (h1s->status == 204 || h1s->status == 304)
1954 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001955 h1m->state = H1_MSG_HDR_FIRST;
1956 break;
1957
Christopher Faulet94b2c762019-05-24 15:28:57 +02001958 case H1_MSG_HDR_FIRST:
1959 case H1_MSG_HDR_NAME:
1960 case H1_MSG_HDR_L2_LWS:
1961 if (type == HTX_BLK_EOH)
1962 goto last_lf;
1963 if (type != HTX_BLK_HDR)
1964 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001965
Christopher Faulet9768c262018-10-22 09:34:31 +02001966 h1m->state = H1_MSG_HDR_NAME;
1967 n = htx_get_blk_name(chn_htx, blk);
1968 v = htx_get_blk_value(chn_htx, blk);
1969
Christopher Faulet86d144c2019-08-14 16:32:25 +02001970 /* Skip all pseudo-headers */
1971 if (*(n.ptr) == ':')
1972 goto skip_hdr;
1973
Christopher Faulet91fcf212020-12-02 16:17:15 +01001974 if (isteq(n, ist("transfer-encoding"))) {
1975 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1976 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001977 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001978 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001979 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001980 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1981 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001982 /* Only skip C-L header with invalid value. */
1983 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001984 goto skip_hdr;
1985 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001986 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001987 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001988 if (!v.len)
1989 goto skip_hdr;
1990 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001991 else if (isteq(n, ist("upgrade"))) {
1992 h1_parse_upgrade_header(h1m, v);
1993 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001994 else if ((isteq(n, ist("sec-websocket-accept")) &&
1995 h1m->flags & H1_MF_RESP) ||
1996 (isteq(n, ist("sec-websocket-key")) &&
1997 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001998 ws_key_found = 1;
1999 }
Christopher Fauletf9bb8d02021-09-28 10:56:36 +02002000 else if (isteq(n, ist("te"))) {
2001 /* "te" may only be sent with "trailers" if this value
2002 * is present, otherwise it must be deleted.
2003 */
2004 v = istist(v, ist("trailers"));
2005 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2006 goto skip_hdr;
2007 v = ist("trailers");
2008 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002009
Christopher Faulet67d58092019-10-02 10:51:38 +02002010 /* Skip header if same name is used to add the server name */
2011 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2012 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2013 goto skip_hdr;
2014
Christopher Faulet98fbe952019-07-22 16:18:24 +02002015 /* Try to adjust the case of the header name */
2016 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2017 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002018 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002019 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002020 skip_hdr:
2021 h1m->state = H1_MSG_HDR_L2_LWS;
2022 break;
2023
Christopher Faulet94b2c762019-05-24 15:28:57 +02002024 case H1_MSG_LAST_LF:
2025 if (type != HTX_BLK_EOH)
2026 goto error;
2027 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002028 h1m->state = H1_MSG_LAST_LF;
2029 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002030 /* If the reply comes from haproxy while the request is
2031 * not finished, we force the connection close. */
2032 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
2033 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2034 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2035 }
2036
2037 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002038 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002039 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002040 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002041 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002042 /* Try to adjust the case of the header name */
2043 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2044 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002045 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002046 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002047 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002048 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002049 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002050
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002051 if ((h1s->meth != HTTP_METH_CONNECT &&
2052 (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 +01002053 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002054 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002055 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002056 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2057 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002058 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002059 n = ist("transfer-encoding");
2060 v = ist("chunked");
2061 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2062 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002063 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002064 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002065 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002066 h1m->flags |= H1_MF_CHNK;
2067 }
2068
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002069 /* Now add the server name to a header (if requested) */
2070 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2071 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2072 struct server *srv = objt_server(h1c->conn->target);
2073
2074 if (srv) {
2075 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2076 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002077
2078 /* Try to adjust the case of the header name */
2079 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2080 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002081 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002082 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002083 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002084 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002085 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2086 }
2087
Amaury Denoyellec1938232020-12-11 17:53:03 +01002088 /* Add websocket handshake key if needed */
2089 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2090 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002091 if (!(h1m->flags & H1_MF_RESP)) {
2092 /* generate a random websocket key
2093 * stored in the session to
2094 * verify it on the response side
2095 */
2096 h1_generate_random_ws_input_key(h1s->ws_key);
2097
2098 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2099 ist(h1s->ws_key),
2100 &tmp)) {
2101 goto full;
2102 }
2103 }
2104 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002105 /* add the response header key */
2106 char key[29];
2107 h1_calculate_ws_output_key(h1s->ws_key, key);
2108 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2109 ist(key),
2110 &tmp)) {
2111 goto full;
2112 }
2113 }
2114 }
2115
Christopher Faulet6b81df72019-10-01 22:08:43 +02002116 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2117 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2118
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002119 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002120 if (!chunk_memcat(&tmp, "\r\n", 2))
2121 goto full;
2122 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002123 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002124 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002125 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002126 if (!chunk_memcat(&tmp, "\r\n", 2))
2127 goto full;
2128 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002129 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002130 else if ((h1m->flags & H1_MF_RESP) &&
2131 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002132 if (!chunk_memcat(&tmp, "\r\n", 2))
2133 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002134 h1m_init_res(&h1s->res);
2135 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002136 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002137 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002138 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002139 else {
Christopher Faulet18906cf2022-04-07 10:29:38 +02002140 /* EOM flag is set or empty payload (C-L to 0) and it is the last block */
2141 if (htx_is_unique_blk(chn_htx, blk) &&
2142 ((chn_htx->flags & HTX_FL_EOM) || ((h1m->flags & H1_MF_CLEN) && !h1m->curr_len))) {
Mickael Torreseadd9822022-11-16 14:29:37 +01002143 if ((h1m->flags & H1_MF_CHNK) && !(h1s->flags & H1S_F_BODYLESS_RESP)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002144 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2145 goto full;
2146 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002147 else if (!chunk_memcat(&tmp, "\r\n", 2))
2148 goto full;
2149 goto done;
2150 }
2151 else if (!chunk_memcat(&tmp, "\r\n", 2))
2152 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002153 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002154 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002155 break;
2156
Christopher Faulet94b2c762019-05-24 15:28:57 +02002157 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002158 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002159 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002160 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2161 goto trailers;
2162
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002163 /* If the message is not chunked, never
2164 * add the last chunk. */
2165 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002166 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002167 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 +02002168 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002169 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002170 else if (type != HTX_BLK_DATA)
2171 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002172
2173 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 +02002174
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002175 /* It is the last block of this message. After this one,
2176 * only tunneled data may be forwarded. */
2177 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2178 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2179 last_data = 1;
2180 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002181
2182 if (vlen > count) {
2183 /* Get the maximum amount of data we can xferred */
2184 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002185 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002186 }
2187
Christopher Faulet5f60d182021-11-26 16:37:55 +01002188 if (h1m->state == H1_MSG_DATA) {
2189 if (h1m->flags & H1_MF_CLEN) {
2190 if (vlen > h1m->curr_len) {
2191 TRACE_ERROR("too much payload, more than announced",
2192 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2193 goto error;
2194 }
Christopher Faulet5f60d182021-11-26 16:37:55 +01002195 }
2196 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2197 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2198 goto skip_data;
2199 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002200 }
2201
Christopher Fauletd9233f02019-10-14 14:01:24 +02002202 chklen = 0;
2203 if (h1m->flags & H1_MF_CHNK) {
2204 chklen = b_room(&tmp);
2205 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2206 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2207 (chklen < 1048576) ? 5 : 8);
2208 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002209
2210 /* If it is the end of the chunked message (without EOT), reserve the
2211 * last chunk size */
2212 if (last_data)
2213 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002214 }
2215
2216 if (vlen + chklen > b_room(&tmp)) {
2217 /* too large for the buffer */
2218 if (chklen >= b_room(&tmp))
2219 goto full;
2220 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002221 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002222 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002223 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002224 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002225 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002226 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002227
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002228 /* Space already reserved, so it must succeed */
2229 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2230 goto error;
2231
Christopher Faulet6b81df72019-10-01 22:08:43 +02002232 if (h1m->state == H1_MSG_DATA)
2233 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002234 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002235 else
2236 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002237 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002238
2239 skip_data:
Christopher Faulet18906cf2022-04-07 10:29:38 +02002240 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet9328a6c2022-01-10 17:27:51 +01002241 h1m->curr_len -= vlen;
Christopher Faulet18906cf2022-04-07 10:29:38 +02002242 if (!h1m->curr_len)
2243 last_data = 1;
2244 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002245 if (last_data)
2246 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002247 break;
2248
Christopher Faulet94b2c762019-05-24 15:28:57 +02002249 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002250 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002251 goto error;
2252 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002253 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002254
Christopher Fauletf9a0f512022-05-05 09:39:42 +02002255 if (!(h1m->flags & H1_MF_CHNK))
2256 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002257
Christopher Faulete5596bf2020-12-02 16:13:22 +01002258 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2259 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 +01002260 if (type == HTX_BLK_EOT)
2261 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002262 break;
2263 }
2264
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002265 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002266 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002267 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002268 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2269 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002270 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002271 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002272 else { // HTX_BLK_TLR
2273 n = htx_get_blk_name(chn_htx, blk);
2274 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002275
2276 /* Try to adjust the case of the header name */
2277 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2278 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002279 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002280 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002281 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002282 break;
2283
Christopher Faulet94b2c762019-05-24 15:28:57 +02002284 case H1_MSG_DONE:
Christopher Fauletf9a0f512022-05-05 09:39:42 +02002285 /* If the message is not chunked, ignore
2286 * trailers. It may happen with H2 messages. */
2287 if ((type == HTX_BLK_TLR || type == HTX_BLK_EOT) && !(h1m->flags & H1_MF_CHNK))
2288 break;
2289
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002290 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2291 goto error; /* For now return an error */
2292
Christopher Faulet94b2c762019-05-24 15:28:57 +02002293 done:
2294 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002295 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002296 h1s->flags |= H1S_F_TX_BLK;
2297 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002298 }
2299 else if ((h1m->flags & H1_MF_RESP) &&
2300 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2301 /* a successful reply to a CONNECT or a protocol switching is sent
2302 * to the client. Switch the response to tunnel mode.
2303 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002304 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002305 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 +01002306 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002307
Christopher Faulet10a86702021-04-07 14:18:11 +02002308 if (h1s->flags & H1S_F_RX_BLK) {
2309 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002310 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002311 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 +02002312 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002313
2314 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2315 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002316 break;
2317
Christopher Faulet9768c262018-10-22 09:34:31 +02002318 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002319 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002320 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002321 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002322 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002323 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002324 TRACE_ERROR("processing output error, set error on h1c/h1s",
2325 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 +01002326 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002327 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002328
2329 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002330 total += vlen;
2331 count -= vlen;
2332 if (sz == vlen)
2333 blk = htx_remove_blk(chn_htx, blk);
2334 else {
2335 htx_cut_data_blk(chn_htx, blk, vlen);
2336 break;
2337 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002338 }
2339
Christopher Faulet9768c262018-10-22 09:34:31 +02002340 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002341 /* when the output buffer is empty, tmp shares the same area so that we
2342 * only have to update pointers and lengths.
2343 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002344 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2345 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002346 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002347 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002348
Willy Tarreau3815b222018-12-11 19:50:43 +01002349 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002350 out:
2351 if (!buf_room_for_htx_data(&h1c->obuf)) {
2352 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002353 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002354 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002355 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002356 /* Both the request and the response reached the DONE state. So set EOI
2357 * flag on the conn-stream. Most of time, the flag will already be set,
2358 * except for protocol upgrades. Report an error if data remains blocked
2359 * in the output buffer.
2360 */
2361 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2362 if (!htx_is_empty(chn_htx)) {
2363 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002364 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 +01002365 }
2366 h1s->cs->flags |= CS_FL_EOI;
2367 }
2368
Christopher Faulet6b81df72019-10-01 22:08:43 +02002369 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002370 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002371
2372 full:
2373 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2374 h1c->flags |= H1C_F_OUT_FULL;
2375 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002376}
2377
Christopher Faulet51dbc942018-09-13 09:05:15 +02002378/*********************************************************/
2379/* functions below are I/O callbacks from the connection */
2380/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002381static void h1_wake_stream_for_recv(struct h1s *h1s)
2382{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002383 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002384 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002385 tasklet_wakeup(h1s->subs->tasklet);
2386 h1s->subs->events &= ~SUB_RETRY_RECV;
2387 if (!h1s->subs->events)
2388 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002389 }
2390}
2391static void h1_wake_stream_for_send(struct h1s *h1s)
2392{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002393 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002394 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002395 tasklet_wakeup(h1s->subs->tasklet);
2396 h1s->subs->events &= ~SUB_RETRY_SEND;
2397 if (!h1s->subs->events)
2398 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002399 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002400}
2401
Christopher Fauletad4daf62021-01-21 17:49:01 +01002402/* alerts the data layer following this sequence :
2403 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2404 * - if its subscribed to send, then it's woken up for send
2405 * - if it was subscribed to neither, its ->wake() callback is called
2406 */
2407static void h1_alert(struct h1s *h1s)
2408{
2409 if (h1s->subs) {
2410 h1_wake_stream_for_recv(h1s);
2411 h1_wake_stream_for_send(h1s);
2412 }
2413 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2414 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2415 h1s->cs->data_cb->wake(h1s->cs);
2416 }
2417}
2418
Christopher Fauletc18fc232020-10-06 17:41:36 +02002419/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2420 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2421 * retryable errors (allocation error or buffer full). On success, the error is
2422 * copied in the output buffer.
2423*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002424static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002425{
2426 int rc = http_get_status_idx(h1c->errcode);
2427 int ret = 0;
2428
2429 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2430
2431 /* Verify if the error is mapped on /dev/null or any empty file */
2432 /// XXX: do a function !
2433 if (h1c->px->replies[rc] &&
2434 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2435 h1c->px->replies[rc]->body.errmsg &&
2436 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2437 /* Empty error, so claim a success */
2438 ret = 1;
2439 goto out;
2440 }
2441
2442 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2443 h1c->flags |= H1C_F_ERR_PENDING;
2444 goto out;
2445 }
2446
2447 if (!h1_get_buf(h1c, &h1c->obuf)) {
2448 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2449 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2450 goto out;
2451 }
2452 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2453 if (unlikely(ret <= 0)) {
2454 if (!ret) {
2455 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2456 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2457 goto out;
2458 }
2459 else {
2460 /* we cannot report this error, so claim a success */
2461 ret = 1;
2462 }
2463 }
2464 h1c->flags &= ~H1C_F_ERR_PENDING;
2465 out:
2466 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2467 return ret;
2468}
2469
2470/* Try to send a 500 internal error. It relies on h1_send_error to send the
2471 * error. This function takes care of incrementing stats and tracked counters.
2472 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002473static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002474{
2475 struct session *sess = h1c->conn->owner;
2476 int ret = 1;
2477
2478 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002479 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002480 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2481 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002482 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002483 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002484
2485 h1c->errcode = 500;
2486 ret = h1_send_error(h1c);
2487 sess_log(sess);
2488 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002489}
2490
Christopher Fauletc18fc232020-10-06 17:41:36 +02002491/* Try to send a 400 bad request error. It relies on h1_send_error to send the
2492 * error. This function takes care of incrementing stats and tracked counters.
2493 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002494static int h1_handle_bad_req(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002495{
2496 struct session *sess = h1c->conn->owner;
2497 int ret = 1;
2498
2499 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2500 goto end;
2501
2502 session_inc_http_req_ctr(sess);
2503 session_inc_http_err_ctr(sess);
2504 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002505 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2506 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002507 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002508 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002509
2510 h1c->errcode = 400;
2511 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002512 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2513 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002514
2515 end:
2516 return ret;
2517}
2518
Christopher Faulet2eed8002020-12-07 11:26:13 +01002519/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2520 * the error. This function takes care of incrementing stats and tracked
2521 * counters.
2522 */
2523static int h1_handle_not_impl_err(struct h1c *h1c)
2524{
2525 struct session *sess = h1c->conn->owner;
2526 int ret = 1;
2527
2528 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2529 goto end;
2530
2531 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002532 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002533 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2534 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002535 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002536 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002537
2538 h1c->errcode = 501;
2539 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002540 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2541 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002542
2543 end:
2544 return ret;
2545}
2546
Christopher Fauletc18fc232020-10-06 17:41:36 +02002547/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2548 * error. This function takes care of incrementing stats and tracked counters.
2549 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002550static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002551{
2552 struct session *sess = h1c->conn->owner;
2553 int ret = 1;
2554
2555 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2556 goto end;
2557
2558 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002559 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002560 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2561 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002562 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002563 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002564
2565 h1c->errcode = 408;
Christopher Faulet6609cbe2022-11-23 16:58:22 +01002566 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002567 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
Christopher Faulet6609cbe2022-11-23 16:58:22 +01002568 sess_log(sess);
2569
Christopher Fauletc18fc232020-10-06 17:41:36 +02002570 end:
2571 return ret;
2572}
2573
2574
Christopher Faulet51dbc942018-09-13 09:05:15 +02002575/*
2576 * Attempt to read data, and subscribe if none available
2577 */
2578static int h1_recv(struct h1c *h1c)
2579{
2580 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002581 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002582 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002583
Christopher Faulet6b81df72019-10-01 22:08:43 +02002584 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2585
2586 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2587 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002588 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002589 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002590
Christopher Fauletae635762020-09-21 11:47:16 +02002591 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2592 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002593 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002594 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002595
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002596 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2597 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002598 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002599 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002600 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002601
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002602 /*
2603 * If we only have a small amount of data, realign it,
2604 * it's probably cheaper than doing 2 recv() calls.
2605 */
2606 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
2607 b_slow_realign(&h1c->ibuf, trash.area, 0);
2608
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002609 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002610 if (!h1c->h1s ||
2611 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2612 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002613 flags |= CO_RFL_READ_ONCE;
2614
Willy Tarreau45f2b892018-12-05 07:59:27 +01002615 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002616 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002617 if (h1c->flags & H1C_F_IN_FULL) {
2618 h1c->flags &= ~H1C_F_IN_FULL;
2619 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2620 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002621
2622 if (!b_data(&h1c->ibuf)) {
2623 /* try to pre-align the buffer like the rxbufs will be
2624 * to optimize memory copies.
2625 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002626 h1c->ibuf.head = sizeof(struct htx);
2627 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002628 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002629 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002630 if (max && !ret && h1_recv_allowed(h1c)) {
2631 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2632 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002633 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002634 else {
2635 h1_wake_stream_for_recv(h1c->h1s);
2636 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002637 }
2638
Christopher Faulet51dbc942018-09-13 09:05:15 +02002639 if (!b_data(&h1c->ibuf))
2640 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002641 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002642 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002643 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2644 }
2645
2646 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002647 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002648}
2649
2650
2651/*
2652 * Try to send data if possible
2653 */
2654static int h1_send(struct h1c *h1c)
2655{
2656 struct connection *conn = h1c->conn;
2657 unsigned int flags = 0;
2658 size_t ret;
2659 int sent = 0;
2660
Christopher Faulet6b81df72019-10-01 22:08:43 +02002661 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2662
2663 if (conn->flags & CO_FL_ERROR) {
2664 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002665 b_reset(&h1c->obuf);
2666 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002667 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002668
2669 if (!b_data(&h1c->obuf))
2670 goto end;
2671
Christopher Faulet46230362019-10-17 16:04:20 +02002672 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002673 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002674 if (h1c->flags & H1C_F_CO_STREAMER)
2675 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002676
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002677 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002678 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002679 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002680 if (h1c->flags & H1C_F_OUT_FULL) {
2681 h1c->flags &= ~H1C_F_OUT_FULL;
2682 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2683 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002684 b_del(&h1c->obuf, ret);
2685 sent = 1;
2686 }
2687
Christopher Faulet145aa472018-12-06 10:56:20 +01002688 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002689 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002690 /* error or output closed, nothing to send, clear the buffer to release it */
2691 b_reset(&h1c->obuf);
2692 }
2693
Christopher Faulet51dbc942018-09-13 09:05:15 +02002694 end:
Christopher Fauletf04721e2022-02-01 18:25:06 +01002695 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002696 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002697
Christopher Faulet51dbc942018-09-13 09:05:15 +02002698 /* We're done, no more to send */
2699 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002700 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002701 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002702 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002703 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletdb451fb2021-10-27 15:36:38 +02002704 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002705 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002706 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002707 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2708 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002709 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002710 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002711
Christopher Faulet6b81df72019-10-01 22:08:43 +02002712 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002713 return sent;
2714}
2715
Christopher Faulet51dbc942018-09-13 09:05:15 +02002716/* callback called on any event by the connection handler.
2717 * It applies changes and returns zero, or < 0 if it wants immediate
2718 * destruction of the connection.
2719 */
2720static int h1_process(struct h1c * h1c)
2721{
2722 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002723 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002724
Christopher Faulet6b81df72019-10-01 22:08:43 +02002725 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2726
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002727 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002728 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletaf3b83e2021-09-16 08:16:23 +02002729 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2730 !(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 +02002731 struct buffer *buf;
2732 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002733
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002734 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2735 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002736 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002737
2738 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002739 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002740 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2741 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002742 /* Try to match H2 preface before parsing the request headers. */
2743 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2744 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002745 if (h1c->flags & H1C_F_ST_ATTACHED) {
2746 /* Force the REOS here to be sure to release the CS.
2747 Here ATTACHED implies !READY, and h1s defined
2748 */
2749 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2750 h1s->flags |= H1S_F_REOS;
2751 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002752 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002753 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002754 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002755 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002756
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002757 /* Create the H1 stream if not already there */
2758 if (!h1s) {
2759 h1s = h1c_frt_stream_new(h1c);
2760 if (!h1s) {
2761 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002762 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002763 goto no_parsing;
2764 }
2765 }
2766
2767 if (h1s->sess->t_idle == -1)
2768 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2769
2770 /* Get the stream rxbuf */
2771 buf = h1_get_buf(h1c, &h1s->rxbuf);
2772 if (!buf) {
2773 h1c->flags |= H1C_F_IN_SALLOC;
2774 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2775 return 0;
2776 }
2777
2778 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
2779 h1_process_input(h1c, buf, count);
2780 h1_release_buf(h1c, &h1s->rxbuf);
2781 h1_set_idle_expiration(h1c);
2782
2783 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002784 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002785 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002786 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002787 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002788 }
2789 else if (h1s->flags & H1S_F_PARSING_ERROR) {
2790 h1_handle_bad_req(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002791 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("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002793 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002794 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2795 h1_handle_not_impl_err(h1c);
2796 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002797 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002798 }
Christopher Fauletae635762020-09-21 11:47:16 +02002799 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002800 h1_send(h1c);
2801
Christopher Fauletbde7e052021-11-15 14:51:37 +01002802 /* H1 connection must be released ASAP if:
2803 * - an error occurred on the connection or the H1C or
2804 * - a read0 was received or
2805 * - a silent shutdown was emitted and all outgoing data sent
2806 */
2807 if ((conn->flags & CO_FL_ERROR) ||
2808 conn_xprt_read0_pending(conn) ||
2809 (h1c->flags & H1C_F_ST_ERROR) ||
2810 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002811 if (!(h1c->flags & H1C_F_ST_READY)) {
2812 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002813 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Fauletbde7e052021-11-15 14:51:37 +01002814 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002815 if (h1_handle_bad_req(h1c))
2816 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002817 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002818 }
2819
2820 /* Handle pending error, if any (only possible on frontend connection) */
2821 if (h1c->flags & H1C_F_ERR_PENDING) {
2822 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2823 if (h1_send_error(h1c))
2824 h1_send(h1c);
2825 }
Christopher Fauletae635762020-09-21 11:47:16 +02002826
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002827 /* If there is some pending outgoing data or error, just wait */
2828 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2829 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002830
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002831 /* Otherwise we can release the H1 connection */
2832 goto release;
2833 }
2834 else {
2835 /* Here there is still a H1 stream with a conn-stream.
2836 * Report the connection state at the stream level
2837 */
2838 if (conn_xprt_read0_pending(conn)) {
2839 h1s->flags |= H1S_F_REOS;
2840 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2841 }
Willy Tarreaua3d9a372022-08-29 10:22:56 +02002842 if ((h1c->flags & H1C_F_ST_ERROR) || ((conn->flags & CO_FL_ERROR) &&
2843 ((h1s->cs->flags & (CS_FL_EOI|CS_FL_EOS)) || !b_data(&h1c->ibuf))))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002844 h1s->cs->flags |= CS_FL_ERROR;
2845 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002846 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002847 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002848 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002849
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002850 if (!b_data(&h1c->ibuf))
2851 h1_release_buf(h1c, &h1c->ibuf);
2852
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002853 /* Check if a soft-stop is in progress.
2854 * Release idling front connection if this is the case.
2855 */
2856 if (!(h1c->flags & H1C_F_IS_BACK)) {
2857 if (unlikely(h1c->px->disabled)) {
William Dauchy4711a892022-01-05 22:53:24 +01002858 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
2859 h1c->flags & H1C_F_WAIT_NEXT_REQ)
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002860 goto release;
2861 }
2862 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002863
2864 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2865 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2866 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002867 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002868
Christopher Faulet47365272018-10-31 17:40:50 +01002869 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002870 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002871 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002872 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002873
2874 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002875 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002876 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002877 * attached CS first. Here, the H1C must not be READY */
2878 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2879
2880 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2881 h1s->cs->flags |= CS_FL_EOS;
2882 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2883 h1s->cs->flags |= CS_FL_ERROR;
2884 h1_alert(h1s);
2885 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2886 }
2887 else {
2888 h1_release(h1c);
2889 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2890 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002891 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002892}
2893
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002894struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002895{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002896 struct connection *conn;
2897 struct tasklet *tl = (struct tasklet *)t;
2898 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002899 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002900 int ret = 0;
2901
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002902 if (state & TASK_F_USR1) {
2903 /* the tasklet was idling on an idle connection, it might have
2904 * been stolen, let's be careful!
2905 */
2906 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2907 if (tl->context == NULL) {
2908 /* The connection has been taken over by another thread,
2909 * we're no longer responsible for it, so just free the
2910 * tasklet, and do nothing.
2911 */
2912 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2913 tasklet_free(tl);
2914 return NULL;
2915 }
2916 conn = h1c->conn;
2917 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002918
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002919 /* Remove the connection from the list, to be sure nobody attempts
2920 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002921 */
Christopher Fauletc5fd15d2023-03-16 11:43:05 +01002922 conn_in_list = conn_get_idle_flag(conn);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002923 if (conn_in_list)
2924 conn_delete_from_tree(&conn->hash_node->node);
2925
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002926 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002927 } else {
2928 /* we're certain the connection was not in an idle list */
2929 conn = h1c->conn;
2930 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2931 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002932 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002933
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002934 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002935 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002936 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002937 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002938 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002939 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002940
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002941 /* If we were in an idle list, we want to add it back into it,
2942 * unless h1_process() returned -1, which mean it has destroyed
2943 * the connection (testing !ret is enough, if h1_process() wasn't
2944 * called then ret will be 0 anyway.
2945 */
Willy Tarreau74163142021-03-13 11:30:19 +01002946 if (ret < 0)
2947 t = NULL;
2948
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002949 if (!ret && conn_in_list) {
2950 struct server *srv = objt_server(conn->target);
2951
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002952 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002953 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002954 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002955 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002956 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002957 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002958 }
Willy Tarreau74163142021-03-13 11:30:19 +01002959 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002960}
2961
Christopher Faulet51dbc942018-09-13 09:05:15 +02002962static int h1_wake(struct connection *conn)
2963{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002964 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002965 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002966
Christopher Faulet6b81df72019-10-01 22:08:43 +02002967 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2968
Christopher Faulet539e0292018-11-19 10:40:09 +01002969 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002970 ret = h1_process(h1c);
2971 if (ret == 0) {
2972 struct h1s *h1s = h1c->h1s;
2973
Christopher Fauletad4daf62021-01-21 17:49:01 +01002974 if (h1c->flags & H1C_F_ST_ATTACHED)
2975 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002976 }
2977 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002978}
2979
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002980/* Connection timeout management. The principle is that if there's no receipt
2981 * nor sending for a certain amount of time, the connection is closed.
2982 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002983struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002984{
2985 struct h1c *h1c = context;
2986 int expired = tick_is_expired(t->expire, now_ms);
2987
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002988 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002989
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002990 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002991 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002992 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002993
2994 /* Somebody already stole the connection from us, so we should not
2995 * free it, we just have to free the task.
2996 */
2997 if (!t->context) {
2998 h1c = NULL;
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 goto do_leave;
3001 }
3002
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003003 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003004 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003005 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003006 return t;
3007 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003008
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003009 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003010 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003011 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003012 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003013 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003014 t->expire = TICK_ETERNITY;
3015 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3016 return t;
3017 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003018
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003019 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003020 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3021 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003022 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003023 if (h1_handle_req_tout(h1c))
3024 h1_send(h1c);
3025 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3026 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003027 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003028 return t;
3029 }
3030 }
3031
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003032 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003033 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003034 * attached CS first. Here, the H1C must not be READY */
3035 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3036 h1_alert(h1c->h1s);
3037 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003038 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003039 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3040 return t;
3041 }
3042
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003043 /* We're about to destroy the connection, so make sure nobody attempts
3044 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003045 */
Christopher Fauletc5fd15d2023-03-16 11:43:05 +01003046 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003047 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003048
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003049 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003050 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003051
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003052 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003053 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003054
3055 if (!h1c) {
3056 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003057 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003058 return NULL;
3059 }
3060
3061 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003062 h1_release(h1c);
3063 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003064 return NULL;
3065}
3066
Christopher Faulet51dbc942018-09-13 09:05:15 +02003067/*******************************************/
3068/* functions below are used by the streams */
3069/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003070
Christopher Faulet51dbc942018-09-13 09:05:15 +02003071/*
3072 * Attach a new stream to a connection
3073 * (Used for outgoing connections)
3074 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003075static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003076{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003077 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003078 struct conn_stream *cs = NULL;
3079 struct h1s *h1s;
3080
Willy Tarreau0148a6a2022-09-01 15:49:23 +02003081 /* this connection is no more idle (if it was at all) */
3082 h1c->flags &= ~H1C_F_ST_SILENT_SHUT;
3083
Christopher Faulet6b81df72019-10-01 22:08:43 +02003084 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003085 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003086 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3087 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003088 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003089
Christopher Faulet236c93b2020-07-02 09:19:54 +02003090 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003091 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003092 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3093 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003094 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003095
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003096 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003097 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003098 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3099 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003100 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003101
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003102 /* the connection is not idle anymore, let's mark this */
3103 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003104 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003105
Christopher Faulet6b81df72019-10-01 22:08:43 +02003106 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003107 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003108 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003109 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003110 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 +02003111 return NULL;
3112}
3113
3114/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3115 * this mux, it's easy as we can only store a single conn_stream.
3116 */
3117static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3118{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003119 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003120 struct h1s *h1s = h1c->h1s;
3121
3122 if (h1s)
3123 return h1s->cs;
3124
3125 return NULL;
3126}
3127
Christopher Faulet73c12072019-04-08 11:23:22 +02003128static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003129{
Christopher Faulet73c12072019-04-08 11:23:22 +02003130 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003131
Christopher Faulet6b81df72019-10-01 22:08:43 +02003132 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003133 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003134 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003135}
3136
3137/*
3138 * Detach the stream from the connection and possibly release the connection.
3139 */
3140static void h1_detach(struct conn_stream *cs)
3141{
3142 struct h1s *h1s = cs->ctx;
3143 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003144 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003145 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003146
Christopher Faulet6b81df72019-10-01 22:08:43 +02003147 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3148
Christopher Faulet51dbc942018-09-13 09:05:15 +02003149 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003150 if (!h1s) {
3151 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003152 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003153 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003154
Olivier Houchardf502aca2018-12-14 19:42:40 +01003155 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003156 h1c = h1s->h1c;
3157 h1s->cs = NULL;
3158
Christopher Faulet42849b02020-10-05 11:35:17 +02003159 sess->accept_date = date;
3160 sess->tv_accept = now;
3161 sess->t_handshake = 0;
3162 sess->t_idle = -1;
3163
Olivier Houchard8a786902018-12-15 16:05:40 +01003164 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3165 h1s_destroy(h1s);
3166
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003167 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 +02003168 /* this connection may be killed at any moment, we want it to
3169 * die "cleanly" (i.e. only an RST).
3170 */
3171 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3172
Christopher Fauletf1204b82019-07-19 14:51:06 +02003173 /* If there are any excess server data in the input buffer,
3174 * release it and close the connection ASAP (some data may
3175 * remain in the output buffer). This happens if a server sends
3176 * invalid responses. So in such case, we don't want to reuse
3177 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003178 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003179 if (b_data(&h1c->ibuf)) {
3180 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003181 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003182 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003183 goto release;
3184 }
Christopher Faulet03627242019-07-19 11:34:08 +02003185
Christopher Faulet08016ab2020-07-01 16:10:06 +02003186 if (h1c->conn->flags & CO_FL_PRIVATE) {
3187 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003188 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3189 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003190 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003191 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003192 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003193 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003194 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003195 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003196 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3197 goto end;
3198 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003199 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003200 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003201 if (h1c->conn->owner == sess)
3202 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003203
3204 /* mark that the tasklet may lose its context to another thread and
3205 * that the handler needs to check it under the idle conns lock.
3206 */
3207 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003208 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003209 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3210
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003211 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003212 /* The server doesn't want it, let's kill the connection right away */
3213 h1c->conn->mux->destroy(h1c);
3214 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3215 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003216 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003217 /* At this point, the connection has been added to the
3218 * server idle list, so another thread may already have
3219 * hijacked it, so we can't do anything with it.
3220 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003221 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003222 }
3223 }
3224
Christopher Fauletf1204b82019-07-19 14:51:06 +02003225 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003226 /* 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 +01003227 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003228 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003229 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003230 !h1c->conn->owner) {
3231 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003232 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003233 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003234 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003235 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003236 /* If we have a new request, process it immediately or
3237 * subscribe for reads waiting for new data
3238 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003239 if (unlikely(b_data(&h1c->ibuf))) {
3240 if (h1_process(h1c) == -1)
3241 goto end;
3242 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003243 else
3244 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3245 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003246 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003247 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003248 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003249 end:
3250 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003251}
3252
3253
3254static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3255{
3256 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003257 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003258
3259 if (!h1s)
3260 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003261 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003262
Christopher Fauletea62e182021-11-10 10:30:15 +01003263 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003264
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003265 if (cs->flags & CS_FL_SHR)
3266 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003267 if (cs->flags & CS_FL_KILL_CONN) {
3268 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3269 goto do_shutr;
3270 }
3271 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3272 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003273 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003274 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003275
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003276 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3277 /* Here attached is implicit because there is CS */
3278 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3279 goto end;
3280 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003281 if (h1s->flags & H1S_F_WANT_KAL) {
3282 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003283 goto end;
3284 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003285
Christopher Faulet7f366362019-04-08 10:51:20 +02003286 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003287 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3288 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003289 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003290 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003291 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003292 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003293 end:
3294 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003295}
3296
3297static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3298{
3299 struct h1s *h1s = cs->ctx;
3300 struct h1c *h1c;
3301
3302 if (!h1s)
3303 return;
3304 h1c = h1s->h1c;
3305
Christopher Fauletea62e182021-11-10 10:30:15 +01003306 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003307
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003308 if (cs->flags & CS_FL_SHW)
3309 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003310 if (cs->flags & CS_FL_KILL_CONN) {
3311 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003312 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003313 }
3314 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3315 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3316 goto do_shutw;
3317 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003318
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003319 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3320 /* Here attached is implicit because there is CS */
3321 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3322 goto end;
3323 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003324 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3325 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003326 goto end;
3327 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003328
Christopher Faulet7f366362019-04-08 10:51:20 +02003329 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003330 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003331 if (mode != CS_SHW_NORMAL)
3332 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3333
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003334 if (!b_data(&h1c->obuf))
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003335 h1_shutw_conn(cs->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003336 end:
3337 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003338}
3339
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003340static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003341{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003342 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003343
Willy Tarreau62592ad2021-03-26 09:09:42 +01003344 if (conn->flags & CO_FL_SOCK_WR_SH)
3345 return;
3346
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003347 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003348 conn_xprt_shutw(conn);
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003349 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
Christopher Faulet9b949bc2023-03-24 09:26:16 +01003350
3351 if (h1c->wait_event.tasklet && !h1c->wait_event.events)
3352 tasklet_wakeup(h1c->wait_event.tasklet);
3353
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003354 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003355}
3356
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003357/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3358 * The <es> pointer is not allowed to differ from the one passed to the
3359 * subscribe() call. It always returns zero.
3360 */
3361static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003362{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003363 struct h1s *h1s = cs->ctx;
3364
3365 if (!h1s)
3366 return 0;
3367
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003368 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003369 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003370
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003371 es->events &= ~event_type;
3372 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003373 h1s->subs = NULL;
3374
3375 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003376 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003377
3378 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003379 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003380
Christopher Faulet51dbc942018-09-13 09:05:15 +02003381 return 0;
3382}
3383
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003384/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3385 * event subscriber <es> is not allowed to change from a previous call as long
3386 * as at least one event is still subscribed. The <event_type> must only be a
3387 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3388 * the conn_stream <cs> was already detached, in which case it will return -1.
3389 */
3390static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003391{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003392 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003393 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003394
3395 if (!h1s)
3396 return -1;
3397
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003398 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003399 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003400
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003401 es->events |= event_type;
3402 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003403
3404 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003405 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003406
3407
Christopher Faulet6b81df72019-10-01 22:08:43 +02003408 if (event_type & SUB_RETRY_SEND) {
3409 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003410 /*
3411 * If the conn_stream attempt to subscribe, and the
3412 * mux isn't subscribed to the connection, then it
3413 * probably means the connection wasn't established
3414 * yet, so we have to subscribe.
3415 */
3416 h1c = h1s->h1c;
3417 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3418 h1c->conn->xprt->subscribe(h1c->conn,
3419 h1c->conn->xprt_ctx,
3420 SUB_RETRY_SEND,
3421 &h1c->wait_event);
3422 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003423 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003424}
3425
Christopher Faulet93a466b2021-09-21 15:50:55 +02003426/* Called from the upper layer, to receive data.
3427 *
3428 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3429 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3430 * means the caller wants to flush input data (from the mux buffer and the
3431 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3432 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3433 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3434 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3435 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3436 * copy as much data as possible.
3437 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003438static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3439{
3440 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003441 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003442 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003443 size_t ret = 0;
3444
Willy Tarreau022e5e52020-09-10 09:33:15 +02003445 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003446
3447 /* Do nothing for now if not READY */
3448 if (!(h1c->flags & H1C_F_ST_READY)) {
3449 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3450 goto end;
3451 }
3452
Christopher Faulet539e0292018-11-19 10:40:09 +01003453 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02003454 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003455 else
3456 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003457
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003458 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3459 h1c->flags |= H1C_F_WANT_SPLICE;
3460 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 +02003461 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003462 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003463 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 +01003464 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003465 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003466
3467 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003468 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003469 return ret;
3470}
3471
3472
3473/* Called from the upper layer, to send data */
3474static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3475{
3476 struct h1s *h1s = cs->ctx;
3477 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003478 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003479
3480 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003481 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003482 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003483
Willy Tarreau022e5e52020-09-10 09:33:15 +02003484 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003485
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003486 /* If we're not connected yet, or we're waiting for a handshake, stop
3487 * now, as we don't want to remove everything from the channel buffer
3488 * before we're sure we can send it.
3489 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003490 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003491 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003492 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003493 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003494
Christopher Fauletdea24742021-01-22 15:12:30 +01003495 if (h1c->flags & H1C_F_ST_ERROR) {
3496 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003497 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 +01003498 return 0;
3499 }
3500
Christopher Faulet46230362019-10-17 16:04:20 +02003501 /* Inherit some flags from the upper layer */
3502 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3503 if (flags & CO_SFL_MSG_MORE)
3504 h1c->flags |= H1C_F_CO_MSG_MORE;
3505 if (flags & CO_SFL_STREAMER)
3506 h1c->flags |= H1C_F_CO_STREAMER;
3507
Christopher Fauletc31872f2019-06-04 22:09:36 +02003508 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003509 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003510
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003511 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
3512 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003513 else
3514 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003515
Christopher Fauletda3db5b2022-09-15 16:21:55 +02003516 if (!ret)
Christopher Fauletc76359d2022-07-08 15:20:31 +02003517 break;
3518
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003519 if ((count - ret) > 0)
3520 h1c->flags |= H1C_F_CO_MSG_MORE;
3521
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003522 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003523 count -= ret;
Christopher Fauletda3db5b2022-09-15 16:21:55 +02003524
Olivier Houchard68787ef2020-01-15 19:13:32 +01003525 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003526 break;
Christopher Fauletda3db5b2022-09-15 16:21:55 +02003527
3528 if ((h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)))
3529 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003530 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003531
Willy Tarreaua3d9a372022-08-29 10:22:56 +02003532 if ((h1c->flags & H1C_F_ST_ERROR) || ((h1c->conn->flags & CO_FL_ERROR) &&
3533 ((cs->flags & (CS_FL_EOI|CS_FL_EOS)) || !b_data(&h1c->ibuf)))) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003534 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003535 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 +01003536 }
3537
Christopher Faulet7a145d62020-08-05 11:31:16 +02003538 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003539 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003540 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003541}
3542
Willy Tarreaue5733232019-05-22 19:24:06 +02003543#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003544/* Send and get, using splicing */
3545static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3546{
3547 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003548 struct h1c *h1c = h1s->h1c;
3549 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003550 int ret = 0;
3551
Willy Tarreau022e5e52020-09-10 09:33:15 +02003552 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003553
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003554 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003555 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003556 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 +02003557 goto end;
3558 }
3559
Christopher Faulet0b34e512021-07-26 10:49:39 +02003560 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003561 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003562 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003563 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003564 }
3565
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003566 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003567 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3568 goto end;
3569 }
3570
Christopher Fauletc765de52021-11-26 17:26:19 +01003571 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003572 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003573 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet5f60d182021-11-26 16:37:55 +01003574 if (ret >= 0) {
Christopher Fauletc765de52021-11-26 17:26:19 +01003575 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet5f60d182021-11-26 16:37:55 +01003576 if (ret > h1m->curr_len) {
3577 h1s->flags |= H1S_F_PARSING_ERROR;
3578 h1c->flags |= H1C_F_ST_ERROR;
3579 cs->flags |= CS_FL_ERROR;
3580 TRACE_ERROR("too much payload, more than announced",
3581 H1_EV_RX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3582 goto end;
3583 }
3584 h1m->curr_len -= ret;
3585 if (!h1m->curr_len) {
3586 h1m->state = H1_MSG_DONE;
3587 h1c->flags &= ~H1C_F_WANT_SPLICE;
3588 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, cs->conn, h1s);
3589 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003590 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003591 }
3592
Christopher Faulet1be55f92018-10-02 15:59:23 +02003593 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003594 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003595 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003596 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003597 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003598 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003599
Christopher Faulet94d35102021-04-09 11:58:49 +02003600 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003601 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003602 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003603 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3604 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3605 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3606 }
Christopher Faulet27182292020-07-03 15:08:49 +02003607 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003608
Willy Tarreau022e5e52020-09-10 09:33:15 +02003609 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003610 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003611}
3612
3613static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3614{
3615 struct h1s *h1s = cs->ctx;
Christopher Faulet5f60d182021-11-26 16:37:55 +01003616 struct h1c *h1c = h1s->h1c;
3617 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003618 int ret = 0;
3619
Willy Tarreau022e5e52020-09-10 09:33:15 +02003620 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003621
Christopher Faulet5f60d182021-11-26 16:37:55 +01003622 if (b_data(&h1c->obuf)) {
3623 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003624 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Christopher Faulet5f60d182021-11-26 16:37:55 +01003625 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003626 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003627 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003628 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003629
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003630 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Fauletc765de52021-11-26 17:26:19 +01003631 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet5f60d182021-11-26 16:37:55 +01003632 if (ret > h1m->curr_len) {
3633 h1s->flags |= H1S_F_PROCESSING_ERROR;
3634 h1c->flags |= H1C_F_ST_ERROR;
3635 cs->flags |= CS_FL_ERROR;
3636 TRACE_ERROR("too much payload, more than announced",
3637 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3638 goto end;
3639 }
3640 h1m->curr_len -= ret;
3641 if (!h1m->curr_len) {
3642 h1m->state = H1_MSG_DONE;
3643 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, cs->conn, h1s);
3644 }
3645 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003646
3647 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003648 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003649 return ret;
3650}
3651#endif
3652
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003653static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3654{
Christopher Fauletbabafc42023-11-14 07:45:43 +01003655 struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003656 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003657
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003658 switch (mux_ctl) {
3659 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003660 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003661 ret |= MUX_STATUS_READY;
3662 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003663 case MUX_EXIT_STATUS:
Christopher Fauletc18fc232020-10-06 17:41:36 +02003664 ret = (h1c->errcode == 400 ? MUX_ES_INVALID_ERR :
3665 (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003666 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3667 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3668 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003669 return ret;
Christopher Fauletbabafc42023-11-14 07:45:43 +01003670 case MUX_SUBS_RECV:
3671 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
3672 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3673 return 0;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003674 default:
3675 return -1;
3676 }
3677}
3678
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003679/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003680static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003681{
3682 struct h1c *h1c = conn->ctx;
3683 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003684 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003685
Christopher Fauletf376a312019-01-04 15:16:06 +01003686 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3687 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003688 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3689 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3690 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3691 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3692
3693 if (h1s) {
3694 char *method;
3695
3696 if (h1s->meth < HTTP_METH_OTHER)
3697 method = http_known_methods[h1s->meth].ptr;
3698 else
3699 method = "UNKNOWN";
3700 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3701 " .meth=%s status=%d",
3702 h1s, h1s->flags,
3703 h1m_state_str(h1s->req.state),
3704 h1m_state_str(h1s->res.state), method, h1s->status);
3705 if (h1s->cs)
3706 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3707 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003708
Willy Tarreaudb316fb2022-09-02 14:21:05 +02003709 chunk_appendf(msg, " .subs=%p", h1s->subs);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003710 if (h1s->subs) {
Willy Tarreaudb316fb2022-09-02 14:21:05 +02003711 chunk_appendf(msg, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3712 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003713 h1s->subs->tasklet->calls,
3714 h1s->subs->tasklet->context);
3715 if (h1s->subs->tasklet->calls >= 1000000)
3716 ret = 1;
Willy Tarreaudb316fb2022-09-02 14:21:05 +02003717 resolve_sym_name(msg, NULL, h1s->subs->tasklet->process);
3718 chunk_appendf(msg, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003719 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003720 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003721 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003722}
3723
3724
3725/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3726static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3727{
3728 struct h1_hdr_entry *entry;
3729
3730 /* Be sure there is a non-empty <to> */
3731 if (!strlen(to)) {
3732 memprintf(err, "expect <to>");
3733 return -1;
3734 }
3735
3736 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003737 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003738 memprintf(err, "<from> and <to> must not differ execpt the case");
3739 return -1;
3740 }
3741
3742 /* Be sure <from> does not already existsin the tree */
3743 if (ebis_lookup(&hdrs_map.map, from)) {
3744 memprintf(err, "duplicate entry '%s'", from);
3745 return -1;
3746 }
3747
3748 /* Create the entry and insert it in the tree */
3749 entry = malloc(sizeof(*entry));
3750 if (!entry) {
3751 memprintf(err, "out of memory");
3752 return -1;
3753 }
3754
3755 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003756 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003757 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003758 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003759 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003760 free(entry);
3761 memprintf(err, "out of memory");
3762 return -1;
3763 }
3764 ebis_insert(&hdrs_map.map, &entry->node);
3765 return 0;
3766}
3767
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003768/* Migrate the the connection to the current thread.
3769 * Return 0 if successful, non-zero otherwise.
3770 * Expected to be called with the old thread lock held.
3771 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003772static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003773{
3774 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003775 struct task *task;
Willy Tarreau261b9162023-11-17 10:56:33 +01003776 struct task *new_task;
3777 struct tasklet *new_tasklet;
3778
3779 /* Pre-allocate tasks so that we don't have to roll back after the xprt
3780 * has been migrated.
3781 */
3782 new_task = task_new(tid_bit);
3783 new_tasklet = tasklet_new();
3784 if (!new_task || !new_tasklet)
3785 goto fail;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003786
3787 if (fd_takeover(conn->handle.fd, conn) != 0)
Willy Tarreau261b9162023-11-17 10:56:33 +01003788 goto fail;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003789
3790 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3791 /* We failed to takeover the xprt, even if the connection may
3792 * still be valid, flag it as error'd, as we have already
3793 * taken over the fd, and wake the tasklet, so that it will
3794 * destroy it.
3795 */
3796 conn->flags |= CO_FL_ERROR;
3797 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau261b9162023-11-17 10:56:33 +01003798 goto fail;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003799 }
3800
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003801 if (h1c->wait_event.events)
3802 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3803 h1c->wait_event.events, &h1c->wait_event);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003804
3805 task = h1c->task;
3806 if (task) {
Willy Tarreau261b9162023-11-17 10:56:33 +01003807 /* only assign a task if there was already one, otherwise
3808 * the preallocated new task will be released.
3809 */
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003810 task->context = NULL;
3811 h1c->task = NULL;
3812 __ha_barrier_store();
3813 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003814
Willy Tarreau261b9162023-11-17 10:56:33 +01003815 h1c->task = new_task;
3816 new_task = NULL;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003817 h1c->task->process = h1_timeout_task;
3818 h1c->task->context = h1c;
3819 }
Willy Tarreau261b9162023-11-17 10:56:33 +01003820
3821 /* To let the tasklet know it should free itself, and do nothing else,
3822 * set its context to NULL.
3823 */
3824 h1c->wait_event.tasklet->context = NULL;
3825 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3826
3827 h1c->wait_event.tasklet = new_tasklet;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003828 h1c->wait_event.tasklet->process = h1_io_cb;
3829 h1c->wait_event.tasklet->context = h1c;
3830 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3831 SUB_RETRY_RECV, &h1c->wait_event);
3832
Willy Tarreau261b9162023-11-17 10:56:33 +01003833 if (new_task)
3834 __task_free(new_task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003835 return 0;
Willy Tarreau261b9162023-11-17 10:56:33 +01003836 fail:
3837 if (new_task)
3838 __task_free(new_task);
3839 tasklet_free(new_tasklet);
3840 return -1;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003841}
3842
3843
Christopher Faulet98fbe952019-07-22 16:18:24 +02003844static void h1_hdeaders_case_adjust_deinit()
3845{
3846 struct ebpt_node *node, *next;
3847 struct h1_hdr_entry *entry;
3848
3849 node = ebpt_first(&hdrs_map.map);
3850 while (node) {
3851 next = ebpt_next(node);
3852 ebpt_delete(node);
3853 entry = container_of(node, struct h1_hdr_entry, node);
3854 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003855 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003856 free(entry);
3857 node = next;
3858 }
3859 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003860}
3861
Christopher Faulet98fbe952019-07-22 16:18:24 +02003862static int cfg_h1_headers_case_adjust_postparser()
3863{
3864 FILE *file = NULL;
3865 char *c, *key_beg, *key_end, *value_beg, *value_end;
3866 char *err;
3867 int rc, line = 0, err_code = 0;
3868
3869 if (!hdrs_map.name)
3870 goto end;
3871
3872 file = fopen(hdrs_map.name, "r");
3873 if (!file) {
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003874 ha_alert("config : h1-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003875 hdrs_map.name);
3876 err_code |= ERR_ALERT | ERR_FATAL;
3877 goto end;
3878 }
3879
3880 /* now parse all lines. The file may contain only two header name per
3881 * line, separated by spaces. All heading and trailing spaces will be
3882 * ignored. Lines starting with a # are ignored.
3883 */
3884 while (fgets(trash.area, trash.size, file) != NULL) {
3885 line++;
3886 c = trash.area;
3887
3888 /* strip leading spaces and tabs */
3889 while (*c == ' ' || *c == '\t')
3890 c++;
3891
3892 /* ignore emptu lines, or lines beginning with a dash */
3893 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3894 continue;
3895
3896 /* look for the end of the key */
3897 key_beg = c;
3898 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3899 c++;
3900 key_end = c;
3901
3902 /* strip middle spaces and tabs */
3903 while (*c == ' ' || *c == '\t')
3904 c++;
3905
3906 /* look for the end of the value, it is the end of the line */
3907 value_beg = c;
3908 while (*c && *c != '\n' && *c != '\r')
3909 c++;
3910 value_end = c;
3911
3912 /* trim possibly trailing spaces and tabs */
3913 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3914 value_end--;
3915
3916 /* set final \0 and check entries */
3917 *key_end = '\0';
3918 *value_end = '\0';
3919
3920 err = NULL;
3921 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3922 if (rc < 0) {
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003923 ha_alert("config : h1-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003924 hdrs_map.name, err, line);
3925 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003926 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003927 goto end;
3928 }
3929 if (rc > 0) {
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003930 ha_warning("config : h1-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003931 hdrs_map.name, err, line);
3932 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003933 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003934 }
3935 }
3936
3937 end:
3938 if (file)
3939 fclose(file);
3940 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3941 return err_code;
3942}
3943
3944
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003945/* config parser for global "h1-header-case-adjust" */
Christopher Faulet98fbe952019-07-22 16:18:24 +02003946static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003947 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003948 char **err)
3949{
3950 if (too_many_args(2, args, err, NULL))
3951 return -1;
3952 if (!*(args[1]) || !*(args[2])) {
3953 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3954 return -1;
3955 }
3956 return add_hdr_case_adjust(args[1], args[2], err);
3957}
3958
Christopher Faulet1b6b14e2022-05-13 09:27:13 +02003959/* config parser for global "h1-headers-case-adjust-file" */
Christopher Faulet98fbe952019-07-22 16:18:24 +02003960static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003961 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003962 char **err)
3963{
3964 if (too_many_args(1, args, err, NULL))
3965 return -1;
3966 if (!*(args[1])) {
3967 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3968 return -1;
3969 }
3970 free(hdrs_map.name);
3971 hdrs_map.name = strdup(args[1]);
3972 return 0;
3973}
3974
3975
3976/* config keyword parsers */
3977static struct cfg_kw_list cfg_kws = {{ }, {
3978 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3979 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3980 { 0, NULL, NULL },
3981 }
3982};
3983
3984INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3985REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3986
3987
Christopher Faulet51dbc942018-09-13 09:05:15 +02003988/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003989/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003990/****************************************/
3991
3992/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003993static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003994 .init = h1_init,
3995 .wake = h1_wake,
3996 .attach = h1_attach,
3997 .get_first_cs = h1_get_first_cs,
3998 .detach = h1_detach,
3999 .destroy = h1_destroy,
4000 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01004001 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02004002 .rcv_buf = h1_rcv_buf,
4003 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02004004#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02004005 .rcv_pipe = h1_rcv_pipe,
4006 .snd_pipe = h1_snd_pipe,
4007#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02004008 .subscribe = h1_subscribe,
4009 .unsubscribe = h1_unsubscribe,
4010 .shutr = h1_shutr,
4011 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01004012 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004013 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01004014 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02004015 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02004016 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02004017};
4018
Christopher Faulet3f612f72021-02-05 16:44:21 +01004019static const struct mux_ops mux_h1_ops = {
4020 .init = h1_init,
4021 .wake = h1_wake,
4022 .attach = h1_attach,
4023 .get_first_cs = h1_get_first_cs,
4024 .detach = h1_detach,
4025 .destroy = h1_destroy,
4026 .avail_streams = h1_avail_streams,
4027 .used_streams = h1_used_streams,
4028 .rcv_buf = h1_rcv_buf,
4029 .snd_buf = h1_snd_buf,
4030#if defined(USE_LINUX_SPLICE)
4031 .rcv_pipe = h1_rcv_pipe,
4032 .snd_pipe = h1_snd_pipe,
4033#endif
4034 .subscribe = h1_subscribe,
4035 .unsubscribe = h1_unsubscribe,
4036 .shutr = h1_shutr,
4037 .shutw = h1_shutw,
4038 .show_fd = h1_show_fd,
4039 .ctl = h1_ctl,
4040 .takeover = h1_takeover,
4041 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4042 .name = "H1",
4043};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004044
Christopher Faulet3f612f72021-02-05 16:44:21 +01004045/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4046static struct mux_proto_list mux_proto_h1 =
4047 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4048static struct mux_proto_list mux_proto_http =
4049 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004050
Christopher Faulet3f612f72021-02-05 16:44:21 +01004051INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4052INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004053
Christopher Faulet51dbc942018-09-13 09:05:15 +02004054/*
4055 * Local variables:
4056 * c-indent-level: 8
4057 * c-basic-offset: 8
4058 * End:
4059 */