blob: 63270e91495e685fc685f14d1596c8a2da2918a4 [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>
Willy Tarreau63617db2021-10-06 18:23:40 +020013#include <import/ebmbtree.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020014
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020017#include <haproxy/connection.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020018#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020019#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020020#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020022#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/istbuf.h>
24#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020025#include <haproxy/pipe-t.h>
Willy Tarreauadc02402021-05-08 20:28:54 +020026#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020027#include <haproxy/session-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020028#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020029#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020030#include <haproxy/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020031
32/*
33 * H1 Connection flags (32 bits)
34 */
35#define H1C_F_NONE 0x00000000
36
37/* Flags indicating why writing output data are blocked */
38#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
39#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
40/* 0x00000004 - 0x00000008 unused */
41
42/* Flags indicating why reading input data are blocked. */
43#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
44#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletd17ad822020-09-24 15:14:29 +020045#define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */
Christopher Faulet51dbc942018-09-13 09:05:15 +020046
Christopher Faulet7b109f22019-12-05 11:18:31 +010047/* Flags indicating the connection state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +010048#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 +010049#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 +010050#define H1C_F_ST_IDLE 0x00000400 /* connection is idle and may be reused
51 * (exclusive to all H1C_F_ST flags and never set when an h1s is attached) */
52#define H1C_F_ST_ERROR 0x00000800 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */
53#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 +010054#define H1C_F_ST_READY 0x00002000 /* Set in ATTACHED state with a READY conn-stream. A conn-stream is not ready when
55 * 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 +010056#define H1C_F_ST_ALIVE (H1C_F_ST_IDLE|H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED)
Christopher Fauleta85c5222021-10-27 15:36:38 +020057#define H1C_F_ST_SILENT_SHUT 0x00004000 /* silent (or dirty) shutdown must be performed */
58/* 0x00008000 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020059
Christopher Fauletb385b502021-01-13 18:47:57 +010060#define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */
61#define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */
62#define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */
63#define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */
64#define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
65#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 +020066
Christopher Faulet10a86702021-04-07 14:18:11 +020067/* 0x00400000 - 0x40000000 unusued*/
Christopher Faulet3ced1d12020-11-27 16:44:01 +010068#define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */
Christopher Faulet46230362019-10-17 16:04:20 +020069
Christopher Faulet51dbc942018-09-13 09:05:15 +020070/*
71 * H1 Stream flags (32 bits)
72 */
Christopher Faulet129817b2018-09-20 16:14:40 +020073#define H1S_F_NONE 0x00000000
Christopher Faulet10a86702021-04-07 14:18:11 +020074
75#define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */
76#define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */
Christopher Faulet46e058d2021-09-20 07:47:27 +020077#define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */
78
Willy Tarreauc493c9c2019-06-03 14:18:22 +020079#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020080#define H1S_F_WANT_KAL 0x00000010
81#define H1S_F_WANT_TUN 0x00000020
82#define H1S_F_WANT_CLO 0x00000040
83#define H1S_F_WANT_MSK 0x00000070
84#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet5696f542020-12-02 16:08:38 +010085#define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020086
Ilya Shipitsinacf84592021-02-06 22:29:08 +050087/* 0x00000200 unused */
Christopher Faulet2eed8002020-12-07 11:26:13 +010088#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 +020089#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
90#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
91#define H1S_F_ERROR 0x00001800 /* stream error mask */
92
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020093#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 +020094#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020095
96/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020097struct h1c {
98 struct connection *conn;
99 struct proxy *px;
100 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +0200101 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200102 struct buffer ibuf; /* Input buffer to store data before parsing */
103 struct buffer obuf; /* Output buffer to store data after reformatting */
104
105 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
106 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
107
108 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100109 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200110 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
111 int timeout; /* client/server timeout duration */
112 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200113};
114
115/* H1 stream descriptor */
116struct h1s {
117 struct h1c *h1c;
118 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100119 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200120
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100121 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200122
Olivier Houchardf502aca2018-12-14 19:42:40 +0100123 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200124 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200125 struct h1m req;
126 struct h1m res;
127
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500128 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200129 uint16_t status; /* HTTP response status */
Amaury Denoyellec1938232020-12-11 17:53:03 +0100130
131 char ws_key[25]; /* websocket handshake key */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200132};
133
Christopher Faulet98fbe952019-07-22 16:18:24 +0200134/* Map of headers used to convert outgoing headers */
135struct h1_hdrs_map {
136 char *name;
137 struct eb_root map;
138};
139
140/* An entry in a headers map */
141struct h1_hdr_entry {
142 struct ist name;
143 struct ebpt_node node;
144};
145
146/* Declare the headers map */
147static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
148
149
Christopher Faulet6b81df72019-10-01 22:08:43 +0200150/* trace source and events */
151static void h1_trace(enum trace_level level, uint64_t mask,
152 const struct trace_source *src,
153 const struct ist where, const struct ist func,
154 const void *a1, const void *a2, const void *a3, const void *a4);
155
156/* The event representation is split like this :
157 * h1c - internal H1 connection
158 * h1s - internal H1 stream
159 * strm - application layer
160 * rx - data receipt
161 * tx - data transmission
162 *
163 */
164static const struct trace_event h1_trace_events[] = {
165#define H1_EV_H1C_NEW (1ULL << 0)
166 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
167#define H1_EV_H1C_RECV (1ULL << 1)
168 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
169#define H1_EV_H1C_SEND (1ULL << 2)
170 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
171#define H1_EV_H1C_BLK (1ULL << 3)
172 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
173#define H1_EV_H1C_WAKE (1ULL << 4)
174 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
175#define H1_EV_H1C_END (1ULL << 5)
176 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
177#define H1_EV_H1C_ERR (1ULL << 6)
178 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
179
180#define H1_EV_RX_DATA (1ULL << 7)
181 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
182#define H1_EV_RX_EOI (1ULL << 8)
183 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
184#define H1_EV_RX_HDRS (1ULL << 9)
185 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
186#define H1_EV_RX_BODY (1ULL << 10)
187 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
188#define H1_EV_RX_TLRS (1ULL << 11)
189 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
190
191#define H1_EV_TX_DATA (1ULL << 12)
192 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
193#define H1_EV_TX_EOI (1ULL << 13)
194 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
195#define H1_EV_TX_HDRS (1ULL << 14)
196 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
197#define H1_EV_TX_BODY (1ULL << 15)
198 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
199#define H1_EV_TX_TLRS (1ULL << 16)
200 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
201
202#define H1_EV_H1S_NEW (1ULL << 17)
203 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
204#define H1_EV_H1S_BLK (1ULL << 18)
205 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
206#define H1_EV_H1S_END (1ULL << 19)
207 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
208#define H1_EV_H1S_ERR (1ULL << 20)
209 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
210
211#define H1_EV_STRM_NEW (1ULL << 21)
212 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
213#define H1_EV_STRM_RECV (1ULL << 22)
214 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
215#define H1_EV_STRM_SEND (1ULL << 23)
216 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
217#define H1_EV_STRM_WAKE (1ULL << 24)
218 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
219#define H1_EV_STRM_SHUT (1ULL << 25)
220 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
221#define H1_EV_STRM_END (1ULL << 26)
222 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
223#define H1_EV_STRM_ERR (1ULL << 27)
224 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
225
226 { }
227};
228
229static const struct name_desc h1_trace_lockon_args[4] = {
230 /* arg1 */ { /* already used by the connection */ },
231 /* arg2 */ { .name="h1s", .desc="H1 stream" },
232 /* arg3 */ { },
233 /* arg4 */ { }
234};
235
236static const struct name_desc h1_trace_decoding[] = {
237#define H1_VERB_CLEAN 1
238 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
239#define H1_VERB_MINIMAL 2
240 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
241#define H1_VERB_SIMPLE 3
242 { .name="simple", .desc="add request/response status line or htx info when available" },
243#define H1_VERB_ADVANCED 4
244 { .name="advanced", .desc="add header fields or frame decoding when available" },
245#define H1_VERB_COMPLETE 5
246 { .name="complete", .desc="add full data dump when available" },
247 { /* end */ }
248};
249
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200250static struct trace_source trace_h1 __read_mostly = {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200251 .name = IST("h1"),
252 .desc = "HTTP/1 multiplexer",
253 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
254 .default_cb = h1_trace,
255 .known_events = h1_trace_events,
256 .lockon_args = h1_trace_lockon_args,
257 .decoding = h1_trace_decoding,
258 .report_events = ~0, // report everything by default
259};
260
261#define TRACE_SOURCE &trace_h1
262INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
263
Christopher Faulet51dbc942018-09-13 09:05:15 +0200264/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100265DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
266DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200267
Christopher Faulet51dbc942018-09-13 09:05:15 +0200268static int h1_recv(struct h1c *h1c);
269static int h1_send(struct h1c *h1c);
270static int h1_process(struct h1c *h1c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100271/* h1_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100272struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state);
273struct task *h1_timeout_task(struct task *t, void *context, unsigned int state);
Christopher Fauleta85c5222021-10-27 15:36:38 +0200274static void h1_shutw_conn(struct connection *conn);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200275static void h1_wake_stream_for_recv(struct h1s *h1s);
276static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200277
Christopher Faulet6b81df72019-10-01 22:08:43 +0200278/* the H1 traces always expect that arg1, if non-null, is of type connection
279 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
280 * that arg3, if non-null, is a htx for rx/tx headers.
281 */
282static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
283 const struct ist where, const struct ist func,
284 const void *a1, const void *a2, const void *a3, const void *a4)
285{
286 const struct connection *conn = a1;
287 const struct h1c *h1c = conn ? conn->ctx : NULL;
288 const struct h1s *h1s = a2;
289 const struct htx *htx = a3;
290 const size_t *val = a4;
291
292 if (!h1c)
293 h1c = (h1s ? h1s->h1c : NULL);
294
295 if (!h1c || src->verbosity < H1_VERB_CLEAN)
296 return;
297
298 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200299 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200300
301 /* Display request and response states if h1s is defined */
302 if (h1s)
303 chunk_appendf(&trace_buf, " [%s, %s]",
304 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
305
306 if (src->verbosity == H1_VERB_CLEAN)
307 return;
308
309 /* Display the value to the 4th argument (level > STATE) */
310 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100311 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200312
313 /* Display status-line if possible (verbosity > MINIMAL) */
314 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
315 const struct htx_blk *blk = htx_get_head_blk(htx);
316 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
317 enum htx_blk_type type = htx_get_blk_type(blk);
318
319 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
320 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
321 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
322 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
323 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
324 }
325
326 /* Display h1c info and, if defined, h1s info (pointer + flags) */
327 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
328 if (h1s)
329 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
330
331 if (src->verbosity == H1_VERB_MINIMAL)
332 return;
333
334 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
335 if (src->level > TRACE_LEVEL_USER) {
336 if (src->verbosity == H1_VERB_COMPLETE ||
337 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
338 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
339 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
340 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
341 if (src->verbosity == H1_VERB_COMPLETE ||
342 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
343 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
344 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
345 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
346 }
347
348 /* Display htx info if defined (level > USER) */
349 if (src->level > TRACE_LEVEL_USER && htx) {
350 int full = 0;
351
352 /* Full htx info (level > STATE && verbosity > SIMPLE) */
353 if (src->level > TRACE_LEVEL_STATE) {
354 if (src->verbosity == H1_VERB_COMPLETE)
355 full = 1;
356 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
357 full = 1;
358 }
359
360 chunk_memcat(&trace_buf, "\n\t", 2);
361 htx_dump(&trace_buf, htx, full);
362 }
363}
364
365
Christopher Faulet51dbc942018-09-13 09:05:15 +0200366/*****************************************************/
367/* functions below are for dynamic buffer management */
368/*****************************************************/
369/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100370 * Indicates whether or not we may receive data. The rules are the following :
371 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200372 * must not attempt to receive
373 * - if we are waiting for the connection establishment, we must not attempt
374 * to receive
375 * - if an error was detected on the stream we must not attempt to receive
376 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100377 * - if the input buffer failed to be allocated or is full , we must not try
378 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200379 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200380 * - otherwise must may not attempt to receive
381 */
382static inline int h1_recv_allowed(const struct h1c *h1c)
383{
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100384 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100385 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 +0200386 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200387 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200388
Willy Tarreau2febb842020-07-31 09:15:43 +0200389 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
390 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 +0100391 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200392 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100393
Christopher Faulet119ac872020-09-30 17:33:22 +0200394 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
395 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
396 return 0;
397 }
398
Christopher Fauletd17ad822020-09-24 15:14:29 +0200399 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200400 return 1;
401
Christopher Faulet6b81df72019-10-01 22:08:43 +0200402 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 +0200403 return 0;
404}
405
406/*
407 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
408 * flags are used to figure what buffer was requested. It returns 1 if the
409 * allocation succeeds, in which case the connection is woken up, or 0 if it's
410 * impossible to wake up and we prefer to be woken up later.
411 */
412static int h1_buf_available(void *target)
413{
414 struct h1c *h1c = target;
415
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100416 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200417 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 +0200418 h1c->flags &= ~H1C_F_IN_ALLOC;
419 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200420 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200421 return 1;
422 }
423
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100424 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200425 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 +0200426 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200427 if (h1c->h1s)
428 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200429 return 1;
430 }
431
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100432 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) {
Christopher Fauletd17ad822020-09-24 15:14:29 +0200433 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
434 h1c->flags &= ~H1C_F_IN_SALLOC;
435 tasklet_wakeup(h1c->wait_event.tasklet);
436 return 1;
437 }
438
Christopher Faulet51dbc942018-09-13 09:05:15 +0200439 return 0;
440}
441
442/*
443 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
444 */
445static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
446{
447 struct buffer *buf = NULL;
448
Willy Tarreau2b718102021-04-21 07:32:39 +0200449 if (likely(!LIST_INLIST(&h1c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100450 unlikely((buf = b_alloc(bptr)) == NULL)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +0200451 h1c->buf_wait.target = h1c;
452 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200453 LIST_APPEND(&th_ctx->buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200454 }
455 return buf;
456}
457
458/*
459 * Release a buffer, if any, and try to wake up entities waiting in the buffer
460 * wait queue.
461 */
462static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
463{
464 if (bptr->size) {
465 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100466 offer_buffers(h1c->buf_wait.target, 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200467 }
468}
469
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100470/* returns the number of streams in use on a connection to figure if it's idle
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100471 * 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 +0100472 * not. This flag is only set when no H1S is attached and when the previous
473 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100474 */
475static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200476{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100477 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200478
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100479 return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200480}
481
Willy Tarreau00f18a32019-01-26 12:19:01 +0100482/* returns the number of streams still available on a connection */
483static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100484{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100485 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100486}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200487
Christopher Faulet7a145d62020-08-05 11:31:16 +0200488/* Refresh the h1c task timeout if necessary */
489static void h1_refresh_timeout(struct h1c *h1c)
490{
491 if (h1c->task) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100492 if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200493 /* half-closed or dead connections : switch to clientfin/serverfin
494 * timeouts so that we don't hang too long on clients that have
495 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200496 */
497 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200498 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
499 }
500 else if (b_data(&h1c->obuf)) {
501 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200502 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200503 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
504 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100505 else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) {
506 /* front connections waiting for a fully usable stream need a timeout. */
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200507 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100508 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 +0200509 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200510 else {
511 /* alive back connections of front connections with a conn-stream attached */
512 h1c->task->expire = TICK_ETERNITY;
513 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
514 }
515
Christopher Fauletdbe57792020-10-05 17:50:58 +0200516 /* Finally set the idle expiration date if shorter */
517 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200518 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
519 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200520 }
521}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200522
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200523static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200524{
525 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
526 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
527 h1c->idle_exp = TICK_ETERNITY;
528 return;
529 }
530
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100531 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200532 if (!tick_isset(h1c->idle_exp)) {
533 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
534 !b_data(&h1c->ibuf) && /* No input data */
535 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
536 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
537 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
538 }
539 else {
540 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
541 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
542 }
543 }
544 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100545 else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) {
Christopher Fauletdbe57792020-10-05 17:50:58 +0200546 if (!tick_isset(h1c->idle_exp)) {
547 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
548 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
549 }
550 }
551 else { // CS_ATTACHED or SHUTDOWN
552 h1c->idle_exp = TICK_ETERNITY;
553 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
554 }
555}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200556/*****************************************************************/
557/* functions below are dedicated to the mux setup and management */
558/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200559
560/* returns non-zero if there are input data pending for stream h1s. */
561static inline size_t h1s_data_pending(const struct h1s *h1s)
562{
563 const struct h1m *h1m;
564
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200565 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100566 return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf));
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200567}
568
Christopher Faulet16df1782020-12-04 16:47:41 +0100569/* Creates a new conn-stream and the associate stream. <input> is used as input
570 * buffer for the stream. On success, it is transferred to the stream and the
571 * mux is no longer responsible of it. On error, <input> is unchanged, thus the
572 * mux must still take care of it. However, there is nothing special to do
573 * because, on success, <input> is updated to points on BUF_NULL. Thus, calling
574 * b_free() on it is always safe. This function returns the conn-stream on
575 * success or NULL on error. */
Christopher Faulet26256f82020-09-14 11:40:13 +0200576static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100577{
578 struct conn_stream *cs;
579
Christopher Faulet6b81df72019-10-01 22:08:43 +0200580 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200581 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200582 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100583 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 +0100584 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200585 }
Christopher Faulet47365272018-10-31 17:40:50 +0100586 h1s->cs = cs;
587 cs->ctx = h1s;
588
589 if (h1s->flags & H1S_F_NOT_FIRST)
590 cs->flags |= CS_FL_NOT_FIRST;
591
Amaury Denoyelle90ac6052021-10-18 14:45:49 +0200592 if (h1s->req.flags & H1_MF_UPG_WEBSOCKET)
593 cs->flags |= CS_FL_WEBSOCKET;
594
Christopher Faulet26256f82020-09-14 11:40:13 +0200595 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200596 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 +0100597 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200598 }
599
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100600 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 +0200601 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100602 return cs;
603
604 err:
605 cs_free(cs);
606 h1s->cs = NULL;
Christopher Faulet26a26432021-01-27 11:27:50 +0100607 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100608 return NULL;
609}
610
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100611static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input)
612{
613 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
614
615 if (stream_upgrade_from_cs(h1s->cs, input) < 0) {
Christopher Faulet26a26432021-01-27 11:27:50 +0100616 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 +0100617 goto err;
618 }
619
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100620 h1s->h1c->flags |= H1C_F_ST_READY;
621 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
622 return h1s->cs;
623
624 err:
Christopher Faulet26a26432021-01-27 11:27:50 +0100625 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100626 return NULL;
627}
628
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200629static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200630{
631 struct h1s *h1s;
632
Christopher Faulet6b81df72019-10-01 22:08:43 +0200633 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
634
Christopher Faulet51dbc942018-09-13 09:05:15 +0200635 h1s = pool_alloc(pool_head_h1s);
Christopher Faulet26a26432021-01-27 11:27:50 +0100636 if (!h1s) {
637 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 +0100638 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100639 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200640 h1s->h1c = h1c;
641 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200642 h1s->sess = NULL;
643 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100644 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100645 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200646 h1s->rxbuf = BUF_NULL;
Amaury Denoyellec1938232020-12-11 17:53:03 +0100647 memset(h1s->ws_key, 0, sizeof(h1s->ws_key));
Christopher Faulet129817b2018-09-20 16:14:40 +0200648
649 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100650 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200651
Christopher Faulet129817b2018-09-20 16:14:40 +0200652 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100653 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200654
655 h1s->status = 0;
656 h1s->meth = HTTP_METH_OTHER;
657
Christopher Faulet47365272018-10-31 17:40:50 +0100658 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
659 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100660 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100661
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200662 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
663 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200664
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200665 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100666 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200667 return NULL;
668}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100669
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200670static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
671{
672 struct session *sess = h1c->conn->owner;
673 struct h1s *h1s;
674
675 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
676
677 h1s = h1s_new(h1c);
678 if (!h1s)
679 goto fail;
680
681 h1s->sess = sess;
682
683 if (h1c->px->options2 & PR_O2_REQBUG_OK)
684 h1s->req.err_pos = -1;
685
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200686 h1c->idle_exp = TICK_ETERNITY;
687 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200688 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200689 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100690
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200691 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100692 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200693 return NULL;
694}
695
696static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
697{
698 struct h1s *h1s;
699
700 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
701
702 h1s = h1s_new(h1c);
703 if (!h1s)
704 goto fail;
705
Christopher Faulet10a86702021-04-07 14:18:11 +0200706 h1s->flags |= H1S_F_RX_BLK;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200707 h1s->cs = cs;
708 h1s->sess = sess;
709 cs->ctx = h1s;
710
Christopher Faulet39c7b6b2021-01-21 17:44:35 +0100711 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200712
713 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
714 h1s->res.err_pos = -1;
715
716 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
717 return h1s;
718
719 fail:
Christopher Faulet26a26432021-01-27 11:27:50 +0100720 TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100721 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200722}
723
724static void h1s_destroy(struct h1s *h1s)
725{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200726 if (h1s) {
727 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200728
Christopher Faulet6b81df72019-10-01 22:08:43 +0200729 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200730 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200731
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100732 if (h1s->subs)
733 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200734
Christopher Fauletd17ad822020-09-24 15:14:29 +0200735 h1_release_buf(h1c, &h1s->rxbuf);
736
Christopher Faulet10a86702021-04-07 14:18:11 +0200737 h1c->flags &= ~(H1C_F_WANT_SPLICE|
Christopher Fauletb385b502021-01-13 18:47:57 +0100738 H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY|
Christopher Faulet295b8d12020-09-30 17:14:55 +0200739 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
740 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200741 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100742 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +0100743 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 +0200744 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100745
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100746 if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100747 !(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 +0100748 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100749 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100750 h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100751 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
752 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200753 else {
Christopher Faulet26a26432021-01-27 11:27:50 +0100754 TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s);
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100755 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200756 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200757 pool_free(pool_head_h1s, h1s);
758 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200759}
760
761/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200762 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500763 * to the existing conn_stream (for outgoing connections or for incoming ones
764 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200765 * establishment). <input> is always used as Input buffer and may contain
766 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
767 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200768 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200769static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
770 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200771{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200772 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100773 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200774 void *conn_ctx = conn->ctx;
775
776 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200777
778 h1c = pool_alloc(pool_head_h1c);
Christopher Faulet26a26432021-01-27 11:27:50 +0100779 if (!h1c) {
780 TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200781 goto fail_h1c;
Christopher Faulet26a26432021-01-27 11:27:50 +0100782 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200783 h1c->conn = conn;
784 h1c->px = proxy;
785
Christopher Faulet3ced1d12020-11-27 16:44:01 +0100786 h1c->flags = H1C_F_ST_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200787 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200788 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200789 h1c->obuf = BUF_NULL;
790 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200791 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200792
Willy Tarreau90f366b2021-02-20 11:49:49 +0100793 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200794 h1c->wait_event.tasklet = tasklet_new();
795 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200796 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200797 h1c->wait_event.tasklet->process = h1_io_cb;
798 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100799 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200800 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200801
Christopher Faulete9b70722019-04-08 10:46:02 +0200802 if (conn_is_back(conn)) {
Christopher Faulet10a86702021-04-07 14:18:11 +0200803 h1c->flags |= H1C_F_IS_BACK;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100804 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
805 if (tick_isset(proxy->timeout.serverfin))
806 h1c->shut_timeout = proxy->timeout.serverfin;
807 } else {
808 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
809 if (tick_isset(proxy->timeout.clientfin))
810 h1c->shut_timeout = proxy->timeout.clientfin;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200811
812 LIST_APPEND(&mux_stopping_data[tid].list,
813 &h1c->conn->stopping_list);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100814 }
815 if (tick_isset(h1c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200816 t = task_new_here();
Christopher Faulet26a26432021-01-27 11:27:50 +0100817 if (!t) {
818 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 +0100819 goto fail;
Christopher Faulet26a26432021-01-27 11:27:50 +0100820 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100821
822 h1c->task = t;
823 t->process = h1_timeout_task;
824 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200825
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100826 t->expire = tick_add(now_ms, h1c->timeout);
827 }
828
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100829 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200830
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200831 if (h1c->flags & H1C_F_IS_BACK) {
832 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200833 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
834 goto fail;
835 }
Christopher Faulet0f9395d2021-01-21 17:50:19 +0100836 else if (conn_ctx) {
837 /* Upgraded frontend connection (from TCP) */
838 struct conn_stream *cs = conn_ctx;
839
840 if (!h1c_frt_stream_new(h1c))
841 goto fail;
842
843 h1c->h1s->cs = cs;
844 cs->ctx = h1c->h1s;
845
846 /* Attach the CS but Not ready yet */
847 h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED;
848 TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade",
849 H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s);
850 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100851
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200852 if (t) {
853 h1_set_idle_expiration(h1c);
854 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100855 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200856 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100857
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200858 /* prepare to read something */
Christopher Fauletd9ee7882021-01-21 17:45:45 +0100859 if (b_data(&h1c->ibuf))
860 tasklet_wakeup(h1c->wait_event.tasklet);
861 else if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200862 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200863
864 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200865 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200866 return 0;
867
868 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200869 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200870 if (h1c->wait_event.tasklet)
871 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200872 pool_free(pool_head_h1c, h1c);
873 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200874 conn->ctx = conn_ctx; // restore saved context
875 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200876 return -1;
877}
878
Christopher Faulet73c12072019-04-08 11:23:22 +0200879/* release function. This one should be called to free all resources allocated
880 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200881 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200882static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200883{
Christopher Faulet61840e72019-04-15 09:33:32 +0200884 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200885
Christopher Faulet6b81df72019-10-01 22:08:43 +0200886 TRACE_POINT(H1_EV_H1C_END);
887
Christopher Faulet51dbc942018-09-13 09:05:15 +0200888 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200889 /* The connection must be aattached to this mux to be released */
890 if (h1c->conn && h1c->conn->ctx == h1c)
891 conn = h1c->conn;
892
Christopher Faulet6b81df72019-10-01 22:08:43 +0200893 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
894
Christopher Faulet61840e72019-04-15 09:33:32 +0200895 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200896 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200897 /* Make sure we're no longer subscribed to anything */
898 if (h1c->wait_event.events)
899 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
900 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200901 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200902 /* connection successfully upgraded to H2, this
903 * mux was already released */
904 return;
905 }
Christopher Faulet26a26432021-01-27 11:27:50 +0100906 TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200907 sess_log(conn->owner); /* Log if the upgrade failed */
908 }
909
Olivier Houchard45c44372019-06-11 14:06:23 +0200910
Willy Tarreau2b718102021-04-21 07:32:39 +0200911 if (LIST_INLIST(&h1c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +0100912 LIST_DEL_INIT(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200913
914 h1_release_buf(h1c, &h1c->ibuf);
915 h1_release_buf(h1c, &h1c->obuf);
916
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100917 if (h1c->task) {
918 h1c->task->context = NULL;
919 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
920 h1c->task = NULL;
921 }
922
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200923 if (h1c->wait_event.tasklet)
924 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200925
Christopher Fauletf2824e62018-10-01 12:12:37 +0200926 h1s_destroy(h1c->h1s);
Christopher Faulete76b4f02021-10-27 15:42:13 +0200927 if (conn) {
928 if (h1c->wait_event.events != 0)
929 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
930 &h1c->wait_event);
931 h1_shutw_conn(conn);
932 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200933 pool_free(pool_head_h1c, h1c);
934 }
935
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200936 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200937 if (!conn_is_back(conn))
938 LIST_DEL_INIT(&conn->stopping_list);
939
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200940 conn->mux = NULL;
941 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200942 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200943
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200944 conn_stop_tracking(conn);
945 conn_full_close(conn);
946 if (conn->destroy_cb)
947 conn->destroy_cb(conn);
948 conn_free(conn);
949 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200950}
951
952/******************************************************/
953/* functions below are for the H1 protocol processing */
954/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200955/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
956 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200957 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100958static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200959{
Christopher Faulet570d1612018-11-26 11:13:57 +0100960 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200961
Christopher Faulet570d1612018-11-26 11:13:57 +0100962 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200963 (*(p + 5) > '1' ||
964 (*(p + 5) == '1' && *(p + 7) >= '1')))
965 h1m->flags |= H1_MF_VER_11;
966}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200967
Christopher Faulet9768c262018-10-22 09:34:31 +0200968/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
969 * greater or equal to 1.1
970 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100971static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200972{
Christopher Faulet570d1612018-11-26 11:13:57 +0100973 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200974
Christopher Faulet570d1612018-11-26 11:13:57 +0100975 if ((HTX_SL_RES_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 Fauletf2824e62018-10-01 12:12:37 +0200981/* Deduce the connection mode of the client connection, depending on the
982 * configuration and the H1 message flags. This function is called twice, the
983 * first time when the request is parsed and the second time when the response
984 * is parsed.
985 */
986static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
987{
988 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200989
990 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100991 /* Output direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +0100992 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100993 h1s->status == 101) {
994 /* Either we've established an explicit tunnel, or we're
995 * switching the protocol. In both cases, we're very unlikely to
996 * understand the next protocols. We have to switch to tunnel
997 * mode, so that we transfer the request and responses then let
998 * this protocol pass unmodified. When we later implement
999 * specific parsers for such protocols, we'll want to check the
1000 * Upgrade header which contains information about that protocol
1001 * for responses with status 101 (eg: see RFC2817 about TLS).
1002 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001003 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001004 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 +01001005 }
1006 else if (h1s->flags & H1S_F_WANT_KAL) {
1007 /* By default the client is in KAL mode. CLOSE mode mean
1008 * it is imposed by the client itself. So only change
1009 * KAL mode here. */
1010 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
1011 /* no length known or explicit close => close */
1012 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001013 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 +01001014 }
1015 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1016 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001017 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +01001018 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001019 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 +01001020 }
1021 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001022 }
1023 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001024 /* Input direction: first pass */
1025 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
1026 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +02001027 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001028 TRACE_STATE("detect close mode (req)", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001029 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001030 }
1031
1032 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001033 if (h1s->flags & H1S_F_WANT_KAL && (fe->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001034 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001035 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);
1036 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001037}
1038
1039/* Deduce the connection mode of the client connection, depending on the
1040 * configuration and the H1 message flags. This function is called twice, the
1041 * first time when the request is parsed and the second time when the response
1042 * is parsed.
1043 */
1044static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
1045{
Olivier Houchardf502aca2018-12-14 19:42:40 +01001046 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +01001047 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001048 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001049
Christopher Fauletf2824e62018-10-01 12:12:37 +02001050 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001051 /* Input direction: second pass */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001052 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) ||
Christopher Fauletb992af02019-03-28 15:42:24 +01001053 h1s->status == 101) {
1054 /* Either we've established an explicit tunnel, or we're
1055 * switching the protocol. In both cases, we're very unlikely to
1056 * understand the next protocols. We have to switch to tunnel
1057 * mode, so that we transfer the request and responses then let
1058 * this protocol pass unmodified. When we later implement
1059 * specific parsers for such protocols, we'll want to check the
1060 * Upgrade header which contains information about that protocol
1061 * for responses with status 101 (eg: see RFC2817 about TLS).
1062 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001063 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001064 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 +01001065 }
1066 else if (h1s->flags & H1S_F_WANT_KAL) {
1067 /* By default the server is in KAL mode. CLOSE mode mean
1068 * it is imposed by haproxy itself. So only change KAL
1069 * mode here. */
1070 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1071 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1072 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
1073 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001074 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 +01001075 }
1076 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001077 }
Christopher Faulet70033782018-12-05 13:50:11 +01001078 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001079 /* Output direction: first pass */
1080 if (h1m->flags & H1_MF_CONN_CLO) {
1081 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001082 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001083 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 +01001084 }
1085 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1086 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1087 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1088 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1089 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1090 /* no explicit keep-alive option httpclose/server-close => close */
1091 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001092 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 +01001093 }
Christopher Faulet70033782018-12-05 13:50:11 +01001094 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001095
1096 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001097 if (h1s->flags & H1S_F_WANT_KAL && (be->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001098 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001099 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);
1100 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001101}
1102
Christopher Fauletb992af02019-03-28 15:42:24 +01001103static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001104{
1105 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001106
1107 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1108 * token is found
1109 */
1110 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001111 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001112
1113 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001114 if (!(h1m->flags & H1_MF_VER_11)) {
1115 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 +01001116 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001117 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001118 }
1119 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001120 if (h1m->flags & H1_MF_VER_11) {
1121 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001122 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001123 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001124 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001125}
1126
Christopher Fauletb992af02019-03-28 15:42:24 +01001127static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001128{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001129 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1130 * token is found
1131 */
1132 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001133 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001134
1135 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001136 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001137 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1138 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 +01001139 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001140 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001141 }
1142 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001143 if (h1m->flags & H1_MF_VER_11) {
1144 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001145 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001146 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001147 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001148}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001149
Christopher Fauletb992af02019-03-28 15:42:24 +01001150static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001151{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001152 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001153 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001154 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001155 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001156}
1157
Christopher Fauletb992af02019-03-28 15:42:24 +01001158static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1159{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001160 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001161 h1_set_cli_conn_mode(h1s, h1m);
1162 else
1163 h1_set_srv_conn_mode(h1s, h1m);
1164
1165 if (!(h1m->flags & H1_MF_RESP))
1166 h1_update_req_conn_value(h1s, h1m, conn_val);
1167 else
1168 h1_update_res_conn_value(h1s, h1m, conn_val);
1169}
Christopher Faulete44769b2018-11-29 23:01:45 +01001170
Christopher Faulet98fbe952019-07-22 16:18:24 +02001171/* Try to adjust the case of the message header name using the global map
1172 * <hdrs_map>.
1173 */
1174static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1175{
1176 struct ebpt_node *node;
1177 struct h1_hdr_entry *entry;
1178
1179 /* No entry in the map, do nothing */
1180 if (eb_is_empty(&hdrs_map.map))
1181 return;
1182
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001183 /* No conversion for the request headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001184 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1185 return;
1186
Ilya Shipitsinb8888ab2021-01-06 21:20:16 +05001187 /* No conversion for the response headers */
Christopher Faulet98fbe952019-07-22 16:18:24 +02001188 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1189 return;
1190
1191 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1192 if (!node)
1193 return;
1194 entry = container_of(node, struct h1_hdr_entry, node);
1195 name->ptr = entry->name.ptr;
1196 name->len = entry->name.len;
1197}
1198
Christopher Faulete44769b2018-11-29 23:01:45 +01001199/* Append the description of what is present in error snapshot <es> into <out>.
1200 * The description must be small enough to always fit in a buffer. The output
1201 * buffer may be the trash so the trash must not be used inside this function.
1202 */
1203static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1204{
1205 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001206 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1207 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1208 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1209 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1210 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1211 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001212}
1213/*
1214 * Capture a bad request or response and archive it in the proxy's structure.
1215 * By default it tries to report the error position as h1m->err_pos. However if
1216 * this one is not set, it will then report h1m->next, which is the last known
1217 * parsing point. The function is able to deal with wrapping buffers. It always
1218 * displays buffers as a contiguous area starting at buf->p. The direction is
1219 * determined thanks to the h1m's flags.
1220 */
1221static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1222 struct h1m *h1m, struct buffer *buf)
1223{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001224 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001225 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001226 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001227 union error_snapshot_ctx ctx;
1228
Christopher Faulet3ced1d12020-11-27 16:44:01 +01001229 if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001230 if (sess == NULL)
1231 sess = si_strm(h1s->cs->data)->sess;
1232 if (!(h1m->flags & H1_MF_RESP))
1233 other_end = si_strm(h1s->cs->data)->be;
1234 else
1235 other_end = sess->fe;
1236 } else
1237 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001238
1239 /* http-specific part now */
1240 ctx.h1.state = h1m->state;
1241 ctx.h1.c_flags = h1c->flags;
1242 ctx.h1.s_flags = h1s->flags;
1243 ctx.h1.m_flags = h1m->flags;
1244 ctx.h1.m_clen = h1m->curr_len;
1245 ctx.h1.m_blen = h1m->body_len;
1246
1247 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1248 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001249 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1250 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001251}
1252
Christopher Fauletadb22202018-12-12 10:32:09 +01001253/* Emit the chunksize followed by a CRLF in front of data of the buffer
1254 * <buf>. It goes backwards and starts with the byte before the buffer's
1255 * head. The caller is responsible for ensuring there is enough room left before
1256 * the buffer's head for the string.
1257 */
1258static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1259{
1260 char *beg, *end;
1261
1262 beg = end = b_head(buf);
1263 *--beg = '\n';
1264 *--beg = '\r';
1265 do {
1266 *--beg = hextab[chksz & 0xF];
1267 } while (chksz >>= 4);
1268 buf->head -= (end - beg);
1269 b_add(buf, end - beg);
1270}
1271
1272/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1273 * ensuring there is enough room left in the buffer for the string. */
1274static void h1_emit_chunk_crlf(struct buffer *buf)
1275{
1276 *(b_peek(buf, b_data(buf))) = '\r';
1277 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1278 b_add(buf, 2);
1279}
1280
Christopher Faulet129817b2018-09-20 16:14:40 +02001281/*
Christopher Faulet5be651d2021-01-22 15:28:03 +01001282 * Switch the stream to tunnel mode. This function must only be called on 2xx
1283 * (successful) replies to CONNECT requests or on 101 (switching protocol).
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001284 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01001285static void h1_set_tunnel_mode(struct h1s *h1s)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001286{
Christopher Faulet5be651d2021-01-22 15:28:03 +01001287 struct h1c *h1c = h1s->h1c;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001288
Christopher Faulet5be651d2021-01-22 15:28:03 +01001289 h1s->req.state = H1_MSG_TUNNEL;
1290 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001291
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001292 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001293 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001294
Christopher Faulet5be651d2021-01-22 15:28:03 +01001295 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 +01001296
Christopher Faulet10a86702021-04-07 14:18:11 +02001297 if (h1s->flags & H1S_F_RX_BLK) {
1298 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001299 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001300 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 +02001301 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001302 if (h1s->flags & H1S_F_TX_BLK) {
1303 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001304 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001305 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 +01001306 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001307}
1308
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001309/* Search for a websocket key header. The message should have been identified
1310 * as a valid websocket handshake.
Amaury Denoyellec1938232020-12-11 17:53:03 +01001311 *
1312 * On the request side, if found the key is stored in the session. It might be
1313 * needed to calculate response key if the server side is using http/2.
1314 *
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001315 * On the response side, the key might be verified if haproxy has been
1316 * responsible for the generation of a key. This happens when a h2 client is
1317 * interfaced with a h1 server.
1318 *
1319 * Returns 0 if no key found or invalid key
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001320 */
1321static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
1322{
1323 struct htx_blk *blk;
1324 enum htx_blk_type type;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001325 struct ist n, v;
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001326 int ws_key_found = 0, idx;
1327
1328 idx = htx_get_head(htx); // returns the SL that we skip
1329 while ((idx = htx_get_next(htx, idx)) != -1) {
1330 blk = htx_get_blk(htx, idx);
1331 type = htx_get_blk_type(blk);
1332
1333 if (type == HTX_BLK_UNUSED)
1334 continue;
1335
1336 if (type != HTX_BLK_HDR)
1337 break;
1338
1339 n = htx_get_blk_name(htx, blk);
Amaury Denoyellec1938232020-12-11 17:53:03 +01001340 v = htx_get_blk_value(htx, blk);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001341
Amaury Denoyellec1938232020-12-11 17:53:03 +01001342 /* Websocket key is base64 encoded of 16 bytes */
1343 if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 &&
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001344 !(h1m->flags & H1_MF_RESP)) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001345 /* Copy the key on request side
1346 * we might need it if the server is using h2 and does
1347 * not provide the response
1348 */
1349 memcpy(h1s->ws_key, v.ptr, 24);
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001350 ws_key_found = 1;
1351 break;
1352 }
1353 else if (isteqi(n, ist("sec-websocket-accept")) &&
1354 h1m->flags & H1_MF_RESP) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001355 /* Need to verify the response key if the input was
1356 * generated by haproxy
1357 */
1358 if (h1s->ws_key[0]) {
1359 char key[29];
1360 h1_calculate_ws_output_key(h1s->ws_key, key);
1361 if (!isteqi(ist(key), v))
1362 break;
1363 }
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001364 ws_key_found = 1;
1365 break;
1366 }
1367 }
1368
1369 /* missing websocket key, reject the message */
1370 if (!ws_key_found) {
1371 htx->flags |= HTX_FL_PARSING_ERROR;
1372 return 0;
1373 }
1374
1375 return 1;
1376}
1377
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001378/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001379 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001380 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet46e058d2021-09-20 07:47:27 +02001381 * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on
1382 * the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001383 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001384static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1385 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001386{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001387 union h1_sl h1sl;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001388 int ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001389
Willy Tarreau022e5e52020-09-10 09:33:15 +02001390 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 +02001391
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001392 if (h1s->meth == HTTP_METH_CONNECT)
1393 h1m->flags |= H1_MF_METH_CONNECT;
1394 if (h1s->meth == HTTP_METH_HEAD)
1395 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001396
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001397 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001398 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001399 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001400 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001401 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001402 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 +02001403 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1404 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001405 else if (ret == -2) {
1406 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);
1407 h1s->flags |= H1S_F_RX_CONGESTED;
1408 }
1409 ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001410 goto end;
1411 }
1412
Christopher Faulete136bd12021-09-21 18:44:55 +02001413
1414 /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a
1415 * payload if the c-l is not null or the the payload is chunk-encoded.
1416 * A parsing error is reported but a A 413-Payload-Too-Large is returned
1417 * instead of a 400-Bad-Request.
1418 */
1419 if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) &&
1420 (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) &&
1421 (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) {
1422 h1s->flags |= H1S_F_PARSING_ERROR;
1423 htx->flags |= HTX_FL_PARSING_ERROR;
1424 h1s->h1c->errcode = 413;
1425 TRACE_ERROR("HTTP/1.0 GET/HEAD/DELETE request with a payload forbidden", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1426 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1427 ret = 0;
1428 goto end;
1429 }
1430
Christopher Fauletda3adeb2021-09-28 09:50:07 +02001431 /* Reject any message with an unknown transfer-encoding. In fact if any
1432 * encoding other than "chunked". A 422-Unprocessable-Content is
1433 * returned for an invalid request, a 502-Bad-Gateway for an invalid
1434 * response.
1435 */
1436 if (h1m->flags & H1_MF_TE_OTHER) {
1437 h1s->flags |= H1S_F_PARSING_ERROR;
1438 htx->flags |= HTX_FL_PARSING_ERROR;
1439 if (!(h1m->flags & H1_MF_RESP))
1440 h1s->h1c->errcode = 422;
1441 TRACE_ERROR("Unknown transfer-encoding", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1442 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1443 ret = 0;
1444 goto end;
1445 }
1446
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001447 /* If websocket handshake, search for the websocket key */
1448 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) ==
1449 (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) {
1450 int ws_ret = h1_search_websocket_key(h1s, h1m, htx);
1451 if (!ws_ret) {
Amaury Denoyelle18ee5c32020-12-11 17:53:02 +01001452 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001453 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 +01001454 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1455
1456 ret = 0;
1457 goto end;
1458 }
1459 }
1460
Christopher Faulet486498c2019-10-11 14:22:00 +02001461 if (h1m->err_pos >= 0) {
1462 /* Maybe we found an error during the parsing while we were
1463 * configured not to block on that, so we have to capture it
1464 * now.
1465 */
1466 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1467 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1468 }
1469
Christopher Faulet5696f542020-12-02 16:08:38 +01001470 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001471 h1s->meth = h1sl.rq.meth;
Christopher Faulet5696f542020-12-02 16:08:38 +01001472 if (h1s->meth == HTTP_METH_HEAD)
1473 h1s->flags |= H1S_F_BODYLESS_RESP;
1474 }
1475 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001476 h1s->status = h1sl.st.status;
Christopher Faulet5696f542020-12-02 16:08:38 +01001477 if (h1s->status == 204 || h1s->status == 304)
1478 h1s->flags |= H1S_F_BODYLESS_RESP;
1479 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001480 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001481 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001482
Christopher Faulet129817b2018-09-20 16:14:40 +02001483 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001484 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 +02001485 return ret;
1486}
1487
1488/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001489 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001490 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1491 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001492 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001493static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
1494 struct buffer *buf, size_t *ofs, size_t max,
1495 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001496{
Christopher Fauletde471a42021-02-01 16:37:28 +01001497 size_t ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001498
Willy Tarreau022e5e52020-09-10 09:33:15 +02001499 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 +02001500 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001501 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001502 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 +01001503 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001504 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001505 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 +02001506 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001507 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001508 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001509 }
1510
Christopher Faulet02a02532019-11-15 09:36:28 +01001511 *ofs += ret;
1512
1513 end:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001514 if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) {
1515 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);
1516 h1s->flags |= H1S_F_RX_CONGESTED;
1517 }
1518
Willy Tarreau022e5e52020-09-10 09:33:15 +02001519 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 +02001520 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001521}
1522
1523/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001524 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1525 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1526 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Christopher Faulet46e058d2021-09-20 07:47:27 +02001527 * responsible to update the parser state <h1m>. If more room is requested,
1528 * H1S_F_RX_CONGESTED flag is set.
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001529 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001530static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1531 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001532{
Christopher Faulet46e058d2021-09-20 07:47:27 +02001533 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001534
Willy Tarreau022e5e52020-09-10 09:33:15 +02001535 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 +02001536 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001537 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001538 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s);
Christopher Faulet46e058d2021-09-20 07:47:27 +02001539 if (ret == -1) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001540 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001541 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 +02001542 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1543 }
Christopher Faulet46e058d2021-09-20 07:47:27 +02001544 else if (ret == -2) {
1545 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);
1546 h1s->flags |= H1S_F_RX_CONGESTED;
1547 }
1548 ret = 0;
Christopher Faulet02a02532019-11-15 09:36:28 +01001549 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001550 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001551
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001552 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001553
1554 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001555 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 +02001556 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001557}
1558
1559/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001560 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001561 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1562 * it couldn't proceed.
Christopher Faulet46e058d2021-09-20 07:47:27 +02001563 *
1564 * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data.
Christopher Faulet129817b2018-09-20 16:14:40 +02001565 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001566static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001567{
Christopher Faulet539e0292018-11-19 10:40:09 +01001568 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001569 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001570 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001571 size_t data;
1572 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001573 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001574
Christopher Faulet539e0292018-11-19 10:40:09 +01001575 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001576 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001577
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001578 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001579 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001580
Christopher Faulet2eed8002020-12-07 11:26:13 +01001581 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR))
Christopher Faulet0e54d542019-07-04 21:22:34 +02001582 goto end;
1583
Christopher Faulet10a86702021-04-07 14:18:11 +02001584 if (h1s->flags & H1S_F_RX_BLK)
Christopher Fauletec4207c2021-04-08 18:34:30 +02001585 goto out;
Christopher Faulet5be651d2021-01-22 15:28:03 +01001586
Christopher Faulet46e058d2021-09-20 07:47:27 +02001587 /* Always remove congestion flags and try to process more input data */
1588 h1s->flags &= ~H1S_F_RX_CONGESTED;
1589
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001590 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001591 size_t used = htx_used_space(htx);
1592
Christopher Faulet129817b2018-09-20 16:14:40 +02001593 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001594 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001595 ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001596 if (!ret)
1597 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001598
1599 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1600 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1601
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001602 if ((h1m->flags & H1_MF_RESP) &&
1603 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1604 h1m_init_res(&h1s->res);
1605 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001606 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001607 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001608 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001609 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001610 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001611 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001612 if (h1m->state < H1_MSG_TRAILERS)
Christopher Faulet129817b2018-09-20 16:14:40 +02001613 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001614
1615 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1616 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001617 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001618 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001619 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001620 ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet16a524c2021-02-02 21:16:03 +01001621 if (h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001622 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001623
Christopher Faulet76014fd2019-12-10 11:47:22 +01001624 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1625 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001626 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001627 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001628 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1629 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001630
Christopher Faulet5be651d2021-01-22 15:28:03 +01001631 if ((h1m->flags & H1_MF_RESP) &&
1632 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101))
1633 h1_set_tunnel_mode(h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001634 else {
1635 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
1636 /* Unfinished transaction: block this input side waiting the end of the output side */
Christopher Faulet10a86702021-04-07 14:18:11 +02001637 h1s->flags |= H1S_F_RX_BLK;
1638 TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletb385b502021-01-13 18:47:57 +01001639 }
Christopher Faulet10a86702021-04-07 14:18:11 +02001640 if (h1s->flags & H1S_F_TX_BLK) {
1641 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001642 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001643 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 +01001644 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001645 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001646 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001647 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001648 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001649 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001650 ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001651 if (!ret)
1652 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001653
1654 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1655 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001656 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001657 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001658 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001659 break;
1660 }
1661
Christopher Faulet30db3d72019-05-17 15:35:33 +02001662 count -= htx_used_space(htx) - used;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001663 } 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 +01001664
Christopher Faulet129817b2018-09-20 16:14:40 +02001665
Christopher Faulet2eed8002020-12-07 11:26:13 +01001666 if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) {
Christopher Faulet26a26432021-01-27 11:27:50 +01001667 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 +02001668 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001669 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001670
Christopher Faulet539e0292018-11-19 10:40:09 +01001671 b_del(&h1c->ibuf, total);
1672
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001673 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001674 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1675
Christopher Faulet30db3d72019-05-17 15:35:33 +02001676 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001677 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001678 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001679 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 +01001680 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001681 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001682
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001683 if (!b_data(&h1c->ibuf))
1684 h1_release_buf(h1c, &h1c->ibuf);
1685
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01001686 if (!(h1c->flags & H1C_F_ST_READY)) {
1687 /* The H1 connection is not ready. Most of time, there is no CS
1688 * attached, except for TCP>H1 upgrade, from a TCP frontend. In both
1689 * cases, it is only possible on the client side.
1690 */
1691 BUG_ON(h1c->flags & H1C_F_IS_BACK);
1692
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001693 if (h1m->state <= H1_MSG_LAST_LF) {
1694 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1695 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1696 goto end;
1697 }
1698
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001699 if (!(h1c->flags & H1C_F_ST_ATTACHED)) {
1700 TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s);
1701 BUG_ON(h1s->cs);
1702 if (!h1s_new_cs(h1s, buf)) {
1703 h1c->flags |= H1C_F_ST_ERROR;
1704 goto err;
1705 }
1706 }
1707 else {
1708 TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s);
1709 BUG_ON(h1s->cs == NULL);
1710 if (!h1s_upgrade_cs(h1s, buf)) {
1711 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001712 TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01001713 goto err;
1714 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001715 }
1716 }
1717
1718 /* Here h1s->cs is always defined */
Christopher Fauleta583af62020-09-24 15:35:37 +02001719 if (!(h1m->flags & H1_MF_CHNK) &&
1720 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) {
1721 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1722 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1723 }
1724 else {
1725 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1726 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1727 }
1728
Christopher Fauleta22782b2021-02-08 17:18:01 +01001729 /* Set EOI on conn-stream in DONE state iff:
1730 * - it is a response
1731 * - it is a request but no a protocol upgrade nor a CONNECT
1732 *
1733 * If not set, Wait the response to do so or not depending on the status
Christopher Faulet5be651d2021-01-22 15:28:03 +01001734 * code.
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001735 */
Christopher Fauleta22782b2021-02-08 17:18:01 +01001736 if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) ||
1737 ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Fauleta583af62020-09-24 15:35:37 +02001738 h1s->cs->flags |= CS_FL_EOI;
1739
Christopher Fauletec4207c2021-04-08 18:34:30 +02001740 out:
Christopher Faulet46e058d2021-09-20 07:47:27 +02001741 /* When Input data are pending for this message, notify upper layer that
1742 * the mux need more space in the HTX buffer to continue if :
1743 *
1744 * - The parser is blocked in MSG_DATA or MSG_TUNNEL state
1745 * - Headers or trailers are pending to be copied.
1746 */
1747 if (h1s->flags & (H1S_F_RX_CONGESTED)) {
Christopher Fauletcf56b992018-12-11 16:12:31 +01001748 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet46e058d2021-09-20 07:47:27 +02001749 TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1750 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001751 else {
1752 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1753 if (h1s->flags & H1S_F_REOS) {
1754 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet1e857782020-12-08 10:38:22 +01001755 if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) {
1756 /* DONE or TUNNEL or SHUTR without XFER_LEN, set
1757 * EOI on the conn-stream */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001758 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet3e1748b2020-12-07 18:21:27 +01001759 }
Christopher Faulet26a26432021-01-27 11:27:50 +01001760 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001761 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01001762 TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s);
1763 }
Christopher Fauletb385b502021-01-13 18:47:57 +01001764
Christopher Faulet10a86702021-04-07 14:18:11 +02001765 if (h1s->flags & H1S_F_TX_BLK) {
1766 h1s->flags &= ~H1S_F_TX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001767 h1_wake_stream_for_send(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001768 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 +01001769 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001770 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001771 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001772
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001773 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001774 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001775 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001776
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001777 err:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001778 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001779 if (h1s->cs)
1780 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001781 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001782 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001783}
1784
Christopher Faulet129817b2018-09-20 16:14:40 +02001785/*
1786 * Process outgoing data. It parses data and transfer them from the channel buffer into
1787 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1788 * 0 if it couldn't proceed.
1789 */
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01001790static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001791{
Christopher Faulet129817b2018-09-20 16:14:40 +02001792 struct h1s *h1s = h1c->h1s;
1793 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001794 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001795 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001796 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001797 size_t total = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001798 int last_data = 0;
Amaury Denoyellec1938232020-12-11 17:53:03 +01001799 int ws_key_found = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001800
Christopher Faulet94b2c762019-05-24 15:28:57 +02001801 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001802 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1803
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001804 if (htx_is_empty(chn_htx))
1805 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001806
Christopher Faulet10a86702021-04-07 14:18:11 +02001807 if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK))
Christopher Fauletdea24742021-01-22 15:12:30 +01001808 goto end;
1809
Christopher Faulet51dbc942018-09-13 09:05:15 +02001810 if (!h1_get_buf(h1c, &h1c->obuf)) {
1811 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001812 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 +02001813 goto end;
1814 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001815
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001816 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001817
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001818 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001819 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001820
Willy Tarreau3815b222018-12-11 19:50:43 +01001821 /* Perform some optimizations to reduce the number of buffer copies.
1822 * First, if the mux's buffer is empty and the htx area contains
1823 * exactly one data block of the same size as the requested count,
1824 * then it's possible to simply swap the caller's buffer with the
1825 * mux's output buffer and adjust offsets and length to match the
1826 * entire DATA HTX block in the middle. In this case we perform a
1827 * true zero-copy operation from end-to-end. This is the situation
1828 * that happens all the time with large files. Second, if this is not
1829 * possible, but the mux's output buffer is empty, we still have an
1830 * opportunity to avoid the copy to the intermediary buffer, by making
1831 * the intermediary buffer's area point to the output buffer's area.
1832 * In this case we want to skip the HTX header to make sure that copies
1833 * remain aligned and that this operation remains possible all the
1834 * time. This goes for headers, data blocks and any data extracted from
1835 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001836 */
1837 if (!b_data(&h1c->obuf)) {
Christopher Fauletdea24742021-01-22 15:12:30 +01001838 if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) &&
Christopher Faulet0d7e6342021-02-08 15:56:36 +01001839 (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) &&
Christopher Fauletdea24742021-01-22 15:12:30 +01001840 htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001841 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001842 htx_get_blk_value(chn_htx, blk).len == count) {
Christopher Faulete5596bf2020-12-02 16:13:22 +01001843 void *old_area;
1844
Christopher Faulet6b81df72019-10-01 22:08:43 +02001845 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 +01001846 if (h1m->state == H1_MSG_DATA && chn_htx->flags & HTX_FL_EOM) {
1847 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
1848 last_data = 1;
1849 }
1850
Christopher Faulete5596bf2020-12-02 16:13:22 +01001851 old_area = h1c->obuf.area;
Willy Tarreau3815b222018-12-11 19:50:43 +01001852 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001853 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001854 h1c->obuf.data = count;
1855
1856 buf->area = old_area;
1857 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001858
Christopher Faulet6b81df72019-10-01 22:08:43 +02001859 chn_htx = (struct htx *)buf->area;
1860 htx_reset(chn_htx);
1861
Christopher Fauletadb22202018-12-12 10:32:09 +01001862 /* The message is chunked. We need to emit the chunk
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001863 * size and eventually the last chunk. We have at least
1864 * the size of the struct htx to write the chunk
1865 * envelope. It should be enough.
Christopher Fauletadb22202018-12-12 10:32:09 +01001866 */
1867 if (h1m->flags & H1_MF_CHNK) {
1868 h1_emit_chunk_size(&h1c->obuf, count);
1869 h1_emit_chunk_crlf(&h1c->obuf);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001870 if (last_data) {
1871 /* Emit the last chunk too at the buffer's end */
1872 b_putblk(&h1c->obuf, "0\r\n\r\n", 5);
1873 }
Christopher Fauletadb22202018-12-12 10:32:09 +01001874 }
1875
Christopher Faulet6b81df72019-10-01 22:08:43 +02001876 if (h1m->state == H1_MSG_DATA)
1877 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001878 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001879 else
1880 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001881 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001882
Christopher Faulete5596bf2020-12-02 16:13:22 +01001883 total += count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01001884 if (last_data) {
1885 h1m->state = H1_MSG_DONE;
Christopher Faulet10a86702021-04-07 14:18:11 +02001886 if (h1s->flags & H1S_F_RX_BLK) {
1887 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001888 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001889 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 +01001890 }
1891
1892 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1893 H1_EV_TX_DATA, h1c->conn, h1s);
1894 }
Willy Tarreau3815b222018-12-11 19:50:43 +01001895 goto out;
1896 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001897 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001898 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001899 else
1900 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001901
Christopher Fauletc2518a52019-06-25 21:41:02 +02001902 tmp.data = 0;
1903 tmp.size = b_room(&h1c->obuf);
Christopher Faulet10a86702021-04-07 14:18:11 +02001904 while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001905 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001906 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001907 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001908 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001909 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001910
Christopher Fauletb2e84162018-12-06 11:39:49 +01001911 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001912 if (type != HTX_BLK_DATA && vlen > count)
1913 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001914
Christopher Faulet94b2c762019-05-24 15:28:57 +02001915 if (type == HTX_BLK_UNUSED)
1916 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001917
Christopher Faulet94b2c762019-05-24 15:28:57 +02001918 switch (h1m->state) {
1919 case H1_MSG_RQBEFORE:
1920 if (type != HTX_BLK_REQ_SL)
1921 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001922 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 +02001923 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001924 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001925 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001926 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001927 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001928 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001929 if (sl->flags & HTX_SL_F_BODYLESS)
1930 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001931 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet5696f542020-12-02 16:08:38 +01001932 if (h1s->meth == HTTP_METH_HEAD)
1933 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet10a86702021-04-07 14:18:11 +02001934 if (h1s->flags & H1S_F_RX_BLK) {
1935 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02001936 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02001937 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 +02001938 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001939 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001940
Christopher Faulet94b2c762019-05-24 15:28:57 +02001941 case H1_MSG_RPBEFORE:
1942 if (type != HTX_BLK_RES_SL)
1943 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001944 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 +02001945 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001946 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001947 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001948 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001949 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001950 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001951 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletf3e76192020-12-02 16:46:33 +01001952 if (h1s->status < 200)
Christopher Fauletada34b62019-05-24 16:36:43 +02001953 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet5696f542020-12-02 16:08:38 +01001954 else if (h1s->status == 204 || h1s->status == 304)
1955 h1s->flags |= H1S_F_BODYLESS_RESP;
Christopher Faulet9768c262018-10-22 09:34:31 +02001956 h1m->state = H1_MSG_HDR_FIRST;
1957 break;
1958
Christopher Faulet94b2c762019-05-24 15:28:57 +02001959 case H1_MSG_HDR_FIRST:
1960 case H1_MSG_HDR_NAME:
1961 case H1_MSG_HDR_L2_LWS:
1962 if (type == HTX_BLK_EOH)
1963 goto last_lf;
1964 if (type != HTX_BLK_HDR)
1965 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001966
Christopher Faulet9768c262018-10-22 09:34:31 +02001967 h1m->state = H1_MSG_HDR_NAME;
1968 n = htx_get_blk_name(chn_htx, blk);
1969 v = htx_get_blk_value(chn_htx, blk);
1970
Christopher Faulet86d144c2019-08-14 16:32:25 +02001971 /* Skip all pseudo-headers */
1972 if (*(n.ptr) == ':')
1973 goto skip_hdr;
1974
Christopher Faulet91fcf212020-12-02 16:17:15 +01001975 if (isteq(n, ist("transfer-encoding"))) {
1976 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1977 goto skip_hdr;
Christopher Faulet9768c262018-10-22 09:34:31 +02001978 h1_parse_xfer_enc_header(h1m, v);
Christopher Faulet91fcf212020-12-02 16:17:15 +01001979 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001980 else if (isteq(n, ist("content-length"))) {
Christopher Faulet91fcf212020-12-02 16:17:15 +01001981 if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204))
1982 goto skip_hdr;
Christopher Faulet5220ef22019-03-27 15:44:56 +01001983 /* Only skip C-L header with invalid value. */
1984 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001985 goto skip_hdr;
1986 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001987 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001988 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001989 if (!v.len)
1990 goto skip_hdr;
1991 }
Amaury Denoyellec1938232020-12-11 17:53:03 +01001992 else if (isteq(n, ist("upgrade"))) {
1993 h1_parse_upgrade_header(h1m, v);
1994 }
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01001995 else if ((isteq(n, ist("sec-websocket-accept")) &&
1996 h1m->flags & H1_MF_RESP) ||
1997 (isteq(n, ist("sec-websocket-key")) &&
1998 !(h1m->flags & H1_MF_RESP))) {
Amaury Denoyellec1938232020-12-11 17:53:03 +01001999 ws_key_found = 1;
2000 }
Christopher Fauletf56e8462021-09-28 10:56:36 +02002001 else if (isteq(n, ist("te"))) {
2002 /* "te" may only be sent with "trailers" if this value
2003 * is present, otherwise it must be deleted.
2004 */
2005 v = istist(v, ist("trailers"));
2006 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
2007 goto skip_hdr;
2008 v = ist("trailers");
2009 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002010
Christopher Faulet67d58092019-10-02 10:51:38 +02002011 /* Skip header if same name is used to add the server name */
2012 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
2013 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
2014 goto skip_hdr;
2015
Christopher Faulet98fbe952019-07-22 16:18:24 +02002016 /* Try to adjust the case of the header name */
2017 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2018 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002019 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002020 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02002021 skip_hdr:
2022 h1m->state = H1_MSG_HDR_L2_LWS;
2023 break;
2024
Christopher Faulet94b2c762019-05-24 15:28:57 +02002025 case H1_MSG_LAST_LF:
2026 if (type != HTX_BLK_EOH)
2027 goto error;
2028 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02002029 h1m->state = H1_MSG_LAST_LF;
2030 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02002031 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
Christopher Faulet631c7e82021-09-27 09:47:03 +02002032 /* If the reply comes from haproxy while the request is
2033 * not finished, we force the connection close. */
Christopher Faulet04f89192019-10-16 09:41:07 +02002034 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2035 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2036 }
Christopher Faulet631c7e82021-09-27 09:47:03 +02002037 else if ((h1m->flags & (H1_MF_XFER_ENC|H1_MF_CLEN)) == (H1_MF_XFER_ENC|H1_MF_CLEN)) {
2038 /* T-E + C-L: force close */
2039 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2040 TRACE_STATE("force close mode (T-E + C-L)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2041 }
2042 else if ((h1m->flags & (H1_MF_VER_11|H1_MF_XFER_ENC)) == H1_MF_XFER_ENC) {
2043 /* T-E + HTTP/1.0: force close */
2044 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
2045 TRACE_STATE("force close mode (T-E + HTTP/1.0)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
2046 }
Christopher Faulet04f89192019-10-16 09:41:07 +02002047
2048 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02002049 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002050 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01002051 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002052 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002053 /* Try to adjust the case of the header name */
2054 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2055 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002056 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002057 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002058 }
Christopher Fauletada34b62019-05-24 16:36:43 +02002059 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01002060 }
Willy Tarreau4710d202019-01-03 17:39:54 +01002061
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002062 if ((h1s->meth != HTTP_METH_CONNECT &&
2063 (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 +01002064 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
Christopher Faulete5596bf2020-12-02 16:13:22 +01002065 (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002066 !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) &&
Christopher Faulet1f890dd2019-02-18 10:33:16 +01002067 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
2068 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01002069 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02002070 n = ist("transfer-encoding");
2071 v = ist("chunked");
2072 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2073 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002074 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002075 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002076 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01002077 h1m->flags |= H1_MF_CHNK;
2078 }
2079
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002080 /* Now add the server name to a header (if requested) */
2081 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
2082 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
2083 struct server *srv = objt_server(h1c->conn->target);
2084
2085 if (srv) {
2086 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
2087 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02002088
2089 /* Try to adjust the case of the header name */
2090 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2091 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002092 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002093 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002094 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002095 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02002096 h1s->flags |= H1S_F_HAVE_SRV_NAME;
2097 }
2098
Amaury Denoyellec1938232020-12-11 17:53:03 +01002099 /* Add websocket handshake key if needed */
2100 if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) &&
2101 !ws_key_found) {
Amaury Denoyelleaad333a2020-12-11 17:53:07 +01002102 if (!(h1m->flags & H1_MF_RESP)) {
2103 /* generate a random websocket key
2104 * stored in the session to
2105 * verify it on the response side
2106 */
2107 h1_generate_random_ws_input_key(h1s->ws_key);
2108
2109 if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"),
2110 ist(h1s->ws_key),
2111 &tmp)) {
2112 goto full;
2113 }
2114 }
2115 else {
Amaury Denoyellec1938232020-12-11 17:53:03 +01002116 /* add the response header key */
2117 char key[29];
2118 h1_calculate_ws_output_key(h1s->ws_key, key);
2119 if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"),
2120 ist(key),
2121 &tmp)) {
2122 goto full;
2123 }
2124 }
2125 }
2126
Christopher Faulet6b81df72019-10-01 22:08:43 +02002127 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
2128 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
2129
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002130 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002131 if (!chunk_memcat(&tmp, "\r\n", 2))
2132 goto full;
2133 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002134 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01002135 else if ((h1m->flags & H1_MF_RESP) &&
Christopher Fauletc75668e2020-12-07 18:10:32 +01002136 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002137 if (!chunk_memcat(&tmp, "\r\n", 2))
2138 goto full;
2139 goto done;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002140 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002141 else if ((h1m->flags & H1_MF_RESP) &&
2142 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002143 if (!chunk_memcat(&tmp, "\r\n", 2))
2144 goto full;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002145 h1m_init_res(&h1s->res);
2146 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02002147 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002148 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02002149 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002150 else {
2151 /* EOM flag is set and it is the last block */
2152 if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
Christopher Faulet3d6e0e32021-02-08 09:34:35 +01002153 if (h1m->flags & H1_MF_CHNK) {
2154 if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7))
2155 goto full;
2156 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002157 else if (!chunk_memcat(&tmp, "\r\n", 2))
2158 goto full;
2159 goto done;
2160 }
2161 else if (!chunk_memcat(&tmp, "\r\n", 2))
2162 goto full;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01002163 h1m->state = H1_MSG_DATA;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002164 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002165 break;
2166
Christopher Faulet94b2c762019-05-24 15:28:57 +02002167 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02002168 case H1_MSG_TUNNEL:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002169 if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002170 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP))
2171 goto trailers;
2172
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002173 /* If the message is not chunked, never
2174 * add the last chunk. */
2175 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002176 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002177 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 +02002178 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002179 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002180 else if (type != HTX_BLK_DATA)
2181 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002182
2183 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 +02002184
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002185 /* It is the last block of this message. After this one,
2186 * only tunneled data may be forwarded. */
2187 if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) {
2188 TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s);
2189 last_data = 1;
2190 }
Christopher Fauletd9233f02019-10-14 14:01:24 +02002191
2192 if (vlen > count) {
2193 /* Get the maximum amount of data we can xferred */
2194 vlen = count;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002195 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002196 }
2197
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002198 if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2199 TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx);
2200 goto skip_data;
2201 }
2202
Christopher Fauletd9233f02019-10-14 14:01:24 +02002203 chklen = 0;
2204 if (h1m->flags & H1_MF_CHNK) {
2205 chklen = b_room(&tmp);
2206 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
2207 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
2208 (chklen < 1048576) ? 5 : 8);
2209 chklen += 4; /* 2 x CRLF */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002210
2211 /* If it is the end of the chunked message (without EOT), reserve the
2212 * last chunk size */
2213 if (last_data)
2214 chklen += 5;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002215 }
2216
2217 if (vlen + chklen > b_room(&tmp)) {
2218 /* too large for the buffer */
2219 if (chklen >= b_room(&tmp))
2220 goto full;
2221 vlen = b_room(&tmp) - chklen;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002222 last_data = 0;
Christopher Fauletd9233f02019-10-14 14:01:24 +02002223 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002224 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01002225 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02002226 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002227 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002228
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002229 /* Space already reserved, so it must succeed */
2230 if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5))
2231 goto error;
2232
Christopher Faulet6b81df72019-10-01 22:08:43 +02002233 if (h1m->state == H1_MSG_DATA)
2234 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002235 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002236 else
2237 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02002238 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet0d7e6342021-02-08 15:56:36 +01002239
2240 skip_data:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002241 if (last_data)
2242 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002243 break;
2244
Christopher Faulet94b2c762019-05-24 15:28:57 +02002245 case H1_MSG_TRAILERS:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002246 if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02002247 goto error;
2248 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02002249 h1m->state = H1_MSG_TRAILERS;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002250
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002251 /* If the message is not chunked, ignore
2252 * trailers. It may happen with H2 messages. */
Christopher Faulet0a916d22021-02-10 08:48:19 +01002253 if (!(h1m->flags & H1_MF_CHNK)) {
2254 if (type == HTX_BLK_EOT)
2255 goto done;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002256 break;
Christopher Faulet0a916d22021-02-10 08:48:19 +01002257 }
Christopher Faulet5433a0b2019-06-27 17:40:14 +02002258
Christopher Faulete5596bf2020-12-02 16:13:22 +01002259 if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) {
2260 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 +01002261 if (type == HTX_BLK_EOT)
2262 goto done;
Christopher Faulete5596bf2020-12-02 16:13:22 +01002263 break;
2264 }
2265
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002266 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02002267 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002268 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002269 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
2270 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002271 goto done;
Christopher Faulet32188212018-11-20 18:21:43 +01002272 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002273 else { // HTX_BLK_TLR
2274 n = htx_get_blk_name(chn_htx, blk);
2275 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002276
2277 /* Try to adjust the case of the header name */
2278 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
2279 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02002280 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02002281 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02002282 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002283 break;
2284
Christopher Faulet94b2c762019-05-24 15:28:57 +02002285 case H1_MSG_DONE:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002286 TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2287 goto error; /* For now return an error */
2288
Christopher Faulet94b2c762019-05-24 15:28:57 +02002289 done:
Christopher Faulet36893672021-02-10 09:52:07 +01002290 if (!(chn_htx->flags & HTX_FL_EOM)) {
2291 TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
2292 goto error; /* For now return an error */
2293 }
2294
Christopher Faulet94b2c762019-05-24 15:28:57 +02002295 h1m->state = H1_MSG_DONE;
Christopher Fauletdea24742021-01-22 15:12:30 +01002296 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
Christopher Faulet10a86702021-04-07 14:18:11 +02002297 h1s->flags |= H1S_F_TX_BLK;
2298 TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002299 }
2300 else if ((h1m->flags & H1_MF_RESP) &&
2301 ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) {
2302 /* a successful reply to a CONNECT or a protocol switching is sent
2303 * to the client. Switch the response to tunnel mode.
2304 */
Christopher Faulet5be651d2021-01-22 15:28:03 +01002305 h1_set_tunnel_mode(h1s);
Christopher Fauletdea24742021-01-22 15:12:30 +01002306 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 +01002307 }
Christopher Faulet5be651d2021-01-22 15:28:03 +01002308
Christopher Faulet10a86702021-04-07 14:18:11 +02002309 if (h1s->flags & H1S_F_RX_BLK) {
2310 h1s->flags &= ~H1S_F_RX_BLK;
Christopher Faulet02c92c32021-04-09 12:31:48 +02002311 h1_wake_stream_for_recv(h1s);
Christopher Faulet10a86702021-04-07 14:18:11 +02002312 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 +02002313 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002314
2315 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
2316 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02002317 break;
2318
Christopher Faulet9768c262018-10-22 09:34:31 +02002319 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02002320 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02002321 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02002322 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02002323 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Fauletdea24742021-01-22 15:12:30 +01002324 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002325 TRACE_ERROR("processing output error, set error on h1c/h1s",
2326 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 +02002327 break;
2328 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02002329
2330 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01002331 total += vlen;
2332 count -= vlen;
2333 if (sz == vlen)
2334 blk = htx_remove_blk(chn_htx, blk);
2335 else {
2336 htx_cut_data_blk(chn_htx, blk, vlen);
2337 break;
2338 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002339 }
2340
Christopher Faulet9768c262018-10-22 09:34:31 +02002341 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002342 /* when the output buffer is empty, tmp shares the same area so that we
2343 * only have to update pointers and lengths.
2344 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002345 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2346 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002347 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002348 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002349
Willy Tarreau3815b222018-12-11 19:50:43 +01002350 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002351 out:
2352 if (!buf_room_for_htx_data(&h1c->obuf)) {
2353 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002354 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002355 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002356 end:
Christopher Fauletdea24742021-01-22 15:12:30 +01002357 /* Both the request and the response reached the DONE state. So set EOI
2358 * flag on the conn-stream. Most of time, the flag will already be set,
2359 * except for protocol upgrades. Report an error if data remains blocked
2360 * in the output buffer.
2361 */
2362 if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
2363 if (!htx_is_empty(chn_htx)) {
2364 h1c->flags |= H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002365 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 +01002366 }
2367 h1s->cs->flags |= CS_FL_EOI;
2368 }
2369
Christopher Faulet6b81df72019-10-01 22:08:43 +02002370 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002371 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002372
2373 full:
2374 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2375 h1c->flags |= H1C_F_OUT_FULL;
2376 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002377}
2378
Christopher Faulet51dbc942018-09-13 09:05:15 +02002379/*********************************************************/
2380/* functions below are I/O callbacks from the connection */
2381/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002382static void h1_wake_stream_for_recv(struct h1s *h1s)
2383{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002384 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002385 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002386 tasklet_wakeup(h1s->subs->tasklet);
2387 h1s->subs->events &= ~SUB_RETRY_RECV;
2388 if (!h1s->subs->events)
2389 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002390 }
2391}
2392static void h1_wake_stream_for_send(struct h1s *h1s)
2393{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002394 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002395 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002396 tasklet_wakeup(h1s->subs->tasklet);
2397 h1s->subs->events &= ~SUB_RETRY_SEND;
2398 if (!h1s->subs->events)
2399 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002400 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002401}
2402
Christopher Fauletad4daf62021-01-21 17:49:01 +01002403/* alerts the data layer following this sequence :
2404 * - if the h1s' data layer is subscribed to recv, then it's woken up for recv
2405 * - if its subscribed to send, then it's woken up for send
2406 * - if it was subscribed to neither, its ->wake() callback is called
2407 */
2408static void h1_alert(struct h1s *h1s)
2409{
2410 if (h1s->subs) {
2411 h1_wake_stream_for_recv(h1s);
2412 h1_wake_stream_for_send(h1s);
2413 }
2414 else if (h1s->cs && h1s->cs->data_cb->wake != NULL) {
2415 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
2416 h1s->cs->data_cb->wake(h1s->cs);
2417 }
2418}
2419
Christopher Fauletc18fc232020-10-06 17:41:36 +02002420/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2421 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2422 * retryable errors (allocation error or buffer full). On success, the error is
2423 * copied in the output buffer.
2424*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002425static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002426{
2427 int rc = http_get_status_idx(h1c->errcode);
2428 int ret = 0;
2429
2430 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2431
2432 /* Verify if the error is mapped on /dev/null or any empty file */
2433 /// XXX: do a function !
2434 if (h1c->px->replies[rc] &&
2435 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2436 h1c->px->replies[rc]->body.errmsg &&
2437 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2438 /* Empty error, so claim a success */
2439 ret = 1;
2440 goto out;
2441 }
2442
2443 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2444 h1c->flags |= H1C_F_ERR_PENDING;
2445 goto out;
2446 }
2447
2448 if (!h1_get_buf(h1c, &h1c->obuf)) {
2449 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2450 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2451 goto out;
2452 }
2453 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2454 if (unlikely(ret <= 0)) {
2455 if (!ret) {
2456 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2457 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2458 goto out;
2459 }
2460 else {
2461 /* we cannot report this error, so claim a success */
2462 ret = 1;
2463 }
2464 }
2465 h1c->flags &= ~H1C_F_ERR_PENDING;
2466 out:
2467 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2468 return ret;
2469}
2470
2471/* Try to send a 500 internal error. It relies on h1_send_error to send the
2472 * error. This function takes care of incrementing stats and tracked counters.
2473 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002474static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002475{
2476 struct session *sess = h1c->conn->owner;
2477 int ret = 1;
2478
2479 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002480 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002481 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]);
2482 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002483 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002484 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002485
2486 h1c->errcode = 500;
2487 ret = h1_send_error(h1c);
2488 sess_log(sess);
2489 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002490}
2491
Christopher Fauletb3230f72021-09-21 18:38:20 +02002492/* Try to send an error because of a parsing error. By default a 400 bad request
2493 * error is returned. But the status code may be specified by setting
2494 * h1c->errcode. It relies on h1_send_error to send the error. This function
2495 * takes care of incrementing stats and tracked counters.
Christopher Fauletc18fc232020-10-06 17:41:36 +02002496 */
Christopher Fauletb3230f72021-09-21 18:38:20 +02002497static int h1_handle_parsing_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002498{
2499 struct session *sess = h1c->conn->owner;
2500 int ret = 1;
2501
2502 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2503 goto end;
2504
2505 session_inc_http_req_ctr(sess);
2506 session_inc_http_err_ctr(sess);
2507 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002508 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2509 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002510 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002511 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002512
Christopher Fauletb3230f72021-09-21 18:38:20 +02002513 if (!h1c->errcode)
2514 h1c->errcode = 400;
Christopher Fauletc18fc232020-10-06 17:41:36 +02002515 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002516 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2517 sess_log(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002518
2519 end:
2520 return ret;
2521}
2522
Christopher Faulet2eed8002020-12-07 11:26:13 +01002523/* Try to send a 501 not implemented error. It relies on h1_send_error to send
2524 * the error. This function takes care of incrementing stats and tracked
2525 * counters.
2526 */
2527static int h1_handle_not_impl_err(struct h1c *h1c)
2528{
2529 struct session *sess = h1c->conn->owner;
2530 int ret = 1;
2531
2532 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2533 goto end;
2534
2535 session_inc_http_req_ctr(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002536 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002537 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2538 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002539 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002540 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002541
2542 h1c->errcode = 501;
2543 ret = h1_send_error(h1c);
Christopher Faulet07e10de2021-07-26 09:42:49 +02002544 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2545 sess_log(sess);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002546
2547 end:
2548 return ret;
2549}
2550
Christopher Fauletc18fc232020-10-06 17:41:36 +02002551/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2552 * error. This function takes care of incrementing stats and tracked counters.
2553 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002554static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002555{
2556 struct session *sess = h1c->conn->owner;
2557 int ret = 1;
2558
2559 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2560 goto end;
2561
2562 session_inc_http_req_ctr(sess);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002563 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Willy Tarreau4781b152021-04-06 13:53:36 +02002564 _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]);
2565 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01002566 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002567 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002568
2569 h1c->errcode = 408;
Christopher Faulet07e10de2021-07-26 09:42:49 +02002570 if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG))
2571 ret = h1_send_error(h1c);
Christopher Fauletc18fc232020-10-06 17:41:36 +02002572 sess_log(sess);
2573 end:
2574 return ret;
2575}
2576
2577
Christopher Faulet51dbc942018-09-13 09:05:15 +02002578/*
2579 * Attempt to read data, and subscribe if none available
2580 */
2581static int h1_recv(struct h1c *h1c)
2582{
2583 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002584 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002585 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002586
Christopher Faulet6b81df72019-10-01 22:08:43 +02002587 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2588
2589 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2590 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002591 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002592 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002593
Christopher Fauletae635762020-09-21 11:47:16 +02002594 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2595 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002596 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002597 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002598
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002599 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2600 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002601 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002602 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002603 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002604
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002605 /*
2606 * If we only have a small amount of data, realign it,
2607 * it's probably cheaper than doing 2 recv() calls.
2608 */
2609 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
Christopher Faulet00d7cde2021-02-04 11:01:51 +01002610 b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx));
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002611
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002612 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002613 if (!h1c->h1s ||
2614 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2615 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002616 flags |= CO_RFL_READ_ONCE;
2617
Willy Tarreau45f2b892018-12-05 07:59:27 +01002618 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002619 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002620 if (h1c->flags & H1C_F_IN_FULL) {
2621 h1c->flags &= ~H1C_F_IN_FULL;
2622 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2623 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002624
2625 if (!b_data(&h1c->ibuf)) {
2626 /* try to pre-align the buffer like the rxbufs will be
2627 * to optimize memory copies.
2628 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002629 h1c->ibuf.head = sizeof(struct htx);
2630 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002631 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002632 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002633 if (max && !ret && h1_recv_allowed(h1c)) {
2634 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2635 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002636 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002637 else {
2638 h1_wake_stream_for_recv(h1c->h1s);
2639 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002640 }
2641
Christopher Faulet51dbc942018-09-13 09:05:15 +02002642 if (!b_data(&h1c->ibuf))
2643 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002644 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002645 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002646 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2647 }
2648
2649 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002650 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002651}
2652
2653
2654/*
2655 * Try to send data if possible
2656 */
2657static int h1_send(struct h1c *h1c)
2658{
2659 struct connection *conn = h1c->conn;
2660 unsigned int flags = 0;
2661 size_t ret;
2662 int sent = 0;
2663
Christopher Faulet6b81df72019-10-01 22:08:43 +02002664 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2665
2666 if (conn->flags & CO_FL_ERROR) {
2667 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002668 b_reset(&h1c->obuf);
2669 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002670 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002671
2672 if (!b_data(&h1c->obuf))
2673 goto end;
2674
Christopher Faulet46230362019-10-17 16:04:20 +02002675 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002676 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002677 if (h1c->flags & H1C_F_CO_STREAMER)
2678 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002679
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002680 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002681 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002682 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002683 if (h1c->flags & H1C_F_OUT_FULL) {
2684 h1c->flags &= ~H1C_F_OUT_FULL;
2685 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2686 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002687 b_del(&h1c->obuf, ret);
2688 sent = 1;
2689 }
2690
Christopher Faulet145aa472018-12-06 10:56:20 +01002691 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002692 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002693 /* error or output closed, nothing to send, clear the buffer to release it */
2694 b_reset(&h1c->obuf);
2695 }
2696
Christopher Faulet51dbc942018-09-13 09:05:15 +02002697 end:
Christopher Faulet10a86702021-04-07 14:18:11 +02002698 if (!(h1c->flags & H1C_F_OUT_FULL))
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002699 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002700
Christopher Faulet51dbc942018-09-13 09:05:15 +02002701 /* We're done, no more to send */
2702 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002703 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002704 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002705 if (h1c->flags & H1C_F_ST_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002706 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02002707 h1_shutw_conn(conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002708 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002709 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002710 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2711 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002712 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002713 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002714
Christopher Faulet6b81df72019-10-01 22:08:43 +02002715 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002716 return sent;
2717}
2718
Christopher Faulet51dbc942018-09-13 09:05:15 +02002719/* callback called on any event by the connection handler.
2720 * It applies changes and returns zero, or < 0 if it wants immediate
2721 * destruction of the connection.
2722 */
2723static int h1_process(struct h1c * h1c)
2724{
2725 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002726 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002727
Christopher Faulet6b81df72019-10-01 22:08:43 +02002728 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2729
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002730 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002731 if (b_data(&h1c->ibuf) && /* Input data to be processed */
Christopher Fauletab7389d2021-09-16 08:16:23 +02002732 (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */
2733 !(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 +02002734 struct buffer *buf;
2735 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002736
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002737 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2738 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002739 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002740
2741 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002742 if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */
Christopher Faulet143e9e52021-03-08 15:32:03 +01002743 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */
2744 !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002745 /* Try to match H2 preface before parsing the request headers. */
2746 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2747 h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002748 if (h1c->flags & H1C_F_ST_ATTACHED) {
2749 /* Force the REOS here to be sure to release the CS.
2750 Here ATTACHED implies !READY, and h1s defined
2751 */
2752 BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY));
2753 h1s->flags |= H1S_F_REOS;
2754 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002755 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002756 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002757 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002758 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002759
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002760 /* Create the H1 stream if not already there */
2761 if (!h1s) {
2762 h1s = h1c_frt_stream_new(h1c);
2763 if (!h1s) {
2764 b_reset(&h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002765 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002766 goto no_parsing;
2767 }
2768 }
2769
2770 if (h1s->sess->t_idle == -1)
2771 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2772
2773 /* Get the stream rxbuf */
2774 buf = h1_get_buf(h1c, &h1s->rxbuf);
2775 if (!buf) {
2776 h1c->flags |= H1C_F_IN_SALLOC;
2777 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2778 return 0;
2779 }
2780
2781 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01002782 h1_process_demux(h1c, buf, count);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002783 h1_release_buf(h1c, &h1s->rxbuf);
2784 h1_set_idle_expiration(h1c);
2785
2786 no_parsing:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002787 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002788 h1_handle_internal_err(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002789 h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet26a26432021-01-27 11:27:50 +01002790 TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002791 }
2792 else if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002793 h1_handle_parsing_error(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002794 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002795 TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002796 }
Christopher Faulet2eed8002020-12-07 11:26:13 +01002797 else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) {
2798 h1_handle_not_impl_err(h1c);
2799 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01002800 TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR);
Christopher Faulet2eed8002020-12-07 11:26:13 +01002801 }
Christopher Fauletae635762020-09-21 11:47:16 +02002802 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002803 h1_send(h1c);
2804
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002805 if ((conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn) || (h1c->flags & H1C_F_ST_ERROR)) {
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01002806 if (!(h1c->flags & H1C_F_ST_READY)) {
2807 /* No conn-stream or not ready */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002808 /* shutdown for reads and error on the frontend connection: Send an error */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002809 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR))) {
Christopher Fauletb3230f72021-09-21 18:38:20 +02002810 if (h1_handle_parsing_error(h1c))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002811 h1_send(h1c);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002812 h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002813 }
2814
2815 /* Handle pending error, if any (only possible on frontend connection) */
2816 if (h1c->flags & H1C_F_ERR_PENDING) {
2817 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2818 if (h1_send_error(h1c))
2819 h1_send(h1c);
2820 }
Christopher Fauletae635762020-09-21 11:47:16 +02002821
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002822 /* If there is some pending outgoing data or error, just wait */
2823 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2824 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002825
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002826 /* Otherwise we can release the H1 connection */
2827 goto release;
2828 }
2829 else {
2830 /* Here there is still a H1 stream with a conn-stream.
2831 * Report the connection state at the stream level
2832 */
2833 if (conn_xprt_read0_pending(conn)) {
2834 h1s->flags |= H1S_F_REOS;
2835 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2836 }
Christopher Faulet3ced1d12020-11-27 16:44:01 +01002837 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002838 h1s->cs->flags |= CS_FL_ERROR;
2839 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Christopher Fauletad4daf62021-01-21 17:49:01 +01002840 h1_alert(h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002841 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002842 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002843
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002844 if (!b_data(&h1c->ibuf))
2845 h1_release_buf(h1c, &h1c->ibuf);
2846
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002847 /* Check if a soft-stop is in progress.
2848 * Release idling front connection if this is the case.
2849 */
2850 if (!(h1c->flags & H1C_F_IS_BACK)) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002851 if (unlikely(h1c->px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))) {
Amaury Denoyelleefc6e952021-05-05 11:11:11 +02002852 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
2853 goto release;
2854 }
2855 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002856
2857 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2858 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2859 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002860 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002861
Christopher Faulet47365272018-10-31 17:40:50 +01002862 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002863 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002864 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002865 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002866
2867 release:
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002868 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002869 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01002870 * attached CS first. Here, the H1C must not be READY */
2871 BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY);
2872
2873 if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS))
2874 h1s->cs->flags |= CS_FL_EOS;
2875 if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR))
2876 h1s->cs->flags |= CS_FL_ERROR;
2877 h1_alert(h1s);
2878 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
2879 }
2880 else {
2881 h1_release(h1c);
2882 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
2883 }
Christopher Faulet539e0292018-11-19 10:40:09 +01002884 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002885}
2886
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002887struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002888{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002889 struct connection *conn;
2890 struct tasklet *tl = (struct tasklet *)t;
2891 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002892 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002893 int ret = 0;
2894
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002895 if (state & TASK_F_USR1) {
2896 /* the tasklet was idling on an idle connection, it might have
2897 * been stolen, let's be careful!
2898 */
2899 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2900 if (tl->context == NULL) {
2901 /* The connection has been taken over by another thread,
2902 * we're no longer responsible for it, so just free the
2903 * tasklet, and do nothing.
2904 */
2905 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
2906 tasklet_free(tl);
2907 return NULL;
2908 }
2909 conn = h1c->conn;
2910 TRACE_POINT(H1_EV_H1C_WAKE, conn);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002911
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002912 /* Remove the connection from the list, to be sure nobody attempts
2913 * to use it while we handle the I/O events
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002914 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002915 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2916 if (conn_in_list)
2917 conn_delete_from_tree(&conn->hash_node->node);
2918
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002919 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01002920 } else {
2921 /* we're certain the connection was not in an idle list */
2922 conn = h1c->conn;
2923 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2924 conn_in_list = 0;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002925 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002926
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002927 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002928 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002929 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002930 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002931 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002932 ret = h1_process(h1c);
Willy Tarreau74163142021-03-13 11:30:19 +01002933
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002934 /* If we were in an idle list, we want to add it back into it,
2935 * unless h1_process() returned -1, which mean it has destroyed
2936 * the connection (testing !ret is enough, if h1_process() wasn't
2937 * called then ret will be 0 anyway.
2938 */
Willy Tarreau74163142021-03-13 11:30:19 +01002939 if (ret < 0)
2940 t = NULL;
2941
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002942 if (!ret && conn_in_list) {
2943 struct server *srv = objt_server(conn->target);
2944
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002945 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002946 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002947 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002948 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01002949 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002950 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002951 }
Willy Tarreau74163142021-03-13 11:30:19 +01002952 return t;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002953}
2954
Christopher Faulet51dbc942018-09-13 09:05:15 +02002955static int h1_wake(struct connection *conn)
2956{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002957 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002958 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002959
Christopher Faulet6b81df72019-10-01 22:08:43 +02002960 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2961
Christopher Faulet539e0292018-11-19 10:40:09 +01002962 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002963 ret = h1_process(h1c);
2964 if (ret == 0) {
2965 struct h1s *h1s = h1c->h1s;
2966
Christopher Fauletad4daf62021-01-21 17:49:01 +01002967 if (h1c->flags & H1C_F_ST_ATTACHED)
2968 h1_alert(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002969 }
2970 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002971}
2972
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002973/* Connection timeout management. The principle is that if there's no receipt
2974 * nor sending for a certain amount of time, the connection is closed.
2975 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002976struct task *h1_timeout_task(struct task *t, void *context, unsigned int state)
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002977{
2978 struct h1c *h1c = context;
2979 int expired = tick_is_expired(t->expire, now_ms);
2980
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002981 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002982
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002983 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002984 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002985 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002986
2987 /* Somebody already stole the connection from us, so we should not
2988 * free it, we just have to free the task.
2989 */
2990 if (!t->context) {
2991 h1c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002992 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002993 goto do_leave;
2994 }
2995
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002996 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01002997 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002998 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002999 return t;
3000 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003001
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003002 /* If a conn-stream is still attached and ready to the mux, wait for the
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003003 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003004 */
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003005 if (h1c->flags & H1C_F_ST_READY) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003006 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003007 t->expire = TICK_ETERNITY;
3008 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
3009 return t;
3010 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003011
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003012 /* Try to send an error to the client */
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003013 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) {
3014 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003015 TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003016 if (h1_handle_req_tout(h1c))
3017 h1_send(h1c);
3018 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
3019 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003020 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003021 return t;
3022 }
3023 }
3024
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003025 if (h1c->flags & H1C_F_ST_ATTACHED) {
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003026 /* Don't release the H1 connection right now, we must destroy the
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003027 * attached CS first. Here, the H1C must not be READY */
3028 h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR);
3029 h1_alert(h1c->h1s);
3030 h1_refresh_timeout(h1c);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003031 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock);
Christopher Faulet0f9395d2021-01-21 17:50:19 +01003032 TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE);
3033 return t;
3034 }
3035
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003036 /* We're about to destroy the connection, so make sure nobody attempts
3037 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003038 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003039 if (h1c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003040 conn_delete_from_tree(&h1c->conn->hash_node->node);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003041
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003042 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02003043 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003044
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003045 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02003046 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003047
3048 if (!h1c) {
3049 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003050 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003051 return NULL;
3052 }
3053
3054 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02003055 h1_release(h1c);
3056 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003057 return NULL;
3058}
3059
Christopher Faulet51dbc942018-09-13 09:05:15 +02003060/*******************************************/
3061/* functions below are used by the streams */
3062/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02003063
Christopher Faulet51dbc942018-09-13 09:05:15 +02003064/*
3065 * Attach a new stream to a connection
3066 * (Used for outgoing connections)
3067 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003068static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003069{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003070 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003071 struct conn_stream *cs = NULL;
3072 struct h1s *h1s;
3073
Christopher Faulet6b81df72019-10-01 22:08:43 +02003074 TRACE_ENTER(H1_EV_STRM_NEW, conn);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003075 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003076 TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3077 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003078 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003079
Christopher Faulet236c93b2020-07-02 09:19:54 +02003080 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003081 if (!cs) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003082 TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3083 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003084 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003085
Christopher Faulet2f0ec662020-09-24 10:30:15 +02003086 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003087 if (h1s == NULL) {
Christopher Faulet26a26432021-01-27 11:27:50 +01003088 TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
3089 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003090 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003091
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003092 /* the connection is not idle anymore, let's mark this */
3093 HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003094 xprt_set_used(conn, conn->xprt, conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003095
Christopher Faulet6b81df72019-10-01 22:08:43 +02003096 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003097 return cs;
Christopher Faulet26a26432021-01-27 11:27:50 +01003098 err:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003099 cs_free(cs);
Christopher Faulet26a26432021-01-27 11:27:50 +01003100 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 +02003101 return NULL;
3102}
3103
3104/* Retrieves a valid conn_stream from this connection, or returns NULL. For
3105 * this mux, it's easy as we can only store a single conn_stream.
3106 */
3107static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
3108{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003109 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003110 struct h1s *h1s = h1c->h1s;
3111
3112 if (h1s)
3113 return h1s->cs;
3114
3115 return NULL;
3116}
3117
Christopher Faulet73c12072019-04-08 11:23:22 +02003118static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003119{
Christopher Faulet73c12072019-04-08 11:23:22 +02003120 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003121
Christopher Faulet6b81df72019-10-01 22:08:43 +02003122 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003123 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003124 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003125}
3126
3127/*
3128 * Detach the stream from the connection and possibly release the connection.
3129 */
3130static void h1_detach(struct conn_stream *cs)
3131{
3132 struct h1s *h1s = cs->ctx;
3133 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003134 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01003135 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003136
Christopher Faulet6b81df72019-10-01 22:08:43 +02003137 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
3138
Christopher Faulet51dbc942018-09-13 09:05:15 +02003139 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003140 if (!h1s) {
3141 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003142 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003143 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003144
Olivier Houchardf502aca2018-12-14 19:42:40 +01003145 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003146 h1c = h1s->h1c;
3147 h1s->cs = NULL;
3148
Christopher Faulet42849b02020-10-05 11:35:17 +02003149 sess->accept_date = date;
3150 sess->tv_accept = now;
3151 sess->t_handshake = 0;
3152 sess->t_idle = -1;
3153
Olivier Houchard8a786902018-12-15 16:05:40 +01003154 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
3155 h1s_destroy(h1s);
3156
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003157 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 +02003158 /* If there are any excess server data in the input buffer,
3159 * release it and close the connection ASAP (some data may
3160 * remain in the output buffer). This happens if a server sends
3161 * invalid responses. So in such case, we don't want to reuse
3162 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02003163 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02003164 if (b_data(&h1c->ibuf)) {
3165 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003166 h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003167 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02003168 goto release;
3169 }
Christopher Faulet03627242019-07-19 11:34:08 +02003170
Christopher Faulet08016ab2020-07-01 16:10:06 +02003171 if (h1c->conn->flags & CO_FL_PRIVATE) {
3172 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01003173 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
3174 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01003175 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003176 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01003177 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003178 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003179 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003180 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02003181 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3182 goto end;
3183 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003184 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02003185 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003186 if (h1c->conn->owner == sess)
3187 h1c->conn->owner = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003188
3189 /* mark that the tasklet may lose its context to another thread and
3190 * that the handler needs to check it under the idle conns lock.
3191 */
3192 HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1);
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01003193 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01003194 xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx);
3195
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003196 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01003197 /* The server doesn't want it, let's kill the connection right away */
3198 h1c->conn->mux->destroy(h1c);
3199 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
3200 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01003201 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01003202 /* At this point, the connection has been added to the
3203 * server idle list, so another thread may already have
3204 * hijacked it, so we can't do anything with it.
3205 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01003206 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01003207 }
3208 }
3209
Christopher Fauletf1204b82019-07-19 14:51:06 +02003210 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02003211 /* 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 +01003212 if ((h1c->flags & H1C_F_ST_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02003213 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003214 ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02003215 !h1c->conn->owner) {
3216 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003217 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003218 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003219 else {
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003220 if (h1c->flags & H1C_F_ST_IDLE) {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003221 /* If we have a new request, process it immediately or
3222 * subscribe for reads waiting for new data
3223 */
Christopher Faulet0c366a82020-12-18 15:13:47 +01003224 if (unlikely(b_data(&h1c->ibuf))) {
3225 if (h1_process(h1c) == -1)
3226 goto end;
3227 }
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02003228 else
3229 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3230 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003231 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02003232 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01003233 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003234 end:
3235 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003236}
3237
3238
3239static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3240{
3241 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02003242 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003243
3244 if (!h1s)
3245 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02003246 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003247
Christopher Faulet6b81df72019-10-01 22:08:43 +02003248 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3249
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003250 if (cs->flags & CS_FL_SHR)
3251 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003252 if (cs->flags & CS_FL_KILL_CONN) {
3253 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
3254 goto do_shutr;
3255 }
3256 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3257 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003258 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003259 }
Christopher Faulet7f366362019-04-08 10:51:20 +02003260
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003261 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3262 /* Here attached is implicit because there is CS */
3263 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3264 goto end;
3265 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003266 if (h1s->flags & H1S_F_WANT_KAL) {
3267 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003268 goto end;
3269 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003270
Christopher Faulet7f366362019-04-08 10:51:20 +02003271 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02003272 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
3273 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003274 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003275 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003276 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02003277 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02003278 end:
3279 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003280}
3281
3282static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3283{
3284 struct h1s *h1s = cs->ctx;
3285 struct h1c *h1c;
3286
3287 if (!h1s)
3288 return;
3289 h1c = h1s->h1c;
3290
Christopher Faulet6b81df72019-10-01 22:08:43 +02003291 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
3292
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003293 if (cs->flags & CS_FL_SHW)
3294 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003295 if (cs->flags & CS_FL_KILL_CONN) {
3296 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02003297 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003298 }
3299 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
3300 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3301 goto do_shutw;
3302 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01003303
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003304 if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) {
3305 /* Here attached is implicit because there is CS */
3306 TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s);
3307 goto end;
3308 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02003309 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
3310 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003311 goto end;
3312 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02003313
Christopher Faulet7f366362019-04-08 10:51:20 +02003314 do_shutw:
Christopher Faulet3ced1d12020-11-27 16:44:01 +01003315 h1c->flags |= H1C_F_ST_SHUTDOWN;
Christopher Fauleta85c5222021-10-27 15:36:38 +02003316 if (mode != CS_SHW_NORMAL)
3317 h1c->flags |= H1C_F_ST_SILENT_SHUT;
3318
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02003319 if (!b_data(&h1c->obuf))
Christopher Fauleta85c5222021-10-27 15:36:38 +02003320 h1_shutw_conn(cs->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003321 end:
3322 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003323}
3324
Christopher Fauleta85c5222021-10-27 15:36:38 +02003325static void h1_shutw_conn(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003326{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003327 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003328
Willy Tarreau62592ad2021-03-26 09:09:42 +01003329 if (conn->flags & CO_FL_SOCK_WR_SH)
3330 return;
3331
Christopher Fauleta85c5222021-10-27 15:36:38 +02003332 TRACE_ENTER(H1_EV_H1C_END, conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01003333 conn_xprt_shutw(conn);
Christopher Fauleta85c5222021-10-27 15:36:38 +02003334 conn_sock_shutw(conn, (h1c && !(h1c->flags & H1C_F_ST_SILENT_SHUT)));
3335 TRACE_LEAVE(H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003336}
3337
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003338/* Called from the upper layer, to unsubscribe <es> from events <event_type>
3339 * The <es> pointer is not allowed to differ from the one passed to the
3340 * subscribe() call. It always returns zero.
3341 */
3342static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003343{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003344 struct h1s *h1s = cs->ctx;
3345
3346 if (!h1s)
3347 return 0;
3348
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003349 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003350 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003351
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003352 es->events &= ~event_type;
3353 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003354 h1s->subs = NULL;
3355
3356 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003357 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003358
3359 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003360 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003361
Christopher Faulet51dbc942018-09-13 09:05:15 +02003362 return 0;
3363}
3364
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003365/* Called from the upper layer, to subscribe <es> to events <event_type>. The
3366 * event subscriber <es> is not allowed to change from a previous call as long
3367 * as at least one event is still subscribed. The <event_type> must only be a
3368 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
3369 * the conn_stream <cs> was already detached, in which case it will return -1.
3370 */
3371static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02003372{
Christopher Faulet51dbc942018-09-13 09:05:15 +02003373 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02003374 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003375
3376 if (!h1s)
3377 return -1;
3378
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003379 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003380 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003381
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01003382 es->events |= event_type;
3383 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003384
3385 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02003386 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01003387
3388
Christopher Faulet6b81df72019-10-01 22:08:43 +02003389 if (event_type & SUB_RETRY_SEND) {
3390 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003391 /*
3392 * If the conn_stream attempt to subscribe, and the
3393 * mux isn't subscribed to the connection, then it
3394 * probably means the connection wasn't established
3395 * yet, so we have to subscribe.
3396 */
3397 h1c = h1s->h1c;
3398 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
3399 h1c->conn->xprt->subscribe(h1c->conn,
3400 h1c->conn->xprt_ctx,
3401 SUB_RETRY_SEND,
3402 &h1c->wait_event);
3403 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003404 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003405}
3406
Christopher Faulet564e39c2021-09-21 15:50:55 +02003407/* Called from the upper layer, to receive data.
3408 *
3409 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
3410 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
3411 * means the caller wants to flush input data (from the mux buffer and the
3412 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
3413 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
3414 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
3415 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
3416 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
3417 * copy as much data as possible.
3418 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003419static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3420{
3421 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01003422 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003423 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003424 size_t ret = 0;
3425
Willy Tarreau022e5e52020-09-10 09:33:15 +02003426 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003427
3428 /* Do nothing for now if not READY */
3429 if (!(h1c->flags & H1C_F_ST_READY)) {
3430 TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
3431 goto end;
3432 }
3433
Christopher Faulet539e0292018-11-19 10:40:09 +01003434 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003435 ret = h1_process_demux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003436 else
3437 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003438
Christopher Faulet2b861bf2021-04-06 17:24:39 +02003439 if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) {
3440 h1c->flags |= H1C_F_WANT_SPLICE;
3441 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 +02003442 }
Olivier Houchard02bac852019-08-22 18:34:25 +02003443 else {
Christopher Faulet1baef152021-04-08 18:42:59 +02003444 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 +01003445 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02003446 }
Christopher Faulet39c7b6b2021-01-21 17:44:35 +01003447
3448 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003449 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02003450 return ret;
3451}
3452
3453
3454/* Called from the upper layer, to send data */
3455static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
3456{
3457 struct h1s *h1s = cs->ctx;
3458 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003459 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003460
3461 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003462 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003463 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003464
Willy Tarreau022e5e52020-09-10 09:33:15 +02003465 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003466
Olivier Houchard305d5ab2019-07-24 18:07:06 +02003467 /* If we're not connected yet, or we're waiting for a handshake, stop
3468 * now, as we don't want to remove everything from the channel buffer
3469 * before we're sure we can send it.
3470 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01003471 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003472 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02003473 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003474 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02003475
Christopher Fauletdea24742021-01-22 15:12:30 +01003476 if (h1c->flags & H1C_F_ST_ERROR) {
3477 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003478 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 +01003479 return 0;
3480 }
3481
Christopher Faulet46230362019-10-17 16:04:20 +02003482 /* Inherit some flags from the upper layer */
3483 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
3484 if (flags & CO_SFL_MSG_MORE)
3485 h1c->flags |= H1C_F_CO_MSG_MORE;
3486 if (flags & CO_SFL_STREAMER)
3487 h1c->flags |= H1C_F_CO_STREAMER;
3488
Christopher Fauletc31872f2019-06-04 22:09:36 +02003489 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003490 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003491
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003492 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
Christopher Faulet44c0dcf2021-02-16 18:32:08 +01003493 ret = h1_process_mux(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003494 else
3495 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02003496
3497 if ((count - ret) > 0)
3498 h1c->flags |= H1C_F_CO_MSG_MORE;
3499
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003500 if (!ret)
3501 break;
3502 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003503 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003504 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003505 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003506 }
Christopher Fauletdea24742021-01-22 15:12:30 +01003507
3508 if (h1c->flags & H1C_F_ST_ERROR) {
Christopher Fauletdea24742021-01-22 15:12:30 +01003509 cs->flags |= CS_FL_ERROR;
Christopher Faulet26a26432021-01-27 11:27:50 +01003510 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 +01003511 }
3512
Christopher Faulet7a145d62020-08-05 11:31:16 +02003513 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003514 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003515 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003516}
3517
Willy Tarreaue5733232019-05-22 19:24:06 +02003518#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003519/* Send and get, using splicing */
3520static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3521{
3522 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003523 struct h1c *h1c = h1s->h1c;
3524 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003525 int ret = 0;
3526
Willy Tarreau022e5e52020-09-10 09:33:15 +02003527 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003528
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003529 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003530 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003531 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 +02003532 goto end;
3533 }
3534
Christopher Fauletcf307562021-07-26 10:49:39 +02003535 h1c->flags |= H1C_F_WANT_SPLICE;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003536 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003537 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003538 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003539 }
3540
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003541 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003542 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3543 goto end;
3544 }
3545
Christopher Faulet1be55f92018-10-02 15:59:23 +02003546 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
3547 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003548 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02003549 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02003550 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003551 if (!h1m->curr_len) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003552 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003553 TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003554 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003555 }
3556
Christopher Faulet1be55f92018-10-02 15:59:23 +02003557 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003558 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003559 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003560 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003561 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003562 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003563
Christopher Faulet94d35102021-04-09 11:58:49 +02003564 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003565 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003566 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet94d35102021-04-09 11:58:49 +02003567 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
3568 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
3569 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
3570 }
Christopher Faulet27182292020-07-03 15:08:49 +02003571 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003572
Willy Tarreau022e5e52020-09-10 09:33:15 +02003573 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003574 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003575}
3576
3577static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3578{
3579 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003580 int ret = 0;
3581
Willy Tarreau022e5e52020-09-10 09:33:15 +02003582 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003583
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003584 if (b_data(&h1s->h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003585 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
3586 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003587 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003588 }
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003589 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003590 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003591
Christopher Faulet8454f2d2021-04-06 17:27:32 +02003592 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
3593
3594 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02003595 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003596 return ret;
3597}
3598#endif
3599
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003600static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3601{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003602 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003603 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003604
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003605 switch (mux_ctl) {
3606 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003607 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003608 ret |= MUX_STATUS_READY;
3609 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003610 case MUX_EXIT_STATUS:
Christopher Faulet36e46aa2021-09-28 11:45:05 +02003611 if (output)
3612 *((int *)output) = h1c->errcode;
3613 ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3614 (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR :
3615 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3616 ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR :
Christopher Faulet2eed8002020-12-07 11:26:13 +01003617 MUX_ES_SUCCESS))));
Christopher Fauletc18fc232020-10-06 17:41:36 +02003618 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003619 default:
3620 return -1;
3621 }
3622}
3623
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003624/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01003625static int h1_show_fd(struct buffer *msg, struct connection *conn)
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003626{
3627 struct h1c *h1c = conn->ctx;
3628 struct h1s *h1s = h1c->h1s;
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003629 int ret = 0;
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003630
Christopher Fauletf376a312019-01-04 15:16:06 +01003631 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3632 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003633 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3634 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3635 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3636 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3637
3638 if (h1s) {
3639 char *method;
3640
3641 if (h1s->meth < HTTP_METH_OTHER)
3642 method = http_known_methods[h1s->meth].ptr;
3643 else
3644 method = "UNKNOWN";
3645 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3646 " .meth=%s status=%d",
3647 h1s, h1s->flags,
3648 h1m_state_str(h1s->req.state),
3649 h1m_state_str(h1s->res.state), method, h1s->status);
3650 if (h1s->cs)
3651 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3652 h1s->cs->flags, h1s->cs->data);
Willy Tarreau150c4f82021-01-20 17:05:58 +01003653
3654 chunk_appendf(&trash, " .subs=%p", h1s->subs);
3655 if (h1s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01003656 chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
3657 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
3658 h1s->subs->tasklet->calls,
3659 h1s->subs->tasklet->context);
3660 if (h1s->subs->tasklet->calls >= 1000000)
3661 ret = 1;
3662 resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
3663 chunk_appendf(&trash, ")");
Willy Tarreau150c4f82021-01-20 17:05:58 +01003664 }
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003665 }
Willy Tarreau0c0c0a22021-01-21 09:13:35 +01003666 return ret;
Christopher Faulet98fbe952019-07-22 16:18:24 +02003667}
3668
3669
3670/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3671static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3672{
3673 struct h1_hdr_entry *entry;
3674
3675 /* Be sure there is a non-empty <to> */
3676 if (!strlen(to)) {
3677 memprintf(err, "expect <to>");
3678 return -1;
3679 }
3680
3681 /* Be sure only the case differs between <from> and <to> */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003682 if (strcasecmp(from, to) != 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003683 memprintf(err, "<from> and <to> must not differ execpt the case");
3684 return -1;
3685 }
3686
3687 /* Be sure <from> does not already existsin the tree */
3688 if (ebis_lookup(&hdrs_map.map, from)) {
3689 memprintf(err, "duplicate entry '%s'", from);
3690 return -1;
3691 }
3692
3693 /* Create the entry and insert it in the tree */
3694 entry = malloc(sizeof(*entry));
3695 if (!entry) {
3696 memprintf(err, "out of memory");
3697 return -1;
3698 }
3699
3700 entry->node.key = strdup(from);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01003701 entry->name = ist(strdup(to));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01003702 if (!entry->node.key || !isttest(entry->name)) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003703 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003704 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003705 free(entry);
3706 memprintf(err, "out of memory");
3707 return -1;
3708 }
3709 ebis_insert(&hdrs_map.map, &entry->node);
3710 return 0;
3711}
3712
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003713/* Migrate the the connection to the current thread.
3714 * Return 0 if successful, non-zero otherwise.
3715 * Expected to be called with the old thread lock held.
3716 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003717static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003718{
3719 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003720 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003721
3722 if (fd_takeover(conn->handle.fd, conn) != 0)
3723 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003724
3725 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3726 /* We failed to takeover the xprt, even if the connection may
3727 * still be valid, flag it as error'd, as we have already
3728 * taken over the fd, and wake the tasklet, so that it will
3729 * destroy it.
3730 */
3731 conn->flags |= CO_FL_ERROR;
3732 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3733 return -1;
3734 }
3735
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003736 if (h1c->wait_event.events)
3737 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3738 h1c->wait_event.events, &h1c->wait_event);
3739 /* To let the tasklet know it should free itself, and do nothing else,
3740 * set its context to NULL.
3741 */
3742 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003743 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003744
3745 task = h1c->task;
3746 if (task) {
3747 task->context = NULL;
3748 h1c->task = NULL;
3749 __ha_barrier_store();
3750 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003751
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003752 h1c->task = task_new_here();
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003753 if (!h1c->task) {
3754 h1_release(h1c);
3755 return -1;
3756 }
3757 h1c->task->process = h1_timeout_task;
3758 h1c->task->context = h1c;
3759 }
3760 h1c->wait_event.tasklet = tasklet_new();
3761 if (!h1c->wait_event.tasklet) {
3762 h1_release(h1c);
3763 return -1;
3764 }
3765 h1c->wait_event.tasklet->process = h1_io_cb;
3766 h1c->wait_event.tasklet->context = h1c;
3767 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3768 SUB_RETRY_RECV, &h1c->wait_event);
3769
3770 return 0;
3771}
3772
3773
Christopher Faulet98fbe952019-07-22 16:18:24 +02003774static void h1_hdeaders_case_adjust_deinit()
3775{
3776 struct ebpt_node *node, *next;
3777 struct h1_hdr_entry *entry;
3778
3779 node = ebpt_first(&hdrs_map.map);
3780 while (node) {
3781 next = ebpt_next(node);
3782 ebpt_delete(node);
3783 entry = container_of(node, struct h1_hdr_entry, node);
3784 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003785 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003786 free(entry);
3787 node = next;
3788 }
3789 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003790}
3791
Christopher Faulet98fbe952019-07-22 16:18:24 +02003792static int cfg_h1_headers_case_adjust_postparser()
3793{
3794 FILE *file = NULL;
3795 char *c, *key_beg, *key_end, *value_beg, *value_end;
3796 char *err;
3797 int rc, line = 0, err_code = 0;
3798
3799 if (!hdrs_map.name)
3800 goto end;
3801
3802 file = fopen(hdrs_map.name, "r");
3803 if (!file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003804 ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003805 hdrs_map.name);
3806 err_code |= ERR_ALERT | ERR_FATAL;
3807 goto end;
3808 }
3809
3810 /* now parse all lines. The file may contain only two header name per
3811 * line, separated by spaces. All heading and trailing spaces will be
3812 * ignored. Lines starting with a # are ignored.
3813 */
3814 while (fgets(trash.area, trash.size, file) != NULL) {
3815 line++;
3816 c = trash.area;
3817
3818 /* strip leading spaces and tabs */
3819 while (*c == ' ' || *c == '\t')
3820 c++;
3821
3822 /* ignore emptu lines, or lines beginning with a dash */
3823 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3824 continue;
3825
3826 /* look for the end of the key */
3827 key_beg = c;
3828 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3829 c++;
3830 key_end = c;
3831
3832 /* strip middle spaces and tabs */
3833 while (*c == ' ' || *c == '\t')
3834 c++;
3835
3836 /* look for the end of the value, it is the end of the line */
3837 value_beg = c;
3838 while (*c && *c != '\n' && *c != '\r')
3839 c++;
3840 value_end = c;
3841
3842 /* trim possibly trailing spaces and tabs */
3843 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3844 value_end--;
3845
3846 /* set final \0 and check entries */
3847 *key_end = '\0';
3848 *value_end = '\0';
3849
3850 err = NULL;
3851 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3852 if (rc < 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003853 ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003854 hdrs_map.name, err, line);
3855 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003856 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003857 goto end;
3858 }
3859 if (rc > 0) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003860 ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
Christopher Faulet98fbe952019-07-22 16:18:24 +02003861 hdrs_map.name, err, line);
3862 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003863 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003864 }
3865 }
3866
3867 end:
3868 if (file)
3869 fclose(file);
3870 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3871 return err_code;
3872}
3873
3874
3875/* config parser for global "h1-outgoing-header-case-adjust" */
3876static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003877 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003878 char **err)
3879{
3880 if (too_many_args(2, args, err, NULL))
3881 return -1;
3882 if (!*(args[1]) || !*(args[2])) {
3883 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3884 return -1;
3885 }
3886 return add_hdr_case_adjust(args[1], args[2], err);
3887}
3888
3889/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3890static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01003891 const struct proxy *defpx, const char *file, int line,
Christopher Faulet98fbe952019-07-22 16:18:24 +02003892 char **err)
3893{
3894 if (too_many_args(1, args, err, NULL))
3895 return -1;
3896 if (!*(args[1])) {
3897 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3898 return -1;
3899 }
3900 free(hdrs_map.name);
3901 hdrs_map.name = strdup(args[1]);
3902 return 0;
3903}
3904
3905
3906/* config keyword parsers */
3907static struct cfg_kw_list cfg_kws = {{ }, {
3908 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3909 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3910 { 0, NULL, NULL },
3911 }
3912};
3913
3914INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3915REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3916
3917
Christopher Faulet51dbc942018-09-13 09:05:15 +02003918/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003919/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003920/****************************************/
3921
3922/* The mux operations */
Christopher Faulet3f612f72021-02-05 16:44:21 +01003923static const struct mux_ops mux_http_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003924 .init = h1_init,
3925 .wake = h1_wake,
3926 .attach = h1_attach,
3927 .get_first_cs = h1_get_first_cs,
3928 .detach = h1_detach,
3929 .destroy = h1_destroy,
3930 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003931 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003932 .rcv_buf = h1_rcv_buf,
3933 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003934#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003935 .rcv_pipe = h1_rcv_pipe,
3936 .snd_pipe = h1_snd_pipe,
3937#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003938 .subscribe = h1_subscribe,
3939 .unsubscribe = h1_unsubscribe,
3940 .shutr = h1_shutr,
3941 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003942 .show_fd = h1_show_fd,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003943 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003944 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003945 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003946 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003947};
3948
Christopher Faulet3f612f72021-02-05 16:44:21 +01003949static const struct mux_ops mux_h1_ops = {
3950 .init = h1_init,
3951 .wake = h1_wake,
3952 .attach = h1_attach,
3953 .get_first_cs = h1_get_first_cs,
3954 .detach = h1_detach,
3955 .destroy = h1_destroy,
3956 .avail_streams = h1_avail_streams,
3957 .used_streams = h1_used_streams,
3958 .rcv_buf = h1_rcv_buf,
3959 .snd_buf = h1_snd_buf,
3960#if defined(USE_LINUX_SPLICE)
3961 .rcv_pipe = h1_rcv_pipe,
3962 .snd_pipe = h1_snd_pipe,
3963#endif
3964 .subscribe = h1_subscribe,
3965 .unsubscribe = h1_unsubscribe,
3966 .shutr = h1_shutr,
3967 .shutw = h1_shutw,
3968 .show_fd = h1_show_fd,
3969 .ctl = h1_ctl,
3970 .takeover = h1_takeover,
3971 .flags = MX_FL_HTX|MX_FL_NO_UPG,
3972 .name = "H1",
3973};
Christopher Faulet51dbc942018-09-13 09:05:15 +02003974
Christopher Faulet3f612f72021-02-05 16:44:21 +01003975/* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */
3976static struct mux_proto_list mux_proto_h1 =
3977 { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
3978static struct mux_proto_list mux_proto_http =
3979 { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02003980
Christopher Faulet3f612f72021-02-05 16:44:21 +01003981INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1);
3982INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http);
Willy Tarreau0108d902018-11-25 19:14:37 +01003983
Christopher Faulet51dbc942018-09-13 09:05:15 +02003984/*
3985 * Local variables:
3986 * c-indent-level: 8
3987 * c-basic-offset: 8
3988 * End:
3989 */