blob: ae0fddec10de92dfb8df8e2713e84699b5856784 [file] [log] [blame]
Christopher Faulet51dbc942018-09-13 09:05:15 +02001/*
2 * HTT/1 mux-demux for connections
3 *
4 * Copyright 2018 Christopher Faulet <cfaulet@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
Willy Tarreaub2551052020-06-09 09:07:15 +020012#include <import/ebistree.h>
13
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020014#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020015#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020016#include <haproxy/connection.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020017#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020018#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020019#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020021#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/istbuf.h>
23#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020024#include <haproxy/pipe-t.h>
Willy Tarreauadc02402021-05-08 20:28:54 +020025#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020026#include <haproxy/session-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020027#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020028#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020029#include <haproxy/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020030
31/*
32 * H1 Connection flags (32 bits)
33 */
34#define H1C_F_NONE 0x00000000
35
36/* Flags indicating why writing output data are blocked */
37#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
38#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
39/* 0x00000004 - 0x00000008 unused */
40
41/* Flags indicating why reading input data are blocked. */
42#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
43#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletd17ad822020-09-24 15:14:29 +020044#define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */
Christopher Faulet51dbc942018-09-13 09:05:15 +020045
Christopher Faulet7b109f22019-12-05 11:18:31 +010046/* Flags indicating the connection state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010047#define H1C_F_ST_EMBRYONIC 0x00000100 /* Set when a H1 stream with no conn-stream is attached to the connection */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +010048#define H1C_F_ST_ATTACHED 0x00000200 /* Set when a H1 stream with a conn-stream is attached to the connection (may be not READY) */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010049#define H1C_F_ST_IDLE 0x00000400 /* connection is idle and may be reused
50 * (exclusive to all H1C_F_ST flags and never set when an h1s is attached) */
51#define H1C_F_ST_ERROR 0x00000800 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */
52#define H1C_F_ST_SHUTDOWN 0x00001000 /* connection must be shut down ASAP flushing output first (conn-stream may still be attached) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +010053#define H1C_F_ST_READY 0x00002000 /* Set in ATTACHED state with a READY conn-stream. A conn-stream is not ready when
54 * a TCP>H1 upgrade is in progress Thus this flag is only set if ATTACHED is also set */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010055#define H1C_F_ST_ALIVE (H1C_F_ST_IDLE|H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED)
Christopher Fauletbde7e052021-11-15 14:51:37 +010056#define H1C_F_ST_SILENT_SHUT 0x00004000 /* silent (or dirty) shutdown must be performed (implied ST_SHUTDOWN) */
Christopher Fauletdb451fb2021-10-27 15:36:38 +020057/* 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020058
Christopher Fauletb385b502021-01-13 18:47:57 +010059#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
60#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
61#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
62#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
63#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
64#define H1C_F_CO_STREAMER 0x00200000 /* set if CO_SFL_STREAMER must be set when calling xprt->snd_buf() */
Christopher Faulet129817b2018-09-20 16:14:40 +020065
Christopher Faulet10a86702021-04-07 14:18:11 +020066/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010067#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020068
Christopher Faulet51dbc942018-09-13 09:05:15 +020069/*
70 * H1 Stream flags (32 bits)
71 */
Christopher Faulet129817b2018-09-20 16:14:40 +020072#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020073
74#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
75#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet58f21da2021-09-20 07:47:27 +020076#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
77
Willy Tarreauc493c9c2019-06-03 14:18:22 +020078#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020079#define H1S_F_WANT_KAL 0x00000010
80#define H1S_F_WANT_TUN 0x00000020
81#define H1S_F_WANT_CLO 0x00000040
82#define H1S_F_WANT_MSK 0x00000070
83#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010084#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020085
Ilya Shipitsinacf84592021-02-06 22:29:08 +050086/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010087#define H1S_F_NOT_IMPL_ERROR 0x00000400 /* Set when a feature is not implemented during the message parsing */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020088#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
89#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
90#define H1S_F_ERROR 0x00001800 /* stream error mask */
91
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020092#define H1S_F_HAVE_SRV_NAME 0x00002000 /* Set during output process if the server name header was added to the request */
Christopher Fauletada34b62019-05-24 16:36:43 +020093#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020094
95/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020096struct h1c {
97 struct connection *conn;
98 struct proxy *px;
99 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +0200100 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200101 struct buffer ibuf; /* Input buffer to store data before parsing */
102 struct buffer obuf; /* Output buffer to store data after reformatting */
103
104 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
105 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
106
107 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100108 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200109 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
110 int timeout; /* client/server timeout duration */
111 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112};
113
114/* H1 stream descriptor */
115struct h1s {
116 struct h1c *h1c;
117 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100118 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200119
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100120 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200121
Olivier Houchardf502aca2018-12-14 19:42:40 +0100122 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200123 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200124 struct h1m req;
125 struct h1m res;
126
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500127 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200128 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100129
130 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200131};
132
Christopher Faulet98fbe952019-07-22 16:18:24 +0200133/* Map of headers used to convert outgoing headers */
134struct h1_hdrs_map {
135 char *name;
136 struct eb_root map;
137};
138
139/* An entry in a headers map */
140struct h1_hdr_entry {
141 struct ist name;
142 struct ebpt_node node;
143};
144
145/* Declare the headers map */
146static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
147
148
Christopher Faulet6b81df72019-10-01 22:08:43 +0200149/* trace source and events */
150static void h1_trace(enum trace_level level, uint64_t mask,
151 const struct trace_source *src,
152 const struct ist where, const struct ist func,
153 const void *a1, const void *a2, const void *a3, const void *a4);
154
155/* The event representation is split like this :
156 * h1c - internal H1 connection
157 * h1s - internal H1 stream
158 * strm - application layer
159 * rx - data receipt
160 * tx - data transmission
161 *
162 */
163static const struct trace_event h1_trace_events[] = {
164#define H1_EV_H1C_NEW (1ULL << 0)
165 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
166#define H1_EV_H1C_RECV (1ULL << 1)
167 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
168#define H1_EV_H1C_SEND (1ULL << 2)
169 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
170#define H1_EV_H1C_BLK (1ULL << 3)
171 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
172#define H1_EV_H1C_WAKE (1ULL << 4)
173 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
174#define H1_EV_H1C_END (1ULL << 5)
175 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
176#define H1_EV_H1C_ERR (1ULL << 6)
177 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
178
179#define H1_EV_RX_DATA (1ULL << 7)
180 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
181#define H1_EV_RX_EOI (1ULL << 8)
182 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
183#define H1_EV_RX_HDRS (1ULL << 9)
184 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
185#define H1_EV_RX_BODY (1ULL << 10)
186 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
187#define H1_EV_RX_TLRS (1ULL << 11)
188 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
189
190#define H1_EV_TX_DATA (1ULL << 12)
191 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
192#define H1_EV_TX_EOI (1ULL << 13)
193 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
194#define H1_EV_TX_HDRS (1ULL << 14)
195 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
196#define H1_EV_TX_BODY (1ULL << 15)
197 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
198#define H1_EV_TX_TLRS (1ULL << 16)
199 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
200
201#define H1_EV_H1S_NEW (1ULL << 17)
202 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
203#define H1_EV_H1S_BLK (1ULL << 18)
204 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
205#define H1_EV_H1S_END (1ULL << 19)
206 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
207#define H1_EV_H1S_ERR (1ULL << 20)
208 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
209
210#define H1_EV_STRM_NEW (1ULL << 21)
211 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
212#define H1_EV_STRM_RECV (1ULL << 22)
213 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
214#define H1_EV_STRM_SEND (1ULL << 23)
215 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
216#define H1_EV_STRM_WAKE (1ULL << 24)
217 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
218#define H1_EV_STRM_SHUT (1ULL << 25)
219 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
220#define H1_EV_STRM_END (1ULL << 26)
221 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
222#define H1_EV_STRM_ERR (1ULL << 27)
223 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
224
225 { }
226};
227
228static const struct name_desc h1_trace_lockon_args[4] = {
229 /* arg1 */ { /* already used by the connection */ },
230 /* arg2 */ { .name="h1s", .desc="H1 stream" },
231 /* arg3 */ { },
232 /* arg4 */ { }
233};
234
235static const struct name_desc h1_trace_decoding[] = {
236#define H1_VERB_CLEAN 1
237 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
238#define H1_VERB_MINIMAL 2
239 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
240#define H1_VERB_SIMPLE 3
241 { .name="simple", .desc="add request/response status line or htx info when available" },
242#define H1_VERB_ADVANCED 4
243 { .name="advanced", .desc="add header fields or frame decoding when available" },
244#define H1_VERB_COMPLETE 5
245 { .name="complete", .desc="add full data dump when available" },
246 { /* end */ }
247};
248
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200249static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200250 .name = IST("h1"),
251 .desc = "HTTP/1 multiplexer",
252 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
253 .default_cb = h1_trace,
254 .known_events = h1_trace_events,
255 .lockon_args = h1_trace_lockon_args,
256 .decoding = h1_trace_decoding,
257 .report_events = ~0, // report everything by default
258};
259
260#define TRACE_SOURCE &trace_h1
261INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
262
Christopher Faulet51dbc942018-09-13 09:05:15 +0200263/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100264DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
265DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200266
Christopher Faulet51dbc942018-09-13 09:05:15 +0200267static int h1_recv(struct h1c *h1c);
268static int h1_send(struct h1c *h1c);
269static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100270/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100271struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
272struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauletdb451fb2021-10-27 15:36:38 +0200273static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200274static void h1_wake_stream_for_recv(struct h1s *h1s);
275static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200276
Christopher Faulet6b81df72019-10-01 22:08:43 +0200277/* the H1 traces always expect that arg1, if non-null, is of type connection
278 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
279 * that arg3, if non-null, is a htx for rx/tx headers.
280 */
281static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
282 const struct ist where, const struct ist func,
283 const void *a1, const void *a2, const void *a3, const void *a4)
284{
285 const struct connection *conn = a1;
286 const struct h1c *h1c = conn ? conn->ctx : NULL;
287 const struct h1s *h1s = a2;
288 const struct htx *htx = a3;
289 const size_t *val = a4;
290
291 if (!h1c)
292 h1c = (h1s ? h1s->h1c : NULL);
293
294 if (!h1c || src->verbosity < H1_VERB_CLEAN)
295 return;
296
297 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200298 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200299
300 /* Display request and response states if h1s is defined */
Christopher Faulet1a62dc32021-11-26 17:31:35 +0100301 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200302 chunk_appendf(&trace_buf, " [%s, %s]",
303 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
304
Christopher Faulet1a62dc32021-11-26 17:31:35 +0100305 if (src->verbosity > H1_VERB_SIMPLE) {
306 chunk_appendf(&trace_buf, " - req=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
307 h1s->req.flags, (unsigned long)h1s->req.curr_len, (unsigned long)h1s->req.body_len);
308 chunk_appendf(&trace_buf, " res=(.fl=0x%08x .curr_len=%lu .body_len=%lu)",
309 h1s->res.flags, (unsigned long)h1s->res.curr_len, (unsigned long)h1s->res.body_len);
310 }
311
312 }
313
Christopher Faulet6b81df72019-10-01 22:08:43 +0200314 if (src->verbosity == H1_VERB_CLEAN)
315 return;
316
317 /* Display the value to the 4th argument (level > STATE) */
318 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100319 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200320
321 /* Display status-line if possible (verbosity > MINIMAL) */
322 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
323 const struct htx_blk *blk = htx_get_head_blk(htx);
324 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
325 enum htx_blk_type type = htx_get_blk_type(blk);
326
327 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
328 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
329 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
330 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
331 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
332 }
333
334 /* Display h1c info and, if defined, h1s info (pointer + flags) */
335 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
Christopher Fauletea62e182021-11-10 10:30:15 +0100336 if (h1c->conn)
337 chunk_appendf(&trace_buf, " conn=%p(0x%08x)", h1c->conn, h1c->conn->flags);
338 if (h1s) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200339 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
Christopher Fauletea62e182021-11-10 10:30:15 +0100340 if (h1s->cs)
341 chunk_appendf(&trace_buf, " cs=%p(0x%08x)", h1s->cs, h1s->cs->flags);
342 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200343
344 if (src->verbosity == H1_VERB_MINIMAL)
345 return;
346
347 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
348 if (src->level > TRACE_LEVEL_USER) {
349 if (src->verbosity == H1_VERB_COMPLETE ||
350 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
351 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
352 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
353 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
354 if (src->verbosity == H1_VERB_COMPLETE ||
355 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
356 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
357 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
358 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
359 }
360
361 /* Display htx info if defined (level > USER) */
362 if (src->level > TRACE_LEVEL_USER && htx) {
363 int full = 0;
364
365 /* Full htx info (level > STATE && verbosity > SIMPLE) */
366 if (src->level > TRACE_LEVEL_STATE) {
367 if (src->verbosity == H1_VERB_COMPLETE)
368 full = 1;
369 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
370 full = 1;
371 }
372
373 chunk_memcat(&trace_buf, "\n\t", 2);
374 htx_dump(&trace_buf, htx, full);
375 }
376}
377
378
Christopher Faulet51dbc942018-09-13 09:05:15 +0200379/*****************************************************/
380/* functions below are for dynamic buffer management */
381/*****************************************************/
382/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100383 * Indicates whether or not we may receive data. The rules are the following :
384 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200385 * must not attempt to receive
386 * - if we are waiting for the connection establishment, we must not attempt
387 * to receive
388 * - if an error was detected on the stream we must not attempt to receive
389 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100390 * - if the input buffer failed to be allocated or is full , we must not try
391 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200392 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200393 * - otherwise must may not attempt to receive
394 */
395static inline int h1_recv_allowed(const struct h1c *h1c)
396{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100397 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100398 TRACE_DEVEL("recv not allowed because of error on h1c", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200399 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200400 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200401
Willy Tarreau2febb842020-07-31 09:15:43 +0200402 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
403 TRACE_DEVEL("recv not allowed because of (error|read0|waitl4|waitl6) on connection", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletcf56b992018-12-11 16:12:31 +0100404 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200405 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100406
Christopher Faulet119ac872020-09-30 17:33:22 +0200407 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
408 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
409 return 0;
410 }
411
Christopher Fauletd17ad822020-09-24 15:14:29 +0200412 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200413 return 1;
414
Christopher Faulet6b81df72019-10-01 22:08:43 +0200415 TRACE_DEVEL("recv not allowed because input is blocked", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200416 return 0;
417}
418
419/*
420 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
421 * flags are used to figure what buffer was requested. It returns 1 if the
422 * allocation succeeds, in which case the connection is woken up, or 0 if it's
423 * impossible to wake up and we prefer to be woken up later.
424 */
425static int h1_buf_available(void *target)
426{
427 struct h1c *h1c = target;
428
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100429 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200430 TRACE_STATE("unblocking h1c, ibuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200431 h1c->flags &= ~H1C_F_IN_ALLOC;
432 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200433 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200434 return 1;
435 }
436
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100437 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200438 TRACE_STATE("unblocking h1s, obuf allocated", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200439 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200440 if (h1c->h1s)
441 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200442 return 1;
443 }
444
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100445 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200446 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
447 h1c->flags &= ~H1C_F_IN_SALLOC;
448 tasklet_wakeup(h1c->wait_event.tasklet);
449 return 1;
450 }
451
Christopher Faulet51dbc942018-09-13 09:05:15 +0200452 return 0;
453}
454
455/*
456 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
457 */
458static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
459{
460 struct buffer *buf = NULL;
461
Willy Tarreau2b718102021-04-21 07:32:39 +0200462 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100463 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200464 h1c->buf_wait.target = h1c;
465 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreau2b718102021-04-21 07:32:39 +0200466 LIST_APPEND(&ti->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200467 }
468 return buf;
469}
470
471/*
472 * Release a buffer, if any, and try to wake up entities waiting in the buffer
473 * wait queue.
474 */
475static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
476{
477 if (bptr->size) {
478 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100479 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200480 }
481}
482
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100483/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100484 * or not. We rely on H1C_F_ST_IDLE to know if the connection is in-use or
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100485 * not. This flag is only set when no H1S is attached and when the previous
486 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100487 */
488static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200489{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100490 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200491
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100492 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200493}
494
Willy Tarreau00f18a32019-01-26 12:19:01 +0100495/* returns the number of streams still available on a connection */
496static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100497{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100498 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100499}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200500
Christopher Faulet7a145d62020-08-05 11:31:16 +0200501/* Refresh the h1c task timeout if necessary */
502static void h1_refresh_timeout(struct h1c *h1c)
503{
504 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100505 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200506 /* half-closed or dead connections : switch to clientfin/serverfin
507 * timeouts so that we don't hang too long on clients that have
508 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200509 */
510 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200511 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
512 }
513 else if (b_data(&h1c->obuf)) {
514 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200515 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200516 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
517 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100518 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
519 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200520 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100521 TRACE_DEVEL("refreshing connection's timeout (alive front h1c but not ready)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200522 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200523 else {
524 /* alive back connections of front connections with a conn-stream attached */
525 h1c->task->expire = TICK_ETERNITY;
526 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
527 }
528
Christopher Fauletdbe57792020-10-05 17:50:58 +0200529 /* Finally set the idle expiration date if shorter */
530 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200531 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
532 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200533 }
534}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200535
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200536static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200537{
538 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
539 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
540 h1c->idle_exp = TICK_ETERNITY;
541 return;
542 }
543
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100544 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200545 if (!tick_isset(h1c->idle_exp)) {
546 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
547 !b_data(&h1c->ibuf) && /* No input data */
548 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
549 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
550 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
551 }
552 else {
553 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
554 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
555 }
556 }
557 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100558 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200559 if (!tick_isset(h1c->idle_exp)) {
560 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
561 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
562 }
563 }
564 else { // CS_ATTACHED or SHUTDOWN
565 h1c->idle_exp = TICK_ETERNITY;
566 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
567 }
568}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200569/*****************************************************************/
570/* functions below are dedicated to the mux setup and management */
571/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200572
573/* returns non-zero if there are input data pending for stream h1s. */
574static inline size_t h1s_data_pending(const struct h1s *h1s)
575{
576 const struct h1m *h1m;
577
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200578 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100579 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200580}
581
Christopher Faulet16df1782020-12-04 16:47:41 +0100582/* Creates a new conn-stream and the associate stream. <input> is used as input
583 * buffer for the stream. On success, it is transferred to the stream and the
584 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
585 * mux must still take care of it. However, there is nothing special to do
586 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
587 * b_free() on it is always safe. This function returns the conn-stream on
588 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200589static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100590{
591 struct conn_stream *cs;
592
Christopher Faulet6b81df72019-10-01 22:08:43 +0200593 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200594 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200595 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100596 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100597 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200598 }
Christopher Faulet47365272018-10-31 17:40:50 +0100599 h1s->cs = cs;
600 cs->ctx = h1s;
601
602 if (h1s->flags & H1S_F_NOT_FIRST)
603 cs->flags |= CS_FL_NOT_FIRST;
604
Amaury Denoyelleee7fcd52021-10-18 14:45:49 +0200605 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
606 cs->flags |= CS_FL_WEBSOCKET;
607
Christopher Faulet26256f82020-09-14 11:40:13 +0200608 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200609 TRACE_DEVEL("leaving on stream creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100610 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200611 }
612
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100613 h1s->h1c->flags = (h1s->h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200614 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100615 return cs;
616
617 err:
618 cs_free(cs);
619 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100620 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100621 return NULL;
622}
623
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100624static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
625{
626 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
627
628 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100629 TRACE_ERROR("stream upgrade failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100630 goto err;
631 }
632
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100633 h1s->h1c->flags |= H1C_F_ST_READY;
634 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
635 return h1s->cs;
636
637 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100638 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100639 return NULL;
640}
641
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200642static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200643{
644 struct h1s *h1s;
645
Christopher Faulet6b81df72019-10-01 22:08:43 +0200646 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
647
Christopher Faulet51dbc942018-09-13 09:05:15 +0200648 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100649 if (!h1s) {
650 TRACE_ERROR("H1S allocation failure", H1_EV_H1S_NEW|H1_EV_H1S_END|H1_EV_H1S_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100651 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100652 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200653 h1s->h1c = h1c;
654 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200655 h1s->sess = NULL;
656 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100657 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100658 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200659 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100660 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200661
662 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100663 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200664
Christopher Faulet129817b2018-09-20 16:14:40 +0200665 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100666 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200667
668 h1s->status = 0;
669 h1s->meth = HTTP_METH_OTHER;
670
Christopher Faulet47365272018-10-31 17:40:50 +0100671 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
672 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100673 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100674
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200675 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
676 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200677
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200678 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100679 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200680 return NULL;
681}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100682
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200683static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
684{
685 struct session *sess = h1c->conn->owner;
686 struct h1s *h1s;
687
688 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
689
690 h1s = h1s_new(h1c);
691 if (!h1s)
692 goto fail;
693
694 h1s->sess = sess;
695
696 if (h1c->px->options2 & PR_O2_REQBUG_OK)
697 h1s->req.err_pos = -1;
698
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200699 h1c->idle_exp = TICK_ETERNITY;
700 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200701 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200702 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100703
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200704 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100705 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200706 return NULL;
707}
708
709static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
710{
711 struct h1s *h1s;
712
713 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
714
715 h1s = h1s_new(h1c);
716 if (!h1s)
717 goto fail;
718
Christopher Faulet10a86702021-04-07 14:18:11 +0200719 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200720 h1s->cs = cs;
721 h1s->sess = sess;
722 cs->ctx = h1s;
723
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100724 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200725
726 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
727 h1s->res.err_pos = -1;
728
729 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
730 return h1s;
731
732 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100733 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100734 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200735}
736
737static void h1s_destroy(struct h1s *h1s)
738{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200739 if (h1s) {
740 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200741
Christopher Faulet6b81df72019-10-01 22:08:43 +0200742 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200743 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200744
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100745 if (h1s->subs)
746 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200747
Christopher Fauletd17ad822020-09-24 15:14:29 +0200748 h1_release_buf(h1c, &h1s->rxbuf);
749
Christopher Faulet10a86702021-04-07 14:18:11 +0200750 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100751 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200752 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
753 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200754 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100755 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100756 TRACE_ERROR("h1s on error, set error on h1c", H1_EV_H1S_END|H1_EV_H1C_ERR, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200757 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100758
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100759 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100760 !(h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && /* No error/shutdown on conn */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100761 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100762 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100763 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100764 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
765 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200766 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100767 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100768 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200769 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200770 pool_free(pool_head_h1s, h1s);
771 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200772}
773
774/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200775 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500776 * to the existing conn_stream (for outgoing connections or for incoming ones
777 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200778 * establishment). <input> is always used as Input buffer and may contain
779 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
780 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200781 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200782static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
783 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200784{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200785 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100786 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200787 void *conn_ctx = conn->ctx;
788
789 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200790
791 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100792 if (!h1c) {
793 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200794 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100795 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200796 h1c->conn = conn;
797 h1c->px = proxy;
798
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100799 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200800 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200801 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200802 h1c->obuf = BUF_NULL;
803 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200804 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200805
Willy Tarreau90f366b2021-02-20 11:49:49 +0100806 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200807 h1c->wait_event.tasklet = tasklet_new();
808 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200809 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200810 h1c->wait_event.tasklet->process = h1_io_cb;
811 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100812 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200813 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200814
Christopher Faulete9b70722019-04-08 10:46:02 +0200815 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200816 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100817 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
818 if (tick_isset(proxy->timeout.serverfin))
819 h1c->shut_timeout = proxy->timeout.serverfin;
820 } else {
821 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
822 if (tick_isset(proxy->timeout.clientfin))
823 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200824
825 LIST_APPEND(&mux_stopping_data[tid].list,
826 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100827 }
828 if (tick_isset(h1c->timeout)) {
829 t = task_new(tid_bit);
Christopher Faulet26a26432021-01-27 11:27:50 +0100830 if (!t) {
831 TRACE_ERROR("H1C task allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100832 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100833 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100834
835 h1c->task = t;
836 t->process = h1_timeout_task;
837 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200838
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100839 t->expire = tick_add(now_ms, h1c->timeout);
840 }
841
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100842 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200843
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200844 if (h1c->flags & H1C_F_IS_BACK) {
845 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200846 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
847 goto fail;
848 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100849 else if (conn_ctx) {
850 /* Upgraded frontend connection (from TCP) */
851 struct conn_stream *cs = conn_ctx;
852
853 if (!h1c_frt_stream_new(h1c))
854 goto fail;
855
856 h1c->h1s->cs = cs;
857 cs->ctx = h1c->h1s;
858
859 /* Attach the CS but Not ready yet */
860 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
861 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
862 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
863 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100864
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200865 if (t) {
866 h1_set_idle_expiration(h1c);
867 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100868 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200869 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100870
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200871 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100872 if (b_data(&h1c->ibuf))
873 tasklet_wakeup(h1c->wait_event.tasklet);
874 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200875 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200876
877 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200878 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200879 return 0;
880
881 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200882 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200883 if (h1c->wait_event.tasklet)
884 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200885 pool_free(pool_head_h1c, h1c);
886 fail_h1c:
Willy Tarreau8802bf12022-01-12 17:24:26 +0100887 if (!conn_is_back(conn))
888 LIST_DEL_INIT(&conn->stopping_list);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200889 conn->ctx = conn_ctx; // restore saved context
890 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200891 return -1;
892}
893
Christopher Faulet73c12072019-04-08 11:23:22 +0200894/* release function. This one should be called to free all resources allocated
895 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200896 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200897static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200898{
Christopher Faulet61840e72019-04-15 09:33:32 +0200899 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200900
Christopher Faulet6b81df72019-10-01 22:08:43 +0200901 TRACE_POINT(H1_EV_H1C_END);
902
Christopher Faulet51dbc942018-09-13 09:05:15 +0200903 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200904 /* The connection must be aattached to this mux to be released */
905 if (h1c->conn && h1c->conn->ctx == h1c)
906 conn = h1c->conn;
907
Christopher Faulet6b81df72019-10-01 22:08:43 +0200908 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
909
Christopher Faulet61840e72019-04-15 09:33:32 +0200910 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200911 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200912 /* Make sure we're no longer subscribed to anything */
913 if (h1c->wait_event.events)
914 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
915 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200916 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200917 /* connection successfully upgraded to H2, this
918 * mux was already released */
919 return;
920 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100921 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200922 sess_log(conn->owner); /* Log if the upgrade failed */
923 }
924
Olivier Houchard45c44372019-06-11 14:06:23 +0200925
Willy Tarreau2b718102021-04-21 07:32:39 +0200926 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100927 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200928
929 h1_release_buf(h1c, &h1c->ibuf);
930 h1_release_buf(h1c, &h1c->obuf);
931
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100932 if (h1c->task) {
933 h1c->task->context = NULL;
934 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
935 h1c->task = NULL;
936 }
937
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200938 if (h1c->wait_event.tasklet)
939 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200940
Christopher Fauletf2824e62018-10-01 12:12:37 +0200941 h1s_destroy(h1c->h1s);
Christopher Faulet37c42542021-10-27 15:42:13 +0200942 if (conn) {
943 if (h1c->wait_event.events != 0)
944 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
945 &h1c->wait_event);
946 h1_shutw_conn(conn);
947 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200948 pool_free(pool_head_h1c, h1c);
949 }
950
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200951 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200952 if (!conn_is_back(conn))
953 LIST_DEL_INIT(&conn->stopping_list);
954
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200955 conn->mux = NULL;
956 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200957 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200958
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200959 conn_stop_tracking(conn);
960 conn_full_close(conn);
961 if (conn->destroy_cb)
962 conn->destroy_cb(conn);
963 conn_free(conn);
964 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200965}
966
967/******************************************************/
968/* functions below are for the H1 protocol processing */
969/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200970/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
971 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200972 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100973static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200974{
Christopher Faulet570d1612018-11-26 11:13:57 +0100975 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200976
Christopher Faulet570d1612018-11-26 11:13:57 +0100977 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200978 (*(p + 5) > '1' ||
979 (*(p + 5) == '1' && *(p + 7) >= '1')))
980 h1m->flags |= H1_MF_VER_11;
981}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200982
Christopher Faulet9768c262018-10-22 09:34:31 +0200983/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
984 * greater or equal to 1.1
985 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100986static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200987{
Christopher Faulet570d1612018-11-26 11:13:57 +0100988 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200989
Christopher Faulet570d1612018-11-26 11:13:57 +0100990 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200991 (*(p + 5) > '1' ||
992 (*(p + 5) == '1' && *(p + 7) >= '1')))
993 h1m->flags |= H1_MF_VER_11;
994}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200995
Christopher Fauletf2824e62018-10-01 12:12:37 +0200996/* Deduce the connection mode of the client connection, depending on the
997 * configuration and the H1 message flags. This function is called twice, the
998 * first time when the request is parsed and the second time when the response
999 * is parsed.
1000 */
1001static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1002{
1003 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001004
1005 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001006 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001007 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001008 h1s->status == 101) {
1009 /* Either we've established an explicit tunnel, or we're
1010 * switching the protocol. In both cases, we're very unlikely to
1011 * understand the next protocols. We have to switch to tunnel
1012 * mode, so that we transfer the request and responses then let
1013 * this protocol pass unmodified. When we later implement
1014 * specific parsers for such protocols, we'll want to check the
1015 * Upgrade header which contains information about that protocol
1016 * for responses with status 101 (eg: see RFC2817 about TLS).
1017 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001018 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001019 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 +01001020 }
1021 else if (h1s->flags & H1S_F_WANT_KAL) {
1022 /* By default the client is in KAL mode. CLOSE mode mean
1023 * it is imposed by the client itself. So only change
1024 * KAL mode here. */
1025 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1026 /* no length known or explicit close => close */
1027 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001028 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 +01001029 }
1030 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1031 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001032 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001033 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001034 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 +01001035 }
1036 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001037 }
1038 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001039 /* Input direction: first pass */
1040 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1041 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001042 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001043 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 +01001044 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001045 }
1046
1047 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001048 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
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("stopping, set close mode", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1051 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001052}
1053
1054/* Deduce the connection mode of the client connection, depending on the
1055 * configuration and the H1 message flags. This function is called twice, the
1056 * first time when the request is parsed and the second time when the response
1057 * is parsed.
1058 */
1059static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1060{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001061 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001062 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001063 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001064
Christopher Fauletf2824e62018-10-01 12:12:37 +02001065 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001066 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001067 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001068 h1s->status == 101) {
1069 /* Either we've established an explicit tunnel, or we're
1070 * switching the protocol. In both cases, we're very unlikely to
1071 * understand the next protocols. We have to switch to tunnel
1072 * mode, so that we transfer the request and responses then let
1073 * this protocol pass unmodified. When we later implement
1074 * specific parsers for such protocols, we'll want to check the
1075 * Upgrade header which contains information about that protocol
1076 * for responses with status 101 (eg: see RFC2817 about TLS).
1077 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001078 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001079 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 +01001080 }
1081 else if (h1s->flags & H1S_F_WANT_KAL) {
1082 /* By default the server is in KAL mode. CLOSE mode mean
1083 * it is imposed by haproxy itself. So only change KAL
1084 * mode here. */
1085 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1086 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1087 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1088 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001089 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 +01001090 }
1091 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001092 }
Christopher Faulet70033782018-12-05 13:50:11 +01001093 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001094 /* Output direction: first pass */
1095 if (h1m->flags & H1_MF_CONN_CLO) {
1096 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001097 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001098 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 +01001099 }
1100 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1101 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1102 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1103 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1104 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1105 /* no explicit keep-alive option httpclose/server-close => close */
1106 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001107 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 +01001108 }
Christopher Faulet70033782018-12-05 13:50:11 +01001109 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001110
1111 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001112 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001113 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001114 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);
1115 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001116}
1117
Christopher Fauletb992af02019-03-28 15:42:24 +01001118static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001119{
1120 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001121
1122 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1123 * token is found
1124 */
1125 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001126 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001127
1128 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001129 if (!(h1m->flags & H1_MF_VER_11)) {
1130 TRACE_STATE("add \"Connection: keep-alive\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001131 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001132 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001133 }
1134 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001135 if (h1m->flags & H1_MF_VER_11) {
1136 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001137 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001138 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001139 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001140}
1141
Christopher Fauletb992af02019-03-28 15:42:24 +01001142static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001143{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001144 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1145 * token is found
1146 */
1147 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001148 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001149
1150 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001151 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001152 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1153 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 +01001154 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001155 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001156 }
1157 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001158 if (h1m->flags & H1_MF_VER_11) {
1159 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001160 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001161 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001162 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001163}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001164
Christopher Fauletb992af02019-03-28 15:42:24 +01001165static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001166{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001167 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001168 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001169 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001170 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001171}
1172
Christopher Fauletb992af02019-03-28 15:42:24 +01001173static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1174{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001175 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001176 h1_set_cli_conn_mode(h1s, h1m);
1177 else
1178 h1_set_srv_conn_mode(h1s, h1m);
1179
1180 if (!(h1m->flags & H1_MF_RESP))
1181 h1_update_req_conn_value(h1s, h1m, conn_val);
1182 else
1183 h1_update_res_conn_value(h1s, h1m, conn_val);
1184}
Christopher Faulete44769b2018-11-29 23:01:45 +01001185
Christopher Faulet98fbe952019-07-22 16:18:24 +02001186/* Try to adjust the case of the message header name using the global map
1187 * <hdrs_map>.
1188 */
1189static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1190{
1191 struct ebpt_node *node;
1192 struct h1_hdr_entry *entry;
1193
1194 /* No entry in the map, do nothing */
1195 if (eb_is_empty(&hdrs_map.map))
1196 return;
1197
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001198 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001199 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1200 return;
1201
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001202 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001203 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1204 return;
1205
1206 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1207 if (!node)
1208 return;
1209 entry = container_of(node, struct h1_hdr_entry, node);
1210 name->ptr = entry->name.ptr;
1211 name->len = entry->name.len;
1212}
1213
Christopher Faulete44769b2018-11-29 23:01:45 +01001214/* Append the description of what is present in error snapshot <es> into <out>.
1215 * The description must be small enough to always fit in a buffer. The output
1216 * buffer may be the trash so the trash must not be used inside this function.
1217 */
1218static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1219{
1220 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001221 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1222 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1223 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1224 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1225 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1226 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001227}
1228/*
1229 * Capture a bad request or response and archive it in the proxy's structure.
1230 * By default it tries to report the error position as h1m->err_pos. However if
1231 * this one is not set, it will then report h1m->next, which is the last known
1232 * parsing point. The function is able to deal with wrapping buffers. It always
1233 * displays buffers as a contiguous area starting at buf->p. The direction is
1234 * determined thanks to the h1m's flags.
1235 */
1236static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1237 struct h1m *h1m, struct buffer *buf)
1238{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001239 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001240 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001241 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001242 union error_snapshot_ctx ctx;
1243
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001244 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001245 if (sess == NULL)
1246 sess = si_strm(h1s->cs->data)->sess;
1247 if (!(h1m->flags & H1_MF_RESP))
1248 other_end = si_strm(h1s->cs->data)->be;
1249 else
1250 other_end = sess->fe;
1251 } else
1252 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001253
1254 /* http-specific part now */
1255 ctx.h1.state = h1m->state;
1256 ctx.h1.c_flags = h1c->flags;
1257 ctx.h1.s_flags = h1s->flags;
1258 ctx.h1.m_flags = h1m->flags;
1259 ctx.h1.m_clen = h1m->curr_len;
1260 ctx.h1.m_blen = h1m->body_len;
1261
1262 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1263 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001264 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1265 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001266}
1267
Christopher Fauletadb22202018-12-12 10:32:09 +01001268/* Emit the chunksize followed by a CRLF in front of data of the buffer
1269 * <buf>. It goes backwards and starts with the byte before the buffer's
1270 * head. The caller is responsible for ensuring there is enough room left before
1271 * the buffer's head for the string.
1272 */
1273static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1274{
1275 char *beg, *end;
1276
1277 beg = end = b_head(buf);
1278 *--beg = '\n';
1279 *--beg = '\r';
1280 do {
1281 *--beg = hextab[chksz & 0xF];
1282 } while (chksz >>= 4);
1283 buf->head -= (end - beg);
1284 b_add(buf, end - beg);
1285}
1286
1287/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1288 * ensuring there is enough room left in the buffer for the string. */
1289static void h1_emit_chunk_crlf(struct buffer *buf)
1290{
1291 *(b_peek(buf, b_data(buf))) = '\r';
1292 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1293 b_add(buf, 2);
1294}
1295
Christopher Faulet129817b2018-09-20 16:14:40 +02001296/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001297 * Switch the stream to tunnel mode. This function must only be called on 2xx
1298 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001299 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001300static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001301{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001302 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001303
Christopher Faulet5be651d2021-01-22 15:28:03 +01001304 h1s->req.state = H1_MSG_TUNNEL;
1305 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001306
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001307 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001308 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001309
Christopher Faulet5be651d2021-01-22 15:28:03 +01001310 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 +01001311
Christopher Faulet10a86702021-04-07 14:18:11 +02001312 if (h1s->flags & H1S_F_RX_BLK) {
1313 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001314 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001315 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 +02001316 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001317 if (h1s->flags & H1S_F_TX_BLK) {
1318 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001319 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001320 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 +01001321 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001322}
1323
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001324/* Search for a websocket key header. The message should have been identified
1325 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001326 *
1327 * On the request side, if found the key is stored in the session. It might be
1328 * needed to calculate response key if the server side is using http/2.
1329 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001330 * On the response side, the key might be verified if haproxy has been
1331 * responsible for the generation of a key. This happens when a h2 client is
1332 * interfaced with a h1 server.
1333 *
1334 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001335 */
1336static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1337{
1338 struct htx_blk *blk;
1339 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001340 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001341 int ws_key_found = 0, idx;
1342
1343 idx = htx_get_head(htx); // returns the SL that we skip
1344 while ((idx = htx_get_next(htx, idx)) != -1) {
1345 blk = htx_get_blk(htx, idx);
1346 type = htx_get_blk_type(blk);
1347
1348 if (type == HTX_BLK_UNUSED)
1349 continue;
1350
1351 if (type != HTX_BLK_HDR)
1352 break;
1353
1354 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001355 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001356
Amaury Denoyellec1938232020-12-11 17:53:03 +01001357 /* Websocket key is base64 encoded of 16 bytes */
1358 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001359 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001360 /* Copy the key on request side
1361 * we might need it if the server is using h2 and does
1362 * not provide the response
1363 */
1364 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001365 ws_key_found = 1;
1366 break;
1367 }
1368 else if (isteqi(n, ist("sec-websocket-accept")) &&
1369 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001370 /* Need to verify the response key if the input was
1371 * generated by haproxy
1372 */
1373 if (h1s->ws_key[0]) {
1374 char key[29];
1375 h1_calculate_ws_output_key(h1s->ws_key, key);
1376 if (!isteqi(ist(key), v))
1377 break;
1378 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001379 ws_key_found = 1;
1380 break;
1381 }
1382 }
1383
1384 /* missing websocket key, reject the message */
1385 if (!ws_key_found) {
1386 htx->flags |= HTX_FL_PARSING_ERROR;
1387 return 0;
1388 }
1389
1390 return 1;
1391}
1392
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001393/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001394 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001395 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet58f21da2021-09-20 07:47:27 +02001396 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1397 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001398 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001399static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001400 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001401{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001402 union h1_sl h1sl;
Christopher Faulet129817b2018-09-20 16:14:40 +02001403 int ret = 0;
1404
Willy Tarreau022e5e52020-09-10 09:33:15 +02001405 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 +02001406
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001407 if (h1s->meth == HTTP_METH_CONNECT)
1408 h1m->flags |= H1_MF_METH_CONNECT;
1409 if (h1s->meth == HTTP_METH_HEAD)
1410 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001411
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001412 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001413 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001414 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 +02001415 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001416 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001417 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 +02001418 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1419 }
Christopher Faulet58f21da2021-09-20 07:47:27 +02001420 else if (ret == -2) {
1421 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);
1422 h1s->flags |= H1S_F_RX_CONGESTED;
1423 }
1424 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001425 goto end;
1426 }
1427
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001428 /* If websocket handshake, search for the websocket key */
1429 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1430 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1431 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1432 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001433 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001434 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 +01001435 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1436
1437 ret = 0;
1438 goto end;
1439 }
1440 }
1441
Christopher Faulet486498c2019-10-11 14:22:00 +02001442 if (h1m->err_pos >= 0) {
1443 /* Maybe we found an error during the parsing while we were
1444 * configured not to block on that, so we have to capture it
1445 * now.
1446 */
1447 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1448 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1449 }
1450
Christopher Faulet5696f542020-12-02 16:08:38 +01001451 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001452 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001453 if (h1s->meth == HTTP_METH_HEAD)
1454 h1s->flags |= H1S_F_BODYLESS_RESP;
1455 }
1456 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001457 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001458 if (h1s->status == 204 || h1s->status == 304)
1459 h1s->flags |= H1S_F_BODYLESS_RESP;
1460 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001461 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001462 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001463
Christopher Faulet129817b2018-09-20 16:14:40 +02001464 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001465 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 +02001466 return ret;
1467}
1468
1469/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001470 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001471 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1472 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001473 */
Christopher Fauletaf542632019-10-01 21:52:49 +02001474static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001475 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001476 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001477{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001478 int ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001479
Willy Tarreau022e5e52020-09-10 09:33:15 +02001480 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 +02001481 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001482 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001483 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 +01001484 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001485 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001486 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 +02001487 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001488 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001489 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001490 }
1491
Christopher Faulet02a02532019-11-15 09:36:28 +01001492 *ofs += ret;
1493
1494 end:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001495 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1496 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);
1497 h1s->flags |= H1S_F_RX_CONGESTED;
1498 }
1499
Willy Tarreau022e5e52020-09-10 09:33:15 +02001500 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 +02001501 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001502}
1503
1504/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001505 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1506 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1507 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet58f21da2021-09-20 07:47:27 +02001508 * responsible to update the parser state <h1m>. If more room is requested,
1509 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001510 */
1511static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1512 struct buffer *buf, size_t *ofs, size_t max)
1513{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001514 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001515
Willy Tarreau022e5e52020-09-10 09:33:15 +02001516 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 +02001517 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001518 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001519 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 +02001520 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001521 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001522 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 +02001523 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1524 }
Christopher Faulet5d0efb72022-04-13 17:48:54 +02001525 else if (ret == -2) {
Christopher Faulet58f21da2021-09-20 07:47:27 +02001526 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);
1527 h1s->flags |= H1S_F_RX_CONGESTED;
1528 }
1529 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001530 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001531 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001532
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001533 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001534
1535 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001536 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 +02001537 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001538}
1539
1540/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001541 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001542 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1543 * it couldn't proceed.
Christopher Faulet58f21da2021-09-20 07:47:27 +02001544 *
1545 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001546 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001547static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001548{
Christopher Faulet539e0292018-11-19 10:40:09 +01001549 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001550 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001551 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001552 size_t data;
1553 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001554 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001555
Christopher Faulet539e0292018-11-19 10:40:09 +01001556 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001557 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001558
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001559 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001560 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001561
Christopher Faulet2eed8002020-12-07 11:26:13 +01001562 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001563 goto end;
1564
Christopher Faulet10a86702021-04-07 14:18:11 +02001565 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001566 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001567
Christopher Faulet58f21da2021-09-20 07:47:27 +02001568 /* Always remove congestion flags and try to process more input data */
1569 h1s->flags &= ~H1S_F_RX_CONGESTED;
1570
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001571 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001572 size_t used = htx_used_space(htx);
1573
Christopher Faulet129817b2018-09-20 16:14:40 +02001574 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001575 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet539e0292018-11-19 10:40:09 +01001576 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001577 if (!ret)
1578 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001579
1580 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1581 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1582
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001583 if ((h1m->flags & H1_MF_RESP) &&
1584 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1585 h1m_init_res(&h1s->res);
1586 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001587 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001588 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001589 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001590 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001591 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001592 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001593 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet129817b2018-09-20 16:14:40 +02001594 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001595
1596 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1597 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001598 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001599 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001600 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
1601 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1602 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001603 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001604
Christopher Faulet76014fd2019-12-10 11:47:22 +01001605 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1606 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001607 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001608 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001609 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1610 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001611
Christopher Faulet5be651d2021-01-22 15:28:03 +01001612 if ((h1m->flags & H1_MF_RESP) &&
1613 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1614 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001615 else {
1616 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1617 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001618 h1s->flags |= H1S_F_RX_BLK;
1619 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001620 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001621 if (h1s->flags & H1S_F_TX_BLK) {
1622 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001623 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001624 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 +01001625 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001626 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001627 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001628 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001629 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001630 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001631 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001632 if (!ret)
1633 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001634
1635 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1636 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001637 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001638 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001639 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001640 break;
1641 }
1642
Christopher Faulet30db3d72019-05-17 15:35:33 +02001643 count -= htx_used_space(htx) - used;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001644 } 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 +01001645
Christopher Faulet129817b2018-09-20 16:14:40 +02001646
Christopher Faulet2eed8002020-12-07 11:26:13 +01001647 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001648 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 +02001649 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001650 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001651
Christopher Faulet539e0292018-11-19 10:40:09 +01001652 b_del(&h1c->ibuf, total);
1653
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001654 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001655 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1656
Christopher Faulet30db3d72019-05-17 15:35:33 +02001657 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001658 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001659 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001660 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 +01001661 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001662 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001663
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001664 if (!b_data(&h1c->ibuf))
1665 h1_release_buf(h1c, &h1c->ibuf);
1666
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001667 if (!(h1c->flags & H1C_F_ST_READY)) {
1668 /* The H1 connection is not ready. Most of time, there is no CS
1669 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1670 * cases, it is only possible on the client side.
1671 */
1672 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1673
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001674 if (h1m->state <= H1_MSG_LAST_LF) {
1675 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1676 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1677 goto end;
1678 }
1679
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001680 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1681 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1682 BUG_ON(h1s->cs);
1683 if (!h1s_new_cs(h1s, buf)) {
1684 h1c->flags |= H1C_F_ST_ERROR;
1685 goto err;
1686 }
1687 }
1688 else {
1689 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1690 BUG_ON(h1s->cs == NULL);
1691 if (!h1s_upgrade_cs(h1s, buf)) {
1692 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001693 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001694 goto err;
1695 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001696 }
1697 }
1698
1699 /* Here h1s->cs is always defined */
Christopher Fauletc765de52021-11-26 17:26:19 +01001700 if (!(h1m->flags & H1_MF_CHNK) && (h1m->state == H1_MSG_DATA || (h1m->state == H1_MSG_TUNNEL))) {
Christopher Fauleta583af62020-09-24 15:35:37 +02001701 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1702 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1703 }
1704 else {
1705 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1706 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1707 }
1708
Christopher Fauleta22782b2021-02-08 17:18:01 +01001709 /* Set EOI on conn-stream in DONE state iff:
1710 * - it is a response
1711 * - it is a request but no a protocol upgrade nor a CONNECT
1712 *
1713 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001714 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001715 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001716 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1717 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001718 h1s->cs->flags |= CS_FL_EOI;
1719
Christopher Fauletec4207c2021-04-08 18:34:30 +02001720 out:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001721 /* When Input data are pending for this message, notify upper layer that
1722 * the mux need more space in the HTX buffer to continue if :
1723 *
1724 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1725 * - Headers or trailers are pending to be copied.
1726 */
1727 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001728 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001729 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1730 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001731 else {
1732 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1733 if (h1s->flags & H1S_F_REOS) {
1734 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001735 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1736 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1737 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001738 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001739 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001740 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001741 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001742 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1743 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001744
Christopher Faulet10a86702021-04-07 14:18:11 +02001745 if (h1s->flags & H1S_F_TX_BLK) {
1746 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001747 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001748 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 +01001749 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001750 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001751 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001752
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001753 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001754 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001755 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001756
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001757 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001758 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001759 if (h1s->cs)
1760 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001761 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001762 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001763}
1764
Christopher Faulet129817b2018-09-20 16:14:40 +02001765/*
1766 * Process outgoing data. It parses data and transfer them from the channel buffer into
1767 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1768 * 0 if it couldn't proceed.
1769 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001770static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1771{
Christopher Faulet129817b2018-09-20 16:14:40 +02001772 struct h1s *h1s = h1c->h1s;
1773 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001774 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001775 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001776 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001777 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001778 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001779 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001780
Christopher Faulet94b2c762019-05-24 15:28:57 +02001781 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001782 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1783
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001784 if (htx_is_empty(chn_htx))
1785 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001786
Christopher Faulet10a86702021-04-07 14:18:11 +02001787 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001788 goto end;
1789
Christopher Faulet51dbc942018-09-13 09:05:15 +02001790 if (!h1_get_buf(h1c, &h1c->obuf)) {
1791 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001792 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 +02001793 goto end;
1794 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001795
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001796 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001797
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001798 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001799 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001800
Willy Tarreau3815b222018-12-11 19:50:43 +01001801 /* Perform some optimizations to reduce the number of buffer copies.
1802 * First, if the mux's buffer is empty and the htx area contains
1803 * exactly one data block of the same size as the requested count,
1804 * then it's possible to simply swap the caller's buffer with the
1805 * mux's output buffer and adjust offsets and length to match the
1806 * entire DATA HTX block in the middle. In this case we perform a
1807 * true zero-copy operation from end-to-end. This is the situation
1808 * that happens all the time with large files. Second, if this is not
1809 * possible, but the mux's output buffer is empty, we still have an
1810 * opportunity to avoid the copy to the intermediary buffer, by making
1811 * the intermediary buffer's area point to the output buffer's area.
1812 * In this case we want to skip the HTX header to make sure that copies
1813 * remain aligned and that this operation remains possible all the
1814 * time. This goes for headers, data blocks and any data extracted from
1815 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001816 */
1817 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001818 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001819 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001820 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001821 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001822 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001823 void *old_area;
1824
Christopher Faulet6b81df72019-10-01 22:08:43 +02001825 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 +01001826 if (h1m->state == H1_MSG_DATA) {
1827 if (h1m->flags & H1_MF_CLEN) {
1828 if (count > h1m->curr_len) {
1829 TRACE_ERROR("too much payload, more than announced",
1830 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1831 goto error;
1832 }
1833 h1m->curr_len -= count;
Christopher Faulet18906cf2022-04-07 10:29:38 +02001834 if (!h1m->curr_len)
1835 last_data = 1;
Christopher Faulet5f60d182021-11-26 16:37:55 +01001836 }
1837 if (chn_htx->flags & HTX_FL_EOM) {
1838 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1839 last_data = 1;
1840 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001841 }
1842
Christopher Faulete5596bf2020-12-02 16:13:22 +01001843 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001844 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001845 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001846 h1c->obuf.data = count;
1847
1848 buf->area = old_area;
1849 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001850
Christopher Faulet6b81df72019-10-01 22:08:43 +02001851 chn_htx = (struct htx *)buf->area;
1852 htx_reset(chn_htx);
1853
Christopher Fauletadb22202018-12-12 10:32:09 +01001854 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001855 * size and eventually the last chunk. We have at least
1856 * the size of the struct htx to write the chunk
1857 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001858 */
1859 if (h1m->flags & H1_MF_CHNK) {
1860 h1_emit_chunk_size(&h1c->obuf, count);
1861 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001862 if (last_data) {
1863 /* Emit the last chunk too at the buffer's end */
1864 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1865 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001866 }
1867
Christopher Faulet6b81df72019-10-01 22:08:43 +02001868 if (h1m->state == H1_MSG_DATA)
1869 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001870 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001871 else
1872 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001873 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001874
Christopher Faulete5596bf2020-12-02 16:13:22 +01001875 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001876 if (last_data) {
1877 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001878 if (h1s->flags & H1S_F_RX_BLK) {
1879 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001880 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001881 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001882 }
1883
1884 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1885 H1_EV_TX_DATA, h1c->conn, h1s);
1886 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001887 goto out;
1888 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001889 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001890 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001891 else
1892 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001893
Christopher Fauletc2518a52019-06-25 21:41:02 +02001894 tmp.data = 0;
1895 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001896 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001897 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001898 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001899 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001900 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001901 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001902
Christopher Fauletb2e84162018-12-06 11:39:49 +01001903 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001904 if (type != HTX_BLK_DATA && vlen > count)
1905 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001906
Christopher Faulet94b2c762019-05-24 15:28:57 +02001907 if (type == HTX_BLK_UNUSED)
1908 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001909
Christopher Faulet94b2c762019-05-24 15:28:57 +02001910 switch (h1m->state) {
1911 case H1_MSG_RQBEFORE:
1912 if (type != HTX_BLK_REQ_SL)
1913 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001914 TRACE_USER("sending request headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001915 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001916 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001917 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001918 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001919 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001920 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001921 if (sl->flags & HTX_SL_F_BODYLESS)
1922 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001923 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001924 if (h1s->meth == HTTP_METH_HEAD)
1925 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001926 if (h1s->flags & H1S_F_RX_BLK) {
1927 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001928 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001929 TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Faulet089acd52020-09-21 10:57:52 +02001930 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001931 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001932
Christopher Faulet94b2c762019-05-24 15:28:57 +02001933 case H1_MSG_RPBEFORE:
1934 if (type != HTX_BLK_RES_SL)
1935 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001936 TRACE_USER("sending response headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001937 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001938 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001939 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001940 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001941 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001942 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001943 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001944 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001945 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001946 else if (h1s->status == 204 || h1s->status == 304)
1947 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001948 h1m->state = H1_MSG_HDR_FIRST;
1949 break;
1950
Christopher Faulet94b2c762019-05-24 15:28:57 +02001951 case H1_MSG_HDR_FIRST:
1952 case H1_MSG_HDR_NAME:
1953 case H1_MSG_HDR_L2_LWS:
1954 if (type == HTX_BLK_EOH)
1955 goto last_lf;
1956 if (type != HTX_BLK_HDR)
1957 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001958
Christopher Faulet9768c262018-10-22 09:34:31 +02001959 h1m->state = H1_MSG_HDR_NAME;
1960 n = htx_get_blk_name(chn_htx, blk);
1961 v = htx_get_blk_value(chn_htx, blk);
1962
Christopher Faulet86d144c2019-08-14 16:32:25 +02001963 /* Skip all pseudo-headers */
1964 if (*(n.ptr) == ':')
1965 goto skip_hdr;
1966
Christopher Faulet91fcf212020-12-02 16:17:15 +01001967 if (isteq(n, ist("transfer-encoding"))) {
1968 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1969 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001970 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001971 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001972 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001973 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1974 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001975 /* Only skip C-L header with invalid value. */
1976 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001977 goto skip_hdr;
1978 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001979 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001980 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001981 if (!v.len)
1982 goto skip_hdr;
1983 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001984 else if (isteq(n, ist("upgrade"))) {
1985 h1_parse_upgrade_header(h1m, v);
1986 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001987 else if ((isteq(n, ist("sec-websocket-accept")) &&
1988 h1m->flags & H1_MF_RESP) ||
1989 (isteq(n, ist("sec-websocket-key")) &&
1990 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001991 ws_key_found = 1;
1992 }
Christopher Fauletf9bb8d02021-09-28 10:56:36 +02001993 else if (isteq(n, ist("te"))) {
1994 /* "te" may only be sent with "trailers" if this value
1995 * is present, otherwise it must be deleted.
1996 */
1997 v = istist(v, ist("trailers"));
1998 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
1999 goto skip_hdr;
2000 v = ist("trailers");
2001 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002002
Christopher Faulet67d58092019-10-02 10:51:38 +02002003 /* Skip header if same name is used to add the server name */
2004 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2005 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2006 goto skip_hdr;
2007
Christopher Faulet98fbe952019-07-22 16:18:24 +02002008 /* Try to adjust the case of the header name */
2009 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2010 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002011 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002012 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002013 skip_hdr:
2014 h1m->state = H1_MSG_HDR_L2_LWS;
2015 break;
2016
Christopher Faulet94b2c762019-05-24 15:28:57 +02002017 case H1_MSG_LAST_LF:
2018 if (type != HTX_BLK_EOH)
2019 goto error;
2020 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002021 h1m->state = H1_MSG_LAST_LF;
2022 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002023 /* If the reply comes from haproxy while the request is
2024 * not finished, we force the connection close. */
2025 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
2026 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2027 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2028 }
2029
2030 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002031 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002032 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002033 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002034 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002035 /* Try to adjust the case of the header name */
2036 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2037 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002038 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002039 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002040 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002041 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002042 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002043
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002044 if ((h1s->meth != HTTP_METH_CONNECT &&
2045 (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 +01002046 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002047 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002048 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002049 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2050 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002051 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002052 n = ist("transfer-encoding");
2053 v = ist("chunked");
2054 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2055 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002056 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002057 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002058 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002059 h1m->flags |= H1_MF_CHNK;
2060 }
2061
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002062 /* Now add the server name to a header (if requested) */
2063 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2064 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2065 struct server *srv = objt_server(h1c->conn->target);
2066
2067 if (srv) {
2068 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2069 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002070
2071 /* Try to adjust the case of the header name */
2072 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2073 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002074 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002075 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002076 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002077 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002078 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2079 }
2080
Amaury Denoyellec1938232020-12-11 17:53:03 +01002081 /* Add websocket handshake key if needed */
2082 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2083 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002084 if (!(h1m->flags & H1_MF_RESP)) {
2085 /* generate a random websocket key
2086 * stored in the session to
2087 * verify it on the response side
2088 */
2089 h1_generate_random_ws_input_key(h1s->ws_key);
2090
2091 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2092 ist(h1s->ws_key),
2093 &tmp)) {
2094 goto full;
2095 }
2096 }
2097 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002098 /* add the response header key */
2099 char key[29];
2100 h1_calculate_ws_output_key(h1s->ws_key, key);
2101 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2102 ist(key),
2103 &tmp)) {
2104 goto full;
2105 }
2106 }
2107 }
2108
Christopher Faulet6b81df72019-10-01 22:08:43 +02002109 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2110 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2111
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002112 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002113 if (!chunk_memcat(&tmp, "\r\n", 2))
2114 goto full;
2115 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002116 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002117 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002118 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002119 if (!chunk_memcat(&tmp, "\r\n", 2))
2120 goto full;
2121 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002122 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002123 else if ((h1m->flags & H1_MF_RESP) &&
2124 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002125 if (!chunk_memcat(&tmp, "\r\n", 2))
2126 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002127 h1m_init_res(&h1s->res);
2128 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002129 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002130 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002131 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002132 else {
Christopher Faulet18906cf2022-04-07 10:29:38 +02002133 /* EOM flag is set or empty payload (C-L to 0) and it is the last block */
2134 if (htx_is_unique_blk(chn_htx, blk) &&
2135 ((chn_htx->flags & HTX_FL_EOM) || ((h1m->flags & H1_MF_CLEN) && !h1m->curr_len))) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002136 if (h1m->flags & H1_MF_CHNK) {
2137 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2138 goto full;
2139 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002140 else if (!chunk_memcat(&tmp, "\r\n", 2))
2141 goto full;
2142 goto done;
2143 }
2144 else if (!chunk_memcat(&tmp, "\r\n", 2))
2145 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002146 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002147 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002148 break;
2149
Christopher Faulet94b2c762019-05-24 15:28:57 +02002150 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002151 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002152 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002153 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2154 goto trailers;
2155
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002156 /* If the message is not chunked, never
2157 * add the last chunk. */
2158 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002159 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002160 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 +02002161 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002162 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002163 else if (type != HTX_BLK_DATA)
2164 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002165
2166 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 +02002167
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002168 /* It is the last block of this message. After this one,
2169 * only tunneled data may be forwarded. */
2170 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2171 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2172 last_data = 1;
2173 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002174
2175 if (vlen > count) {
2176 /* Get the maximum amount of data we can xferred */
2177 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002178 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002179 }
2180
Christopher Faulet5f60d182021-11-26 16:37:55 +01002181 if (h1m->state == H1_MSG_DATA) {
2182 if (h1m->flags & H1_MF_CLEN) {
2183 if (vlen > h1m->curr_len) {
2184 TRACE_ERROR("too much payload, more than announced",
2185 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2186 goto error;
2187 }
Christopher Faulet5f60d182021-11-26 16:37:55 +01002188 }
2189 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2190 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2191 goto skip_data;
2192 }
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002193 }
2194
Christopher Fauletd9233f02019-10-14 14:01:24 +02002195 chklen = 0;
2196 if (h1m->flags & H1_MF_CHNK) {
2197 chklen = b_room(&tmp);
2198 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2199 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2200 (chklen < 1048576) ? 5 : 8);
2201 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002202
2203 /* If it is the end of the chunked message (without EOT), reserve the
2204 * last chunk size */
2205 if (last_data)
2206 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002207 }
2208
2209 if (vlen + chklen > b_room(&tmp)) {
2210 /* too large for the buffer */
2211 if (chklen >= b_room(&tmp))
2212 goto full;
2213 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002214 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002215 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002216 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002217 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002218 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002219 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002220
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002221 /* Space already reserved, so it must succeed */
2222 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2223 goto error;
2224
Christopher Faulet6b81df72019-10-01 22:08:43 +02002225 if (h1m->state == H1_MSG_DATA)
2226 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002227 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002228 else
2229 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002230 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002231
2232 skip_data:
Christopher Faulet18906cf2022-04-07 10:29:38 +02002233 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet9328a6c2022-01-10 17:27:51 +01002234 h1m->curr_len -= vlen;
Christopher Faulet18906cf2022-04-07 10:29:38 +02002235 if (!h1m->curr_len)
2236 last_data = 1;
2237 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002238 if (last_data)
2239 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002240 break;
2241
Christopher Faulet94b2c762019-05-24 15:28:57 +02002242 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002243 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002244 goto error;
2245 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002246 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002247
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002248 /* If the message is not chunked, ignore
2249 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002250 if (!(h1m->flags & H1_MF_CHNK)) {
2251 if (type == HTX_BLK_EOT)
2252 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002253 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002254 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002255
Christopher Faulete5596bf2020-12-02 16:13:22 +01002256 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2257 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 +01002258 if (type == HTX_BLK_EOT)
2259 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002260 break;
2261 }
2262
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002263 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002264 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002265 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002266 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2267 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002268 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002269 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002270 else { // HTX_BLK_TLR
2271 n = htx_get_blk_name(chn_htx, blk);
2272 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002273
2274 /* Try to adjust the case of the header name */
2275 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2276 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002277 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002278 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002279 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002280 break;
2281
Christopher Faulet94b2c762019-05-24 15:28:57 +02002282 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002283 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2284 goto error; /* For now return an error */
2285
Christopher Faulet94b2c762019-05-24 15:28:57 +02002286 done:
Christopher Faulet18906cf2022-04-07 10:29:38 +02002287 if (!(chn_htx->flags & HTX_FL_EOM) && (!(h1m->flags & H1_MF_CLEN) || h1m->curr_len)) {
Christopher Faulet36893672021-02-10 09:52:07 +01002288 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2289 goto error; /* For now return an error */
2290 }
2291
Christopher Faulet94b2c762019-05-24 15:28:57 +02002292 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002293 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002294 h1s->flags |= H1S_F_TX_BLK;
2295 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002296 }
2297 else if ((h1m->flags & H1_MF_RESP) &&
2298 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2299 /* a successful reply to a CONNECT or a protocol switching is sent
2300 * to the client. Switch the response to tunnel mode.
2301 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002302 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002303 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 +01002304 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002305
Christopher Faulet10a86702021-04-07 14:18:11 +02002306 if (h1s->flags & H1S_F_RX_BLK) {
2307 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002308 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002309 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 +02002310 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002311
2312 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2313 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002314 break;
2315
Christopher Faulet9768c262018-10-22 09:34:31 +02002316 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002317 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002318 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002319 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002320 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002321 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002322 TRACE_ERROR("processing output error, set error on h1c/h1s",
2323 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 +01002324 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02002325 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002326
2327 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002328 total += vlen;
2329 count -= vlen;
2330 if (sz == vlen)
2331 blk = htx_remove_blk(chn_htx, blk);
2332 else {
2333 htx_cut_data_blk(chn_htx, blk, vlen);
2334 break;
2335 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002336 }
2337
Christopher Faulet9768c262018-10-22 09:34:31 +02002338 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002339 /* when the output buffer is empty, tmp shares the same area so that we
2340 * only have to update pointers and lengths.
2341 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002342 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2343 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002344 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002345 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002346
Willy Tarreau3815b222018-12-11 19:50:43 +01002347 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002348 out:
2349 if (!buf_room_for_htx_data(&h1c->obuf)) {
2350 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002351 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002352 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002353 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002354 /* Both the request and the response reached the DONE state. So set EOI
2355 * flag on the conn-stream. Most of time, the flag will already be set,
2356 * except for protocol upgrades. Report an error if data remains blocked
2357 * in the output buffer.
2358 */
2359 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2360 if (!htx_is_empty(chn_htx)) {
2361 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002362 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 +01002363 }
2364 h1s->cs->flags |= CS_FL_EOI;
2365 }
2366
Christopher Faulet6b81df72019-10-01 22:08:43 +02002367 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002368 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002369
2370 full:
2371 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2372 h1c->flags |= H1C_F_OUT_FULL;
2373 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002374}
2375
Christopher Faulet51dbc942018-09-13 09:05:15 +02002376/*********************************************************/
2377/* functions below are I/O callbacks from the connection */
2378/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002379static void h1_wake_stream_for_recv(struct h1s *h1s)
2380{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002381 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002382 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002383 tasklet_wakeup(h1s->subs->tasklet);
2384 h1s->subs->events &= ~SUB_RETRY_RECV;
2385 if (!h1s->subs->events)
2386 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002387 }
2388}
2389static void h1_wake_stream_for_send(struct h1s *h1s)
2390{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002391 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002392 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002393 tasklet_wakeup(h1s->subs->tasklet);
2394 h1s->subs->events &= ~SUB_RETRY_SEND;
2395 if (!h1s->subs->events)
2396 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002397 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002398}
2399
Christopher Fauletad4daf62021-01-21 17:49:01 +01002400/* alerts the data layer following this sequence :
2401 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2402 * - if its subscribed to send, then it's woken up for send
2403 * - if it was subscribed to neither, its ->wake() callback is called
2404 */
2405static void h1_alert(struct h1s *h1s)
2406{
2407 if (h1s->subs) {
2408 h1_wake_stream_for_recv(h1s);
2409 h1_wake_stream_for_send(h1s);
2410 }
2411 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2412 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2413 h1s->cs->data_cb->wake(h1s->cs);
2414 }
2415}
2416
Christopher Fauletc18fc232020-10-06 17:41:36 +02002417/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2418 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2419 * retryable errors (allocation error or buffer full). On success, the error is
2420 * copied in the output buffer.
2421*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002422static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002423{
2424 int rc = http_get_status_idx(h1c->errcode);
2425 int ret = 0;
2426
2427 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2428
2429 /* Verify if the error is mapped on /dev/null or any empty file */
2430 /// XXX: do a function !
2431 if (h1c->px->replies[rc] &&
2432 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2433 h1c->px->replies[rc]->body.errmsg &&
2434 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2435 /* Empty error, so claim a success */
2436 ret = 1;
2437 goto out;
2438 }
2439
2440 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2441 h1c->flags |= H1C_F_ERR_PENDING;
2442 goto out;
2443 }
2444
2445 if (!h1_get_buf(h1c, &h1c->obuf)) {
2446 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2447 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2448 goto out;
2449 }
2450 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2451 if (unlikely(ret <= 0)) {
2452 if (!ret) {
2453 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2454 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2455 goto out;
2456 }
2457 else {
2458 /* we cannot report this error, so claim a success */
2459 ret = 1;
2460 }
2461 }
2462 h1c->flags &= ~H1C_F_ERR_PENDING;
2463 out:
2464 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2465 return ret;
2466}
2467
2468/* Try to send a 500 internal error. It relies on h1_send_error to send the
2469 * error. This function takes care of incrementing stats and tracked counters.
2470 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002471static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002472{
2473 struct session *sess = h1c->conn->owner;
2474 int ret = 1;
2475
2476 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002477 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002478 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2479 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002480 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002481 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002482
2483 h1c->errcode = 500;
2484 ret = h1_send_error(h1c);
2485 sess_log(sess);
2486 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002487}
2488
Christopher Fauletc18fc232020-10-06 17:41:36 +02002489/* Try to send a 400 bad request error. It relies on h1_send_error to send the
2490 * error. This function takes care of incrementing stats and tracked counters.
2491 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002492static int h1_handle_bad_req(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002493{
2494 struct session *sess = h1c->conn->owner;
2495 int ret = 1;
2496
2497 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2498 goto end;
2499
2500 session_inc_http_req_ctr(sess);
2501 session_inc_http_err_ctr(sess);
2502 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002503 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2504 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002505 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002506 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002507
2508 h1c->errcode = 400;
2509 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002510 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2511 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002512
2513 end:
2514 return ret;
2515}
2516
Christopher Faulet2eed8002020-12-07 11:26:13 +01002517/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2518 * the error. This function takes care of incrementing stats and tracked
2519 * counters.
2520 */
2521static int h1_handle_not_impl_err(struct h1c *h1c)
2522{
2523 struct session *sess = h1c->conn->owner;
2524 int ret = 1;
2525
2526 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2527 goto end;
2528
2529 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002530 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002531 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2532 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002533 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002534 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002535
2536 h1c->errcode = 501;
2537 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002538 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2539 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002540
2541 end:
2542 return ret;
2543}
2544
Christopher Fauletc18fc232020-10-06 17:41:36 +02002545/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2546 * error. This function takes care of incrementing stats and tracked counters.
2547 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002548static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002549{
2550 struct session *sess = h1c->conn->owner;
2551 int ret = 1;
2552
2553 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2554 goto end;
2555
2556 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002557 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002558 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2559 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002560 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002561 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002562
2563 h1c->errcode = 408;
Christopher Faulet6858d762021-07-26 09:42:49 +02002564 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2565 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002566 sess_log(sess);
2567 end:
2568 return ret;
2569}
2570
2571
Christopher Faulet51dbc942018-09-13 09:05:15 +02002572/*
2573 * Attempt to read data, and subscribe if none available
2574 */
2575static int h1_recv(struct h1c *h1c)
2576{
2577 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002578 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002579 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002580
Christopher Faulet6b81df72019-10-01 22:08:43 +02002581 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2582
2583 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2584 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002585 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002586 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002587
Christopher Fauletae635762020-09-21 11:47:16 +02002588 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2589 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002590 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002591 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002592
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002593 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2594 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002595 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002596 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002597 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002598
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002599 /*
2600 * If we only have a small amount of data, realign it,
2601 * it's probably cheaper than doing 2 recv() calls.
2602 */
2603 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
2604 b_slow_realign(&h1c->ibuf, trash.area, 0);
2605
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002606 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002607 if (!h1c->h1s ||
2608 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2609 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002610 flags |= CO_RFL_READ_ONCE;
2611
Willy Tarreau45f2b892018-12-05 07:59:27 +01002612 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002613 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002614 if (h1c->flags & H1C_F_IN_FULL) {
2615 h1c->flags &= ~H1C_F_IN_FULL;
2616 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2617 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002618
2619 if (!b_data(&h1c->ibuf)) {
2620 /* try to pre-align the buffer like the rxbufs will be
2621 * to optimize memory copies.
2622 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002623 h1c->ibuf.head = sizeof(struct htx);
2624 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002625 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002626 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002627 if (max && !ret && h1_recv_allowed(h1c)) {
2628 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2629 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002630 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002631 else {
2632 h1_wake_stream_for_recv(h1c->h1s);
2633 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002634 }
2635
Christopher Faulet51dbc942018-09-13 09:05:15 +02002636 if (!b_data(&h1c->ibuf))
2637 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002638 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002639 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002640 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2641 }
2642
2643 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002644 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002645}
2646
2647
2648/*
2649 * Try to send data if possible
2650 */
2651static int h1_send(struct h1c *h1c)
2652{
2653 struct connection *conn = h1c->conn;
2654 unsigned int flags = 0;
2655 size_t ret;
2656 int sent = 0;
2657
Christopher Faulet6b81df72019-10-01 22:08:43 +02002658 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2659
2660 if (conn->flags & CO_FL_ERROR) {
2661 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002662 b_reset(&h1c->obuf);
2663 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002664 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002665
2666 if (!b_data(&h1c->obuf))
2667 goto end;
2668
Christopher Faulet46230362019-10-17 16:04:20 +02002669 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002670 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002671 if (h1c->flags & H1C_F_CO_STREAMER)
2672 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002673
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002674 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002675 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002676 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002677 if (h1c->flags & H1C_F_OUT_FULL) {
2678 h1c->flags &= ~H1C_F_OUT_FULL;
2679 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2680 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002681 b_del(&h1c->obuf, ret);
2682 sent = 1;
2683 }
2684
Christopher Faulet145aa472018-12-06 10:56:20 +01002685 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002686 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002687 /* error or output closed, nothing to send, clear the buffer to release it */
2688 b_reset(&h1c->obuf);
2689 }
2690
Christopher Faulet51dbc942018-09-13 09:05:15 +02002691 end:
Christopher Fauletf04721e2022-02-01 18:25:06 +01002692 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002693 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002694
Christopher Faulet51dbc942018-09-13 09:05:15 +02002695 /* We're done, no more to send */
2696 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002697 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002698 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002699 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002700 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletdb451fb2021-10-27 15:36:38 +02002701 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002702 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002703 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002704 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2705 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002706 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002707 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002708
Christopher Faulet6b81df72019-10-01 22:08:43 +02002709 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002710 return sent;
2711}
2712
Christopher Faulet51dbc942018-09-13 09:05:15 +02002713/* callback called on any event by the connection handler.
2714 * It applies changes and returns zero, or < 0 if it wants immediate
2715 * destruction of the connection.
2716 */
2717static int h1_process(struct h1c * h1c)
2718{
2719 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002720 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002721
Christopher Faulet6b81df72019-10-01 22:08:43 +02002722 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2723
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002724 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002725 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletaf3b83e2021-09-16 08:16:23 +02002726 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2727 !(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 +02002728 struct buffer *buf;
2729 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002730
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002731 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2732 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002733 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002734
2735 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002736 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002737 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2738 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002739 /* Try to match H2 preface before parsing the request headers. */
2740 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2741 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002742 if (h1c->flags & H1C_F_ST_ATTACHED) {
2743 /* Force the REOS here to be sure to release the CS.
2744 Here ATTACHED implies !READY, and h1s defined
2745 */
2746 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2747 h1s->flags |= H1S_F_REOS;
2748 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002749 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002750 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002751 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002752 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002753
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002754 /* Create the H1 stream if not already there */
2755 if (!h1s) {
2756 h1s = h1c_frt_stream_new(h1c);
2757 if (!h1s) {
2758 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002759 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002760 goto no_parsing;
2761 }
2762 }
2763
2764 if (h1s->sess->t_idle == -1)
2765 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2766
2767 /* Get the stream rxbuf */
2768 buf = h1_get_buf(h1c, &h1s->rxbuf);
2769 if (!buf) {
2770 h1c->flags |= H1C_F_IN_SALLOC;
2771 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2772 return 0;
2773 }
2774
2775 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
2776 h1_process_input(h1c, buf, count);
2777 h1_release_buf(h1c, &h1s->rxbuf);
2778 h1_set_idle_expiration(h1c);
2779
2780 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002781 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002782 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002783 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002784 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002785 }
2786 else if (h1s->flags & H1S_F_PARSING_ERROR) {
2787 h1_handle_bad_req(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002788 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002789 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002790 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002791 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2792 h1_handle_not_impl_err(h1c);
2793 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002794 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002795 }
Christopher Fauletae635762020-09-21 11:47:16 +02002796 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002797 h1_send(h1c);
2798
Christopher Fauletbde7e052021-11-15 14:51:37 +01002799 /* H1 connection must be released ASAP if:
2800 * - an error occurred on the connection or the H1C or
2801 * - a read0 was received or
2802 * - a silent shutdown was emitted and all outgoing data sent
2803 */
2804 if ((conn->flags & CO_FL_ERROR) ||
2805 conn_xprt_read0_pending(conn) ||
2806 (h1c->flags & H1C_F_ST_ERROR) ||
2807 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002808 if (!(h1c->flags & H1C_F_ST_READY)) {
2809 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002810 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Fauletbde7e052021-11-15 14:51:37 +01002811 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002812 if (h1_handle_bad_req(h1c))
2813 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002814 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002815 }
2816
2817 /* Handle pending error, if any (only possible on frontend connection) */
2818 if (h1c->flags & H1C_F_ERR_PENDING) {
2819 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2820 if (h1_send_error(h1c))
2821 h1_send(h1c);
2822 }
Christopher Fauletae635762020-09-21 11:47:16 +02002823
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002824 /* If there is some pending outgoing data or error, just wait */
2825 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2826 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002827
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002828 /* Otherwise we can release the H1 connection */
2829 goto release;
2830 }
2831 else {
2832 /* Here there is still a H1 stream with a conn-stream.
2833 * Report the connection state at the stream level
2834 */
2835 if (conn_xprt_read0_pending(conn)) {
2836 h1s->flags |= H1S_F_REOS;
2837 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2838 }
Willy Tarreaua352e822022-03-17 17:10:36 +01002839 if ((h1c->flags & H1C_F_ST_ERROR) || ((conn->flags & CO_FL_ERROR) && !b_data(&h1c->ibuf)))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002840 h1s->cs->flags |= CS_FL_ERROR;
2841 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002842 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002843 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002844 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002845
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002846 if (!b_data(&h1c->ibuf))
2847 h1_release_buf(h1c, &h1c->ibuf);
2848
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002849 /* Check if a soft-stop is in progress.
2850 * Release idling front connection if this is the case.
2851 */
2852 if (!(h1c->flags & H1C_F_IS_BACK)) {
2853 if (unlikely(h1c->px->disabled)) {
William Dauchy4711a892022-01-05 22:53:24 +01002854 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
2855 h1c->flags & H1C_F_WAIT_NEXT_REQ)
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002856 goto release;
2857 }
2858 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002859
2860 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2861 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2862 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002863 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002864
Christopher Faulet47365272018-10-31 17:40:50 +01002865 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002866 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002867 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002868 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002869
2870 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002871 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002872 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002873 * attached CS first. Here, the H1C must not be READY */
2874 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2875
2876 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2877 h1s->cs->flags |= CS_FL_EOS;
2878 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2879 h1s->cs->flags |= CS_FL_ERROR;
2880 h1_alert(h1s);
2881 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2882 }
2883 else {
2884 h1_release(h1c);
2885 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2886 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002887 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002888}
2889
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002890struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002891{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002892 struct connection *conn;
2893 struct tasklet *tl = (struct tasklet *)t;
2894 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002895 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002896 int ret = 0;
2897
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002898 if (state & TASK_F_USR1) {
2899 /* the tasklet was idling on an idle connection, it might have
2900 * been stolen, let's be careful!
2901 */
2902 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2903 if (tl->context == NULL) {
2904 /* The connection has been taken over by another thread,
2905 * we're no longer responsible for it, so just free the
2906 * tasklet, and do nothing.
2907 */
2908 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2909 tasklet_free(tl);
2910 return NULL;
2911 }
2912 conn = h1c->conn;
2913 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002914
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002915 /* Remove the connection from the list, to be sure nobody attempts
2916 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002917 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002918 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2919 if (conn_in_list)
2920 conn_delete_from_tree(&conn->hash_node->node);
2921
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002922 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002923 } else {
2924 /* we're certain the connection was not in an idle list */
2925 conn = h1c->conn;
2926 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2927 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002928 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002929
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002930 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002931 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002932 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002933 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002934 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002935 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002936
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002937 /* If we were in an idle list, we want to add it back into it,
2938 * unless h1_process() returned -1, which mean it has destroyed
2939 * the connection (testing !ret is enough, if h1_process() wasn't
2940 * called then ret will be 0 anyway.
2941 */
Willy Tarreau74163142021-03-13 11:30:19 +01002942 if (ret < 0)
2943 t = NULL;
2944
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002945 if (!ret && conn_in_list) {
2946 struct server *srv = objt_server(conn->target);
2947
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002948 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002949 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002950 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002951 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002952 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002953 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002954 }
Willy Tarreau74163142021-03-13 11:30:19 +01002955 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002956}
2957
Christopher Faulet51dbc942018-09-13 09:05:15 +02002958static int h1_wake(struct connection *conn)
2959{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002960 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002961 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002962
Christopher Faulet6b81df72019-10-01 22:08:43 +02002963 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2964
Christopher Faulet539e0292018-11-19 10:40:09 +01002965 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002966 ret = h1_process(h1c);
2967 if (ret == 0) {
2968 struct h1s *h1s = h1c->h1s;
2969
Christopher Fauletad4daf62021-01-21 17:49:01 +01002970 if (h1c->flags & H1C_F_ST_ATTACHED)
2971 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002972 }
2973 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002974}
2975
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002976/* Connection timeout management. The principle is that if there's no receipt
2977 * nor sending for a certain amount of time, the connection is closed.
2978 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002979struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002980{
2981 struct h1c *h1c = context;
2982 int expired = tick_is_expired(t->expire, now_ms);
2983
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002984 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002985
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002986 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002987 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002988 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002989
2990 /* Somebody already stole the connection from us, so we should not
2991 * free it, we just have to free the task.
2992 */
2993 if (!t->context) {
2994 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002995 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002996 goto do_leave;
2997 }
2998
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002999 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003000 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003001 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003002 return t;
3003 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003004
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003005 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003006 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003007 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003008 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003009 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003010 t->expire = TICK_ETERNITY;
3011 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3012 return t;
3013 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003014
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003015 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003016 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3017 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003018 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003019 if (h1_handle_req_tout(h1c))
3020 h1_send(h1c);
3021 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3022 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003023 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003024 return t;
3025 }
3026 }
3027
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003028 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003029 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003030 * attached CS first. Here, the H1C must not be READY */
3031 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3032 h1_alert(h1c->h1s);
3033 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003034 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003035 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3036 return t;
3037 }
3038
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003039 /* We're about to destroy the connection, so make sure nobody attempts
3040 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003041 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003042 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003043 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003044
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003045 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003046 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003047
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003048 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003049 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003050
3051 if (!h1c) {
3052 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003053 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003054 return NULL;
3055 }
3056
3057 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003058 h1_release(h1c);
3059 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003060 return NULL;
3061}
3062
Christopher Faulet51dbc942018-09-13 09:05:15 +02003063/*******************************************/
3064/* functions below are used by the streams */
3065/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003066
Christopher Faulet51dbc942018-09-13 09:05:15 +02003067/*
3068 * Attach a new stream to a connection
3069 * (Used for outgoing connections)
3070 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003071static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003072{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003073 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003074 struct conn_stream *cs = NULL;
3075 struct h1s *h1s;
3076
Christopher Faulet6b81df72019-10-01 22:08:43 +02003077 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003078 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003079 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3080 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003081 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003082
Christopher Faulet236c93b2020-07-02 09:19:54 +02003083 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003084 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003085 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3086 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003087 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003088
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003089 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003090 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003091 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3092 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003093 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003094
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003095 /* the connection is not idle anymore, let's mark this */
3096 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003097 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003098
Christopher Faulet6b81df72019-10-01 22:08:43 +02003099 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003100 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003101 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003102 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003103 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 +02003104 return NULL;
3105}
3106
3107/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3108 * this mux, it's easy as we can only store a single conn_stream.
3109 */
3110static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3111{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003112 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003113 struct h1s *h1s = h1c->h1s;
3114
3115 if (h1s)
3116 return h1s->cs;
3117
3118 return NULL;
3119}
3120
Christopher Faulet73c12072019-04-08 11:23:22 +02003121static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003122{
Christopher Faulet73c12072019-04-08 11:23:22 +02003123 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003124
Christopher Faulet6b81df72019-10-01 22:08:43 +02003125 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003126 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003127 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003128}
3129
3130/*
3131 * Detach the stream from the connection and possibly release the connection.
3132 */
3133static void h1_detach(struct conn_stream *cs)
3134{
3135 struct h1s *h1s = cs->ctx;
3136 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003137 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003138 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003139
Christopher Faulet6b81df72019-10-01 22:08:43 +02003140 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3141
Christopher Faulet51dbc942018-09-13 09:05:15 +02003142 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003143 if (!h1s) {
3144 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003145 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003146 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003147
Olivier Houchardf502aca2018-12-14 19:42:40 +01003148 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003149 h1c = h1s->h1c;
3150 h1s->cs = NULL;
3151
Christopher Faulet42849b02020-10-05 11:35:17 +02003152 sess->accept_date = date;
3153 sess->tv_accept = now;
3154 sess->t_handshake = 0;
3155 sess->t_idle = -1;
3156
Olivier Houchard8a786902018-12-15 16:05:40 +01003157 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3158 h1s_destroy(h1s);
3159
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003160 if ((h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_IDLE)) == (H1C_F_IS_BACK|H1C_F_ST_IDLE)) {
Christopher Fauletf1204b82019-07-19 14:51:06 +02003161 /* If there are any excess server data in the input buffer,
3162 * release it and close the connection ASAP (some data may
3163 * remain in the output buffer). This happens if a server sends
3164 * invalid responses. So in such case, we don't want to reuse
3165 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003166 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003167 if (b_data(&h1c->ibuf)) {
3168 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003169 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003170 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003171 goto release;
3172 }
Christopher Faulet03627242019-07-19 11:34:08 +02003173
Christopher Faulet08016ab2020-07-01 16:10:06 +02003174 if (h1c->conn->flags & CO_FL_PRIVATE) {
3175 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003176 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3177 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003178 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003179 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003180 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003181 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003182 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003183 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003184 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3185 goto end;
3186 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003187 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003188 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003189 if (h1c->conn->owner == sess)
3190 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003191
3192 /* mark that the tasklet may lose its context to another thread and
3193 * that the handler needs to check it under the idle conns lock.
3194 */
3195 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003196 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003197 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3198
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003199 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003200 /* The server doesn't want it, let's kill the connection right away */
3201 h1c->conn->mux->destroy(h1c);
3202 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3203 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003204 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003205 /* At this point, the connection has been added to the
3206 * server idle list, so another thread may already have
3207 * hijacked it, so we can't do anything with it.
3208 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003209 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003210 }
3211 }
3212
Christopher Fauletf1204b82019-07-19 14:51:06 +02003213 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003214 /* 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 +01003215 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003216 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003217 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003218 !h1c->conn->owner) {
3219 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003220 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003221 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003222 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003223 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003224 /* If we have a new request, process it immediately or
3225 * subscribe for reads waiting for new data
3226 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003227 if (unlikely(b_data(&h1c->ibuf))) {
3228 if (h1_process(h1c) == -1)
3229 goto end;
3230 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003231 else
3232 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3233 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003234 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003235 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003236 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003237 end:
3238 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003239}
3240
3241
3242static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3243{
3244 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003245 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003246
3247 if (!h1s)
3248 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003249 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003250
Christopher Fauletea62e182021-11-10 10:30:15 +01003251 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003252
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003253 if (cs->flags & CS_FL_SHR)
3254 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003255 if (cs->flags & CS_FL_KILL_CONN) {
3256 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3257 goto do_shutr;
3258 }
3259 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3260 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003261 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003262 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003263
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003264 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3265 /* Here attached is implicit because there is CS */
3266 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3267 goto end;
3268 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003269 if (h1s->flags & H1S_F_WANT_KAL) {
3270 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003271 goto end;
3272 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003273
Christopher Faulet7f366362019-04-08 10:51:20 +02003274 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003275 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3276 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003277 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003278 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003279 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003280 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003281 end:
3282 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003283}
3284
3285static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3286{
3287 struct h1s *h1s = cs->ctx;
3288 struct h1c *h1c;
3289
3290 if (!h1s)
3291 return;
3292 h1c = h1s->h1c;
3293
Christopher Fauletea62e182021-11-10 10:30:15 +01003294 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003295
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003296 if (cs->flags & CS_FL_SHW)
3297 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003298 if (cs->flags & CS_FL_KILL_CONN) {
3299 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003300 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003301 }
3302 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3303 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3304 goto do_shutw;
3305 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003306
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003307 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3308 /* Here attached is implicit because there is CS */
3309 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3310 goto end;
3311 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003312 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3313 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003314 goto end;
3315 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003316
Christopher Faulet7f366362019-04-08 10:51:20 +02003317 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003318 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003319 if (mode != CS_SHW_NORMAL)
3320 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3321
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003322 if (!b_data(&h1c->obuf))
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003323 h1_shutw_conn(cs->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003324 end:
3325 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003326}
3327
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003328static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003329{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003330 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003331
Willy Tarreau62592ad2021-03-26 09:09:42 +01003332 if (conn->flags & CO_FL_SOCK_WR_SH)
3333 return;
3334
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003335 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003336 conn_xprt_shutw(conn);
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003337 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3338 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003339}
3340
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003341/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3342 * The <es> pointer is not allowed to differ from the one passed to the
3343 * subscribe() call. It always returns zero.
3344 */
3345static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003346{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003347 struct h1s *h1s = cs->ctx;
3348
3349 if (!h1s)
3350 return 0;
3351
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003352 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003353 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003354
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003355 es->events &= ~event_type;
3356 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003357 h1s->subs = NULL;
3358
3359 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003360 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003361
3362 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003363 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003364
Christopher Faulet51dbc942018-09-13 09:05:15 +02003365 return 0;
3366}
3367
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003368/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3369 * event subscriber <es> is not allowed to change from a previous call as long
3370 * as at least one event is still subscribed. The <event_type> must only be a
3371 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3372 * the conn_stream <cs> was already detached, in which case it will return -1.
3373 */
3374static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003375{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003376 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003377 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003378
3379 if (!h1s)
3380 return -1;
3381
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003382 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003383 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003384
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003385 es->events |= event_type;
3386 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003387
3388 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003389 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003390
3391
Christopher Faulet6b81df72019-10-01 22:08:43 +02003392 if (event_type & SUB_RETRY_SEND) {
3393 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003394 /*
3395 * If the conn_stream attempt to subscribe, and the
3396 * mux isn't subscribed to the connection, then it
3397 * probably means the connection wasn't established
3398 * yet, so we have to subscribe.
3399 */
3400 h1c = h1s->h1c;
3401 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3402 h1c->conn->xprt->subscribe(h1c->conn,
3403 h1c->conn->xprt_ctx,
3404 SUB_RETRY_SEND,
3405 &h1c->wait_event);
3406 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003407 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003408}
3409
Christopher Faulet93a466b2021-09-21 15:50:55 +02003410/* Called from the upper layer, to receive data.
3411 *
3412 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3413 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3414 * means the caller wants to flush input data (from the mux buffer and the
3415 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3416 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3417 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3418 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3419 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3420 * copy as much data as possible.
3421 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003422static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3423{
3424 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003425 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003426 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003427 size_t ret = 0;
3428
Willy Tarreau022e5e52020-09-10 09:33:15 +02003429 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003430
3431 /* Do nothing for now if not READY */
3432 if (!(h1c->flags & H1C_F_ST_READY)) {
3433 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3434 goto end;
3435 }
3436
Christopher Faulet539e0292018-11-19 10:40:09 +01003437 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02003438 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003439 else
3440 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003441
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003442 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3443 h1c->flags |= H1C_F_WANT_SPLICE;
3444 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 +02003445 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003446 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003447 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 +01003448 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003449 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003450
3451 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003452 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003453 return ret;
3454}
3455
3456
3457/* Called from the upper layer, to send data */
3458static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3459{
3460 struct h1s *h1s = cs->ctx;
3461 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003462 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003463
3464 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003465 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003466 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003467
Willy Tarreau022e5e52020-09-10 09:33:15 +02003468 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003469
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003470 /* If we're not connected yet, or we're waiting for a handshake, stop
3471 * now, as we don't want to remove everything from the channel buffer
3472 * before we're sure we can send it.
3473 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003474 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003475 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003476 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003477 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003478
Christopher Fauletdea24742021-01-22 15:12:30 +01003479 if (h1c->flags & H1C_F_ST_ERROR) {
3480 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003481 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 +01003482 return 0;
3483 }
3484
Christopher Faulet46230362019-10-17 16:04:20 +02003485 /* Inherit some flags from the upper layer */
3486 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3487 if (flags & CO_SFL_MSG_MORE)
3488 h1c->flags |= H1C_F_CO_MSG_MORE;
3489 if (flags & CO_SFL_STREAMER)
3490 h1c->flags |= H1C_F_CO_STREAMER;
3491
Christopher Fauletc31872f2019-06-04 22:09:36 +02003492 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003493 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003494
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003495 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
3496 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003497 else
3498 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003499
3500 if ((count - ret) > 0)
3501 h1c->flags |= H1C_F_CO_MSG_MORE;
3502
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003503 if (!ret)
3504 break;
3505 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003506 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003507 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003508 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003509 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003510
3511 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003512 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003513 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 +01003514 }
3515
Christopher Faulet7a145d62020-08-05 11:31:16 +02003516 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003517 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003518 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003519}
3520
Willy Tarreaue5733232019-05-22 19:24:06 +02003521#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003522/* Send and get, using splicing */
3523static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3524{
3525 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003526 struct h1c *h1c = h1s->h1c;
3527 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003528 int ret = 0;
3529
Willy Tarreau022e5e52020-09-10 09:33:15 +02003530 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003531
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003532 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003533 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003534 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 +02003535 goto end;
3536 }
3537
Christopher Faulet0b34e512021-07-26 10:49:39 +02003538 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003539 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003540 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003541 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003542 }
3543
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003544 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003545 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3546 goto end;
3547 }
3548
Christopher Fauletc765de52021-11-26 17:26:19 +01003549 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN) && count > h1m->curr_len)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003550 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003551 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet5f60d182021-11-26 16:37:55 +01003552 if (ret >= 0) {
Christopher Fauletc765de52021-11-26 17:26:19 +01003553 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet5f60d182021-11-26 16:37:55 +01003554 if (ret > h1m->curr_len) {
3555 h1s->flags |= H1S_F_PARSING_ERROR;
3556 h1c->flags |= H1C_F_ST_ERROR;
3557 cs->flags |= CS_FL_ERROR;
3558 TRACE_ERROR("too much payload, more than announced",
3559 H1_EV_RX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3560 goto end;
3561 }
3562 h1m->curr_len -= ret;
3563 if (!h1m->curr_len) {
3564 h1m->state = H1_MSG_DONE;
3565 h1c->flags &= ~H1C_F_WANT_SPLICE;
3566 TRACE_STATE("payload fully received", H1_EV_STRM_RECV, cs->conn, h1s);
3567 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003568 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003569 }
3570
Christopher Faulet1be55f92018-10-02 15:59:23 +02003571 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003572 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003573 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003574 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003575 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003576 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003577
Christopher Faulet94d35102021-04-09 11:58:49 +02003578 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003579 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003580 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003581 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3582 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3583 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3584 }
Christopher Faulet27182292020-07-03 15:08:49 +02003585 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003586
Willy Tarreau022e5e52020-09-10 09:33:15 +02003587 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003588 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003589}
3590
3591static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3592{
3593 struct h1s *h1s = cs->ctx;
Christopher Faulet5f60d182021-11-26 16:37:55 +01003594 struct h1c *h1c = h1s->h1c;
3595 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003596 int ret = 0;
3597
Willy Tarreau022e5e52020-09-10 09:33:15 +02003598 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003599
Christopher Faulet5f60d182021-11-26 16:37:55 +01003600 if (b_data(&h1c->obuf)) {
3601 if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003602 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Christopher Faulet5f60d182021-11-26 16:37:55 +01003603 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003604 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003605 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003606 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003607
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003608 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Fauletc765de52021-11-26 17:26:19 +01003609 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_CLEN)) {
Christopher Faulet5f60d182021-11-26 16:37:55 +01003610 if (ret > h1m->curr_len) {
3611 h1s->flags |= H1S_F_PROCESSING_ERROR;
3612 h1c->flags |= H1C_F_ST_ERROR;
3613 cs->flags |= CS_FL_ERROR;
3614 TRACE_ERROR("too much payload, more than announced",
3615 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, cs->conn, h1s);
3616 goto end;
3617 }
3618 h1m->curr_len -= ret;
3619 if (!h1m->curr_len) {
3620 h1m->state = H1_MSG_DONE;
3621 TRACE_STATE("payload fully xferred", H1_EV_TX_DATA|H1_EV_TX_BODY, cs->conn, h1s);
3622 }
3623 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003624
3625 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003626 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003627 return ret;
3628}
3629#endif
3630
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003631static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3632{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003633 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003634 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003635
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003636 switch (mux_ctl) {
3637 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003638 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003639 ret |= MUX_STATUS_READY;
3640 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003641 case MUX_EXIT_STATUS:
Christopher Fauletc18fc232020-10-06 17:41:36 +02003642 ret = (h1c->errcode == 400 ? MUX_ES_INVALID_ERR :
3643 (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003644 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3645 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3646 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003647 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003648 default:
3649 return -1;
3650 }
3651}
3652
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003653/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003654static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003655{
3656 struct h1c *h1c = conn->ctx;
3657 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003658 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003659
Christopher Fauletf376a312019-01-04 15:16:06 +01003660 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3661 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003662 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3663 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3664 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3665 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3666
3667 if (h1s) {
3668 char *method;
3669
3670 if (h1s->meth < HTTP_METH_OTHER)
3671 method = http_known_methods[h1s->meth].ptr;
3672 else
3673 method = "UNKNOWN";
3674 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3675 " .meth=%s status=%d",
3676 h1s, h1s->flags,
3677 h1m_state_str(h1s->req.state),
3678 h1m_state_str(h1s->res.state), method, h1s->status);
3679 if (h1s->cs)
3680 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3681 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003682
3683 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3684 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003685 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3686 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3687 h1s->subs->tasklet->calls,
3688 h1s->subs->tasklet->context);
3689 if (h1s->subs->tasklet->calls >= 1000000)
3690 ret = 1;
3691 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3692 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003693 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003694 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003695 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003696}
3697
3698
3699/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3700static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3701{
3702 struct h1_hdr_entry *entry;
3703
3704 /* Be sure there is a non-empty <to> */
3705 if (!strlen(to)) {
3706 memprintf(err, "expect <to>");
3707 return -1;
3708 }
3709
3710 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003711 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003712 memprintf(err, "<from> and <to> must not differ execpt the case");
3713 return -1;
3714 }
3715
3716 /* Be sure <from> does not already existsin the tree */
3717 if (ebis_lookup(&hdrs_map.map, from)) {
3718 memprintf(err, "duplicate entry '%s'", from);
3719 return -1;
3720 }
3721
3722 /* Create the entry and insert it in the tree */
3723 entry = malloc(sizeof(*entry));
3724 if (!entry) {
3725 memprintf(err, "out of memory");
3726 return -1;
3727 }
3728
3729 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003730 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003731 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003732 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003733 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003734 free(entry);
3735 memprintf(err, "out of memory");
3736 return -1;
3737 }
3738 ebis_insert(&hdrs_map.map, &entry->node);
3739 return 0;
3740}
3741
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003742/* Migrate the the connection to the current thread.
3743 * Return 0 if successful, non-zero otherwise.
3744 * Expected to be called with the old thread lock held.
3745 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003746static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003747{
3748 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003749 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003750
3751 if (fd_takeover(conn->handle.fd, conn) != 0)
3752 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003753
3754 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3755 /* We failed to takeover the xprt, even if the connection may
3756 * still be valid, flag it as error'd, as we have already
3757 * taken over the fd, and wake the tasklet, so that it will
3758 * destroy it.
3759 */
3760 conn->flags |= CO_FL_ERROR;
3761 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3762 return -1;
3763 }
3764
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003765 if (h1c->wait_event.events)
3766 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3767 h1c->wait_event.events, &h1c->wait_event);
3768 /* To let the tasklet know it should free itself, and do nothing else,
3769 * set its context to NULL.
3770 */
3771 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003772 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003773
3774 task = h1c->task;
3775 if (task) {
3776 task->context = NULL;
3777 h1c->task = NULL;
3778 __ha_barrier_store();
3779 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003780
3781 h1c->task = task_new(tid_bit);
3782 if (!h1c->task) {
3783 h1_release(h1c);
3784 return -1;
3785 }
3786 h1c->task->process = h1_timeout_task;
3787 h1c->task->context = h1c;
3788 }
3789 h1c->wait_event.tasklet = tasklet_new();
3790 if (!h1c->wait_event.tasklet) {
3791 h1_release(h1c);
3792 return -1;
3793 }
3794 h1c->wait_event.tasklet->process = h1_io_cb;
3795 h1c->wait_event.tasklet->context = h1c;
3796 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3797 SUB_RETRY_RECV, &h1c->wait_event);
3798
3799 return 0;
3800}
3801
3802
Christopher Faulet98fbe952019-07-22 16:18:24 +02003803static void h1_hdeaders_case_adjust_deinit()
3804{
3805 struct ebpt_node *node, *next;
3806 struct h1_hdr_entry *entry;
3807
3808 node = ebpt_first(&hdrs_map.map);
3809 while (node) {
3810 next = ebpt_next(node);
3811 ebpt_delete(node);
3812 entry = container_of(node, struct h1_hdr_entry, node);
3813 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003814 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003815 free(entry);
3816 node = next;
3817 }
3818 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003819}
3820
Christopher Faulet98fbe952019-07-22 16:18:24 +02003821static int cfg_h1_headers_case_adjust_postparser()
3822{
3823 FILE *file = NULL;
3824 char *c, *key_beg, *key_end, *value_beg, *value_end;
3825 char *err;
3826 int rc, line = 0, err_code = 0;
3827
3828 if (!hdrs_map.name)
3829 goto end;
3830
3831 file = fopen(hdrs_map.name, "r");
3832 if (!file) {
3833 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
3834 hdrs_map.name);
3835 err_code |= ERR_ALERT | ERR_FATAL;
3836 goto end;
3837 }
3838
3839 /* now parse all lines. The file may contain only two header name per
3840 * line, separated by spaces. All heading and trailing spaces will be
3841 * ignored. Lines starting with a # are ignored.
3842 */
3843 while (fgets(trash.area, trash.size, file) != NULL) {
3844 line++;
3845 c = trash.area;
3846
3847 /* strip leading spaces and tabs */
3848 while (*c == ' ' || *c == '\t')
3849 c++;
3850
3851 /* ignore emptu lines, or lines beginning with a dash */
3852 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3853 continue;
3854
3855 /* look for the end of the key */
3856 key_beg = c;
3857 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3858 c++;
3859 key_end = c;
3860
3861 /* strip middle spaces and tabs */
3862 while (*c == ' ' || *c == '\t')
3863 c++;
3864
3865 /* look for the end of the value, it is the end of the line */
3866 value_beg = c;
3867 while (*c && *c != '\n' && *c != '\r')
3868 c++;
3869 value_end = c;
3870
3871 /* trim possibly trailing spaces and tabs */
3872 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3873 value_end--;
3874
3875 /* set final \0 and check entries */
3876 *key_end = '\0';
3877 *value_end = '\0';
3878
3879 err = NULL;
3880 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3881 if (rc < 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003882 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3883 hdrs_map.name, err, line);
3884 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003885 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003886 goto end;
3887 }
3888 if (rc > 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003889 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3890 hdrs_map.name, err, line);
3891 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003892 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003893 }
3894 }
3895
3896 end:
3897 if (file)
3898 fclose(file);
3899 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3900 return err_code;
3901}
3902
3903
3904/* config parser for global "h1-outgoing-header-case-adjust" */
3905static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003906 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003907 char **err)
3908{
3909 if (too_many_args(2, args, err, NULL))
3910 return -1;
3911 if (!*(args[1]) || !*(args[2])) {
3912 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3913 return -1;
3914 }
3915 return add_hdr_case_adjust(args[1], args[2], err);
3916}
3917
3918/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3919static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003920 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003921 char **err)
3922{
3923 if (too_many_args(1, args, err, NULL))
3924 return -1;
3925 if (!*(args[1])) {
3926 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3927 return -1;
3928 }
3929 free(hdrs_map.name);
3930 hdrs_map.name = strdup(args[1]);
3931 return 0;
3932}
3933
3934
3935/* config keyword parsers */
3936static struct cfg_kw_list cfg_kws = {{ }, {
3937 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3938 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3939 { 0, NULL, NULL },
3940 }
3941};
3942
3943INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3944REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3945
3946
Christopher Faulet51dbc942018-09-13 09:05:15 +02003947/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003948/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003949/****************************************/
3950
3951/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003952static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003953 .init = h1_init,
3954 .wake = h1_wake,
3955 .attach = h1_attach,
3956 .get_first_cs = h1_get_first_cs,
3957 .detach = h1_detach,
3958 .destroy = h1_destroy,
3959 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003960 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003961 .rcv_buf = h1_rcv_buf,
3962 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003963#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003964 .rcv_pipe = h1_rcv_pipe,
3965 .snd_pipe = h1_snd_pipe,
3966#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003967 .subscribe = h1_subscribe,
3968 .unsubscribe = h1_unsubscribe,
3969 .shutr = h1_shutr,
3970 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003971 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003972 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003973 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003974 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003975 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003976};
3977
Christopher Faulet3f612f72021-02-05 16:44:21 +01003978static const struct mux_ops mux_h1_ops = {
3979 .init = h1_init,
3980 .wake = h1_wake,
3981 .attach = h1_attach,
3982 .get_first_cs = h1_get_first_cs,
3983 .detach = h1_detach,
3984 .destroy = h1_destroy,
3985 .avail_streams = h1_avail_streams,
3986 .used_streams = h1_used_streams,
3987 .rcv_buf = h1_rcv_buf,
3988 .snd_buf = h1_snd_buf,
3989#if defined(USE_LINUX_SPLICE)
3990 .rcv_pipe = h1_rcv_pipe,
3991 .snd_pipe = h1_snd_pipe,
3992#endif
3993 .subscribe = h1_subscribe,
3994 .unsubscribe = h1_unsubscribe,
3995 .shutr = h1_shutr,
3996 .shutw = h1_shutw,
3997 .show_fd = h1_show_fd,
3998 .ctl = h1_ctl,
3999 .takeover = h1_takeover,
4000 .flags = MX_FL_HTX|MX_FL_NO_UPG,
4001 .name = "H1",
4002};
Christopher Faulet51dbc942018-09-13 09:05:15 +02004003
Christopher Faulet3f612f72021-02-05 16:44:21 +01004004/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
4005static struct mux_proto_list mux_proto_h1 =
4006 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
4007static struct mux_proto_list mux_proto_http =
4008 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02004009
Christopher Faulet3f612f72021-02-05 16:44:21 +01004010INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
4011INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01004012
Christopher Faulet51dbc942018-09-13 09:05:15 +02004013/*
4014 * Local variables:
4015 * c-indent-level: 8
4016 * c-basic-offset: 8
4017 * End:
4018 */