blob: 07b2359e739094c71c59ab96c027b7f263935a09 [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:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200887 conn->ctx = conn_ctx; // restore saved context
888 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200889 return -1;
890}
891
Christopher Faulet73c12072019-04-08 11:23:22 +0200892/* release function. This one should be called to free all resources allocated
893 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200894 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200895static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200896{
Christopher Faulet61840e72019-04-15 09:33:32 +0200897 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200898
Christopher Faulet6b81df72019-10-01 22:08:43 +0200899 TRACE_POINT(H1_EV_H1C_END);
900
Christopher Faulet51dbc942018-09-13 09:05:15 +0200901 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200902 /* The connection must be aattached to this mux to be released */
903 if (h1c->conn && h1c->conn->ctx == h1c)
904 conn = h1c->conn;
905
Christopher Faulet6b81df72019-10-01 22:08:43 +0200906 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
907
Christopher Faulet61840e72019-04-15 09:33:32 +0200908 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200909 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200910 /* Make sure we're no longer subscribed to anything */
911 if (h1c->wait_event.events)
912 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
913 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200914 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200915 /* connection successfully upgraded to H2, this
916 * mux was already released */
917 return;
918 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100919 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200920 sess_log(conn->owner); /* Log if the upgrade failed */
921 }
922
Olivier Houchard45c44372019-06-11 14:06:23 +0200923
Willy Tarreau2b718102021-04-21 07:32:39 +0200924 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100925 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200926
927 h1_release_buf(h1c, &h1c->ibuf);
928 h1_release_buf(h1c, &h1c->obuf);
929
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100930 if (h1c->task) {
931 h1c->task->context = NULL;
932 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
933 h1c->task = NULL;
934 }
935
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200936 if (h1c->wait_event.tasklet)
937 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200938
Christopher Fauletf2824e62018-10-01 12:12:37 +0200939 h1s_destroy(h1c->h1s);
Christopher Faulet37c42542021-10-27 15:42:13 +0200940 if (conn) {
941 if (h1c->wait_event.events != 0)
942 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
943 &h1c->wait_event);
944 h1_shutw_conn(conn);
945 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200946 pool_free(pool_head_h1c, h1c);
947 }
948
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200949 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200950 if (!conn_is_back(conn))
951 LIST_DEL_INIT(&conn->stopping_list);
952
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200953 conn->mux = NULL;
954 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200955 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200956
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200957 conn_stop_tracking(conn);
958 conn_full_close(conn);
959 if (conn->destroy_cb)
960 conn->destroy_cb(conn);
961 conn_free(conn);
962 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200963}
964
965/******************************************************/
966/* functions below are for the H1 protocol processing */
967/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200968/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
969 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200970 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100971static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200972{
Christopher Faulet570d1612018-11-26 11:13:57 +0100973 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200974
Christopher Faulet570d1612018-11-26 11:13:57 +0100975 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200976 (*(p + 5) > '1' ||
977 (*(p + 5) == '1' && *(p + 7) >= '1')))
978 h1m->flags |= H1_MF_VER_11;
979}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200980
Christopher Faulet9768c262018-10-22 09:34:31 +0200981/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
982 * greater or equal to 1.1
983 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100984static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200985{
Christopher Faulet570d1612018-11-26 11:13:57 +0100986 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200987
Christopher Faulet570d1612018-11-26 11:13:57 +0100988 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200989 (*(p + 5) > '1' ||
990 (*(p + 5) == '1' && *(p + 7) >= '1')))
991 h1m->flags |= H1_MF_VER_11;
992}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200993
Christopher Fauletf2824e62018-10-01 12:12:37 +0200994/* Deduce the connection mode of the client connection, depending on the
995 * configuration and the H1 message flags. This function is called twice, the
996 * first time when the request is parsed and the second time when the response
997 * is parsed.
998 */
999static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
1000{
1001 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001002
1003 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001004 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001005 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001006 h1s->status == 101) {
1007 /* Either we've established an explicit tunnel, or we're
1008 * switching the protocol. In both cases, we're very unlikely to
1009 * understand the next protocols. We have to switch to tunnel
1010 * mode, so that we transfer the request and responses then let
1011 * this protocol pass unmodified. When we later implement
1012 * specific parsers for such protocols, we'll want to check the
1013 * Upgrade header which contains information about that protocol
1014 * for responses with status 101 (eg: see RFC2817 about TLS).
1015 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001016 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001017 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 +01001018 }
1019 else if (h1s->flags & H1S_F_WANT_KAL) {
1020 /* By default the client is in KAL mode. CLOSE mode mean
1021 * it is imposed by the client itself. So only change
1022 * KAL mode here. */
1023 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1024 /* no length known or explicit close => close */
1025 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001026 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 +01001027 }
1028 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1029 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001030 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001031 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001032 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 +01001033 }
1034 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001035 }
1036 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001037 /* Input direction: first pass */
1038 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1039 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001040 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001041 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 +01001042 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001043 }
1044
1045 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001046 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001047 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001048 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);
1049 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001050}
1051
1052/* Deduce the connection mode of the client connection, depending on the
1053 * configuration and the H1 message flags. This function is called twice, the
1054 * first time when the request is parsed and the second time when the response
1055 * is parsed.
1056 */
1057static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1058{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001059 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001060 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001061 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001062
Christopher Fauletf2824e62018-10-01 12:12:37 +02001063 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001064 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001065 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001066 h1s->status == 101) {
1067 /* Either we've established an explicit tunnel, or we're
1068 * switching the protocol. In both cases, we're very unlikely to
1069 * understand the next protocols. We have to switch to tunnel
1070 * mode, so that we transfer the request and responses then let
1071 * this protocol pass unmodified. When we later implement
1072 * specific parsers for such protocols, we'll want to check the
1073 * Upgrade header which contains information about that protocol
1074 * for responses with status 101 (eg: see RFC2817 about TLS).
1075 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001076 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001077 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 +01001078 }
1079 else if (h1s->flags & H1S_F_WANT_KAL) {
1080 /* By default the server is in KAL mode. CLOSE mode mean
1081 * it is imposed by haproxy itself. So only change KAL
1082 * mode here. */
1083 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1084 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1085 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1086 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001087 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 +01001088 }
1089 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001090 }
Christopher Faulet70033782018-12-05 13:50:11 +01001091 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001092 /* Output direction: first pass */
1093 if (h1m->flags & H1_MF_CONN_CLO) {
1094 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001095 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001096 TRACE_STATE("detect close mode (req)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001097 }
1098 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1099 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1100 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1101 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1102 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1103 /* no explicit keep-alive option httpclose/server-close => close */
1104 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001105 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 +01001106 }
Christopher Faulet70033782018-12-05 13:50:11 +01001107 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001108
1109 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001110 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001111 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001112 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);
1113 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001114}
1115
Christopher Fauletb992af02019-03-28 15:42:24 +01001116static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001117{
1118 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001119
1120 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1121 * token is found
1122 */
1123 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001124 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001125
1126 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001127 if (!(h1m->flags & H1_MF_VER_11)) {
1128 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 +01001129 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001130 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001131 }
1132 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001133 if (h1m->flags & H1_MF_VER_11) {
1134 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001135 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001136 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001137 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001138}
1139
Christopher Fauletb992af02019-03-28 15:42:24 +01001140static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001141{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001142 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1143 * token is found
1144 */
1145 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001146 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001147
1148 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001149 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001150 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1151 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 +01001152 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001153 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001154 }
1155 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001156 if (h1m->flags & H1_MF_VER_11) {
1157 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001158 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001159 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001160 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001161}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001162
Christopher Fauletb992af02019-03-28 15:42:24 +01001163static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001164{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001165 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001166 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001167 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001168 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001169}
1170
Christopher Fauletb992af02019-03-28 15:42:24 +01001171static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1172{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001173 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001174 h1_set_cli_conn_mode(h1s, h1m);
1175 else
1176 h1_set_srv_conn_mode(h1s, h1m);
1177
1178 if (!(h1m->flags & H1_MF_RESP))
1179 h1_update_req_conn_value(h1s, h1m, conn_val);
1180 else
1181 h1_update_res_conn_value(h1s, h1m, conn_val);
1182}
Christopher Faulete44769b2018-11-29 23:01:45 +01001183
Christopher Faulet98fbe952019-07-22 16:18:24 +02001184/* Try to adjust the case of the message header name using the global map
1185 * <hdrs_map>.
1186 */
1187static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1188{
1189 struct ebpt_node *node;
1190 struct h1_hdr_entry *entry;
1191
1192 /* No entry in the map, do nothing */
1193 if (eb_is_empty(&hdrs_map.map))
1194 return;
1195
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001196 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001197 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1198 return;
1199
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001200 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001201 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1202 return;
1203
1204 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1205 if (!node)
1206 return;
1207 entry = container_of(node, struct h1_hdr_entry, node);
1208 name->ptr = entry->name.ptr;
1209 name->len = entry->name.len;
1210}
1211
Christopher Faulete44769b2018-11-29 23:01:45 +01001212/* Append the description of what is present in error snapshot <es> into <out>.
1213 * The description must be small enough to always fit in a buffer. The output
1214 * buffer may be the trash so the trash must not be used inside this function.
1215 */
1216static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1217{
1218 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001219 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1220 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1221 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1222 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1223 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1224 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001225}
1226/*
1227 * Capture a bad request or response and archive it in the proxy's structure.
1228 * By default it tries to report the error position as h1m->err_pos. However if
1229 * this one is not set, it will then report h1m->next, which is the last known
1230 * parsing point. The function is able to deal with wrapping buffers. It always
1231 * displays buffers as a contiguous area starting at buf->p. The direction is
1232 * determined thanks to the h1m's flags.
1233 */
1234static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1235 struct h1m *h1m, struct buffer *buf)
1236{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001237 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001238 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001239 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001240 union error_snapshot_ctx ctx;
1241
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001242 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001243 if (sess == NULL)
1244 sess = si_strm(h1s->cs->data)->sess;
1245 if (!(h1m->flags & H1_MF_RESP))
1246 other_end = si_strm(h1s->cs->data)->be;
1247 else
1248 other_end = sess->fe;
1249 } else
1250 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001251
1252 /* http-specific part now */
1253 ctx.h1.state = h1m->state;
1254 ctx.h1.c_flags = h1c->flags;
1255 ctx.h1.s_flags = h1s->flags;
1256 ctx.h1.m_flags = h1m->flags;
1257 ctx.h1.m_clen = h1m->curr_len;
1258 ctx.h1.m_blen = h1m->body_len;
1259
1260 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1261 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001262 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1263 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001264}
1265
Christopher Fauletadb22202018-12-12 10:32:09 +01001266/* Emit the chunksize followed by a CRLF in front of data of the buffer
1267 * <buf>. It goes backwards and starts with the byte before the buffer's
1268 * head. The caller is responsible for ensuring there is enough room left before
1269 * the buffer's head for the string.
1270 */
1271static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1272{
1273 char *beg, *end;
1274
1275 beg = end = b_head(buf);
1276 *--beg = '\n';
1277 *--beg = '\r';
1278 do {
1279 *--beg = hextab[chksz & 0xF];
1280 } while (chksz >>= 4);
1281 buf->head -= (end - beg);
1282 b_add(buf, end - beg);
1283}
1284
1285/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1286 * ensuring there is enough room left in the buffer for the string. */
1287static void h1_emit_chunk_crlf(struct buffer *buf)
1288{
1289 *(b_peek(buf, b_data(buf))) = '\r';
1290 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1291 b_add(buf, 2);
1292}
1293
Christopher Faulet129817b2018-09-20 16:14:40 +02001294/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001295 * Switch the stream to tunnel mode. This function must only be called on 2xx
1296 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001297 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001298static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001299{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001300 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001301
Christopher Faulet5be651d2021-01-22 15:28:03 +01001302 h1s->req.state = H1_MSG_TUNNEL;
1303 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001304
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001305 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001306 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001307
Christopher Faulet5be651d2021-01-22 15:28:03 +01001308 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 +01001309
Christopher Faulet10a86702021-04-07 14:18:11 +02001310 if (h1s->flags & H1S_F_RX_BLK) {
1311 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001312 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001313 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 +02001314 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001315 if (h1s->flags & H1S_F_TX_BLK) {
1316 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001317 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001318 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 +01001319 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001320}
1321
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001322/* Search for a websocket key header. The message should have been identified
1323 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001324 *
1325 * On the request side, if found the key is stored in the session. It might be
1326 * needed to calculate response key if the server side is using http/2.
1327 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001328 * On the response side, the key might be verified if haproxy has been
1329 * responsible for the generation of a key. This happens when a h2 client is
1330 * interfaced with a h1 server.
1331 *
1332 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001333 */
1334static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1335{
1336 struct htx_blk *blk;
1337 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001338 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001339 int ws_key_found = 0, idx;
1340
1341 idx = htx_get_head(htx); // returns the SL that we skip
1342 while ((idx = htx_get_next(htx, idx)) != -1) {
1343 blk = htx_get_blk(htx, idx);
1344 type = htx_get_blk_type(blk);
1345
1346 if (type == HTX_BLK_UNUSED)
1347 continue;
1348
1349 if (type != HTX_BLK_HDR)
1350 break;
1351
1352 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001353 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001354
Amaury Denoyellec1938232020-12-11 17:53:03 +01001355 /* Websocket key is base64 encoded of 16 bytes */
1356 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001357 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001358 /* Copy the key on request side
1359 * we might need it if the server is using h2 and does
1360 * not provide the response
1361 */
1362 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001363 ws_key_found = 1;
1364 break;
1365 }
1366 else if (isteqi(n, ist("sec-websocket-accept")) &&
1367 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001368 /* Need to verify the response key if the input was
1369 * generated by haproxy
1370 */
1371 if (h1s->ws_key[0]) {
1372 char key[29];
1373 h1_calculate_ws_output_key(h1s->ws_key, key);
1374 if (!isteqi(ist(key), v))
1375 break;
1376 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001377 ws_key_found = 1;
1378 break;
1379 }
1380 }
1381
1382 /* missing websocket key, reject the message */
1383 if (!ws_key_found) {
1384 htx->flags |= HTX_FL_PARSING_ERROR;
1385 return 0;
1386 }
1387
1388 return 1;
1389}
1390
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001391/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001392 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001393 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet58f21da2021-09-20 07:47:27 +02001394 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1395 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001396 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001397static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001398 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001399{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001400 union h1_sl h1sl;
Christopher Faulet129817b2018-09-20 16:14:40 +02001401 int ret = 0;
1402
Willy Tarreau022e5e52020-09-10 09:33:15 +02001403 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 +02001404
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001405 if (h1s->meth == HTTP_METH_CONNECT)
1406 h1m->flags |= H1_MF_METH_CONNECT;
1407 if (h1s->meth == HTTP_METH_HEAD)
1408 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001409
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001410 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001411 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001412 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 +02001413 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001414 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001415 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 +02001416 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1417 }
Christopher Faulet58f21da2021-09-20 07:47:27 +02001418 else if (ret == -2) {
1419 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);
1420 h1s->flags |= H1S_F_RX_CONGESTED;
1421 }
1422 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001423 goto end;
1424 }
1425
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001426 /* If websocket handshake, search for the websocket key */
1427 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1428 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1429 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1430 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001431 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001432 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 +01001433 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1434
1435 ret = 0;
1436 goto end;
1437 }
1438 }
1439
Christopher Faulet486498c2019-10-11 14:22:00 +02001440 if (h1m->err_pos >= 0) {
1441 /* Maybe we found an error during the parsing while we were
1442 * configured not to block on that, so we have to capture it
1443 * now.
1444 */
1445 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1446 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1447 }
1448
Christopher Faulet5696f542020-12-02 16:08:38 +01001449 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001450 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001451 if (h1s->meth == HTTP_METH_HEAD)
1452 h1s->flags |= H1S_F_BODYLESS_RESP;
1453 }
1454 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001455 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001456 if (h1s->status == 204 || h1s->status == 304)
1457 h1s->flags |= H1S_F_BODYLESS_RESP;
1458 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001459 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001460 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001461
Christopher Faulet129817b2018-09-20 16:14:40 +02001462 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001463 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 +02001464 return ret;
1465}
1466
1467/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001468 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001469 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1470 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001471 */
Christopher Fauletaf542632019-10-01 21:52:49 +02001472static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001473 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001474 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001475{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001476 int ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001477
Willy Tarreau022e5e52020-09-10 09:33:15 +02001478 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 +02001479 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001480 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001481 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 +01001482 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001483 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001484 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 +02001485 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001486 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001487 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001488 }
1489
Christopher Faulet02a02532019-11-15 09:36:28 +01001490 *ofs += ret;
1491
1492 end:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001493 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1494 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);
1495 h1s->flags |= H1S_F_RX_CONGESTED;
1496 }
1497
Willy Tarreau022e5e52020-09-10 09:33:15 +02001498 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 +02001499 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001500}
1501
1502/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001503 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1504 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1505 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet58f21da2021-09-20 07:47:27 +02001506 * responsible to update the parser state <h1m>. If more room is requested,
1507 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001508 */
1509static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1510 struct buffer *buf, size_t *ofs, size_t max)
1511{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001512 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001513
Willy Tarreau022e5e52020-09-10 09:33:15 +02001514 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 +02001515 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet58f21da2021-09-20 07:47:27 +02001516 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001517 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 +02001518 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001519 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001520 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 +02001521 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1522 }
Christopher Faulet58f21da2021-09-20 07:47:27 +02001523 else if (ret == -2) {
1524 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);
1525 h1s->flags |= H1S_F_RX_CONGESTED;
1526 }
1527 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001528 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001529 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001530
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001531 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001532
1533 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001534 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 +02001535 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001536}
1537
1538/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001539 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001540 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1541 * it couldn't proceed.
Christopher Faulet58f21da2021-09-20 07:47:27 +02001542 *
1543 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001544 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001545static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001546{
Christopher Faulet539e0292018-11-19 10:40:09 +01001547 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001548 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001549 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001550 size_t data;
1551 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001552 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001553
Christopher Faulet539e0292018-11-19 10:40:09 +01001554 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001555 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001556
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001557 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001558 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001559
Christopher Faulet2eed8002020-12-07 11:26:13 +01001560 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001561 goto end;
1562
Christopher Faulet10a86702021-04-07 14:18:11 +02001563 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001564 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001565
Christopher Faulet58f21da2021-09-20 07:47:27 +02001566 /* Always remove congestion flags and try to process more input data */
1567 h1s->flags &= ~H1S_F_RX_CONGESTED;
1568
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001569 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001570 size_t used = htx_used_space(htx);
1571
Christopher Faulet129817b2018-09-20 16:14:40 +02001572 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001573 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet539e0292018-11-19 10:40:09 +01001574 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001575 if (!ret)
1576 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001577
1578 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1579 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1580
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001581 if ((h1m->flags & H1_MF_RESP) &&
1582 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1583 h1m_init_res(&h1s->res);
1584 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001585 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001586 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001587 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001588 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001589 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001590 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001591 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet129817b2018-09-20 16:14:40 +02001592 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001593
1594 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1595 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001596 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001597 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001598 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
1599 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1600 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001601 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001602
Christopher Faulet76014fd2019-12-10 11:47:22 +01001603 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1604 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001605 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001606 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001607 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1608 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001609
Christopher Faulet5be651d2021-01-22 15:28:03 +01001610 if ((h1m->flags & H1_MF_RESP) &&
1611 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1612 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001613 else {
1614 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1615 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001616 h1s->flags |= H1S_F_RX_BLK;
1617 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001618 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001619 if (h1s->flags & H1S_F_TX_BLK) {
1620 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001621 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001622 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 +01001623 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001624 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001625 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001626 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001627 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001628 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001629 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001630 if (!ret)
1631 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001632
1633 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1634 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001635 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001636 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001637 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001638 break;
1639 }
1640
Christopher Faulet30db3d72019-05-17 15:35:33 +02001641 count -= htx_used_space(htx) - used;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001642 } 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 +01001643
Christopher Faulet129817b2018-09-20 16:14:40 +02001644
Christopher Faulet2eed8002020-12-07 11:26:13 +01001645 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001646 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 +02001647 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001648 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001649
Christopher Faulet539e0292018-11-19 10:40:09 +01001650 b_del(&h1c->ibuf, total);
1651
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001652 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001653 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1654
Christopher Faulet30db3d72019-05-17 15:35:33 +02001655 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001656 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001657 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001658 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 +01001659 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001660 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001661
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001662 if (!b_data(&h1c->ibuf))
1663 h1_release_buf(h1c, &h1c->ibuf);
1664
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001665 if (!(h1c->flags & H1C_F_ST_READY)) {
1666 /* The H1 connection is not ready. Most of time, there is no CS
1667 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1668 * cases, it is only possible on the client side.
1669 */
1670 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1671
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001672 if (h1m->state <= H1_MSG_LAST_LF) {
1673 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1674 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1675 goto end;
1676 }
1677
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001678 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1679 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1680 BUG_ON(h1s->cs);
1681 if (!h1s_new_cs(h1s, buf)) {
1682 h1c->flags |= H1C_F_ST_ERROR;
1683 goto err;
1684 }
1685 }
1686 else {
1687 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1688 BUG_ON(h1s->cs == NULL);
1689 if (!h1s_upgrade_cs(h1s, buf)) {
1690 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001691 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001692 goto err;
1693 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001694 }
1695 }
1696
1697 /* Here h1s->cs is always defined */
Christopher Fauleta583af62020-09-24 15:35:37 +02001698 if (!(h1m->flags & H1_MF_CHNK) &&
1699 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) {
1700 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1701 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1702 }
1703 else {
1704 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1705 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1706 }
1707
Christopher Fauleta22782b2021-02-08 17:18:01 +01001708 /* Set EOI on conn-stream in DONE state iff:
1709 * - it is a response
1710 * - it is a request but no a protocol upgrade nor a CONNECT
1711 *
1712 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001713 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001714 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001715 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1716 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001717 h1s->cs->flags |= CS_FL_EOI;
1718
Christopher Fauletec4207c2021-04-08 18:34:30 +02001719 out:
Christopher Faulet58f21da2021-09-20 07:47:27 +02001720 /* When Input data are pending for this message, notify upper layer that
1721 * the mux need more space in the HTX buffer to continue if :
1722 *
1723 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1724 * - Headers or trailers are pending to be copied.
1725 */
1726 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001727 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet58f21da2021-09-20 07:47:27 +02001728 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1729 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001730 else {
1731 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1732 if (h1s->flags & H1S_F_REOS) {
1733 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001734 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1735 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1736 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001737 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001738 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001739 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001740 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001741 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1742 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001743
Christopher Faulet10a86702021-04-07 14:18:11 +02001744 if (h1s->flags & H1S_F_TX_BLK) {
1745 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001746 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001747 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 +01001748 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001749 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001750 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001751
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001752 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001753 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001754 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001755
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001756 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001757 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001758 if (h1s->cs)
1759 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001760 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001761 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001762}
1763
Christopher Faulet129817b2018-09-20 16:14:40 +02001764/*
1765 * Process outgoing data. It parses data and transfer them from the channel buffer into
1766 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1767 * 0 if it couldn't proceed.
1768 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001769static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1770{
Christopher Faulet129817b2018-09-20 16:14:40 +02001771 struct h1s *h1s = h1c->h1s;
1772 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001773 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001774 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001775 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001776 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001777 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001778 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001779
Christopher Faulet94b2c762019-05-24 15:28:57 +02001780 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001781 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1782
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001783 if (htx_is_empty(chn_htx))
1784 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001785
Christopher Faulet10a86702021-04-07 14:18:11 +02001786 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001787 goto end;
1788
Christopher Faulet51dbc942018-09-13 09:05:15 +02001789 if (!h1_get_buf(h1c, &h1c->obuf)) {
1790 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001791 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 +02001792 goto end;
1793 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001794
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001795 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001796
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001797 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001798 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001799
Willy Tarreau3815b222018-12-11 19:50:43 +01001800 /* Perform some optimizations to reduce the number of buffer copies.
1801 * First, if the mux's buffer is empty and the htx area contains
1802 * exactly one data block of the same size as the requested count,
1803 * then it's possible to simply swap the caller's buffer with the
1804 * mux's output buffer and adjust offsets and length to match the
1805 * entire DATA HTX block in the middle. In this case we perform a
1806 * true zero-copy operation from end-to-end. This is the situation
1807 * that happens all the time with large files. Second, if this is not
1808 * possible, but the mux's output buffer is empty, we still have an
1809 * opportunity to avoid the copy to the intermediary buffer, by making
1810 * the intermediary buffer's area point to the output buffer's area.
1811 * In this case we want to skip the HTX header to make sure that copies
1812 * remain aligned and that this operation remains possible all the
1813 * time. This goes for headers, data blocks and any data extracted from
1814 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001815 */
1816 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001817 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001818 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001819 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001820 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001821 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001822 void *old_area;
1823
Christopher Faulet6b81df72019-10-01 22:08:43 +02001824 TRACE_PROTO("sending message data (zero-copy)", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001825 if (h1m->state == H1_MSG_DATA && chn_htx->flags & HTX_FL_EOM) {
1826 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1827 last_data = 1;
1828 }
1829
Christopher Faulete5596bf2020-12-02 16:13:22 +01001830 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001831 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001832 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001833 h1c->obuf.data = count;
1834
1835 buf->area = old_area;
1836 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001837
Christopher Faulet6b81df72019-10-01 22:08:43 +02001838 chn_htx = (struct htx *)buf->area;
1839 htx_reset(chn_htx);
1840
Christopher Fauletadb22202018-12-12 10:32:09 +01001841 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001842 * size and eventually the last chunk. We have at least
1843 * the size of the struct htx to write the chunk
1844 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001845 */
1846 if (h1m->flags & H1_MF_CHNK) {
1847 h1_emit_chunk_size(&h1c->obuf, count);
1848 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001849 if (last_data) {
1850 /* Emit the last chunk too at the buffer's end */
1851 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1852 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001853 }
1854
Christopher Faulet6b81df72019-10-01 22:08:43 +02001855 if (h1m->state == H1_MSG_DATA)
1856 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001857 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001858 else
1859 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001860 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001861
Christopher Faulete5596bf2020-12-02 16:13:22 +01001862 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001863 if (last_data) {
1864 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001865 if (h1s->flags & H1S_F_RX_BLK) {
1866 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001867 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001868 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 +01001869 }
1870
1871 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1872 H1_EV_TX_DATA, h1c->conn, h1s);
1873 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001874 goto out;
1875 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001876 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001877 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001878 else
1879 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001880
Christopher Fauletc2518a52019-06-25 21:41:02 +02001881 tmp.data = 0;
1882 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001883 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001884 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001885 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001886 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001887 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001888 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001889
Christopher Fauletb2e84162018-12-06 11:39:49 +01001890 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001891 if (type != HTX_BLK_DATA && vlen > count)
1892 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001893
Christopher Faulet94b2c762019-05-24 15:28:57 +02001894 if (type == HTX_BLK_UNUSED)
1895 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001896
Christopher Faulet94b2c762019-05-24 15:28:57 +02001897 switch (h1m->state) {
1898 case H1_MSG_RQBEFORE:
1899 if (type != HTX_BLK_REQ_SL)
1900 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001901 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 +02001902 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001903 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001904 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001905 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001906 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001907 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001908 if (sl->flags & HTX_SL_F_BODYLESS)
1909 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001910 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001911 if (h1s->meth == HTTP_METH_HEAD)
1912 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001913 if (h1s->flags & H1S_F_RX_BLK) {
1914 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001915 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001916 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 +02001917 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001918 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001919
Christopher Faulet94b2c762019-05-24 15:28:57 +02001920 case H1_MSG_RPBEFORE:
1921 if (type != HTX_BLK_RES_SL)
1922 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001923 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 +02001924 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001925 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001926 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001927 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001928 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001929 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001930 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001931 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001932 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001933 else if (h1s->status == 204 || h1s->status == 304)
1934 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001935 h1m->state = H1_MSG_HDR_FIRST;
1936 break;
1937
Christopher Faulet94b2c762019-05-24 15:28:57 +02001938 case H1_MSG_HDR_FIRST:
1939 case H1_MSG_HDR_NAME:
1940 case H1_MSG_HDR_L2_LWS:
1941 if (type == HTX_BLK_EOH)
1942 goto last_lf;
1943 if (type != HTX_BLK_HDR)
1944 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001945
Christopher Faulet9768c262018-10-22 09:34:31 +02001946 h1m->state = H1_MSG_HDR_NAME;
1947 n = htx_get_blk_name(chn_htx, blk);
1948 v = htx_get_blk_value(chn_htx, blk);
1949
Christopher Faulet86d144c2019-08-14 16:32:25 +02001950 /* Skip all pseudo-headers */
1951 if (*(n.ptr) == ':')
1952 goto skip_hdr;
1953
Christopher Faulet91fcf212020-12-02 16:17:15 +01001954 if (isteq(n, ist("transfer-encoding"))) {
1955 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1956 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001957 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001958 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001959 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001960 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1961 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001962 /* Only skip C-L header with invalid value. */
1963 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001964 goto skip_hdr;
1965 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001966 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001967 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001968 if (!v.len)
1969 goto skip_hdr;
1970 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001971 else if (isteq(n, ist("upgrade"))) {
1972 h1_parse_upgrade_header(h1m, v);
1973 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001974 else if ((isteq(n, ist("sec-websocket-accept")) &&
1975 h1m->flags & H1_MF_RESP) ||
1976 (isteq(n, ist("sec-websocket-key")) &&
1977 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001978 ws_key_found = 1;
1979 }
Christopher Fauletf9bb8d02021-09-28 10:56:36 +02001980 else if (isteq(n, ist("te"))) {
1981 /* "te" may only be sent with "trailers" if this value
1982 * is present, otherwise it must be deleted.
1983 */
1984 v = istist(v, ist("trailers"));
1985 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
1986 goto skip_hdr;
1987 v = ist("trailers");
1988 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001989
Christopher Faulet67d58092019-10-02 10:51:38 +02001990 /* Skip header if same name is used to add the server name */
1991 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
1992 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
1993 goto skip_hdr;
1994
Christopher Faulet98fbe952019-07-22 16:18:24 +02001995 /* Try to adjust the case of the header name */
1996 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1997 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001998 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001999 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002000 skip_hdr:
2001 h1m->state = H1_MSG_HDR_L2_LWS;
2002 break;
2003
Christopher Faulet94b2c762019-05-24 15:28:57 +02002004 case H1_MSG_LAST_LF:
2005 if (type != HTX_BLK_EOH)
2006 goto error;
2007 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002008 h1m->state = H1_MSG_LAST_LF;
2009 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002010 /* If the reply comes from haproxy while the request is
2011 * not finished, we force the connection close. */
2012 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
2013 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2014 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2015 }
2016
2017 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002018 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002019 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002020 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002021 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002022 /* Try to adjust the case of the header name */
2023 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2024 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002025 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002026 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002027 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002028 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002029 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002030
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002031 if ((h1s->meth != HTTP_METH_CONNECT &&
2032 (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 +01002033 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002034 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002035 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002036 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2037 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002038 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002039 n = ist("transfer-encoding");
2040 v = ist("chunked");
2041 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2042 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002043 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002044 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002045 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002046 h1m->flags |= H1_MF_CHNK;
2047 }
2048
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002049 /* Now add the server name to a header (if requested) */
2050 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2051 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2052 struct server *srv = objt_server(h1c->conn->target);
2053
2054 if (srv) {
2055 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2056 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002057
2058 /* Try to adjust the case of the header name */
2059 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2060 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002061 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002062 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002063 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002064 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002065 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2066 }
2067
Amaury Denoyellec1938232020-12-11 17:53:03 +01002068 /* Add websocket handshake key if needed */
2069 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2070 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002071 if (!(h1m->flags & H1_MF_RESP)) {
2072 /* generate a random websocket key
2073 * stored in the session to
2074 * verify it on the response side
2075 */
2076 h1_generate_random_ws_input_key(h1s->ws_key);
2077
2078 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2079 ist(h1s->ws_key),
2080 &tmp)) {
2081 goto full;
2082 }
2083 }
2084 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002085 /* add the response header key */
2086 char key[29];
2087 h1_calculate_ws_output_key(h1s->ws_key, key);
2088 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2089 ist(key),
2090 &tmp)) {
2091 goto full;
2092 }
2093 }
2094 }
2095
Christopher Faulet6b81df72019-10-01 22:08:43 +02002096 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2097 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2098
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002099 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002100 if (!chunk_memcat(&tmp, "\r\n", 2))
2101 goto full;
2102 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002103 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002104 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002105 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002106 if (!chunk_memcat(&tmp, "\r\n", 2))
2107 goto full;
2108 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002109 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002110 else if ((h1m->flags & H1_MF_RESP) &&
2111 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002112 if (!chunk_memcat(&tmp, "\r\n", 2))
2113 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002114 h1m_init_res(&h1s->res);
2115 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002116 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002117 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002118 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002119 else {
2120 /* EOM flag is set and it is the last block */
2121 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002122 if (h1m->flags & H1_MF_CHNK) {
2123 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2124 goto full;
2125 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002126 else if (!chunk_memcat(&tmp, "\r\n", 2))
2127 goto full;
2128 goto done;
2129 }
2130 else if (!chunk_memcat(&tmp, "\r\n", 2))
2131 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002132 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002133 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002134 break;
2135
Christopher Faulet94b2c762019-05-24 15:28:57 +02002136 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002137 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002138 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002139 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2140 goto trailers;
2141
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002142 /* If the message is not chunked, never
2143 * add the last chunk. */
2144 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002145 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002146 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 +02002147 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002148 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002149 else if (type != HTX_BLK_DATA)
2150 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002151
2152 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 +02002153
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002154 /* It is the last block of this message. After this one,
2155 * only tunneled data may be forwarded. */
2156 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2157 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2158 last_data = 1;
2159 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002160
2161 if (vlen > count) {
2162 /* Get the maximum amount of data we can xferred */
2163 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002164 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002165 }
2166
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002167 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2168 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2169 goto skip_data;
2170 }
2171
Christopher Fauletd9233f02019-10-14 14:01:24 +02002172 chklen = 0;
2173 if (h1m->flags & H1_MF_CHNK) {
2174 chklen = b_room(&tmp);
2175 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2176 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2177 (chklen < 1048576) ? 5 : 8);
2178 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002179
2180 /* If it is the end of the chunked message (without EOT), reserve the
2181 * last chunk size */
2182 if (last_data)
2183 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002184 }
2185
2186 if (vlen + chklen > b_room(&tmp)) {
2187 /* too large for the buffer */
2188 if (chklen >= b_room(&tmp))
2189 goto full;
2190 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002191 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002192 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002193 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002194 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002195 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002196 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002197
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002198 /* Space already reserved, so it must succeed */
2199 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2200 goto error;
2201
Christopher Faulet6b81df72019-10-01 22:08:43 +02002202 if (h1m->state == H1_MSG_DATA)
2203 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002204 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002205 else
2206 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002207 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002208
2209 skip_data:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002210 if (last_data)
2211 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002212 break;
2213
Christopher Faulet94b2c762019-05-24 15:28:57 +02002214 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002215 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002216 goto error;
2217 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002218 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002219
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002220 /* If the message is not chunked, ignore
2221 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002222 if (!(h1m->flags & H1_MF_CHNK)) {
2223 if (type == HTX_BLK_EOT)
2224 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002225 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002226 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002227
Christopher Faulete5596bf2020-12-02 16:13:22 +01002228 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2229 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 +01002230 if (type == HTX_BLK_EOT)
2231 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002232 break;
2233 }
2234
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002235 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002236 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002237 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002238 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2239 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002240 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002241 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002242 else { // HTX_BLK_TLR
2243 n = htx_get_blk_name(chn_htx, blk);
2244 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002245
2246 /* Try to adjust the case of the header name */
2247 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2248 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002249 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002250 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002251 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002252 break;
2253
Christopher Faulet94b2c762019-05-24 15:28:57 +02002254 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002255 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2256 goto error; /* For now return an error */
2257
Christopher Faulet94b2c762019-05-24 15:28:57 +02002258 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002259 if (!(chn_htx->flags & HTX_FL_EOM)) {
2260 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2261 goto error; /* For now return an error */
2262 }
2263
Christopher Faulet94b2c762019-05-24 15:28:57 +02002264 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002265 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002266 h1s->flags |= H1S_F_TX_BLK;
2267 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002268 }
2269 else if ((h1m->flags & H1_MF_RESP) &&
2270 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2271 /* a successful reply to a CONNECT or a protocol switching is sent
2272 * to the client. Switch the response to tunnel mode.
2273 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002274 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002275 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 +01002276 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002277
Christopher Faulet10a86702021-04-07 14:18:11 +02002278 if (h1s->flags & H1S_F_RX_BLK) {
2279 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002280 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002281 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 +02002282 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002283
2284 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2285 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002286 break;
2287
Christopher Faulet9768c262018-10-22 09:34:31 +02002288 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002289 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002290 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002291 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002292 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002293 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002294 TRACE_ERROR("processing output error, set error on h1c/h1s",
2295 H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002296 break;
2297 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002298
2299 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002300 total += vlen;
2301 count -= vlen;
2302 if (sz == vlen)
2303 blk = htx_remove_blk(chn_htx, blk);
2304 else {
2305 htx_cut_data_blk(chn_htx, blk, vlen);
2306 break;
2307 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002308 }
2309
Christopher Faulet9768c262018-10-22 09:34:31 +02002310 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002311 /* when the output buffer is empty, tmp shares the same area so that we
2312 * only have to update pointers and lengths.
2313 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002314 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2315 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002316 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002317 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002318
Willy Tarreau3815b222018-12-11 19:50:43 +01002319 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002320 out:
2321 if (!buf_room_for_htx_data(&h1c->obuf)) {
2322 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002323 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002324 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002325 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002326 /* Both the request and the response reached the DONE state. So set EOI
2327 * flag on the conn-stream. Most of time, the flag will already be set,
2328 * except for protocol upgrades. Report an error if data remains blocked
2329 * in the output buffer.
2330 */
2331 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2332 if (!htx_is_empty(chn_htx)) {
2333 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002334 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 +01002335 }
2336 h1s->cs->flags |= CS_FL_EOI;
2337 }
2338
Christopher Faulet6b81df72019-10-01 22:08:43 +02002339 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002340 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002341
2342 full:
2343 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2344 h1c->flags |= H1C_F_OUT_FULL;
2345 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002346}
2347
Christopher Faulet51dbc942018-09-13 09:05:15 +02002348/*********************************************************/
2349/* functions below are I/O callbacks from the connection */
2350/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002351static void h1_wake_stream_for_recv(struct h1s *h1s)
2352{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002353 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002354 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002355 tasklet_wakeup(h1s->subs->tasklet);
2356 h1s->subs->events &= ~SUB_RETRY_RECV;
2357 if (!h1s->subs->events)
2358 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002359 }
2360}
2361static void h1_wake_stream_for_send(struct h1s *h1s)
2362{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002363 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002364 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002365 tasklet_wakeup(h1s->subs->tasklet);
2366 h1s->subs->events &= ~SUB_RETRY_SEND;
2367 if (!h1s->subs->events)
2368 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002369 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002370}
2371
Christopher Fauletad4daf62021-01-21 17:49:01 +01002372/* alerts the data layer following this sequence :
2373 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2374 * - if its subscribed to send, then it's woken up for send
2375 * - if it was subscribed to neither, its ->wake() callback is called
2376 */
2377static void h1_alert(struct h1s *h1s)
2378{
2379 if (h1s->subs) {
2380 h1_wake_stream_for_recv(h1s);
2381 h1_wake_stream_for_send(h1s);
2382 }
2383 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2384 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2385 h1s->cs->data_cb->wake(h1s->cs);
2386 }
2387}
2388
Christopher Fauletc18fc232020-10-06 17:41:36 +02002389/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2390 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2391 * retryable errors (allocation error or buffer full). On success, the error is
2392 * copied in the output buffer.
2393*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002394static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002395{
2396 int rc = http_get_status_idx(h1c->errcode);
2397 int ret = 0;
2398
2399 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2400
2401 /* Verify if the error is mapped on /dev/null or any empty file */
2402 /// XXX: do a function !
2403 if (h1c->px->replies[rc] &&
2404 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2405 h1c->px->replies[rc]->body.errmsg &&
2406 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2407 /* Empty error, so claim a success */
2408 ret = 1;
2409 goto out;
2410 }
2411
2412 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2413 h1c->flags |= H1C_F_ERR_PENDING;
2414 goto out;
2415 }
2416
2417 if (!h1_get_buf(h1c, &h1c->obuf)) {
2418 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2419 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2420 goto out;
2421 }
2422 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2423 if (unlikely(ret <= 0)) {
2424 if (!ret) {
2425 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2426 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2427 goto out;
2428 }
2429 else {
2430 /* we cannot report this error, so claim a success */
2431 ret = 1;
2432 }
2433 }
2434 h1c->flags &= ~H1C_F_ERR_PENDING;
2435 out:
2436 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2437 return ret;
2438}
2439
2440/* Try to send a 500 internal error. It relies on h1_send_error to send the
2441 * error. This function takes care of incrementing stats and tracked counters.
2442 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002443static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002444{
2445 struct session *sess = h1c->conn->owner;
2446 int ret = 1;
2447
2448 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002449 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002450 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2451 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002452 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002453 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002454
2455 h1c->errcode = 500;
2456 ret = h1_send_error(h1c);
2457 sess_log(sess);
2458 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002459}
2460
Christopher Fauletc18fc232020-10-06 17:41:36 +02002461/* Try to send a 400 bad request error. It relies on h1_send_error to send the
2462 * error. This function takes care of incrementing stats and tracked counters.
2463 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002464static int h1_handle_bad_req(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002465{
2466 struct session *sess = h1c->conn->owner;
2467 int ret = 1;
2468
2469 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2470 goto end;
2471
2472 session_inc_http_req_ctr(sess);
2473 session_inc_http_err_ctr(sess);
2474 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002475 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2476 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002477 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002478 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002479
2480 h1c->errcode = 400;
2481 ret = h1_send_error(h1c);
Christopher Faulet6858d762021-07-26 09:42:49 +02002482 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2483 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002484
2485 end:
2486 return ret;
2487}
2488
Christopher Faulet2eed8002020-12-07 11:26:13 +01002489/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2490 * the error. This function takes care of incrementing stats and tracked
2491 * counters.
2492 */
2493static int h1_handle_not_impl_err(struct h1c *h1c)
2494{
2495 struct session *sess = h1c->conn->owner;
2496 int ret = 1;
2497
2498 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2499 goto end;
2500
2501 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002502 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 Faulet2eed8002020-12-07 11:26:13 +01002507
2508 h1c->errcode = 501;
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 Faulet2eed8002020-12-07 11:26:13 +01002512
2513 end:
2514 return ret;
2515}
2516
Christopher Fauletc18fc232020-10-06 17:41:36 +02002517/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2518 * error. This function takes care of incrementing stats and tracked counters.
2519 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002520static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002521{
2522 struct session *sess = h1c->conn->owner;
2523 int ret = 1;
2524
2525 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2526 goto end;
2527
2528 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002529 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002530 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2531 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002532 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002533 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002534
2535 h1c->errcode = 408;
Christopher Faulet6858d762021-07-26 09:42:49 +02002536 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2537 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002538 sess_log(sess);
2539 end:
2540 return ret;
2541}
2542
2543
Christopher Faulet51dbc942018-09-13 09:05:15 +02002544/*
2545 * Attempt to read data, and subscribe if none available
2546 */
2547static int h1_recv(struct h1c *h1c)
2548{
2549 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002550 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002551 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002552
Christopher Faulet6b81df72019-10-01 22:08:43 +02002553 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2554
2555 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2556 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002557 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002558 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002559
Christopher Fauletae635762020-09-21 11:47:16 +02002560 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2561 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002562 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002563 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002564
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002565 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2566 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002567 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002568 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002569 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002570
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002571 /*
2572 * If we only have a small amount of data, realign it,
2573 * it's probably cheaper than doing 2 recv() calls.
2574 */
2575 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
2576 b_slow_realign(&h1c->ibuf, trash.area, 0);
2577
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002578 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002579 if (!h1c->h1s ||
2580 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2581 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002582 flags |= CO_RFL_READ_ONCE;
2583
Willy Tarreau45f2b892018-12-05 07:59:27 +01002584 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002585 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002586 if (h1c->flags & H1C_F_IN_FULL) {
2587 h1c->flags &= ~H1C_F_IN_FULL;
2588 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2589 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002590
2591 if (!b_data(&h1c->ibuf)) {
2592 /* try to pre-align the buffer like the rxbufs will be
2593 * to optimize memory copies.
2594 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002595 h1c->ibuf.head = sizeof(struct htx);
2596 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002597 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002598 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002599 if (max && !ret && h1_recv_allowed(h1c)) {
2600 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2601 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002602 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002603 else {
2604 h1_wake_stream_for_recv(h1c->h1s);
2605 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002606 }
2607
Christopher Faulet51dbc942018-09-13 09:05:15 +02002608 if (!b_data(&h1c->ibuf))
2609 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002610 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002611 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002612 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2613 }
2614
2615 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002616 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002617}
2618
2619
2620/*
2621 * Try to send data if possible
2622 */
2623static int h1_send(struct h1c *h1c)
2624{
2625 struct connection *conn = h1c->conn;
2626 unsigned int flags = 0;
2627 size_t ret;
2628 int sent = 0;
2629
Christopher Faulet6b81df72019-10-01 22:08:43 +02002630 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2631
2632 if (conn->flags & CO_FL_ERROR) {
2633 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002634 b_reset(&h1c->obuf);
2635 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002636 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002637
2638 if (!b_data(&h1c->obuf))
2639 goto end;
2640
Christopher Faulet46230362019-10-17 16:04:20 +02002641 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002642 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002643 if (h1c->flags & H1C_F_CO_STREAMER)
2644 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002645
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002646 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002647 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002648 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002649 if (h1c->flags & H1C_F_OUT_FULL) {
2650 h1c->flags &= ~H1C_F_OUT_FULL;
2651 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2652 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002653 b_del(&h1c->obuf, ret);
2654 sent = 1;
2655 }
2656
Christopher Faulet145aa472018-12-06 10:56:20 +01002657 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002658 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002659 /* error or output closed, nothing to send, clear the buffer to release it */
2660 b_reset(&h1c->obuf);
2661 }
2662
Christopher Faulet51dbc942018-09-13 09:05:15 +02002663 end:
Christopher Faulet10a86702021-04-07 14:18:11 +02002664 if (!(h1c->flags & H1C_F_OUT_FULL))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002665 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002666
Christopher Faulet51dbc942018-09-13 09:05:15 +02002667 /* We're done, no more to send */
2668 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002669 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002670 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002671 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002672 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletdb451fb2021-10-27 15:36:38 +02002673 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002674 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002675 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002676 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2677 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002678 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002679 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002680
Christopher Faulet6b81df72019-10-01 22:08:43 +02002681 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002682 return sent;
2683}
2684
Christopher Faulet51dbc942018-09-13 09:05:15 +02002685/* callback called on any event by the connection handler.
2686 * It applies changes and returns zero, or < 0 if it wants immediate
2687 * destruction of the connection.
2688 */
2689static int h1_process(struct h1c * h1c)
2690{
2691 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002692 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002693
Christopher Faulet6b81df72019-10-01 22:08:43 +02002694 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2695
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002696 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002697 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletaf3b83e2021-09-16 08:16:23 +02002698 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2699 !(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 +02002700 struct buffer *buf;
2701 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002702
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002703 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2704 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002705 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002706
2707 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002708 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002709 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2710 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002711 /* Try to match H2 preface before parsing the request headers. */
2712 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2713 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002714 if (h1c->flags & H1C_F_ST_ATTACHED) {
2715 /* Force the REOS here to be sure to release the CS.
2716 Here ATTACHED implies !READY, and h1s defined
2717 */
2718 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2719 h1s->flags |= H1S_F_REOS;
2720 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002721 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002722 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002723 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002724 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002725
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002726 /* Create the H1 stream if not already there */
2727 if (!h1s) {
2728 h1s = h1c_frt_stream_new(h1c);
2729 if (!h1s) {
2730 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002731 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002732 goto no_parsing;
2733 }
2734 }
2735
2736 if (h1s->sess->t_idle == -1)
2737 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2738
2739 /* Get the stream rxbuf */
2740 buf = h1_get_buf(h1c, &h1s->rxbuf);
2741 if (!buf) {
2742 h1c->flags |= H1C_F_IN_SALLOC;
2743 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2744 return 0;
2745 }
2746
2747 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
2748 h1_process_input(h1c, buf, count);
2749 h1_release_buf(h1c, &h1s->rxbuf);
2750 h1_set_idle_expiration(h1c);
2751
2752 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002753 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002754 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002755 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002756 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002757 }
2758 else if (h1s->flags & H1S_F_PARSING_ERROR) {
2759 h1_handle_bad_req(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002760 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002761 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002762 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002763 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2764 h1_handle_not_impl_err(h1c);
2765 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002766 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002767 }
Christopher Fauletae635762020-09-21 11:47:16 +02002768 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002769 h1_send(h1c);
2770
Christopher Fauletbde7e052021-11-15 14:51:37 +01002771 /* H1 connection must be released ASAP if:
2772 * - an error occurred on the connection or the H1C or
2773 * - a read0 was received or
2774 * - a silent shutdown was emitted and all outgoing data sent
2775 */
2776 if ((conn->flags & CO_FL_ERROR) ||
2777 conn_xprt_read0_pending(conn) ||
2778 (h1c->flags & H1C_F_ST_ERROR) ||
2779 ((h1c->flags & H1C_F_ST_SILENT_SHUT) && !b_data(&h1c->obuf))) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002780 if (!(h1c->flags & H1C_F_ST_READY)) {
2781 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002782 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Fauletbde7e052021-11-15 14:51:37 +01002783 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN))) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002784 if (h1_handle_bad_req(h1c))
2785 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002786 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002787 }
2788
2789 /* Handle pending error, if any (only possible on frontend connection) */
2790 if (h1c->flags & H1C_F_ERR_PENDING) {
2791 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2792 if (h1_send_error(h1c))
2793 h1_send(h1c);
2794 }
Christopher Fauletae635762020-09-21 11:47:16 +02002795
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002796 /* If there is some pending outgoing data or error, just wait */
2797 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2798 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002799
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002800 /* Otherwise we can release the H1 connection */
2801 goto release;
2802 }
2803 else {
2804 /* Here there is still a H1 stream with a conn-stream.
2805 * Report the connection state at the stream level
2806 */
2807 if (conn_xprt_read0_pending(conn)) {
2808 h1s->flags |= H1S_F_REOS;
2809 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2810 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002811 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002812 h1s->cs->flags |= CS_FL_ERROR;
2813 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002814 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002815 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002816 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002817
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002818 if (!b_data(&h1c->ibuf))
2819 h1_release_buf(h1c, &h1c->ibuf);
2820
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002821 /* Check if a soft-stop is in progress.
2822 * Release idling front connection if this is the case.
2823 */
2824 if (!(h1c->flags & H1C_F_IS_BACK)) {
2825 if (unlikely(h1c->px->disabled)) {
William Dauchy4711a892022-01-05 22:53:24 +01002826 if (!(h1c->px->options & PR_O_IDLE_CLOSE_RESP) &&
2827 h1c->flags & H1C_F_WAIT_NEXT_REQ)
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002828 goto release;
2829 }
2830 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002831
2832 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2833 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2834 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002835 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002836
Christopher Faulet47365272018-10-31 17:40:50 +01002837 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002838 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002839 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002840 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002841
2842 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002843 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002844 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002845 * attached CS first. Here, the H1C must not be READY */
2846 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2847
2848 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2849 h1s->cs->flags |= CS_FL_EOS;
2850 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2851 h1s->cs->flags |= CS_FL_ERROR;
2852 h1_alert(h1s);
2853 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2854 }
2855 else {
2856 h1_release(h1c);
2857 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2858 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002859 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002860}
2861
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002862struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002863{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002864 struct connection *conn;
2865 struct tasklet *tl = (struct tasklet *)t;
2866 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002867 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002868 int ret = 0;
2869
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002870 if (state & TASK_F_USR1) {
2871 /* the tasklet was idling on an idle connection, it might have
2872 * been stolen, let's be careful!
2873 */
2874 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2875 if (tl->context == NULL) {
2876 /* The connection has been taken over by another thread,
2877 * we're no longer responsible for it, so just free the
2878 * tasklet, and do nothing.
2879 */
2880 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2881 tasklet_free(tl);
2882 return NULL;
2883 }
2884 conn = h1c->conn;
2885 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002886
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002887 /* Remove the connection from the list, to be sure nobody attempts
2888 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002889 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002890 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2891 if (conn_in_list)
2892 conn_delete_from_tree(&conn->hash_node->node);
2893
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002894 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002895 } else {
2896 /* we're certain the connection was not in an idle list */
2897 conn = h1c->conn;
2898 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2899 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002900 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002901
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002902 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002903 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002904 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002905 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002906 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002907 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002908
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002909 /* If we were in an idle list, we want to add it back into it,
2910 * unless h1_process() returned -1, which mean it has destroyed
2911 * the connection (testing !ret is enough, if h1_process() wasn't
2912 * called then ret will be 0 anyway.
2913 */
Willy Tarreau74163142021-03-13 11:30:19 +01002914 if (ret < 0)
2915 t = NULL;
2916
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002917 if (!ret && conn_in_list) {
2918 struct server *srv = objt_server(conn->target);
2919
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002920 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002921 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002922 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002923 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002924 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002925 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002926 }
Willy Tarreau74163142021-03-13 11:30:19 +01002927 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002928}
2929
Christopher Faulet51dbc942018-09-13 09:05:15 +02002930static int h1_wake(struct connection *conn)
2931{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002932 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002933 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002934
Christopher Faulet6b81df72019-10-01 22:08:43 +02002935 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2936
Christopher Faulet539e0292018-11-19 10:40:09 +01002937 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002938 ret = h1_process(h1c);
2939 if (ret == 0) {
2940 struct h1s *h1s = h1c->h1s;
2941
Christopher Fauletad4daf62021-01-21 17:49:01 +01002942 if (h1c->flags & H1C_F_ST_ATTACHED)
2943 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002944 }
2945 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002946}
2947
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002948/* Connection timeout management. The principle is that if there's no receipt
2949 * nor sending for a certain amount of time, the connection is closed.
2950 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002951struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002952{
2953 struct h1c *h1c = context;
2954 int expired = tick_is_expired(t->expire, now_ms);
2955
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002956 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002957
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002958 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002959 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002960 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002961
2962 /* Somebody already stole the connection from us, so we should not
2963 * free it, we just have to free the task.
2964 */
2965 if (!t->context) {
2966 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002967 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002968 goto do_leave;
2969 }
2970
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002971 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002972 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002973 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002974 return t;
2975 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002976
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002977 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002978 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002979 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002980 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002981 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002982 t->expire = TICK_ETERNITY;
2983 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
2984 return t;
2985 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002986
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002987 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002988 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
2989 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002990 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002991 if (h1_handle_req_tout(h1c))
2992 h1_send(h1c);
2993 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
2994 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002995 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002996 return t;
2997 }
2998 }
2999
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003000 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003001 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003002 * attached CS first. Here, the H1C must not be READY */
3003 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3004 h1_alert(h1c->h1s);
3005 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003006 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003007 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3008 return t;
3009 }
3010
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003011 /* We're about to destroy the connection, so make sure nobody attempts
3012 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003013 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003014 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003015 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003016
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003017 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003018 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003019
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003020 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003021 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003022
3023 if (!h1c) {
3024 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003025 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003026 return NULL;
3027 }
3028
3029 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003030 h1_release(h1c);
3031 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003032 return NULL;
3033}
3034
Christopher Faulet51dbc942018-09-13 09:05:15 +02003035/*******************************************/
3036/* functions below are used by the streams */
3037/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003038
Christopher Faulet51dbc942018-09-13 09:05:15 +02003039/*
3040 * Attach a new stream to a connection
3041 * (Used for outgoing connections)
3042 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003043static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003044{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003045 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003046 struct conn_stream *cs = NULL;
3047 struct h1s *h1s;
3048
Christopher Faulet6b81df72019-10-01 22:08:43 +02003049 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003050 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003051 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3052 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003053 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003054
Christopher Faulet236c93b2020-07-02 09:19:54 +02003055 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003056 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003057 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3058 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003059 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003060
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003061 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003062 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003063 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3064 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003065 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003066
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003067 /* the connection is not idle anymore, let's mark this */
3068 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003069 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003070
Christopher Faulet6b81df72019-10-01 22:08:43 +02003071 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003072 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003073 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003074 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003075 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 +02003076 return NULL;
3077}
3078
3079/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3080 * this mux, it's easy as we can only store a single conn_stream.
3081 */
3082static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3083{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003084 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003085 struct h1s *h1s = h1c->h1s;
3086
3087 if (h1s)
3088 return h1s->cs;
3089
3090 return NULL;
3091}
3092
Christopher Faulet73c12072019-04-08 11:23:22 +02003093static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003094{
Christopher Faulet73c12072019-04-08 11:23:22 +02003095 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003096
Christopher Faulet6b81df72019-10-01 22:08:43 +02003097 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003098 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003099 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003100}
3101
3102/*
3103 * Detach the stream from the connection and possibly release the connection.
3104 */
3105static void h1_detach(struct conn_stream *cs)
3106{
3107 struct h1s *h1s = cs->ctx;
3108 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003109 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003110 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003111
Christopher Faulet6b81df72019-10-01 22:08:43 +02003112 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3113
Christopher Faulet51dbc942018-09-13 09:05:15 +02003114 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003115 if (!h1s) {
3116 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003117 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003118 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003119
Olivier Houchardf502aca2018-12-14 19:42:40 +01003120 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003121 h1c = h1s->h1c;
3122 h1s->cs = NULL;
3123
Christopher Faulet42849b02020-10-05 11:35:17 +02003124 sess->accept_date = date;
3125 sess->tv_accept = now;
3126 sess->t_handshake = 0;
3127 sess->t_idle = -1;
3128
Olivier Houchard8a786902018-12-15 16:05:40 +01003129 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3130 h1s_destroy(h1s);
3131
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003132 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 +02003133 /* If there are any excess server data in the input buffer,
3134 * release it and close the connection ASAP (some data may
3135 * remain in the output buffer). This happens if a server sends
3136 * invalid responses. So in such case, we don't want to reuse
3137 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003138 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003139 if (b_data(&h1c->ibuf)) {
3140 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003141 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003142 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003143 goto release;
3144 }
Christopher Faulet03627242019-07-19 11:34:08 +02003145
Christopher Faulet08016ab2020-07-01 16:10:06 +02003146 if (h1c->conn->flags & CO_FL_PRIVATE) {
3147 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003148 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3149 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003150 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003151 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003152 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003153 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003154 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003155 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003156 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3157 goto end;
3158 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003159 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003160 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003161 if (h1c->conn->owner == sess)
3162 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003163
3164 /* mark that the tasklet may lose its context to another thread and
3165 * that the handler needs to check it under the idle conns lock.
3166 */
3167 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003168 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003169 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3170
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003171 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003172 /* The server doesn't want it, let's kill the connection right away */
3173 h1c->conn->mux->destroy(h1c);
3174 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3175 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003176 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003177 /* At this point, the connection has been added to the
3178 * server idle list, so another thread may already have
3179 * hijacked it, so we can't do anything with it.
3180 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003181 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003182 }
3183 }
3184
Christopher Fauletf1204b82019-07-19 14:51:06 +02003185 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003186 /* 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 +01003187 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003188 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003189 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003190 !h1c->conn->owner) {
3191 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003192 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003193 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003194 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003195 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003196 /* If we have a new request, process it immediately or
3197 * subscribe for reads waiting for new data
3198 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003199 if (unlikely(b_data(&h1c->ibuf))) {
3200 if (h1_process(h1c) == -1)
3201 goto end;
3202 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003203 else
3204 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3205 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003206 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003207 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003208 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003209 end:
3210 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003211}
3212
3213
3214static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3215{
3216 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003217 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003218
3219 if (!h1s)
3220 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003221 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003222
Christopher Fauletea62e182021-11-10 10:30:15 +01003223 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003224
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003225 if (cs->flags & CS_FL_SHR)
3226 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003227 if (cs->flags & CS_FL_KILL_CONN) {
3228 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3229 goto do_shutr;
3230 }
3231 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3232 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003233 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003234 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003235
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003236 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3237 /* Here attached is implicit because there is CS */
3238 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3239 goto end;
3240 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003241 if (h1s->flags & H1S_F_WANT_KAL) {
3242 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003243 goto end;
3244 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003245
Christopher Faulet7f366362019-04-08 10:51:20 +02003246 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003247 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3248 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003249 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003250 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003251 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003252 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003253 end:
3254 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003255}
3256
3257static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3258{
3259 struct h1s *h1s = cs->ctx;
3260 struct h1c *h1c;
3261
3262 if (!h1s)
3263 return;
3264 h1c = h1s->h1c;
3265
Christopher Fauletea62e182021-11-10 10:30:15 +01003266 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s, 0, (size_t[]){mode});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003267
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003268 if (cs->flags & CS_FL_SHW)
3269 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003270 if (cs->flags & CS_FL_KILL_CONN) {
3271 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003272 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003273 }
3274 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3275 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3276 goto do_shutw;
3277 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003278
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003279 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3280 /* Here attached is implicit because there is CS */
3281 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3282 goto end;
3283 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003284 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3285 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003286 goto end;
3287 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003288
Christopher Faulet7f366362019-04-08 10:51:20 +02003289 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003290 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003291 if (mode != CS_SHW_NORMAL)
3292 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3293
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003294 if (!b_data(&h1c->obuf))
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003295 h1_shutw_conn(cs->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003296 end:
3297 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003298}
3299
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003300static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003301{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003302 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003303
Willy Tarreau62592ad2021-03-26 09:09:42 +01003304 if (conn->flags & CO_FL_SOCK_WR_SH)
3305 return;
3306
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003307 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003308 conn_xprt_shutw(conn);
Christopher Fauletdb451fb2021-10-27 15:36:38 +02003309 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3310 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003311}
3312
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003313/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3314 * The <es> pointer is not allowed to differ from the one passed to the
3315 * subscribe() call. It always returns zero.
3316 */
3317static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003318{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003319 struct h1s *h1s = cs->ctx;
3320
3321 if (!h1s)
3322 return 0;
3323
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003324 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003325 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003326
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003327 es->events &= ~event_type;
3328 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003329 h1s->subs = NULL;
3330
3331 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003332 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003333
3334 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003335 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003336
Christopher Faulet51dbc942018-09-13 09:05:15 +02003337 return 0;
3338}
3339
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003340/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3341 * event subscriber <es> is not allowed to change from a previous call as long
3342 * as at least one event is still subscribed. The <event_type> must only be a
3343 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3344 * the conn_stream <cs> was already detached, in which case it will return -1.
3345 */
3346static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003347{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003348 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003349 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003350
3351 if (!h1s)
3352 return -1;
3353
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003354 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003355 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003356
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003357 es->events |= event_type;
3358 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003359
3360 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003361 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003362
3363
Christopher Faulet6b81df72019-10-01 22:08:43 +02003364 if (event_type & SUB_RETRY_SEND) {
3365 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003366 /*
3367 * If the conn_stream attempt to subscribe, and the
3368 * mux isn't subscribed to the connection, then it
3369 * probably means the connection wasn't established
3370 * yet, so we have to subscribe.
3371 */
3372 h1c = h1s->h1c;
3373 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3374 h1c->conn->xprt->subscribe(h1c->conn,
3375 h1c->conn->xprt_ctx,
3376 SUB_RETRY_SEND,
3377 &h1c->wait_event);
3378 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003379 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003380}
3381
Christopher Faulet93a466b2021-09-21 15:50:55 +02003382/* Called from the upper layer, to receive data.
3383 *
3384 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3385 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3386 * means the caller wants to flush input data (from the mux buffer and the
3387 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3388 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3389 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3390 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3391 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3392 * copy as much data as possible.
3393 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003394static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3395{
3396 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003397 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003398 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003399 size_t ret = 0;
3400
Willy Tarreau022e5e52020-09-10 09:33:15 +02003401 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003402
3403 /* Do nothing for now if not READY */
3404 if (!(h1c->flags & H1C_F_ST_READY)) {
3405 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3406 goto end;
3407 }
3408
Christopher Faulet539e0292018-11-19 10:40:09 +01003409 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02003410 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003411 else
3412 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003413
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003414 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3415 h1c->flags |= H1C_F_WANT_SPLICE;
3416 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 +02003417 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003418 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003419 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 +01003420 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003421 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003422
3423 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003424 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003425 return ret;
3426}
3427
3428
3429/* Called from the upper layer, to send data */
3430static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3431{
3432 struct h1s *h1s = cs->ctx;
3433 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003434 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003435
3436 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003437 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003438 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003439
Willy Tarreau022e5e52020-09-10 09:33:15 +02003440 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003441
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003442 /* If we're not connected yet, or we're waiting for a handshake, stop
3443 * now, as we don't want to remove everything from the channel buffer
3444 * before we're sure we can send it.
3445 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003446 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003447 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003448 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003449 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003450
Christopher Fauletdea24742021-01-22 15:12:30 +01003451 if (h1c->flags & H1C_F_ST_ERROR) {
3452 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003453 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 +01003454 return 0;
3455 }
3456
Christopher Faulet46230362019-10-17 16:04:20 +02003457 /* Inherit some flags from the upper layer */
3458 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3459 if (flags & CO_SFL_MSG_MORE)
3460 h1c->flags |= H1C_F_CO_MSG_MORE;
3461 if (flags & CO_SFL_STREAMER)
3462 h1c->flags |= H1C_F_CO_STREAMER;
3463
Christopher Fauletc31872f2019-06-04 22:09:36 +02003464 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003465 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003466
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003467 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
3468 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003469 else
3470 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003471
3472 if ((count - ret) > 0)
3473 h1c->flags |= H1C_F_CO_MSG_MORE;
3474
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003475 if (!ret)
3476 break;
3477 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003478 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003479 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003480 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003481 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003482
3483 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003484 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003485 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 +01003486 }
3487
Christopher Faulet7a145d62020-08-05 11:31:16 +02003488 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003489 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003490 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003491}
3492
Willy Tarreaue5733232019-05-22 19:24:06 +02003493#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003494/* Send and get, using splicing */
3495static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3496{
3497 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003498 struct h1c *h1c = h1s->h1c;
3499 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003500 int ret = 0;
3501
Willy Tarreau022e5e52020-09-10 09:33:15 +02003502 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003503
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003504 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003505 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003506 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 +02003507 goto end;
3508 }
3509
Christopher Faulet0b34e512021-07-26 10:49:39 +02003510 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003511 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003512 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003513 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003514 }
3515
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003516 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003517 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3518 goto end;
3519 }
3520
Christopher Faulet1be55f92018-10-02 15:59:23 +02003521 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
3522 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003523 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02003524 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02003525 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003526 if (!h1m->curr_len) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003527 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003528 TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003529 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003530 }
3531
Christopher Faulet1be55f92018-10-02 15:59:23 +02003532 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003533 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003534 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003535 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003536 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003537 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003538
Christopher Faulet94d35102021-04-09 11:58:49 +02003539 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003540 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003541 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003542 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3543 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3544 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3545 }
Christopher Faulet27182292020-07-03 15:08:49 +02003546 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003547
Willy Tarreau022e5e52020-09-10 09:33:15 +02003548 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003549 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003550}
3551
3552static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3553{
3554 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003555 int ret = 0;
3556
Willy Tarreau022e5e52020-09-10 09:33:15 +02003557 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003558
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003559 if (b_data(&h1s->h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003560 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
3561 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003562 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003563 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003564 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003565 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003566
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003567 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
3568
3569 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003570 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003571 return ret;
3572}
3573#endif
3574
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003575static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3576{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003577 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003578 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003579
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003580 switch (mux_ctl) {
3581 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003582 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003583 ret |= MUX_STATUS_READY;
3584 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003585 case MUX_EXIT_STATUS:
Christopher Fauletc18fc232020-10-06 17:41:36 +02003586 ret = (h1c->errcode == 400 ? MUX_ES_INVALID_ERR :
3587 (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003588 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3589 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3590 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003591 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003592 default:
3593 return -1;
3594 }
3595}
3596
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003597/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003598static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003599{
3600 struct h1c *h1c = conn->ctx;
3601 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003602 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003603
Christopher Fauletf376a312019-01-04 15:16:06 +01003604 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3605 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003606 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3607 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3608 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3609 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3610
3611 if (h1s) {
3612 char *method;
3613
3614 if (h1s->meth < HTTP_METH_OTHER)
3615 method = http_known_methods[h1s->meth].ptr;
3616 else
3617 method = "UNKNOWN";
3618 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3619 " .meth=%s status=%d",
3620 h1s, h1s->flags,
3621 h1m_state_str(h1s->req.state),
3622 h1m_state_str(h1s->res.state), method, h1s->status);
3623 if (h1s->cs)
3624 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3625 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003626
3627 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3628 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003629 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3630 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3631 h1s->subs->tasklet->calls,
3632 h1s->subs->tasklet->context);
3633 if (h1s->subs->tasklet->calls >= 1000000)
3634 ret = 1;
3635 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3636 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003637 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003638 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003639 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003640}
3641
3642
3643/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3644static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3645{
3646 struct h1_hdr_entry *entry;
3647
3648 /* Be sure there is a non-empty <to> */
3649 if (!strlen(to)) {
3650 memprintf(err, "expect <to>");
3651 return -1;
3652 }
3653
3654 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003655 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003656 memprintf(err, "<from> and <to> must not differ execpt the case");
3657 return -1;
3658 }
3659
3660 /* Be sure <from> does not already existsin the tree */
3661 if (ebis_lookup(&hdrs_map.map, from)) {
3662 memprintf(err, "duplicate entry '%s'", from);
3663 return -1;
3664 }
3665
3666 /* Create the entry and insert it in the tree */
3667 entry = malloc(sizeof(*entry));
3668 if (!entry) {
3669 memprintf(err, "out of memory");
3670 return -1;
3671 }
3672
3673 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003674 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003675 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003676 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003677 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003678 free(entry);
3679 memprintf(err, "out of memory");
3680 return -1;
3681 }
3682 ebis_insert(&hdrs_map.map, &entry->node);
3683 return 0;
3684}
3685
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003686/* Migrate the the connection to the current thread.
3687 * Return 0 if successful, non-zero otherwise.
3688 * Expected to be called with the old thread lock held.
3689 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003690static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003691{
3692 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003693 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003694
3695 if (fd_takeover(conn->handle.fd, conn) != 0)
3696 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003697
3698 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3699 /* We failed to takeover the xprt, even if the connection may
3700 * still be valid, flag it as error'd, as we have already
3701 * taken over the fd, and wake the tasklet, so that it will
3702 * destroy it.
3703 */
3704 conn->flags |= CO_FL_ERROR;
3705 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3706 return -1;
3707 }
3708
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003709 if (h1c->wait_event.events)
3710 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3711 h1c->wait_event.events, &h1c->wait_event);
3712 /* To let the tasklet know it should free itself, and do nothing else,
3713 * set its context to NULL.
3714 */
3715 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003716 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003717
3718 task = h1c->task;
3719 if (task) {
3720 task->context = NULL;
3721 h1c->task = NULL;
3722 __ha_barrier_store();
3723 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003724
3725 h1c->task = task_new(tid_bit);
3726 if (!h1c->task) {
3727 h1_release(h1c);
3728 return -1;
3729 }
3730 h1c->task->process = h1_timeout_task;
3731 h1c->task->context = h1c;
3732 }
3733 h1c->wait_event.tasklet = tasklet_new();
3734 if (!h1c->wait_event.tasklet) {
3735 h1_release(h1c);
3736 return -1;
3737 }
3738 h1c->wait_event.tasklet->process = h1_io_cb;
3739 h1c->wait_event.tasklet->context = h1c;
3740 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3741 SUB_RETRY_RECV, &h1c->wait_event);
3742
3743 return 0;
3744}
3745
3746
Christopher Faulet98fbe952019-07-22 16:18:24 +02003747static void h1_hdeaders_case_adjust_deinit()
3748{
3749 struct ebpt_node *node, *next;
3750 struct h1_hdr_entry *entry;
3751
3752 node = ebpt_first(&hdrs_map.map);
3753 while (node) {
3754 next = ebpt_next(node);
3755 ebpt_delete(node);
3756 entry = container_of(node, struct h1_hdr_entry, node);
3757 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003758 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003759 free(entry);
3760 node = next;
3761 }
3762 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003763}
3764
Christopher Faulet98fbe952019-07-22 16:18:24 +02003765static int cfg_h1_headers_case_adjust_postparser()
3766{
3767 FILE *file = NULL;
3768 char *c, *key_beg, *key_end, *value_beg, *value_end;
3769 char *err;
3770 int rc, line = 0, err_code = 0;
3771
3772 if (!hdrs_map.name)
3773 goto end;
3774
3775 file = fopen(hdrs_map.name, "r");
3776 if (!file) {
3777 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
3778 hdrs_map.name);
3779 err_code |= ERR_ALERT | ERR_FATAL;
3780 goto end;
3781 }
3782
3783 /* now parse all lines. The file may contain only two header name per
3784 * line, separated by spaces. All heading and trailing spaces will be
3785 * ignored. Lines starting with a # are ignored.
3786 */
3787 while (fgets(trash.area, trash.size, file) != NULL) {
3788 line++;
3789 c = trash.area;
3790
3791 /* strip leading spaces and tabs */
3792 while (*c == ' ' || *c == '\t')
3793 c++;
3794
3795 /* ignore emptu lines, or lines beginning with a dash */
3796 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3797 continue;
3798
3799 /* look for the end of the key */
3800 key_beg = c;
3801 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3802 c++;
3803 key_end = c;
3804
3805 /* strip middle spaces and tabs */
3806 while (*c == ' ' || *c == '\t')
3807 c++;
3808
3809 /* look for the end of the value, it is the end of the line */
3810 value_beg = c;
3811 while (*c && *c != '\n' && *c != '\r')
3812 c++;
3813 value_end = c;
3814
3815 /* trim possibly trailing spaces and tabs */
3816 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3817 value_end--;
3818
3819 /* set final \0 and check entries */
3820 *key_end = '\0';
3821 *value_end = '\0';
3822
3823 err = NULL;
3824 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3825 if (rc < 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003826 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3827 hdrs_map.name, err, line);
3828 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003829 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003830 goto end;
3831 }
3832 if (rc > 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003833 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3834 hdrs_map.name, err, line);
3835 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003836 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003837 }
3838 }
3839
3840 end:
3841 if (file)
3842 fclose(file);
3843 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3844 return err_code;
3845}
3846
3847
3848/* config parser for global "h1-outgoing-header-case-adjust" */
3849static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003850 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003851 char **err)
3852{
3853 if (too_many_args(2, args, err, NULL))
3854 return -1;
3855 if (!*(args[1]) || !*(args[2])) {
3856 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3857 return -1;
3858 }
3859 return add_hdr_case_adjust(args[1], args[2], err);
3860}
3861
3862/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3863static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003864 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003865 char **err)
3866{
3867 if (too_many_args(1, args, err, NULL))
3868 return -1;
3869 if (!*(args[1])) {
3870 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3871 return -1;
3872 }
3873 free(hdrs_map.name);
3874 hdrs_map.name = strdup(args[1]);
3875 return 0;
3876}
3877
3878
3879/* config keyword parsers */
3880static struct cfg_kw_list cfg_kws = {{ }, {
3881 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3882 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3883 { 0, NULL, NULL },
3884 }
3885};
3886
3887INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3888REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3889
3890
Christopher Faulet51dbc942018-09-13 09:05:15 +02003891/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003892/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003893/****************************************/
3894
3895/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003896static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003897 .init = h1_init,
3898 .wake = h1_wake,
3899 .attach = h1_attach,
3900 .get_first_cs = h1_get_first_cs,
3901 .detach = h1_detach,
3902 .destroy = h1_destroy,
3903 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003904 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003905 .rcv_buf = h1_rcv_buf,
3906 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003907#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003908 .rcv_pipe = h1_rcv_pipe,
3909 .snd_pipe = h1_snd_pipe,
3910#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003911 .subscribe = h1_subscribe,
3912 .unsubscribe = h1_unsubscribe,
3913 .shutr = h1_shutr,
3914 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003915 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003916 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003917 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003918 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003919 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003920};
3921
Christopher Faulet3f612f72021-02-05 16:44:21 +01003922static const struct mux_ops mux_h1_ops = {
3923 .init = h1_init,
3924 .wake = h1_wake,
3925 .attach = h1_attach,
3926 .get_first_cs = h1_get_first_cs,
3927 .detach = h1_detach,
3928 .destroy = h1_destroy,
3929 .avail_streams = h1_avail_streams,
3930 .used_streams = h1_used_streams,
3931 .rcv_buf = h1_rcv_buf,
3932 .snd_buf = h1_snd_buf,
3933#if defined(USE_LINUX_SPLICE)
3934 .rcv_pipe = h1_rcv_pipe,
3935 .snd_pipe = h1_snd_pipe,
3936#endif
3937 .subscribe = h1_subscribe,
3938 .unsubscribe = h1_unsubscribe,
3939 .shutr = h1_shutr,
3940 .shutw = h1_shutw,
3941 .show_fd = h1_show_fd,
3942 .ctl = h1_ctl,
3943 .takeover = h1_takeover,
3944 .flags = MX_FL_HTX|MX_FL_NO_UPG,
3945 .name = "H1",
3946};
Christopher Faulet51dbc942018-09-13 09:05:15 +02003947
Christopher Faulet3f612f72021-02-05 16:44:21 +01003948/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
3949static struct mux_proto_list mux_proto_h1 =
3950 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
3951static struct mux_proto_list mux_proto_http =
3952 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02003953
Christopher Faulet3f612f72021-02-05 16:44:21 +01003954INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
3955INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01003956
Christopher Faulet51dbc942018-09-13 09:05:15 +02003957/*
3958 * Local variables:
3959 * c-indent-level: 8
3960 * c-basic-offset: 8
3961 * End:
3962 */