blob: ae8d5ff04d31355b4e2838cf912ca85beec10dcf [file] [log] [blame]
Christopher Faulet51dbc942018-09-13 09:05:15 +02001/*
2 * HTT/1 mux-demux for connections
3 *
4 * Copyright 2018 Christopher Faulet <cfaulet@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
Willy Tarreaub2551052020-06-09 09:07:15 +020012#include <import/ebistree.h>
13
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020014#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020015#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020016#include <haproxy/connection.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020017#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020018#include <haproxy/h1_htx.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020019#include <haproxy/h2.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020021#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/istbuf.h>
23#include <haproxy/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020024#include <haproxy/pipe-t.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020025#include <haproxy/proxy-t.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020026#include <haproxy/session-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020027#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020028#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020029#include <haproxy/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020030
31/*
32 * H1 Connection flags (32 bits)
33 */
34#define H1C_F_NONE 0x00000000
35
36/* Flags indicating why writing output data are blocked */
37#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
38#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
39/* 0x00000004 - 0x00000008 unused */
40
41/* Flags indicating why reading input data are blocked. */
42#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
43#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletd17ad822020-09-24 15:14:29 +020044#define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */
45/* 0x00000080 - 0x00000800 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020046
Christopher Faulet7b109f22019-12-05 11:18:31 +010047/* Flags indicating the connection state */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +020048#define H1C_F_CS_ERROR 0x00001000 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */
49#define H1C_F_CS_SHUTDOWN 0x00002000 /* connection must be shut down ASAP flushing output first (conn-stream may still be attached) */
50/* 0x00000040 unused */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +010051#define H1C_F_CS_IDLE 0x00008000 /* connection is idle and may be reused
52 * (exclusive to all H1C_F_CS flags and never set when an h1s is attached) */
Christopher Faulet51dbc942018-09-13 09:05:15 +020053
Christopher Fauletf2824e62018-10-01 12:12:37 +020054#define H1C_F_WAIT_NEXT_REQ 0x00010000 /* waiting for the next request to start, use keep-alive timeout */
Christopher Faulet0ef372a2019-04-08 10:57:20 +020055#define H1C_F_UPG_H2C 0x00020000 /* set if an upgrade to h2 should be done */
Christopher Faulet129817b2018-09-20 16:14:40 +020056
Christopher Faulet46230362019-10-17 16:04:20 +020057#define H1C_F_CO_MSG_MORE 0x00040000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */
58#define H1C_F_CO_STREAMER 0x00080000 /* set if CO_SFL_STREAMER must be set when calling xprt->snd_buf() */
59
Christopher Faulet089acd52020-09-21 10:57:52 +020060#define H1C_F_WAIT_OPPOSITE 0x00100000 /* Don't read more data for now, waiting sync with opposite side */
Christopher Fauletae635762020-09-21 11:47:16 +020061#define H1C_F_WANT_SPLICE 0x00200000 /* Don't read into a bufffer because we want to use or we are using splicing */
Christopher Faulet0a799aa2020-09-24 09:52:52 +020062#define H1C_F_IS_BACK 0x00400000 /* Set on outgoing connection */
Christopher Fauletc18fc232020-10-06 17:41:36 +020063#define H1C_F_ERR_PENDING 0x00800000 /* Send an error and close the connection ASAP (implies H1C_F_CS_ERROR) */
Christopher Fauletbb8baf42020-09-29 15:18:40 +020064
65#define H1C_F_CS_EMBRYONIC 0x01000000 /* Set when a H1 stream with no conn-stream is attached to the connection */
66#define H1C_F_CS_ATTACHED 0x02000000 /* Set when a H1 stream with a conn-stream is attached to the connection */
67#define H1C_F_CS_ALIVE (H1C_F_CS_IDLE|H1C_F_CS_EMBRYONIC|H1C_F_CS_ATTACHED)
Christopher Faulet51dbc942018-09-13 09:05:15 +020068/*
69 * H1 Stream flags (32 bits)
70 */
Christopher Faulet129817b2018-09-20 16:14:40 +020071#define H1S_F_NONE 0x00000000
Christopher Faulet60ef12c2020-09-24 10:05:44 +020072/* 0x00000001..0x00000004 unsued */
Willy Tarreauc493c9c2019-06-03 14:18:22 +020073#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020074#define H1S_F_WANT_KAL 0x00000010
75#define H1S_F_WANT_TUN 0x00000020
76#define H1S_F_WANT_CLO 0x00000040
77#define H1S_F_WANT_MSK 0x00000070
78#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020079
Christopher Faulet76014fd2019-12-10 11:47:22 +010080#define H1S_F_PARSING_DONE 0x00000400 /* Set when incoming message parsing is finished (EOM added) */
Christopher Faulet60ef12c2020-09-24 10:05:44 +020081#define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */
82#define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */
83#define H1S_F_ERROR 0x00001800 /* stream error mask */
84
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020085#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 +020086#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020087
88/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020089struct h1c {
90 struct connection *conn;
91 struct proxy *px;
92 uint32_t flags; /* Connection flags: H1C_F_* */
Christopher Fauletc18fc232020-10-06 17:41:36 +020093 unsigned int errcode; /* Status code when an error occurred at the H1 connection level */
Christopher Faulet51dbc942018-09-13 09:05:15 +020094 struct buffer ibuf; /* Input buffer to store data before parsing */
95 struct buffer obuf; /* Output buffer to store data after reformatting */
96
97 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
98 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
99
100 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100101 struct task *task; /* timeout management task */
Christopher Fauletdbe57792020-10-05 17:50:58 +0200102 int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */
103 int timeout; /* client/server timeout duration */
104 int shut_timeout; /* client-fin/server-fin timeout duration */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200105};
106
107/* H1 stream descriptor */
108struct h1s {
109 struct h1c *h1c;
110 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100111 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100113 struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200114
Olivier Houchardf502aca2018-12-14 19:42:40 +0100115 struct session *sess; /* Associated session */
Christopher Fauletd17ad822020-09-24 15:14:29 +0200116 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Christopher Faulet129817b2018-09-20 16:14:40 +0200117 struct h1m req;
118 struct h1m res;
119
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500120 enum http_meth_t meth; /* HTTP request method */
Christopher Faulet129817b2018-09-20 16:14:40 +0200121 uint16_t status; /* HTTP response status */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200122};
123
Christopher Faulet98fbe952019-07-22 16:18:24 +0200124/* Map of headers used to convert outgoing headers */
125struct h1_hdrs_map {
126 char *name;
127 struct eb_root map;
128};
129
130/* An entry in a headers map */
131struct h1_hdr_entry {
132 struct ist name;
133 struct ebpt_node node;
134};
135
136/* Declare the headers map */
137static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
138
139
Christopher Faulet6b81df72019-10-01 22:08:43 +0200140/* trace source and events */
141static void h1_trace(enum trace_level level, uint64_t mask,
142 const struct trace_source *src,
143 const struct ist where, const struct ist func,
144 const void *a1, const void *a2, const void *a3, const void *a4);
145
146/* The event representation is split like this :
147 * h1c - internal H1 connection
148 * h1s - internal H1 stream
149 * strm - application layer
150 * rx - data receipt
151 * tx - data transmission
152 *
153 */
154static const struct trace_event h1_trace_events[] = {
155#define H1_EV_H1C_NEW (1ULL << 0)
156 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
157#define H1_EV_H1C_RECV (1ULL << 1)
158 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
159#define H1_EV_H1C_SEND (1ULL << 2)
160 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
161#define H1_EV_H1C_BLK (1ULL << 3)
162 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
163#define H1_EV_H1C_WAKE (1ULL << 4)
164 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
165#define H1_EV_H1C_END (1ULL << 5)
166 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
167#define H1_EV_H1C_ERR (1ULL << 6)
168 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
169
170#define H1_EV_RX_DATA (1ULL << 7)
171 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
172#define H1_EV_RX_EOI (1ULL << 8)
173 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
174#define H1_EV_RX_HDRS (1ULL << 9)
175 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
176#define H1_EV_RX_BODY (1ULL << 10)
177 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
178#define H1_EV_RX_TLRS (1ULL << 11)
179 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
180
181#define H1_EV_TX_DATA (1ULL << 12)
182 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
183#define H1_EV_TX_EOI (1ULL << 13)
184 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
185#define H1_EV_TX_HDRS (1ULL << 14)
186 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
187#define H1_EV_TX_BODY (1ULL << 15)
188 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
189#define H1_EV_TX_TLRS (1ULL << 16)
190 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
191
192#define H1_EV_H1S_NEW (1ULL << 17)
193 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
194#define H1_EV_H1S_BLK (1ULL << 18)
195 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
196#define H1_EV_H1S_END (1ULL << 19)
197 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
198#define H1_EV_H1S_ERR (1ULL << 20)
199 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
200
201#define H1_EV_STRM_NEW (1ULL << 21)
202 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
203#define H1_EV_STRM_RECV (1ULL << 22)
204 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
205#define H1_EV_STRM_SEND (1ULL << 23)
206 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
207#define H1_EV_STRM_WAKE (1ULL << 24)
208 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
209#define H1_EV_STRM_SHUT (1ULL << 25)
210 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
211#define H1_EV_STRM_END (1ULL << 26)
212 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
213#define H1_EV_STRM_ERR (1ULL << 27)
214 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
215
216 { }
217};
218
219static const struct name_desc h1_trace_lockon_args[4] = {
220 /* arg1 */ { /* already used by the connection */ },
221 /* arg2 */ { .name="h1s", .desc="H1 stream" },
222 /* arg3 */ { },
223 /* arg4 */ { }
224};
225
226static const struct name_desc h1_trace_decoding[] = {
227#define H1_VERB_CLEAN 1
228 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
229#define H1_VERB_MINIMAL 2
230 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
231#define H1_VERB_SIMPLE 3
232 { .name="simple", .desc="add request/response status line or htx info when available" },
233#define H1_VERB_ADVANCED 4
234 { .name="advanced", .desc="add header fields or frame decoding when available" },
235#define H1_VERB_COMPLETE 5
236 { .name="complete", .desc="add full data dump when available" },
237 { /* end */ }
238};
239
240static struct trace_source trace_h1 = {
241 .name = IST("h1"),
242 .desc = "HTTP/1 multiplexer",
243 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
244 .default_cb = h1_trace,
245 .known_events = h1_trace_events,
246 .lockon_args = h1_trace_lockon_args,
247 .decoding = h1_trace_decoding,
248 .report_events = ~0, // report everything by default
249};
250
251#define TRACE_SOURCE &trace_h1
252INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
253
Christopher Faulet51dbc942018-09-13 09:05:15 +0200254/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100255DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
256DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200257
Christopher Faulet51dbc942018-09-13 09:05:15 +0200258static int h1_recv(struct h1c *h1c);
259static int h1_send(struct h1c *h1c);
260static int h1_process(struct h1c *h1c);
261static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100262static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state);
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200263static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200264static void h1_wake_stream_for_recv(struct h1s *h1s);
265static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200266
Christopher Faulet6b81df72019-10-01 22:08:43 +0200267/* the H1 traces always expect that arg1, if non-null, is of type connection
268 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
269 * that arg3, if non-null, is a htx for rx/tx headers.
270 */
271static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
272 const struct ist where, const struct ist func,
273 const void *a1, const void *a2, const void *a3, const void *a4)
274{
275 const struct connection *conn = a1;
276 const struct h1c *h1c = conn ? conn->ctx : NULL;
277 const struct h1s *h1s = a2;
278 const struct htx *htx = a3;
279 const size_t *val = a4;
280
281 if (!h1c)
282 h1c = (h1s ? h1s->h1c : NULL);
283
284 if (!h1c || src->verbosity < H1_VERB_CLEAN)
285 return;
286
287 /* Display frontend/backend info by default */
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200288 chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F'));
Christopher Faulet6b81df72019-10-01 22:08:43 +0200289
290 /* Display request and response states if h1s is defined */
291 if (h1s)
292 chunk_appendf(&trace_buf, " [%s, %s]",
293 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
294
295 if (src->verbosity == H1_VERB_CLEAN)
296 return;
297
298 /* Display the value to the 4th argument (level > STATE) */
299 if (src->level > TRACE_LEVEL_STATE && val)
Willy Tarreaue18f53e2019-11-27 15:41:31 +0100300 chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200301
302 /* Display status-line if possible (verbosity > MINIMAL) */
303 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
304 const struct htx_blk *blk = htx_get_head_blk(htx);
305 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
306 enum htx_blk_type type = htx_get_blk_type(blk);
307
308 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
309 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
310 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
311 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
312 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
313 }
314
315 /* Display h1c info and, if defined, h1s info (pointer + flags) */
316 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
317 if (h1s)
318 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
319
320 if (src->verbosity == H1_VERB_MINIMAL)
321 return;
322
323 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
324 if (src->level > TRACE_LEVEL_USER) {
325 if (src->verbosity == H1_VERB_COMPLETE ||
326 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
327 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
328 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
329 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
330 if (src->verbosity == H1_VERB_COMPLETE ||
331 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
332 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
333 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
334 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
335 }
336
337 /* Display htx info if defined (level > USER) */
338 if (src->level > TRACE_LEVEL_USER && htx) {
339 int full = 0;
340
341 /* Full htx info (level > STATE && verbosity > SIMPLE) */
342 if (src->level > TRACE_LEVEL_STATE) {
343 if (src->verbosity == H1_VERB_COMPLETE)
344 full = 1;
345 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
346 full = 1;
347 }
348
349 chunk_memcat(&trace_buf, "\n\t", 2);
350 htx_dump(&trace_buf, htx, full);
351 }
352}
353
354
Christopher Faulet51dbc942018-09-13 09:05:15 +0200355/*****************************************************/
356/* functions below are for dynamic buffer management */
357/*****************************************************/
358/*
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100359 * Indicates whether or not we may receive data. The rules are the following :
360 * - if an error or a shutdown for reads was detected on the connection we
Christopher Faulet119ac872020-09-30 17:33:22 +0200361 * must not attempt to receive
362 * - if we are waiting for the connection establishment, we must not attempt
363 * to receive
364 * - if an error was detected on the stream we must not attempt to receive
365 * - if reads are explicitly disabled, we must not attempt to receive
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100366 * - if the input buffer failed to be allocated or is full , we must not try
367 * to receive
Christopher Faulet119ac872020-09-30 17:33:22 +0200368 * - if the mux is not blocked on an input condition, we may attempt to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200369 * - otherwise must may not attempt to receive
370 */
371static inline int h1_recv_allowed(const struct h1c *h1c)
372{
Christopher Faulet2545a0b2019-12-05 12:30:55 +0100373 if (h1c->flags & H1C_F_CS_ERROR) {
374 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 +0200375 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200376 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200377
Willy Tarreau2febb842020-07-31 09:15:43 +0200378 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
379 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 +0100380 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200381 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100382
Christopher Faulet119ac872020-09-30 17:33:22 +0200383 if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) {
384 TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
385 return 0;
386 }
387
Christopher Faulet089acd52020-09-21 10:57:52 +0200388 if (h1c->flags & H1C_F_WAIT_OPPOSITE) {
389 TRACE_DEVEL("recv not allowed (wait_opposite)", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Willy Tarreauf5ea3a82020-07-31 09:16:23 +0200390 return 0;
391 }
392
Christopher Fauletd17ad822020-09-24 15:14:29 +0200393 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200394 return 1;
395
Christopher Faulet6b81df72019-10-01 22:08:43 +0200396 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 +0200397 return 0;
398}
399
400/*
401 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
402 * flags are used to figure what buffer was requested. It returns 1 if the
403 * allocation succeeds, in which case the connection is woken up, or 0 if it's
404 * impossible to wake up and we prefer to be woken up later.
405 */
406static int h1_buf_available(void *target)
407{
408 struct h1c *h1c = target;
409
410 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200411 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 +0200412 h1c->flags &= ~H1C_F_IN_ALLOC;
413 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200414 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200415 return 1;
416 }
417
418 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200419 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 +0200420 h1c->flags &= ~H1C_F_OUT_ALLOC;
Christopher Faulet660f6f32019-10-04 10:22:47 +0200421 if (h1c->h1s)
422 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200423 return 1;
424 }
425
Christopher Fauletd17ad822020-09-24 15:14:29 +0200426 if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc_margin(&h1c->h1s->rxbuf, 0)) {
427 TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn);
428 h1c->flags &= ~H1C_F_IN_SALLOC;
429 tasklet_wakeup(h1c->wait_event.tasklet);
430 return 1;
431 }
432
Christopher Faulet51dbc942018-09-13 09:05:15 +0200433 return 0;
434}
435
436/*
437 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
438 */
439static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
440{
441 struct buffer *buf = NULL;
442
Willy Tarreau21046592020-02-26 10:39:36 +0100443 if (likely(!MT_LIST_ADDED(&h1c->buf_wait.list)) &&
Christopher Faulet51dbc942018-09-13 09:05:15 +0200444 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
445 h1c->buf_wait.target = h1c;
446 h1c->buf_wait.wakeup_cb = h1_buf_available;
Willy Tarreau86891272020-07-10 08:22:26 +0200447 MT_LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200448 }
449 return buf;
450}
451
452/*
453 * Release a buffer, if any, and try to wake up entities waiting in the buffer
454 * wait queue.
455 */
456static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
457{
458 if (bptr->size) {
459 b_free(bptr);
460 offer_buffers(h1c->buf_wait.target, tasks_run_queue);
461 }
462}
463
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100464/* returns the number of streams in use on a connection to figure if it's idle
465 * or not. We rely on H1C_F_CS_IDLE to know if the connection is in-use or
466 * not. This flag is only set when no H1S is attached and when the previous
467 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100468 */
469static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200470{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100471 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200472
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100473 return ((h1c->flags & H1C_F_CS_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200474}
475
Willy Tarreau00f18a32019-01-26 12:19:01 +0100476/* returns the number of streams still available on a connection */
477static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100478{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100479 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100480}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200481
Christopher Faulet7a145d62020-08-05 11:31:16 +0200482/* Refresh the h1c task timeout if necessary */
483static void h1_refresh_timeout(struct h1c *h1c)
484{
485 if (h1c->task) {
Christopher Fauletadcd7892020-10-05 17:13:05 +0200486 if (!(h1c->flags & H1C_F_CS_ALIVE) || (h1c->flags & H1C_F_CS_SHUTDOWN)) {
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200487 /* half-closed or dead connections : switch to clientfin/serverfin
488 * timeouts so that we don't hang too long on clients that have
489 * gone away (especially in tunnel mode).
Willy Tarreau4313d5a2020-09-08 15:40:57 +0200490 */
491 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200492 TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
493 }
494 else if (b_data(&h1c->obuf)) {
495 /* connection with pending outgoing data, need a timeout (server or client). */
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200496 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200497 TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
498 }
499 else if (!(h1c->flags & H1C_F_IS_BACK) && (h1c->flags & (H1C_F_CS_IDLE|H1C_F_CS_EMBRYONIC))) {
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200500 /* front connections waiting for a stream need a timeout. */
501 h1c->task->expire = tick_add(now_ms, h1c->timeout);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200502 TRACE_DEVEL("refreshing connection's timeout (alive front h1c without a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200503 }
Christopher Fauletadcd7892020-10-05 17:13:05 +0200504 else {
505 /* alive back connections of front connections with a conn-stream attached */
506 h1c->task->expire = TICK_ETERNITY;
507 TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn);
508 }
509
Christopher Fauletdbe57792020-10-05 17:50:58 +0200510 /* Finally set the idle expiration date if shorter */
511 h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp);
Christopher Fauletadcd7892020-10-05 17:13:05 +0200512 TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire});
513 task_queue(h1c->task);
Christopher Faulet7a145d62020-08-05 11:31:16 +0200514 }
515}
Christopher Fauletdbe57792020-10-05 17:50:58 +0200516
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200517static void h1_set_idle_expiration(struct h1c *h1c)
Christopher Fauletdbe57792020-10-05 17:50:58 +0200518{
519 if (h1c->flags & H1C_F_IS_BACK || !h1c->task) {
520 TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn);
521 h1c->idle_exp = TICK_ETERNITY;
522 return;
523 }
524
525 if (h1c->flags & H1C_F_CS_IDLE) {
526 if (!tick_isset(h1c->idle_exp)) {
527 if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */
528 !b_data(&h1c->ibuf) && /* No input data */
529 tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */
530 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka);
531 TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn);
532 }
533 else {
534 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
535 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
536 }
537 }
538 }
539 else if (h1c->flags & H1C_F_CS_EMBRYONIC) {
540 if (!tick_isset(h1c->idle_exp)) {
541 h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq);
542 TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn);
543 }
544 }
545 else { // CS_ATTACHED or SHUTDOWN
546 h1c->idle_exp = TICK_ETERNITY;
547 TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn);
548 }
549}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200550/*****************************************************************/
551/* functions below are dedicated to the mux setup and management */
552/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200553
554/* returns non-zero if there are input data pending for stream h1s. */
555static inline size_t h1s_data_pending(const struct h1s *h1s)
556{
557 const struct h1m *h1m;
558
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200559 h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200560 if (h1m->state == H1_MSG_DONE)
Christopher Faulet76014fd2019-12-10 11:47:22 +0100561 return !(h1s->flags & H1S_F_PARSING_DONE);
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200562
563 return b_data(&h1s->h1c->ibuf);
564}
565
Christopher Faulet26256f82020-09-14 11:40:13 +0200566static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input)
Christopher Faulet47365272018-10-31 17:40:50 +0100567{
568 struct conn_stream *cs;
569
Christopher Faulet6b81df72019-10-01 22:08:43 +0200570 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet236c93b2020-07-02 09:19:54 +0200571 cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200572 if (!cs) {
573 TRACE_DEVEL("leaving on 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 +0100574 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200575 }
Christopher Faulet47365272018-10-31 17:40:50 +0100576 h1s->cs = cs;
577 cs->ctx = h1s;
578
579 if (h1s->flags & H1S_F_NOT_FIRST)
580 cs->flags |= CS_FL_NOT_FIRST;
Christopher Fauletbb8baf42020-09-29 15:18:40 +0200581 h1s->h1c->flags = (h1s->h1c->flags & ~H1C_F_CS_EMBRYONIC) | H1C_F_CS_ATTACHED;
Christopher Faulet47365272018-10-31 17:40:50 +0100582
Christopher Faulet27182292020-07-03 15:08:49 +0200583 if (global.tune.options & GTUNE_USE_SPLICE) {
584 TRACE_STATE("notify the mux can use splicing", H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +0100585 cs->flags |= CS_FL_MAY_SPLICE;
Christopher Faulet27182292020-07-03 15:08:49 +0200586 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +0100587
Christopher Faulet26256f82020-09-14 11:40:13 +0200588 if (stream_create_from_cs(cs, input) < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200589 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 +0100590 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200591 }
Christopher Faulet26256f82020-09-14 11:40:13 +0200592 *input = BUF_NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200593
594 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100595 return cs;
596
597 err:
598 cs_free(cs);
599 h1s->cs = NULL;
600 return NULL;
601}
602
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200603static struct h1s *h1s_new(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200604{
605 struct h1s *h1s;
606
Christopher Faulet6b81df72019-10-01 22:08:43 +0200607 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
608
Christopher Faulet51dbc942018-09-13 09:05:15 +0200609 h1s = pool_alloc(pool_head_h1s);
610 if (!h1s)
Christopher Faulet47365272018-10-31 17:40:50 +0100611 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200612 h1s->h1c = h1c;
613 h1c->h1s = h1s;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200614 h1s->sess = NULL;
615 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100616 h1s->flags = H1S_F_WANT_KAL;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100617 h1s->subs = NULL;
Christopher Fauletd17ad822020-09-24 15:14:29 +0200618 h1s->rxbuf = BUF_NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200619
620 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100621 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200622
Christopher Faulet129817b2018-09-20 16:14:40 +0200623 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100624 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200625
626 h1s->status = 0;
627 h1s->meth = HTTP_METH_OTHER;
628
Christopher Faulet47365272018-10-31 17:40:50 +0100629 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
630 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Fauletbb8baf42020-09-29 15:18:40 +0200631 h1c->flags = (h1c->flags & ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_CS_EMBRYONIC;
Christopher Faulet47365272018-10-31 17:40:50 +0100632
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200633 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
634 return h1s;
Christopher Faulete9b70722019-04-08 10:46:02 +0200635
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200636 fail:
637 TRACE_DEVEL("leaving in error", H1_EV_H1S_NEW|H1_EV_H1S_END|H1_EV_H1S_ERR, h1c->conn);
638 return NULL;
639}
Christopher Fauletfeb11742018-11-29 15:12:34 +0100640
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200641static struct h1s *h1c_frt_stream_new(struct h1c *h1c)
642{
643 struct session *sess = h1c->conn->owner;
644 struct h1s *h1s;
645
646 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
647
648 h1s = h1s_new(h1c);
649 if (!h1s)
650 goto fail;
651
652 h1s->sess = sess;
653
654 if (h1c->px->options2 & PR_O2_REQBUG_OK)
655 h1s->req.err_pos = -1;
656
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200657 h1c->idle_exp = TICK_ETERNITY;
658 h1_set_idle_expiration(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200659 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200660 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100661
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200662 fail:
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200663 TRACE_DEVEL("leaving in error", H1_EV_H1S_NEW|H1_EV_H1S_END|H1_EV_H1S_ERR, h1c->conn);
664 return NULL;
665}
666
667static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
668{
669 struct h1s *h1s;
670
671 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
672
673 h1s = h1s_new(h1c);
674 if (!h1s)
675 goto fail;
676
677 h1s->cs = cs;
678 h1s->sess = sess;
679 cs->ctx = h1s;
680
Christopher Fauletbb8baf42020-09-29 15:18:40 +0200681 h1c->flags = (h1c->flags & ~H1C_F_CS_EMBRYONIC) | H1C_F_CS_ATTACHED;
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200682
683 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
684 h1s->res.err_pos = -1;
685
686 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
687 return h1s;
688
689 fail:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200690 TRACE_DEVEL("leaving in error", H1_EV_H1S_NEW|H1_EV_H1S_END|H1_EV_H1S_ERR, h1c->conn);
Christopher Faulet47365272018-10-31 17:40:50 +0100691 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200692}
693
694static void h1s_destroy(struct h1s *h1s)
695{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200696 if (h1s) {
697 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200698
Christopher Faulet6b81df72019-10-01 22:08:43 +0200699 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200700 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200701
Willy Tarreau1b0d4d12020-01-16 11:03:19 +0100702 if (h1s->subs)
703 h1s->subs->events = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200704
Christopher Fauletd17ad822020-09-24 15:14:29 +0200705 h1_release_buf(h1c, &h1s->rxbuf);
706
Christopher Faulet295b8d12020-09-30 17:14:55 +0200707 h1c->flags &= ~(H1C_F_WAIT_OPPOSITE|H1C_F_WANT_SPLICE|H1C_F_CS_EMBRYONIC|H1C_F_CS_ATTACHED|
708 H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC|
709 H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
Christopher Faulet60ef12c2020-09-24 10:05:44 +0200710 if (h1s->flags & H1S_F_ERROR) {
Christopher Faulet47365272018-10-31 17:40:50 +0100711 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200712 TRACE_STATE("h1s on error, set error on h1c", H1_EV_H1C_ERR, h1c->conn, h1s);
713 }
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100714
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200715 if (!(h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN)) && /* No error/shutdown on h1c */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100716 !(h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && /* No error/shutdown on conn */
Christopher Faulet76014fd2019-12-10 11:47:22 +0100717 (h1s->flags & (H1S_F_WANT_KAL|H1S_F_PARSING_DONE)) == (H1S_F_WANT_KAL|H1S_F_PARSING_DONE) && /* K/A possible */
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100718 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
719 h1c->flags |= (H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ);
720 TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s);
721 }
Christopher Faulet3c82d8b2020-10-05 17:11:16 +0200722 else {
723 TRACE_STATE("set shudown on h1c", H1_EV_H1C_ERR, h1c->conn, h1s);
724 h1c->flags |= H1C_F_CS_SHUTDOWN;
725 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200726 pool_free(pool_head_h1s, h1s);
727 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200728}
729
730/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200731 * Initialize the mux once it's attached. It is expected that conn->ctx points
Ilya Shipitsin47d17182020-06-21 21:42:57 +0500732 * to the existing conn_stream (for outgoing connections or for incoming ones
733 * during a mux upgrade) or NULL (for incoming ones during the connection
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200734 * establishment). <input> is always used as Input buffer and may contain
735 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
736 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200737 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200738static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
739 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200740{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200741 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100742 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200743 void *conn_ctx = conn->ctx;
744
745 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200746
747 h1c = pool_alloc(pool_head_h1c);
748 if (!h1c)
749 goto fail_h1c;
750 h1c->conn = conn;
751 h1c->px = proxy;
752
Christopher Fauletaaa67bc2019-12-05 10:23:37 +0100753 h1c->flags = H1C_F_CS_IDLE;
Christopher Fauletc18fc232020-10-06 17:41:36 +0200754 h1c->errcode = 0;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200755 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200756 h1c->obuf = BUF_NULL;
757 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200758 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200759
Willy Tarreau21046592020-02-26 10:39:36 +0100760 MT_LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200761 h1c->wait_event.tasklet = tasklet_new();
762 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200763 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200764 h1c->wait_event.tasklet->process = h1_io_cb;
765 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100766 h1c->wait_event.events = 0;
Christopher Fauletdbe57792020-10-05 17:50:58 +0200767 h1c->idle_exp = TICK_ETERNITY;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200768
Christopher Faulete9b70722019-04-08 10:46:02 +0200769 if (conn_is_back(conn)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +0200770 h1c->flags |= (H1C_F_IS_BACK|H1C_F_WAIT_OPPOSITE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100771 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
772 if (tick_isset(proxy->timeout.serverfin))
773 h1c->shut_timeout = proxy->timeout.serverfin;
774 } else {
775 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
776 if (tick_isset(proxy->timeout.clientfin))
777 h1c->shut_timeout = proxy->timeout.clientfin;
778 }
779 if (tick_isset(h1c->timeout)) {
780 t = task_new(tid_bit);
781 if (!t)
782 goto fail;
783
784 h1c->task = t;
785 t->process = h1_timeout_task;
786 t->context = h1c;
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200787
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100788 t->expire = tick_add(now_ms, h1c->timeout);
789 }
790
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100791 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200792
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200793 if (h1c->flags & H1C_F_IS_BACK) {
794 /* Create a new H1S now for backend connection only */
Christopher Faulet2f0ec662020-09-24 10:30:15 +0200795 if (!h1c_bck_stream_new(h1c, conn_ctx, sess))
796 goto fail;
797 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100798
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200799 if (t) {
800 h1_set_idle_expiration(h1c);
801 t->expire = tick_first(t->expire, h1c->idle_exp);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100802 task_queue(t);
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200803 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100804
Christopher Fauletc4bfa592020-10-06 17:45:34 +0200805 /* prepare to read something */
806 if (h1_recv_allowed(h1c))
Christopher Faulet089acd52020-09-21 10:57:52 +0200807 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200808
809 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200810 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200811 return 0;
812
813 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200814 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200815 if (h1c->wait_event.tasklet)
816 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200817 pool_free(pool_head_h1c, h1c);
818 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200819 conn->ctx = conn_ctx; // restore saved context
820 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200821 return -1;
822}
823
Christopher Faulet73c12072019-04-08 11:23:22 +0200824/* release function. This one should be called to free all resources allocated
825 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200826 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200827static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200828{
Christopher Faulet61840e72019-04-15 09:33:32 +0200829 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200830
Christopher Faulet6b81df72019-10-01 22:08:43 +0200831 TRACE_POINT(H1_EV_H1C_END);
832
Christopher Faulet51dbc942018-09-13 09:05:15 +0200833 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200834 /* The connection must be aattached to this mux to be released */
835 if (h1c->conn && h1c->conn->ctx == h1c)
836 conn = h1c->conn;
837
Christopher Faulet6b81df72019-10-01 22:08:43 +0200838 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
839
Christopher Faulet61840e72019-04-15 09:33:32 +0200840 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200841 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200842 /* Make sure we're no longer subscribed to anything */
843 if (h1c->wait_event.events)
844 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
845 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200846 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200847 /* connection successfully upgraded to H2, this
848 * mux was already released */
849 return;
850 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200851 TRACE_DEVEL("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200852 sess_log(conn->owner); /* Log if the upgrade failed */
853 }
854
Olivier Houchard45c44372019-06-11 14:06:23 +0200855
Willy Tarreau21046592020-02-26 10:39:36 +0100856 if (MT_LIST_ADDED(&h1c->buf_wait.list))
857 MT_LIST_DEL(&h1c->buf_wait.list);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200858
859 h1_release_buf(h1c, &h1c->ibuf);
860 h1_release_buf(h1c, &h1c->obuf);
861
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100862 if (h1c->task) {
863 h1c->task->context = NULL;
864 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
865 h1c->task = NULL;
866 }
867
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200868 if (h1c->wait_event.tasklet)
869 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200870
Christopher Fauletf2824e62018-10-01 12:12:37 +0200871 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200872 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100873 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200874 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200875 pool_free(pool_head_h1c, h1c);
876 }
877
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200878 if (conn) {
879 conn->mux = NULL;
880 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200881 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200882
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200883 conn_stop_tracking(conn);
884 conn_full_close(conn);
885 if (conn->destroy_cb)
886 conn->destroy_cb(conn);
887 conn_free(conn);
888 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200889}
890
891/******************************************************/
892/* functions below are for the H1 protocol processing */
893/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200894/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
895 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200896 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100897static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200898{
Christopher Faulet570d1612018-11-26 11:13:57 +0100899 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200900
Christopher Faulet570d1612018-11-26 11:13:57 +0100901 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200902 (*(p + 5) > '1' ||
903 (*(p + 5) == '1' && *(p + 7) >= '1')))
904 h1m->flags |= H1_MF_VER_11;
905}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200906
Christopher Faulet9768c262018-10-22 09:34:31 +0200907/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
908 * greater or equal to 1.1
909 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100910static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200911{
Christopher Faulet570d1612018-11-26 11:13:57 +0100912 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200913
Christopher Faulet570d1612018-11-26 11:13:57 +0100914 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200915 (*(p + 5) > '1' ||
916 (*(p + 5) == '1' && *(p + 7) >= '1')))
917 h1m->flags |= H1_MF_VER_11;
918}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200919
Christopher Fauletf2824e62018-10-01 12:12:37 +0200920/* Deduce the connection mode of the client connection, depending on the
921 * configuration and the H1 message flags. This function is called twice, the
922 * first time when the request is parsed and the second time when the response
923 * is parsed.
924 */
925static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
926{
927 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200928
929 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100930 /* Output direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200931 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100932 h1s->status == 101) {
933 /* Either we've established an explicit tunnel, or we're
934 * switching the protocol. In both cases, we're very unlikely to
935 * understand the next protocols. We have to switch to tunnel
936 * mode, so that we transfer the request and responses then let
937 * this protocol pass unmodified. When we later implement
938 * specific parsers for such protocols, we'll want to check the
939 * Upgrade header which contains information about that protocol
940 * for responses with status 101 (eg: see RFC2817 about TLS).
941 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200942 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200943 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 +0100944 }
945 else if (h1s->flags & H1S_F_WANT_KAL) {
946 /* By default the client is in KAL mode. CLOSE mode mean
947 * it is imposed by the client itself. So only change
948 * KAL mode here. */
949 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
950 /* no length known or explicit close => close */
951 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200952 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 +0100953 }
954 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
955 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +0500956 /* no explicit keep-alive and option httpclose => close */
Christopher Fauletb992af02019-03-28 15:42:24 +0100957 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200958 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 +0100959 }
960 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200961 }
962 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100963 /* Input direction: first pass */
964 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
965 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +0200966 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200967 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 +0100968 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200969 }
970
971 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +0200972 if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200973 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200974 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);
975 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200976}
977
978/* Deduce the connection mode of the client connection, depending on the
979 * configuration and the H1 message flags. This function is called twice, the
980 * first time when the request is parsed and the second time when the response
981 * is parsed.
982 */
983static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
984{
Olivier Houchardf502aca2018-12-14 19:42:40 +0100985 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +0100986 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100987 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200988
Christopher Fauletf2824e62018-10-01 12:12:37 +0200989 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100990 /* Input direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200991 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100992 h1s->status == 101) {
993 /* Either we've established an explicit tunnel, or we're
994 * switching the protocol. In both cases, we're very unlikely to
995 * understand the next protocols. We have to switch to tunnel
996 * mode, so that we transfer the request and responses then let
997 * this protocol pass unmodified. When we later implement
998 * specific parsers for such protocols, we'll want to check the
999 * Upgrade header which contains information about that protocol
1000 * for responses with status 101 (eg: see RFC2817 about TLS).
1001 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001002 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001003 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 +01001004 }
1005 else if (h1s->flags & H1S_F_WANT_KAL) {
1006 /* By default the server is in KAL mode. CLOSE mode mean
1007 * it is imposed by haproxy itself. So only change KAL
1008 * mode here. */
1009 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
1010 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
1011 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => 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_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001014 }
1015 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001016 }
Christopher Faulet70033782018-12-05 13:50:11 +01001017 else {
Christopher Fauletb992af02019-03-28 15:42:24 +01001018 /* Output direction: first pass */
1019 if (h1m->flags & H1_MF_CONN_CLO) {
1020 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +01001021 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001022 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 +01001023 }
1024 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
1025 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1026 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
1027 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
1028 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
1029 /* no explicit keep-alive option httpclose/server-close => close */
1030 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001031 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 +01001032 }
Christopher Faulet70033782018-12-05 13:50:11 +01001033 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001034
1035 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Willy Tarreauc3914d42020-09-24 08:39:22 +02001036 if (h1s->flags & H1S_F_WANT_KAL && be->disabled) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001037 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001038 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);
1039 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001040}
1041
Christopher Fauletb992af02019-03-28 15:42:24 +01001042static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001043{
1044 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001045
1046 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1047 * token is found
1048 */
1049 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001050 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001051
1052 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001053 if (!(h1m->flags & H1_MF_VER_11)) {
1054 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 +01001055 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001056 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001057 }
1058 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001059 if (h1m->flags & H1_MF_VER_11) {
1060 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001061 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001062 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001063 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001064}
1065
Christopher Fauletb992af02019-03-28 15:42:24 +01001066static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +02001067{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001068 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
1069 * token is found
1070 */
1071 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +02001072 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001073
1074 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001075 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02001076 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
1077 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 +01001078 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001079 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001080 }
1081 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +02001082 if (h1m->flags & H1_MF_VER_11) {
1083 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +01001084 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +02001085 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001086 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001087}
Christopher Fauletf2824e62018-10-01 12:12:37 +02001088
Christopher Fauletb992af02019-03-28 15:42:24 +01001089static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +02001090{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001091 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Faulet9768c262018-10-22 09:34:31 +02001092 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001093 else
Christopher Faulet9768c262018-10-22 09:34:31 +02001094 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001095}
1096
Christopher Fauletb992af02019-03-28 15:42:24 +01001097static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
1098{
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001099 if (!(h1s->h1c->flags & H1C_F_IS_BACK))
Christopher Fauletb992af02019-03-28 15:42:24 +01001100 h1_set_cli_conn_mode(h1s, h1m);
1101 else
1102 h1_set_srv_conn_mode(h1s, h1m);
1103
1104 if (!(h1m->flags & H1_MF_RESP))
1105 h1_update_req_conn_value(h1s, h1m, conn_val);
1106 else
1107 h1_update_res_conn_value(h1s, h1m, conn_val);
1108}
Christopher Faulete44769b2018-11-29 23:01:45 +01001109
Christopher Faulet98fbe952019-07-22 16:18:24 +02001110/* Try to adjust the case of the message header name using the global map
1111 * <hdrs_map>.
1112 */
1113static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1114{
1115 struct ebpt_node *node;
1116 struct h1_hdr_entry *entry;
1117
1118 /* No entry in the map, do nothing */
1119 if (eb_is_empty(&hdrs_map.map))
1120 return;
1121
1122 /* No conversion fo the request headers */
1123 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1124 return;
1125
1126 /* No conversion fo the response headers */
1127 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1128 return;
1129
1130 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1131 if (!node)
1132 return;
1133 entry = container_of(node, struct h1_hdr_entry, node);
1134 name->ptr = entry->name.ptr;
1135 name->len = entry->name.len;
1136}
1137
Christopher Faulete44769b2018-11-29 23:01:45 +01001138/* Append the description of what is present in error snapshot <es> into <out>.
1139 * The description must be small enough to always fit in a buffer. The output
1140 * buffer may be the trash so the trash must not be used inside this function.
1141 */
1142static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1143{
1144 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001145 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1146 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1147 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1148 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1149 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1150 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001151}
1152/*
1153 * Capture a bad request or response and archive it in the proxy's structure.
1154 * By default it tries to report the error position as h1m->err_pos. However if
1155 * this one is not set, it will then report h1m->next, which is the last known
1156 * parsing point. The function is able to deal with wrapping buffers. It always
1157 * displays buffers as a contiguous area starting at buf->p. The direction is
1158 * determined thanks to the h1m's flags.
1159 */
1160static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1161 struct h1m *h1m, struct buffer *buf)
1162{
Christopher Fauletdb2c17d2020-10-15 17:19:46 +02001163 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +01001164 struct proxy *proxy = h1c->px;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001165 struct proxy *other_end;
Christopher Faulete44769b2018-11-29 23:01:45 +01001166 union error_snapshot_ctx ctx;
1167
Christopher Fauletbb8baf42020-09-29 15:18:40 +02001168 if ((h1c->flags & H1C_F_CS_ATTACHED) && h1s->cs->data) {
Olivier Houchardbdb00c52020-03-12 15:30:17 +01001169 if (sess == NULL)
1170 sess = si_strm(h1s->cs->data)->sess;
1171 if (!(h1m->flags & H1_MF_RESP))
1172 other_end = si_strm(h1s->cs->data)->be;
1173 else
1174 other_end = sess->fe;
1175 } else
1176 other_end = NULL;
Christopher Faulete44769b2018-11-29 23:01:45 +01001177
1178 /* http-specific part now */
1179 ctx.h1.state = h1m->state;
1180 ctx.h1.c_flags = h1c->flags;
1181 ctx.h1.s_flags = h1s->flags;
1182 ctx.h1.m_flags = h1m->flags;
1183 ctx.h1.m_clen = h1m->curr_len;
1184 ctx.h1.m_blen = h1m->body_len;
1185
1186 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1187 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001188 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1189 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001190}
1191
Christopher Fauletadb22202018-12-12 10:32:09 +01001192/* Emit the chunksize followed by a CRLF in front of data of the buffer
1193 * <buf>. It goes backwards and starts with the byte before the buffer's
1194 * head. The caller is responsible for ensuring there is enough room left before
1195 * the buffer's head for the string.
1196 */
1197static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1198{
1199 char *beg, *end;
1200
1201 beg = end = b_head(buf);
1202 *--beg = '\n';
1203 *--beg = '\r';
1204 do {
1205 *--beg = hextab[chksz & 0xF];
1206 } while (chksz >>= 4);
1207 buf->head -= (end - beg);
1208 b_add(buf, end - beg);
1209}
1210
1211/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1212 * ensuring there is enough room left in the buffer for the string. */
1213static void h1_emit_chunk_crlf(struct buffer *buf)
1214{
1215 *(b_peek(buf, b_data(buf))) = '\r';
1216 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1217 b_add(buf, 2);
1218}
1219
Christopher Faulet129817b2018-09-20 16:14:40 +02001220/*
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001221 * Switch the request to tunnel mode. This function must only be called for
Christopher Fauletf3158e92019-11-15 11:14:23 +01001222 * CONNECT requests. On the client side, if the response is not finished, the
1223 * mux is mark as busy on input.
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001224 */
1225static void h1_set_req_tunnel_mode(struct h1s *h1s)
1226{
1227 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
1228 h1s->req.state = H1_MSG_TUNNEL;
Christopher Fauletf3158e92019-11-15 11:14:23 +01001229 TRACE_STATE("switch H1 request in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1230
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001231 if (!(h1s->h1c->flags & H1C_F_IS_BACK)) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001232 h1s->flags &= ~H1S_F_PARSING_DONE;
1233 if (h1s->res.state < H1_MSG_DONE) {
Christopher Faulet089acd52020-09-21 10:57:52 +02001234 h1s->h1c->flags |= H1C_F_WAIT_OPPOSITE;
1235 TRACE_STATE("Disable read on h1c (wait_opposite)", H1_EV_RX_DATA|H1_EV_H1C_BLK, h1s->h1c->conn, h1s);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001236 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001237 }
Christopher Faulet089acd52020-09-21 10:57:52 +02001238 else if (h1s->h1c->flags & H1C_F_WAIT_OPPOSITE) {
1239 h1s->h1c->flags &= ~H1C_F_WAIT_OPPOSITE;
Christopher Fauletf3158e92019-11-15 11:14:23 +01001240 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Faulet089acd52020-09-21 10:57:52 +02001241 TRACE_STATE("Re-enable read on h1c", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1s->h1c->conn, h1s);
Christopher Fauletf3158e92019-11-15 11:14:23 +01001242 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001243}
1244
1245/*
1246 * Switch the response to tunnel mode. This function must only be called on
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001247 * successful replies to CONNECT requests or on protocol switching. In this
Christopher Fauletf3158e92019-11-15 11:14:23 +01001248 * last case, this function takes care to switch the request to tunnel mode if
1249 * possible. On the server side, if the request is not finished, the mux is mark
1250 * as busy on input.
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001251 */
1252static void h1_set_res_tunnel_mode(struct h1s *h1s)
1253{
Christopher Fauletf3158e92019-11-15 11:14:23 +01001254
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001255 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
1256 h1s->res.state = H1_MSG_TUNNEL;
Christopher Fauletf3158e92019-11-15 11:14:23 +01001257 TRACE_STATE("switch H1 response in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1258
Christopher Faulet0a799aa2020-09-24 09:52:52 +02001259 if (h1s->h1c->flags & H1C_F_IS_BACK) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001260 h1s->flags &= ~H1S_F_PARSING_DONE;
1261 /* On protocol switching, switch the request to tunnel mode if it is in
1262 * DONE state. Otherwise we will wait the end of the request to switch
1263 * it in tunnel mode.
1264 */
1265 if (h1s->req.state < H1_MSG_DONE) {
Christopher Faulet089acd52020-09-21 10:57:52 +02001266 h1s->h1c->flags |= H1C_F_WAIT_OPPOSITE;
1267 TRACE_STATE("Disable read on h1c (wait_opposite)", H1_EV_RX_DATA|H1_EV_H1C_BLK, h1s->h1c->conn, h1s);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001268 }
1269 else if (h1s->status == 101 && h1s->req.state == H1_MSG_DONE) {
1270 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
1271 h1s->req.state = H1_MSG_TUNNEL;
1272 TRACE_STATE("switch H1 request in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1273 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001274 }
Christopher Faulet089acd52020-09-21 10:57:52 +02001275 else if (h1s->h1c->flags & H1C_F_WAIT_OPPOSITE) {
1276 h1s->h1c->flags &= ~H1C_F_WAIT_OPPOSITE;
Christopher Fauletf3158e92019-11-15 11:14:23 +01001277 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Faulet089acd52020-09-21 10:57:52 +02001278 TRACE_STATE("Re-enable read on h1c", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1s->h1c->conn, h1s);
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001279 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001280}
1281
1282/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001283 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001284 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001285 * flag. If relies on the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001286 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001287static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001288 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001289{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001290 union h1_sl h1sl;
Christopher Faulet129817b2018-09-20 16:14:40 +02001291 int ret = 0;
1292
Willy Tarreau022e5e52020-09-10 09:33:15 +02001293 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 +02001294
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001295 if (h1s->meth == HTTP_METH_CONNECT)
1296 h1m->flags |= H1_MF_METH_CONNECT;
1297 if (h1s->meth == HTTP_METH_HEAD)
1298 h1m->flags |= H1_MF_METH_HEAD;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001299
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001300 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
1301 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001302 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001303 if (htx->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001304 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001305 TRACE_USER("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 +02001306 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1307 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001308 goto end;
1309 }
1310
Christopher Faulet486498c2019-10-11 14:22:00 +02001311 if (h1m->err_pos >= 0) {
1312 /* Maybe we found an error during the parsing while we were
1313 * configured not to block on that, so we have to capture it
1314 * now.
1315 */
1316 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1317 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1318 }
1319
Christopher Faulet129817b2018-09-20 16:14:40 +02001320 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001321 h1s->meth = h1sl.rq.meth;
Christopher Fauletf3158e92019-11-15 11:14:23 +01001322 if (h1m->state == H1_MSG_TUNNEL)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001323 h1_set_req_tunnel_mode(h1s);
Christopher Faulet129817b2018-09-20 16:14:40 +02001324 }
1325 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001326 h1s->status = h1sl.st.status;
Christopher Fauletf3158e92019-11-15 11:14:23 +01001327 if (h1m->state == H1_MSG_TUNNEL)
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001328 h1_set_res_tunnel_mode(h1s);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001329 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001330 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001331 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001332
Christopher Faulet129817b2018-09-20 16:14:40 +02001333 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001334 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 +02001335 return ret;
1336}
1337
1338/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001339 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001340 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1341 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001342 */
Christopher Fauletaf542632019-10-01 21:52:49 +02001343static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001344 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001345 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001346{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001347 int ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001348
Willy Tarreau022e5e52020-09-10 09:33:15 +02001349 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 +02001350 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
Christopher Faulet02a02532019-11-15 09:36:28 +01001351 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001352 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 +01001353 if ((*htx)->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001354 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001355 TRACE_USER("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 +02001356 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001357 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001358 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001359 }
1360
Christopher Faulet02a02532019-11-15 09:36:28 +01001361 *ofs += ret;
1362
1363 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001364 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 +02001365 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001366}
1367
1368/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001369 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1370 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1371 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
1372 * responsible to update the parser state <h1m>.
1373 */
1374static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1375 struct buffer *buf, size_t *ofs, size_t max)
1376{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001377 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001378
Willy Tarreau022e5e52020-09-10 09:33:15 +02001379 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 +02001380 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet02a02532019-11-15 09:36:28 +01001381 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001382 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 +01001383 if (htx->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001384 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001385 TRACE_USER("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 +02001386 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1387 }
Christopher Faulet02a02532019-11-15 09:36:28 +01001388 goto end;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001389 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001390
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001391 *ofs += ret;
Christopher Faulet02a02532019-11-15 09:36:28 +01001392
1393 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001394 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 +02001395 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001396}
1397
1398/*
Christopher Faulet76014fd2019-12-10 11:47:22 +01001399 * Add the EOM in the HTX message. It returns 1 on success or 0 if it couldn't
Christopher Fauleta583af62020-09-24 15:35:37 +02001400 * proceed. This functions is responsible to update the parser state <h1m>.
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001401 */
Christopher Faulet76014fd2019-12-10 11:47:22 +01001402static size_t h1_process_eom(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1403 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001404{
Christopher Faulet76014fd2019-12-10 11:47:22 +01001405 int ret;
1406
Willy Tarreau022e5e52020-09-10 09:33:15 +02001407 TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_EOI, h1s->h1c->conn, h1s, 0, (size_t[]){max});
Christopher Faulet76014fd2019-12-10 11:47:22 +01001408 ret = h1_parse_msg_eom(h1m, htx, max);
1409 if (!ret) {
1410 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_EOI, h1s->h1c->conn, h1s);
1411 if (htx->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001412 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001413 TRACE_USER("parsing error, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_EOI|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001414 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1415 }
1416 goto end;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001417 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001418
Christopher Faulet76014fd2019-12-10 11:47:22 +01001419 h1s->flags |= H1S_F_PARSING_DONE;
Christopher Faulet76014fd2019-12-10 11:47:22 +01001420 end:
Willy Tarreau022e5e52020-09-10 09:33:15 +02001421 TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_EOI, h1s->h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet76014fd2019-12-10 11:47:22 +01001422 return ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001423}
1424
1425/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001426 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001427 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1428 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001429 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001430static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001431{
Christopher Faulet539e0292018-11-19 10:40:09 +01001432 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001433 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001434 struct htx *htx;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001435 size_t data;
1436 size_t ret = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001437 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001438
Christopher Faulet539e0292018-11-19 10:40:09 +01001439 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001440 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001441
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001442 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet74027762019-02-26 14:45:05 +01001443 data = htx->data;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001444
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001445 if (h1s->flags & H1S_F_PARSING_ERROR)
Christopher Faulet0e54d542019-07-04 21:22:34 +02001446 goto end;
1447
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001448 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001449 size_t used = htx_used_space(htx);
1450
Christopher Faulet129817b2018-09-20 16:14:40 +02001451 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001452 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet539e0292018-11-19 10:40:09 +01001453 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001454 if (!ret)
1455 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001456
1457 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1458 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1459
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001460 if ((h1m->flags & H1_MF_RESP) &&
1461 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1462 h1m_init_res(&h1s->res);
1463 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001464 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001465 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001466 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001467 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001468 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001469 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet76014fd2019-12-10 11:47:22 +01001470 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet129817b2018-09-20 16:14:40 +02001471 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001472
1473 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1474 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001475 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001476 else if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001477 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
1478 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1479 if (!ret && h1m->state != H1_MSG_DONE)
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001480 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001481
Christopher Faulet76014fd2019-12-10 11:47:22 +01001482 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1483 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001484 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001485 else if (h1m->state == H1_MSG_DONE) {
Christopher Faulet76014fd2019-12-10 11:47:22 +01001486 if (!(h1s->flags & H1S_F_PARSING_DONE)) {
1487 if (!h1_process_eom(h1s, h1m, htx, &h1c->ibuf, &total, count))
1488 break;
1489
1490 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1491 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
1492 }
1493
Christopher Fauletf3158e92019-11-15 11:14:23 +01001494 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1495 h1_set_req_tunnel_mode(h1s);
1496 else if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
Christopher Faulet089acd52020-09-21 10:57:52 +02001497 h1c->flags |= H1C_F_WAIT_OPPOSITE;
1498 TRACE_STATE("Disable read on h1c (wait_opposite)", H1_EV_RX_DATA|H1_EV_H1C_BLK, h1c->conn, h1s);
Christopher Faulet23021ad2020-07-10 10:01:26 +02001499 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001500 }
Christopher Faulet23021ad2020-07-10 10:01:26 +02001501 else
1502 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001503 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001504 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001505 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001506 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001507 if (!ret)
1508 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001509
1510 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1511 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001512 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001513 else {
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001514 h1s->flags |= H1S_F_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001515 break;
1516 }
1517
Christopher Faulet30db3d72019-05-17 15:35:33 +02001518 count -= htx_used_space(htx) - used;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001519 } while (!(h1s->flags & H1S_F_PARSING_ERROR));
Christopher Faulet129817b2018-09-20 16:14:40 +02001520
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001521 if (h1s->flags & H1S_F_PARSING_ERROR) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001522 TRACE_PROTO("parsing error", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001523 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001524 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001525
Christopher Faulet539e0292018-11-19 10:40:09 +01001526 b_del(&h1c->ibuf, total);
1527
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001528 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001529 TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
1530
Christopher Faulet30db3d72019-05-17 15:35:33 +02001531 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001532 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001533 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001534 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 +01001535 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet47365272018-10-31 17:40:50 +01001536 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001537
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001538 if (!b_data(&h1c->ibuf))
1539 h1_release_buf(h1c, &h1c->ibuf);
1540
1541 if (!h1s->cs) {
1542 if (h1m->state <= H1_MSG_LAST_LF) {
1543 TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1544 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1545 goto end;
1546 }
1547
1548 if (!h1s_new_cs(h1s, buf)) {
1549 h1c->flags |= H1C_F_CS_ERROR;
1550 goto err;
1551 }
1552 }
1553
1554 /* Here h1s->cs is always defined */
Christopher Fauleta583af62020-09-24 15:35:37 +02001555 if (!(h1m->flags & H1_MF_CHNK) &&
1556 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) {
1557 TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1558 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1559 }
1560 else {
1561 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
1562 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1563 }
1564
1565 if (h1s->flags & H1S_F_PARSING_DONE)
1566 h1s->cs->flags |= CS_FL_EOI;
1567
Christopher Faulet6716cc22019-12-20 17:33:24 +01001568 if (h1s_data_pending(h1s) && !htx_is_empty(htx))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001569 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001570 else {
1571 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1572 if (h1s->flags & H1S_F_REOS) {
1573 h1s->cs->flags |= CS_FL_EOS;
1574 if (h1m->state == H1_MSG_TUNNEL)
1575 h1s->cs->flags |= CS_FL_EOI;
1576 else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
1577 h1s->cs->flags |= CS_FL_ERROR;
1578 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001579 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001580
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001581 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001582 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001583 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001584
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001585 err:
Christopher Faulet47365272018-10-31 17:40:50 +01001586 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001587 htx_to_buf(htx, buf);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001588 if (h1s->cs)
1589 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001590 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001591 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001592}
1593
Christopher Faulet129817b2018-09-20 16:14:40 +02001594/*
1595 * Process outgoing data. It parses data and transfer them from the channel buffer into
1596 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1597 * 0 if it couldn't proceed.
1598 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001599static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1600{
Christopher Faulet129817b2018-09-20 16:14:40 +02001601 struct h1s *h1s = h1c->h1s;
1602 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001603 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001604 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001605 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001606 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001607
Christopher Faulet47365272018-10-31 17:40:50 +01001608 if (!count)
1609 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001610
Christopher Faulet94b2c762019-05-24 15:28:57 +02001611 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001612 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1613
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001614 if (htx_is_empty(chn_htx))
1615 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001616
Christopher Fauletc4bfa592020-10-06 17:45:34 +02001617 if (h1s->flags & H1S_F_PROCESSING_ERROR)
1618 goto end;
1619
Christopher Faulet51dbc942018-09-13 09:05:15 +02001620 if (!h1_get_buf(h1c, &h1c->obuf)) {
1621 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001622 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 +02001623 goto end;
1624 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001625
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001626 h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +02001627
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001628 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001629 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001630
Willy Tarreau3815b222018-12-11 19:50:43 +01001631 /* Perform some optimizations to reduce the number of buffer copies.
1632 * First, if the mux's buffer is empty and the htx area contains
1633 * exactly one data block of the same size as the requested count,
1634 * then it's possible to simply swap the caller's buffer with the
1635 * mux's output buffer and adjust offsets and length to match the
1636 * entire DATA HTX block in the middle. In this case we perform a
1637 * true zero-copy operation from end-to-end. This is the situation
1638 * that happens all the time with large files. Second, if this is not
1639 * possible, but the mux's output buffer is empty, we still have an
1640 * opportunity to avoid the copy to the intermediary buffer, by making
1641 * the intermediary buffer's area point to the output buffer's area.
1642 * In this case we want to skip the HTX header to make sure that copies
1643 * remain aligned and that this operation remains possible all the
1644 * time. This goes for headers, data blocks and any data extracted from
1645 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001646 */
1647 if (!b_data(&h1c->obuf)) {
Christopher Faulet192c6a22019-06-11 16:32:24 +02001648 if (htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001649 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001650 htx_get_blk_value(chn_htx, blk).len == count) {
1651 void *old_area = h1c->obuf.area;
1652
Christopher Faulet6b81df72019-10-01 22:08:43 +02001653 TRACE_PROTO("sending message data (zero-copy)", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){count});
Willy Tarreau3815b222018-12-11 19:50:43 +01001654 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001655 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001656 h1c->obuf.data = count;
1657
1658 buf->area = old_area;
1659 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001660
Christopher Faulet6b81df72019-10-01 22:08:43 +02001661 chn_htx = (struct htx *)buf->area;
1662 htx_reset(chn_htx);
1663
Christopher Fauletadb22202018-12-12 10:32:09 +01001664 /* The message is chunked. We need to emit the chunk
1665 * size. We have at least the size of the struct htx to
1666 * write the chunk envelope. It should be enough.
1667 */
1668 if (h1m->flags & H1_MF_CHNK) {
1669 h1_emit_chunk_size(&h1c->obuf, count);
1670 h1_emit_chunk_crlf(&h1c->obuf);
1671 }
1672
Willy Tarreau3815b222018-12-11 19:50:43 +01001673 total += count;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001674 if (h1m->state == H1_MSG_DATA)
1675 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001676 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001677 else
1678 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001679 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count});
Willy Tarreau3815b222018-12-11 19:50:43 +01001680 goto out;
1681 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001682 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001683 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001684 else
1685 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001686
Christopher Fauletc2518a52019-06-25 21:41:02 +02001687 tmp.data = 0;
1688 tmp.size = b_room(&h1c->obuf);
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001689 while (count && !(h1s->flags & H1S_F_PROCESSING_ERROR) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001690 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001691 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001692 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001693 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001694 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001695
Christopher Fauletb2e84162018-12-06 11:39:49 +01001696 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001697 if (type != HTX_BLK_DATA && vlen > count)
1698 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001699
Christopher Faulet94b2c762019-05-24 15:28:57 +02001700 if (type == HTX_BLK_UNUSED)
1701 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001702
Christopher Faulet94b2c762019-05-24 15:28:57 +02001703 switch (h1m->state) {
1704 case H1_MSG_RQBEFORE:
1705 if (type != HTX_BLK_REQ_SL)
1706 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001707 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 +02001708 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001709 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001710 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001711 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001712 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001713 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001714 if (sl->flags & HTX_SL_F_BODYLESS)
1715 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001716 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet089acd52020-09-21 10:57:52 +02001717 if (h1c->flags & H1C_F_WAIT_OPPOSITE) {
1718 h1c->flags &= ~H1C_F_WAIT_OPPOSITE;
1719 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1720 TRACE_STATE("Re-enable read on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
1721 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001722 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001723
Christopher Faulet94b2c762019-05-24 15:28:57 +02001724 case H1_MSG_RPBEFORE:
1725 if (type != HTX_BLK_RES_SL)
1726 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001727 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 +02001728 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001729 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001730 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001731 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001732 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001733 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001734 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001735 if (sl->info.res.status < 200 &&
1736 (sl->info.res.status == 100 || sl->info.res.status >= 102))
Christopher Fauletada34b62019-05-24 16:36:43 +02001737 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001738 h1m->state = H1_MSG_HDR_FIRST;
1739 break;
1740
Christopher Faulet94b2c762019-05-24 15:28:57 +02001741 case H1_MSG_HDR_FIRST:
1742 case H1_MSG_HDR_NAME:
1743 case H1_MSG_HDR_L2_LWS:
1744 if (type == HTX_BLK_EOH)
1745 goto last_lf;
1746 if (type != HTX_BLK_HDR)
1747 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001748
Christopher Faulet9768c262018-10-22 09:34:31 +02001749 h1m->state = H1_MSG_HDR_NAME;
1750 n = htx_get_blk_name(chn_htx, blk);
1751 v = htx_get_blk_value(chn_htx, blk);
1752
Christopher Faulet86d144c2019-08-14 16:32:25 +02001753 /* Skip all pseudo-headers */
1754 if (*(n.ptr) == ':')
1755 goto skip_hdr;
1756
Christopher Fauletb045bb22020-02-28 10:42:20 +01001757 if (isteq(n, ist("transfer-encoding")))
Christopher Faulet9768c262018-10-22 09:34:31 +02001758 h1_parse_xfer_enc_header(h1m, v);
Christopher Fauletb045bb22020-02-28 10:42:20 +01001759 else if (isteq(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001760 /* Only skip C-L header with invalid value. */
1761 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001762 goto skip_hdr;
1763 }
Christopher Fauletb045bb22020-02-28 10:42:20 +01001764 else if (isteq(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001765 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001766 if (!v.len)
1767 goto skip_hdr;
1768 }
1769
Christopher Faulet67d58092019-10-02 10:51:38 +02001770 /* Skip header if same name is used to add the server name */
1771 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
1772 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
1773 goto skip_hdr;
1774
Christopher Faulet98fbe952019-07-22 16:18:24 +02001775 /* Try to adjust the case of the header name */
1776 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1777 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001778 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001779 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001780 skip_hdr:
1781 h1m->state = H1_MSG_HDR_L2_LWS;
1782 break;
1783
Christopher Faulet94b2c762019-05-24 15:28:57 +02001784 case H1_MSG_LAST_LF:
1785 if (type != HTX_BLK_EOH)
1786 goto error;
1787 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001788 h1m->state = H1_MSG_LAST_LF;
1789 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Faulet04f89192019-10-16 09:41:07 +02001790 /* If the reply comes from haproxy while the request is
1791 * not finished, we force the connection close. */
1792 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
1793 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
1794 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1795 }
1796
1797 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02001798 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001799 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001800 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001801 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02001802 /* Try to adjust the case of the header name */
1803 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1804 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001805 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001806 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001807 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001808 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001809 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001810
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001811 if ((h1s->meth != HTTP_METH_CONNECT &&
1812 (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 +01001813 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1814 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1815 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1816 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1817 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001818 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02001819 n = ist("transfer-encoding");
1820 v = ist("chunked");
1821 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1822 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001823 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001824 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001825 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01001826 h1m->flags |= H1_MF_CHNK;
1827 }
1828
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001829 /* Now add the server name to a header (if requested) */
1830 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
1831 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
1832 struct server *srv = objt_server(h1c->conn->target);
1833
1834 if (srv) {
1835 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
1836 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02001837
1838 /* Try to adjust the case of the header name */
1839 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1840 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001841 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001842 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001843 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001844 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001845 h1s->flags |= H1S_F_HAVE_SRV_NAME;
1846 }
1847
Christopher Fauletc2518a52019-06-25 21:41:02 +02001848 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001849 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001850
Christopher Faulet6b81df72019-10-01 22:08:43 +02001851 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
1852 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
1853
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001854 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1855 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1856 h1_set_req_tunnel_mode(h1s);
1857 }
Christopher Fauletf3158e92019-11-15 11:14:23 +01001858 else if ((h1m->flags & H1_MF_RESP) &&
1859 ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101)) {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001860 /* a successful reply to a CONNECT or a protocol switching is sent
Christopher Fauletf3158e92019-11-15 11:14:23 +01001861 * to the client. Switch the response to tunnel mode.
1862 */
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001863 h1_set_res_tunnel_mode(h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001864 TRACE_STATE("switch H1 response in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001865 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001866 else if ((h1m->flags & H1_MF_RESP) &&
1867 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1868 h1m_init_res(&h1s->res);
1869 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001870 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001871 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001872 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001873 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD) {
Christopher Fauletb8fc3042019-07-01 16:17:30 +02001874 h1m->state = H1_MSG_DONE;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001875 TRACE_STATE("HEAD response processed", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
1876 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001877 else
1878 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001879 break;
1880
Christopher Faulet94b2c762019-05-24 15:28:57 +02001881 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02001882 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001883 if (type == HTX_BLK_EOM) {
1884 /* Chunked message without explicit trailers */
1885 if (h1m->flags & H1_MF_CHNK) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001886 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001887 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001888 }
1889 goto done;
1890 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001891 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001892 /* If the message is not chunked, never
1893 * add the last chunk. */
1894 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001895 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001896 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 +02001897 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001898 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001899 else if (type != HTX_BLK_DATA)
1900 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001901
1902 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 +02001903
1904
1905 if (vlen > count) {
1906 /* Get the maximum amount of data we can xferred */
1907 vlen = count;
1908 }
1909
1910 chklen = 0;
1911 if (h1m->flags & H1_MF_CHNK) {
1912 chklen = b_room(&tmp);
1913 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
1914 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
1915 (chklen < 1048576) ? 5 : 8);
1916 chklen += 4; /* 2 x CRLF */
1917 }
1918
1919 if (vlen + chklen > b_room(&tmp)) {
1920 /* too large for the buffer */
1921 if (chklen >= b_room(&tmp))
1922 goto full;
1923 vlen = b_room(&tmp) - chklen;
1924 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001925 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001926 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02001927 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001928 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001929
1930 if (h1m->state == H1_MSG_DATA)
1931 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001932 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001933 else
1934 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Willy Tarreau022e5e52020-09-10 09:33:15 +02001935 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len});
Christopher Faulet9768c262018-10-22 09:34:31 +02001936 break;
1937
Christopher Faulet94b2c762019-05-24 15:28:57 +02001938 case H1_MSG_TRAILERS:
1939 if (type == HTX_BLK_EOM)
1940 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001941 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001942 goto error;
1943 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001944 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001945 /* If the message is not chunked, ignore
1946 * trailers. It may happen with H2 messages. */
1947 if (!(h1m->flags & H1_MF_CHNK))
1948 break;
1949
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001950 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001951 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001952 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001953 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
1954 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Faulet32188212018-11-20 18:21:43 +01001955 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001956 else { // HTX_BLK_TLR
1957 n = htx_get_blk_name(chn_htx, blk);
1958 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02001959
1960 /* Try to adjust the case of the header name */
1961 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1962 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001963 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001964 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001965 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001966 break;
1967
Christopher Faulet94b2c762019-05-24 15:28:57 +02001968 case H1_MSG_DONE:
1969 if (type != HTX_BLK_EOM)
1970 goto error;
1971 done:
1972 h1m->state = H1_MSG_DONE;
Christopher Fauletf3158e92019-11-15 11:14:23 +01001973 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101) {
1974 h1_set_req_tunnel_mode(h1s);
1975 TRACE_STATE("switch H1 request in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
1976 }
Christopher Faulet089acd52020-09-21 10:57:52 +02001977 else if (h1s->h1c->flags & H1C_F_WAIT_OPPOSITE) {
1978 h1s->h1c->flags &= ~H1C_F_WAIT_OPPOSITE;
Willy Tarreau2c1f37d2020-03-04 17:50:02 +01001979 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet089acd52020-09-21 10:57:52 +02001980 TRACE_STATE("Re-enable read on h1c", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001981 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001982
1983 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1984 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001985 break;
1986
Christopher Faulet9768c262018-10-22 09:34:31 +02001987 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001988 error:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001989 TRACE_PROTO("formatting error", H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02001990 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02001991 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Faulet60ef12c2020-09-24 10:05:44 +02001992 h1s->flags |= H1S_F_PROCESSING_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001993 TRACE_STATE("processing error, set error on h1c/h1s", H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1994 TRACE_DEVEL("unexpected error", H1_EV_TX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001995 break;
1996 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001997
1998 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001999 total += vlen;
2000 count -= vlen;
2001 if (sz == vlen)
2002 blk = htx_remove_blk(chn_htx, blk);
2003 else {
2004 htx_cut_data_blk(chn_htx, blk, vlen);
2005 break;
2006 }
Christopher Faulet129817b2018-09-20 16:14:40 +02002007 }
2008
Christopher Faulet9768c262018-10-22 09:34:31 +02002009 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01002010 /* when the output buffer is empty, tmp shares the same area so that we
2011 * only have to update pointers and lengths.
2012 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02002013 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
2014 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01002015 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02002016 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002017
Willy Tarreau3815b222018-12-11 19:50:43 +01002018 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002019 out:
2020 if (!buf_room_for_htx_data(&h1c->obuf)) {
2021 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002022 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002023 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002024 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02002025 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02002026 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02002027
2028 full:
2029 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
2030 h1c->flags |= H1C_F_OUT_FULL;
2031 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002032}
2033
Christopher Faulet51dbc942018-09-13 09:05:15 +02002034/*********************************************************/
2035/* functions below are I/O callbacks from the connection */
2036/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002037static void h1_wake_stream_for_recv(struct h1s *h1s)
2038{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002039 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002040 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002041 tasklet_wakeup(h1s->subs->tasklet);
2042 h1s->subs->events &= ~SUB_RETRY_RECV;
2043 if (!h1s->subs->events)
2044 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002045 }
2046}
2047static void h1_wake_stream_for_send(struct h1s *h1s)
2048{
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002049 if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002050 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002051 tasklet_wakeup(h1s->subs->tasklet);
2052 h1s->subs->events &= ~SUB_RETRY_SEND;
2053 if (!h1s->subs->events)
2054 h1s->subs = NULL;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002055 }
Christopher Fauletc18fc232020-10-06 17:41:36 +02002056}
2057
2058/* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success
2059 * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for
2060 * retryable errors (allocation error or buffer full). On success, the error is
2061 * copied in the output buffer.
2062*/
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002063static int h1_send_error(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002064{
2065 int rc = http_get_status_idx(h1c->errcode);
2066 int ret = 0;
2067
2068 TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode});
2069
2070 /* Verify if the error is mapped on /dev/null or any empty file */
2071 /// XXX: do a function !
2072 if (h1c->px->replies[rc] &&
2073 h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG &&
2074 h1c->px->replies[rc]->body.errmsg &&
2075 b_is_null(h1c->px->replies[rc]->body.errmsg)) {
2076 /* Empty error, so claim a success */
2077 ret = 1;
2078 goto out;
2079 }
2080
2081 if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) {
2082 h1c->flags |= H1C_F_ERR_PENDING;
2083 goto out;
2084 }
2085
2086 if (!h1_get_buf(h1c, &h1c->obuf)) {
2087 h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING);
2088 TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2089 goto out;
2090 }
2091 ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc])));
2092 if (unlikely(ret <= 0)) {
2093 if (!ret) {
2094 h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING);
2095 TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn);
2096 goto out;
2097 }
2098 else {
2099 /* we cannot report this error, so claim a success */
2100 ret = 1;
2101 }
2102 }
2103 h1c->flags &= ~H1C_F_ERR_PENDING;
2104 out:
2105 TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn);
2106 return ret;
2107}
2108
2109/* Try to send a 500 internal error. It relies on h1_send_error to send the
2110 * error. This function takes care of incrementing stats and tracked counters.
2111 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002112static int h1_handle_internal_err(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002113{
2114 struct session *sess = h1c->conn->owner;
2115 int ret = 1;
2116
2117 session_inc_http_req_ctr(sess);
2118 session_inc_http_err_ctr(sess);
2119 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
2120 _HA_ATOMIC_ADD(&sess->fe->fe_counters.p.http.rsp[5], 1);
2121 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
2122 if (sess->listener->counters)
2123 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
2124
2125 h1c->errcode = 500;
2126 ret = h1_send_error(h1c);
2127 sess_log(sess);
2128 return ret;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002129}
2130
Christopher Fauletc18fc232020-10-06 17:41:36 +02002131/* Try to send a 400 bad request error. It relies on h1_send_error to send the
2132 * error. This function takes care of incrementing stats and tracked counters.
2133 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002134static int h1_handle_bad_req(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002135{
2136 struct session *sess = h1c->conn->owner;
2137 int ret = 1;
2138
2139 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2140 goto end;
2141
2142 session_inc_http_req_ctr(sess);
2143 session_inc_http_err_ctr(sess);
2144 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
2145 _HA_ATOMIC_ADD(&sess->fe->fe_counters.p.http.rsp[4], 1);
2146 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
2147 if (sess->listener->counters)
2148 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
2149
2150 h1c->errcode = 400;
2151 ret = h1_send_error(h1c);
2152 sess_log(sess);
2153
2154 end:
2155 return ret;
2156}
2157
2158/* Try to send a 408 timeout error. It relies on h1_send_error to send the
2159 * error. This function takes care of incrementing stats and tracked counters.
2160 */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002161static int h1_handle_req_tout(struct h1c *h1c)
Christopher Fauletc18fc232020-10-06 17:41:36 +02002162{
2163 struct session *sess = h1c->conn->owner;
2164 int ret = 1;
2165
2166 if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB)))
2167 goto end;
2168
2169 session_inc_http_req_ctr(sess);
2170 session_inc_http_err_ctr(sess);
2171 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
2172 _HA_ATOMIC_ADD(&sess->fe->fe_counters.p.http.rsp[4], 1);
2173 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
2174 if (sess->listener->counters)
2175 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
2176
2177 h1c->errcode = 408;
2178 ret = h1_send_error(h1c);
2179 sess_log(sess);
2180 end:
2181 return ret;
2182}
2183
2184
Christopher Faulet51dbc942018-09-13 09:05:15 +02002185/*
2186 * Attempt to read data, and subscribe if none available
2187 */
2188static int h1_recv(struct h1c *h1c)
2189{
2190 struct connection *conn = h1c->conn;
Olivier Houchard75159a92018-12-03 18:46:09 +01002191 size_t ret = 0, max;
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002192 int flags = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002193
Christopher Faulet6b81df72019-10-01 22:08:43 +02002194 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
2195
2196 if (h1c->wait_event.events & SUB_RETRY_RECV) {
2197 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01002198 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002199 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002200
Christopher Fauletae635762020-09-21 11:47:16 +02002201 if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) {
2202 TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002203 return 1;
Olivier Houchard75159a92018-12-03 18:46:09 +01002204 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002205
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002206 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2207 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002208 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002209 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02002210 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002211
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002212 /*
2213 * If we only have a small amount of data, realign it,
2214 * it's probably cheaper than doing 2 recv() calls.
2215 */
2216 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
2217 b_slow_realign(&h1c->ibuf, trash.area, 0);
2218
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002219 /* avoid useless reads after first responses */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002220 if (!h1c->h1s ||
2221 (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) ||
2222 ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE))
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002223 flags |= CO_RFL_READ_ONCE;
2224
Willy Tarreau45f2b892018-12-05 07:59:27 +01002225 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002226 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002227 if (h1c->flags & H1C_F_IN_FULL) {
2228 h1c->flags &= ~H1C_F_IN_FULL;
2229 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2230 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01002231
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002232 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01002233 if (!b_data(&h1c->ibuf)) {
2234 /* try to pre-align the buffer like the rxbufs will be
2235 * to optimize memory copies.
2236 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002237 h1c->ibuf.head = sizeof(struct htx);
2238 }
Willy Tarreau6e59cb52020-02-20 11:11:50 +01002239 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002240 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002241 if (max && !ret && h1_recv_allowed(h1c)) {
2242 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
2243 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Fauletcf56b992018-12-11 16:12:31 +01002244 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002245 else {
2246 h1_wake_stream_for_recv(h1c->h1s);
2247 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret});
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002248 }
2249
Christopher Faulet51dbc942018-09-13 09:05:15 +02002250 if (!b_data(&h1c->ibuf))
2251 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002252 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002253 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002254 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2255 }
2256
2257 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002258 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002259}
2260
2261
2262/*
2263 * Try to send data if possible
2264 */
2265static int h1_send(struct h1c *h1c)
2266{
2267 struct connection *conn = h1c->conn;
2268 unsigned int flags = 0;
2269 size_t ret;
2270 int sent = 0;
2271
Christopher Faulet6b81df72019-10-01 22:08:43 +02002272 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2273
2274 if (conn->flags & CO_FL_ERROR) {
2275 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002276 b_reset(&h1c->obuf);
2277 return 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002278 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002279
2280 if (!b_data(&h1c->obuf))
2281 goto end;
2282
Christopher Faulet46230362019-10-17 16:04:20 +02002283 if (h1c->flags & H1C_F_CO_MSG_MORE)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002284 flags |= CO_SFL_MSG_MORE;
Christopher Faulet46230362019-10-17 16:04:20 +02002285 if (h1c->flags & H1C_F_CO_STREAMER)
2286 flags |= CO_SFL_STREAMER;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002287
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002288 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002289 if (ret > 0) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02002290 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002291 if (h1c->flags & H1C_F_OUT_FULL) {
2292 h1c->flags &= ~H1C_F_OUT_FULL;
2293 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2294 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002295 b_del(&h1c->obuf, ret);
2296 sent = 1;
2297 }
2298
Christopher Faulet145aa472018-12-06 10:56:20 +01002299 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002300 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002301 /* error or output closed, nothing to send, clear the buffer to release it */
2302 b_reset(&h1c->obuf);
2303 }
2304
Christopher Faulet51dbc942018-09-13 09:05:15 +02002305 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002306 if (!(h1c->flags & H1C_F_OUT_FULL))
2307 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002308
Christopher Faulet51dbc942018-09-13 09:05:15 +02002309 /* We're done, no more to send */
2310 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002311 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002312 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02002313 if (h1c->flags & H1C_F_CS_SHUTDOWN) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002314 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002315 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002316 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002317 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002318 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2319 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002320 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002321 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002322
Christopher Faulet6b81df72019-10-01 22:08:43 +02002323 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002324 return sent;
2325}
2326
Christopher Faulet51dbc942018-09-13 09:05:15 +02002327/* callback called on any event by the connection handler.
2328 * It applies changes and returns zero, or < 0 if it wants immediate
2329 * destruction of the connection.
2330 */
2331static int h1_process(struct h1c * h1c)
2332{
2333 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002334 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002335
Christopher Faulet6b81df72019-10-01 22:08:43 +02002336 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2337
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002338 /* Try to parse now the first block of a request, creating the H1 stream if necessary */
2339 if (b_data(&h1c->ibuf) && /* Input data to be processed */
2340 (h1c->flags & (H1C_F_CS_IDLE|H1C_F_CS_EMBRYONIC)) && /* IDLE h1 connection or no CS attached to the h1 stream */
2341 !(h1c->flags & H1C_F_IN_SALLOC)) { /* No allocation failure on the stream rxbuf */
2342 struct buffer *buf;
2343 size_t count;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002344
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002345 /* When it happens for a backend connection, we may release it (it is probably a 408) */
2346 if (h1c->flags & H1C_F_IS_BACK)
Christopher Faulet539e0292018-11-19 10:40:09 +01002347 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002348
2349 /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */
2350 if (((h1c->flags & (H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ)) == H1C_F_CS_IDLE) && /* First request with no h1s */
2351 !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE)) { /* H2 upgrade supported by the proxy */
2352 /* Try to match H2 preface before parsing the request headers. */
2353 if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) {
2354 h1c->flags |= H1C_F_UPG_H2C;
2355 TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002356 goto release;
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002357 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002358 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002359
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002360 /* Create the H1 stream if not already there */
2361 if (!h1s) {
2362 h1s = h1c_frt_stream_new(h1c);
2363 if (!h1s) {
2364 b_reset(&h1c->ibuf);
2365 h1c->flags = (h1c->flags & ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_CS_ERROR;
2366 goto no_parsing;
2367 }
2368 }
2369
2370 if (h1s->sess->t_idle == -1)
2371 h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake;
2372
2373 /* Get the stream rxbuf */
2374 buf = h1_get_buf(h1c, &h1s->rxbuf);
2375 if (!buf) {
2376 h1c->flags |= H1C_F_IN_SALLOC;
2377 TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn);
2378 return 0;
2379 }
2380
2381 count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite);
2382 h1_process_input(h1c, buf, count);
2383 h1_release_buf(h1c, &h1s->rxbuf);
2384 h1_set_idle_expiration(h1c);
2385
2386 no_parsing:
2387 if (h1c->flags & H1C_F_CS_ERROR) {
2388 h1_handle_internal_err(h1c);
2389 h1c->flags &= ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ);
2390 }
2391 else if (h1s->flags & H1S_F_PARSING_ERROR) {
2392 h1_handle_bad_req(h1c);
2393 h1c->flags = (h1c->flags & ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_CS_ERROR;
2394 }
Christopher Fauletae635762020-09-21 11:47:16 +02002395 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002396 h1_send(h1c);
2397
2398 if ((conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn) || (h1c->flags & H1C_F_CS_ERROR)) {
2399 if (!(h1c->flags & H1C_F_CS_ATTACHED)) {
2400 /* No conn-stream */
2401 /* shutdown for reads and error on the frontend connection: Send an error */
2402 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_CS_ERROR))) {
2403 if (h1_handle_bad_req(h1c))
2404 h1_send(h1c);
2405 h1c->flags = (h1c->flags & ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_CS_ERROR;
2406 }
2407
2408 /* Handle pending error, if any (only possible on frontend connection) */
2409 if (h1c->flags & H1C_F_ERR_PENDING) {
2410 BUG_ON(h1c->flags & H1C_F_IS_BACK);
2411 if (h1_send_error(h1c))
2412 h1_send(h1c);
2413 }
Christopher Fauletae635762020-09-21 11:47:16 +02002414
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002415 /* If there is some pending outgoing data or error, just wait */
2416 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING))
2417 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002418
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002419 /* Otherwise we can release the H1 connection */
2420 goto release;
2421 }
2422 else {
2423 /* Here there is still a H1 stream with a conn-stream.
2424 * Report the connection state at the stream level
2425 */
2426 if (conn_xprt_read0_pending(conn)) {
2427 h1s->flags |= H1S_F_REOS;
2428 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2429 }
2430 if ((h1c->flags & H1C_F_CS_ERROR) || (conn->flags & CO_FL_ERROR))
2431 h1s->cs->flags |= CS_FL_ERROR;
2432 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
2433 if (h1s->cs->data_cb->wake) {
2434 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
2435 h1s->cs->data_cb->wake(h1s->cs);
2436 }
2437 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002438 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002439
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002440 if (!b_data(&h1c->ibuf))
2441 h1_release_buf(h1c, &h1c->ibuf);
2442
2443
2444 if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) {
2445 TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn);
2446 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002447 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002448
Christopher Faulet47365272018-10-31 17:40:50 +01002449 end:
Christopher Faulet7a145d62020-08-05 11:31:16 +02002450 h1_refresh_timeout(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002451 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002452 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002453
2454 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002455 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002456 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002457 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002458}
2459
2460static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2461{
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002462 struct connection *conn;
2463 struct tasklet *tl = (struct tasklet *)t;
2464 int conn_in_list;
2465 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002466 int ret = 0;
2467
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002468
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02002469 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002470 if (tl->context == NULL) {
2471 /* The connection has been taken over by another thread,
2472 * we're no longer responsible for it, so just free the
2473 * tasklet, and do nothing.
2474 */
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02002475 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002476 tasklet_free(tl);
2477 return NULL;
2478 }
2479 h1c = ctx;
2480 conn = h1c->conn;
2481
2482 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2483
2484 /* Remove the connection from the list, to be sure nobody attempts
2485 * to use it while we handle the I/O events
2486 */
2487 conn_in_list = conn->flags & CO_FL_LIST_MASK;
2488 if (conn_in_list)
2489 MT_LIST_DEL(&conn->list);
2490
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02002491 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002492
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002493 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002494 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002495 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002496 ret |= h1_recv(h1c);
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002497 if (ret || b_data(&h1c->ibuf))
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002498 ret = h1_process(h1c);
2499 /* If we were in an idle list, we want to add it back into it,
2500 * unless h1_process() returned -1, which mean it has destroyed
2501 * the connection (testing !ret is enough, if h1_process() wasn't
2502 * called then ret will be 0 anyway.
2503 */
2504 if (!ret && conn_in_list) {
2505 struct server *srv = objt_server(conn->target);
2506
2507 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreaua9d7b762020-07-10 08:28:20 +02002508 MT_LIST_ADDQ(&srv->safe_conns[tid], &conn->list);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002509 else
Willy Tarreaua9d7b762020-07-10 08:28:20 +02002510 MT_LIST_ADDQ(&srv->idle_conns[tid], &conn->list);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002511 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002512 return NULL;
2513}
2514
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002515static void h1_reset(struct connection *conn)
2516{
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002517
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002518}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002519
2520static int h1_wake(struct connection *conn)
2521{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002522 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002523 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002524
Christopher Faulet6b81df72019-10-01 22:08:43 +02002525 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2526
Christopher Faulet539e0292018-11-19 10:40:09 +01002527 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002528 ret = h1_process(h1c);
2529 if (ret == 0) {
2530 struct h1s *h1s = h1c->h1s;
2531
Christopher Fauletbb8baf42020-09-29 15:18:40 +02002532 if ((h1c->flags & H1C_F_CS_ATTACHED) && h1s->cs->data_cb->wake) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002533 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002534 ret = h1s->cs->data_cb->wake(h1s->cs);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002535 }
Olivier Houchard75159a92018-12-03 18:46:09 +01002536 }
2537 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002538}
2539
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002540/* Connection timeout management. The principle is that if there's no receipt
2541 * nor sending for a certain amount of time, the connection is closed.
2542 */
2543static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2544{
2545 struct h1c *h1c = context;
2546 int expired = tick_is_expired(t->expire, now_ms);
2547
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002548 TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002549
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002550 if (h1c) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002551 /* Make sure nobody stole the connection from us */
2552 HA_SPIN_LOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
2553
2554 /* Somebody already stole the connection from us, so we should not
2555 * free it, we just have to free the task.
2556 */
2557 if (!t->context) {
2558 h1c = NULL;
2559 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
2560 goto do_leave;
2561 }
2562
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002563 if (!expired) {
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002564 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
2565 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002566 return t;
2567 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002568
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002569 /* If a conn-stream is still attached to the mux, wait for the
2570 * stream's timeout
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002571 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002572 if (h1c->flags & H1C_F_CS_ATTACHED) {
2573 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
2574 t->expire = TICK_ETERNITY;
2575 TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s);
2576 return t;
2577 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002578
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002579 /* Try to send an error to the client */
2580 if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_CS_ERROR|H1C_F_ERR_PENDING|H1C_F_CS_SHUTDOWN))) {
2581 h1c->flags = (h1c->flags & ~H1C_F_CS_IDLE) | H1C_F_CS_ERROR;
2582 if (h1_handle_req_tout(h1c))
2583 h1_send(h1c);
2584 if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) {
2585 h1_refresh_timeout(h1c);
2586 return t;
2587 }
2588 }
2589
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002590 /* We're about to destroy the connection, so make sure nobody attempts
2591 * to steal it from us.
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002592 */
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002593 if (h1c->conn->flags & CO_FL_LIST_MASK)
Olivier Houchard48ce6a32020-07-02 11:58:05 +02002594 MT_LIST_DEL(&h1c->conn->list);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002595
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02002596 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].takeover_lock);
Willy Tarreau68d4ee92020-06-30 11:19:23 +02002597 }
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01002598
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002599 do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02002600 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002601
2602 if (!h1c) {
2603 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002604 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002605 return NULL;
2606 }
2607
2608 h1c->task = NULL;
Christopher Fauletc1c66a42020-09-29 15:30:15 +02002609 h1_release(h1c);
2610 TRACE_LEAVE(H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002611 return NULL;
2612}
2613
Christopher Faulet51dbc942018-09-13 09:05:15 +02002614/*******************************************/
2615/* functions below are used by the streams */
2616/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002617
Christopher Faulet51dbc942018-09-13 09:05:15 +02002618/*
2619 * Attach a new stream to a connection
2620 * (Used for outgoing connections)
2621 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002622static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002623{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002624 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002625 struct conn_stream *cs = NULL;
2626 struct h1s *h1s;
2627
Christopher Faulet6b81df72019-10-01 22:08:43 +02002628 TRACE_ENTER(H1_EV_STRM_NEW, conn);
2629 if (h1c->flags & H1C_F_CS_ERROR) {
2630 TRACE_DEVEL("leaving on h1c error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002631 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002632 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002633
Christopher Faulet236c93b2020-07-02 09:19:54 +02002634 cs = cs_new(h1c->conn, h1c->conn->target);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002635 if (!cs) {
2636 TRACE_DEVEL("leaving on CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002637 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002638 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002639
Christopher Faulet2f0ec662020-09-24 10:30:15 +02002640 h1s = h1c_bck_stream_new(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002641 if (h1s == NULL) {
2642 TRACE_DEVEL("leaving on h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002643 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002644 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002645
Christopher Faulet6b81df72019-10-01 22:08:43 +02002646 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002647 return cs;
2648 end:
2649 cs_free(cs);
2650 return NULL;
2651}
2652
2653/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2654 * this mux, it's easy as we can only store a single conn_stream.
2655 */
2656static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2657{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002658 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002659 struct h1s *h1s = h1c->h1s;
2660
2661 if (h1s)
2662 return h1s->cs;
2663
2664 return NULL;
2665}
2666
Christopher Faulet73c12072019-04-08 11:23:22 +02002667static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002668{
Christopher Faulet73c12072019-04-08 11:23:22 +02002669 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002670
Christopher Faulet6b81df72019-10-01 22:08:43 +02002671 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002672 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002673 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002674}
2675
2676/*
2677 * Detach the stream from the connection and possibly release the connection.
2678 */
2679static void h1_detach(struct conn_stream *cs)
2680{
2681 struct h1s *h1s = cs->ctx;
2682 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002683 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002684 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002685
Christopher Faulet6b81df72019-10-01 22:08:43 +02002686 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
2687
Christopher Faulet51dbc942018-09-13 09:05:15 +02002688 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002689 if (!h1s) {
2690 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002691 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002692 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002693
Olivier Houchardf502aca2018-12-14 19:42:40 +01002694 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002695 h1c = h1s->h1c;
2696 h1s->cs = NULL;
2697
Christopher Faulet42849b02020-10-05 11:35:17 +02002698 sess->accept_date = date;
2699 sess->tv_accept = now;
2700 sess->t_handshake = 0;
2701 sess->t_idle = -1;
2702
Olivier Houchard8a786902018-12-15 16:05:40 +01002703 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2704 h1s_destroy(h1s);
2705
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002706 if ((h1c->flags & (H1C_F_IS_BACK|H1C_F_CS_IDLE)) == (H1C_F_IS_BACK|H1C_F_CS_IDLE)) {
Christopher Fauletf1204b82019-07-19 14:51:06 +02002707 /* If there are any excess server data in the input buffer,
2708 * release it and close the connection ASAP (some data may
2709 * remain in the output buffer). This happens if a server sends
2710 * invalid responses. So in such case, we don't want to reuse
2711 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02002712 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02002713 if (b_data(&h1c->ibuf)) {
2714 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02002715 h1c->flags = (h1c->flags & ~H1C_F_CS_IDLE) | H1C_F_CS_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002716 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02002717 goto release;
2718 }
Christopher Faulet03627242019-07-19 11:34:08 +02002719
Christopher Faulet08016ab2020-07-01 16:10:06 +02002720 if (h1c->conn->flags & CO_FL_PRIVATE) {
2721 /* Add the connection in the session server list, if not already done */
Olivier Houchard351411f2018-12-27 17:20:54 +01002722 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2723 h1c->conn->owner = NULL;
Olivier Houchard2444aa52020-01-20 13:56:01 +01002724 h1c->conn->mux->destroy(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002725 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01002726 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02002727 /* Always idle at this step */
Olivier Houchard2444aa52020-01-20 13:56:01 +01002728 if (session_check_idle_conn(sess, h1c->conn)) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002729 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002730 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
2731 goto end;
2732 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002733 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02002734 else {
Olivier Houchard2444aa52020-01-20 13:56:01 +01002735 if (h1c->conn->owner == sess)
2736 h1c->conn->owner = NULL;
Olivier Houchard3c49c1b2020-03-22 19:56:03 +01002737 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01002738 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01002739 /* The server doesn't want it, let's kill the connection right away */
2740 h1c->conn->mux->destroy(h1c);
2741 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
2742 goto end;
Christopher Faulet9400a392018-11-23 23:10:39 +01002743 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01002744 /* At this point, the connection has been added to the
2745 * server idle list, so another thread may already have
2746 * hijacked it, so we can't do anything with it.
2747 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01002748 return;
Christopher Faulet9400a392018-11-23 23:10:39 +01002749 }
2750 }
2751
Christopher Fauletf1204b82019-07-19 14:51:06 +02002752 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02002753 /* We don't want to close right now unless the connection is in error or shut down for writes */
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002754 if ((h1c->flags & H1C_F_CS_ERROR) ||
Christopher Faulet37243bc2019-07-11 15:40:25 +02002755 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02002756 ((h1c->flags & H1C_F_CS_SHUTDOWN) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02002757 !h1c->conn->owner) {
2758 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02002759 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002760 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002761 else {
Christopher Faulet5d3c93c2020-10-05 17:14:28 +02002762 if (h1c->flags & H1C_F_CS_IDLE) {
2763 /* If we have a new request, process it immediately or
2764 * subscribe for reads waiting for new data
2765 */
2766 if (unlikely(b_data(&h1c->ibuf)))
2767 h1_process(h1c);
2768 else
2769 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
2770 }
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002771 h1_set_idle_expiration(h1c);
Christopher Faulet7a145d62020-08-05 11:31:16 +02002772 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002773 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002774 end:
2775 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002776}
2777
2778
2779static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2780{
2781 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002782 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002783
2784 if (!h1s)
2785 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002786 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002787
Christopher Faulet6b81df72019-10-01 22:08:43 +02002788 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
2789
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02002790 if (cs->flags & CS_FL_SHR)
2791 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002792 if (cs->flags & CS_FL_KILL_CONN) {
2793 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
2794 goto do_shutr;
2795 }
2796 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
2797 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02002798 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002799 }
Christopher Faulet7f366362019-04-08 10:51:20 +02002800
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002801 if (h1s->flags & H1S_F_WANT_KAL) {
2802 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002803 goto end;
2804 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002805
Christopher Faulet7f366362019-04-08 10:51:20 +02002806 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002807 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2808 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02002809 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002810 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002811 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02002812 (mode == CS_SHR_DRAIN));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002813 end:
2814 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002815}
2816
2817static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2818{
2819 struct h1s *h1s = cs->ctx;
2820 struct h1c *h1c;
2821
2822 if (!h1s)
2823 return;
2824 h1c = h1s->h1c;
2825
Christopher Faulet6b81df72019-10-01 22:08:43 +02002826 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
2827
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02002828 if (cs->flags & CS_FL_SHW)
2829 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002830 if (cs->flags & CS_FL_KILL_CONN) {
2831 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02002832 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002833 }
2834 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
2835 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
2836 goto do_shutw;
2837 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002838
Christopher Fauletc4bfa592020-10-06 17:45:34 +02002839 if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
2840 TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002841 goto end;
2842 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002843
Christopher Faulet7f366362019-04-08 10:51:20 +02002844 do_shutw:
Christopher Faulet3c82d8b2020-10-05 17:11:16 +02002845 h1c->flags |= H1C_F_CS_SHUTDOWN;
2846 if (!b_data(&h1c->obuf))
2847 h1_shutw_conn(cs->conn, mode);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002848 end:
2849 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002850}
2851
Christopher Faulet666a0c42019-01-08 11:12:04 +01002852static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002853{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002854 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002855
Christopher Faulet6b81df72019-10-01 22:08:43 +02002856 TRACE_ENTER(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002857 conn_xprt_shutw(conn);
2858 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Faulet6b81df72019-10-01 22:08:43 +02002859 TRACE_LEAVE(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002860}
2861
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01002862/* Called from the upper layer, to unsubscribe <es> from events <event_type>
2863 * The <es> pointer is not allowed to differ from the one passed to the
2864 * subscribe() call. It always returns zero.
2865 */
2866static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002867{
Christopher Faulet51dbc942018-09-13 09:05:15 +02002868 struct h1s *h1s = cs->ctx;
2869
2870 if (!h1s)
2871 return 0;
2872
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002873 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01002874 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002875
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01002876 es->events &= ~event_type;
2877 if (!es->events)
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002878 h1s->subs = NULL;
2879
2880 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02002881 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002882
2883 if (event_type & SUB_RETRY_SEND)
Christopher Faulet6b81df72019-10-01 22:08:43 +02002884 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002885
Christopher Faulet51dbc942018-09-13 09:05:15 +02002886 return 0;
2887}
2888
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01002889/* Called from the upper layer, to subscribe <es> to events <event_type>. The
2890 * event subscriber <es> is not allowed to change from a previous call as long
2891 * as at least one event is still subscribed. The <event_type> must only be a
2892 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless
2893 * the conn_stream <cs> was already detached, in which case it will return -1.
2894 */
2895static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002896{
Christopher Faulet51dbc942018-09-13 09:05:15 +02002897 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02002898 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002899
2900 if (!h1s)
2901 return -1;
2902
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002903 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01002904 BUG_ON(h1s->subs && h1s->subs != es);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002905
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01002906 es->events |= event_type;
2907 h1s->subs = es;
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002908
2909 if (event_type & SUB_RETRY_RECV)
Christopher Faulet6b81df72019-10-01 22:08:43 +02002910 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Willy Tarreau1b0d4d12020-01-16 11:03:19 +01002911
2912
Christopher Faulet6b81df72019-10-01 22:08:43 +02002913 if (event_type & SUB_RETRY_SEND) {
2914 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002915 /*
2916 * If the conn_stream attempt to subscribe, and the
2917 * mux isn't subscribed to the connection, then it
2918 * probably means the connection wasn't established
2919 * yet, so we have to subscribe.
2920 */
2921 h1c = h1s->h1c;
2922 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
2923 h1c->conn->xprt->subscribe(h1c->conn,
2924 h1c->conn->xprt_ctx,
2925 SUB_RETRY_SEND,
2926 &h1c->wait_event);
2927 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002928 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002929}
2930
2931/* Called from the upper layer, to receive data */
2932static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2933{
2934 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002935 struct h1c *h1c = h1s->h1c;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02002936 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002937 size_t ret = 0;
2938
Willy Tarreau022e5e52020-09-10 09:33:15 +02002939 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet539e0292018-11-19 10:40:09 +01002940 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002941 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002942 else
2943 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002944
Christopher Faulete18777b2019-04-16 16:46:36 +02002945 if (flags & CO_RFL_BUF_FLUSH) {
Christopher Faulet2eaf3092020-07-03 14:51:15 +02002946 if (h1m->state == H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len)) {
Christopher Fauletae635762020-09-21 11:47:16 +02002947 h1c->flags |= H1C_F_WANT_SPLICE;
2948 TRACE_STATE("Block xprt rcv_buf to flush stream's buffer (want_splice)", H1_EV_STRM_RECV, h1c->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002949 }
Christopher Faulete18777b2019-04-16 16:46:36 +02002950 }
Olivier Houchard02bac852019-08-22 18:34:25 +02002951 else {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002952 if (h1m->state != H1_MSG_DONE && !(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau2c1f37d2020-03-04 17:50:02 +01002953 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002954 }
Willy Tarreau022e5e52020-09-10 09:33:15 +02002955 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02002956 return ret;
2957}
2958
2959
2960/* Called from the upper layer, to send data */
2961static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2962{
2963 struct h1s *h1s = cs->ctx;
2964 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002965 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002966
2967 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002968 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002969 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002970
Willy Tarreau022e5e52020-09-10 09:33:15 +02002971 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02002972
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002973 /* If we're not connected yet, or we're waiting for a handshake, stop
2974 * now, as we don't want to remove everything from the channel buffer
2975 * before we're sure we can send it.
2976 */
Willy Tarreau911db9b2020-01-23 16:27:54 +01002977 if (h1c->conn->flags & CO_FL_WAIT_XPRT) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002978 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002979 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002980 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002981
Christopher Faulet46230362019-10-17 16:04:20 +02002982 /* Inherit some flags from the upper layer */
2983 h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER);
2984 if (flags & CO_SFL_MSG_MORE)
2985 h1c->flags |= H1C_F_CO_MSG_MORE;
2986 if (flags & CO_SFL_STREAMER)
2987 h1c->flags |= H1C_F_CO_STREAMER;
2988
Christopher Fauletc31872f2019-06-04 22:09:36 +02002989 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002990 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002991
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002992 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2993 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002994 else
2995 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Olivier Houchardc89a42f2020-06-19 16:15:05 +02002996
2997 if ((count - ret) > 0)
2998 h1c->flags |= H1C_F_CO_MSG_MORE;
2999
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003000 if (!ret)
3001 break;
3002 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02003003 count -= ret;
Olivier Houchard68787ef2020-01-15 19:13:32 +01003004 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003005 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003006 }
Christopher Faulet7a145d62020-08-05 11:31:16 +02003007 h1_refresh_timeout(h1c);
Willy Tarreau022e5e52020-09-10 09:33:15 +02003008 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01003009 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02003010}
3011
Willy Tarreaue5733232019-05-22 19:24:06 +02003012#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003013/* Send and get, using splicing */
3014static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
3015{
3016 struct h1s *h1s = cs->ctx;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003017 struct h1c *h1c = h1s->h1c;
3018 struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003019 int ret = 0;
3020
Willy Tarreau022e5e52020-09-10 09:33:15 +02003021 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003022
Christopher Faulet9fa40c42019-11-05 16:24:27 +01003023 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003024 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003025 TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003026 if (!(h1c->wait_event.events & SUB_RETRY_RECV)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003027 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003028 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003029 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003030 goto end;
3031 }
3032
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003033 if (!(h1c->flags & H1C_F_WANT_SPLICE)) {
3034 h1c->flags |= H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003035 TRACE_STATE("Block xprt rcv_buf to perform splicing", H1_EV_STRM_RECV, cs->conn, h1s);
3036 }
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02003037 if (h1s_data_pending(h1s)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003038 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003039 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003040 }
3041
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003042 if (!h1_recv_allowed(h1c)) {
Christopher Faulet0060be92020-07-03 15:02:25 +02003043 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s);
3044 goto end;
3045 }
3046
Christopher Faulet1be55f92018-10-02 15:59:23 +02003047 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
3048 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003049 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02003050 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02003051 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02003052 if (!h1m->curr_len) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003053 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003054 TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003055 }
Christopher Faulete18777b2019-04-16 16:46:36 +02003056 }
3057
Christopher Faulet1be55f92018-10-02 15:59:23 +02003058 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02003059 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02003060 h1s->flags |= H1S_F_REOS;
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003061 h1c->flags &= ~H1C_F_WANT_SPLICE;
Christopher Fauletae635762020-09-21 11:47:16 +02003062 TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02003063 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003064
Christopher Fauleta131a8f2020-07-07 10:56:40 +02003065 if ((h1s->flags & H1S_F_REOS) ||
3066 (h1m->state != H1_MSG_TUNNEL && h1m->state != H1_MSG_DATA) ||
Christopher Faulet27182292020-07-03 15:08:49 +02003067 (h1m->state == H1_MSG_DATA && !h1m->curr_len)) {
Christopher Faulet0a799aa2020-09-24 09:52:52 +02003068 TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s);
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003069 cs->flags &= ~CS_FL_MAY_SPLICE;
Christopher Faulet27182292020-07-03 15:08:49 +02003070 }
Willy Tarreau17ccd1a2020-01-17 16:19:34 +01003071
Willy Tarreau022e5e52020-09-10 09:33:15 +02003072 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003073 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003074}
3075
3076static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
3077{
3078 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02003079 int ret = 0;
3080
Willy Tarreau022e5e52020-09-10 09:33:15 +02003081 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data});
Christopher Faulet6b81df72019-10-01 22:08:43 +02003082
Christopher Faulet1be55f92018-10-02 15:59:23 +02003083 if (b_data(&h1s->h1c->obuf))
3084 goto end;
3085
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003086 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02003087 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003088 if (pipe->data) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02003089 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
3090 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003091 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02003092 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01003093 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02003094
Willy Tarreau022e5e52020-09-10 09:33:15 +02003095 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret});
Christopher Faulet1be55f92018-10-02 15:59:23 +02003096 return ret;
3097}
3098#endif
3099
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003100static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3101{
Christopher Fauletc18fc232020-10-06 17:41:36 +02003102 const struct h1c *h1c = conn->ctx;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003103 int ret = 0;
Christopher Fauletc18fc232020-10-06 17:41:36 +02003104
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003105 switch (mux_ctl) {
3106 case MUX_STATUS:
Willy Tarreau911db9b2020-01-23 16:27:54 +01003107 if (!(conn->flags & CO_FL_WAIT_XPRT))
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003108 ret |= MUX_STATUS_READY;
3109 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02003110 case MUX_EXIT_STATUS:
Christopher Fauletc18fc232020-10-06 17:41:36 +02003111 ret = (h1c->errcode == 400 ? MUX_ES_INVALID_ERR :
3112 (h1c->errcode == 408 ? MUX_ES_TOUT_ERR :
3113 (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR :
3114 MUX_ES_SUCCESS)));
3115 return ret;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003116 default:
3117 return -1;
3118 }
3119}
3120
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003121/* for debugging with CLI's "show fd" command */
3122static void h1_show_fd(struct buffer *msg, struct connection *conn)
3123{
3124 struct h1c *h1c = conn->ctx;
3125 struct h1s *h1s = h1c->h1s;
3126
Christopher Fauletf376a312019-01-04 15:16:06 +01003127 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
3128 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003129 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
3130 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
3131 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
3132 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
3133
3134 if (h1s) {
3135 char *method;
3136
3137 if (h1s->meth < HTTP_METH_OTHER)
3138 method = http_known_methods[h1s->meth].ptr;
3139 else
3140 method = "UNKNOWN";
3141 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
3142 " .meth=%s status=%d",
3143 h1s, h1s->flags,
3144 h1m_state_str(h1s->req.state),
3145 h1m_state_str(h1s->res.state), method, h1s->status);
3146 if (h1s->cs)
3147 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
3148 h1s->cs->flags, h1s->cs->data);
3149 }
Christopher Faulet98fbe952019-07-22 16:18:24 +02003150}
3151
3152
3153/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
3154static int add_hdr_case_adjust(const char *from, const char *to, char **err)
3155{
3156 struct h1_hdr_entry *entry;
3157
3158 /* Be sure there is a non-empty <to> */
3159 if (!strlen(to)) {
3160 memprintf(err, "expect <to>");
3161 return -1;
3162 }
3163
3164 /* Be sure only the case differs between <from> and <to> */
3165 if (strcasecmp(from, to)) {
3166 memprintf(err, "<from> and <to> must not differ execpt the case");
3167 return -1;
3168 }
3169
3170 /* Be sure <from> does not already existsin the tree */
3171 if (ebis_lookup(&hdrs_map.map, from)) {
3172 memprintf(err, "duplicate entry '%s'", from);
3173 return -1;
3174 }
3175
3176 /* Create the entry and insert it in the tree */
3177 entry = malloc(sizeof(*entry));
3178 if (!entry) {
3179 memprintf(err, "out of memory");
3180 return -1;
3181 }
3182
3183 entry->node.key = strdup(from);
3184 entry->name.ptr = strdup(to);
3185 entry->name.len = strlen(to);
3186 if (!entry->node.key || !entry->name.ptr) {
3187 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003188 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003189 free(entry);
3190 memprintf(err, "out of memory");
3191 return -1;
3192 }
3193 ebis_insert(&hdrs_map.map, &entry->node);
3194 return 0;
3195}
3196
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003197/* Migrate the the connection to the current thread.
3198 * Return 0 if successful, non-zero otherwise.
3199 * Expected to be called with the old thread lock held.
3200 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003201static int h1_takeover(struct connection *conn, int orig_tid)
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003202{
3203 struct h1c *h1c = conn->ctx;
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003204 struct task *task;
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003205
3206 if (fd_takeover(conn->handle.fd, conn) != 0)
3207 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02003208
3209 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
3210 /* We failed to takeover the xprt, even if the connection may
3211 * still be valid, flag it as error'd, as we have already
3212 * taken over the fd, and wake the tasklet, so that it will
3213 * destroy it.
3214 */
3215 conn->flags |= CO_FL_ERROR;
3216 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
3217 return -1;
3218 }
3219
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003220 if (h1c->wait_event.events)
3221 h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx,
3222 h1c->wait_event.events, &h1c->wait_event);
3223 /* To let the tasklet know it should free itself, and do nothing else,
3224 * set its context to NULL.
3225 */
3226 h1c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02003227 tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid);
Willy Tarreau09e0d9e2020-07-01 16:39:33 +02003228
3229 task = h1c->task;
3230 if (task) {
3231 task->context = NULL;
3232 h1c->task = NULL;
3233 __ha_barrier_store();
3234 task_kill(task);
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003235
3236 h1c->task = task_new(tid_bit);
3237 if (!h1c->task) {
3238 h1_release(h1c);
3239 return -1;
3240 }
3241 h1c->task->process = h1_timeout_task;
3242 h1c->task->context = h1c;
3243 }
3244 h1c->wait_event.tasklet = tasklet_new();
3245 if (!h1c->wait_event.tasklet) {
3246 h1_release(h1c);
3247 return -1;
3248 }
3249 h1c->wait_event.tasklet->process = h1_io_cb;
3250 h1c->wait_event.tasklet->context = h1c;
3251 h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx,
3252 SUB_RETRY_RECV, &h1c->wait_event);
3253
3254 return 0;
3255}
3256
3257
Christopher Faulet98fbe952019-07-22 16:18:24 +02003258static void h1_hdeaders_case_adjust_deinit()
3259{
3260 struct ebpt_node *node, *next;
3261 struct h1_hdr_entry *entry;
3262
3263 node = ebpt_first(&hdrs_map.map);
3264 while (node) {
3265 next = ebpt_next(node);
3266 ebpt_delete(node);
3267 entry = container_of(node, struct h1_hdr_entry, node);
3268 free(entry->node.key);
Tim Duesterhused526372020-03-05 17:56:33 +01003269 istfree(&entry->name);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003270 free(entry);
3271 node = next;
3272 }
3273 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003274}
3275
Christopher Faulet98fbe952019-07-22 16:18:24 +02003276static int cfg_h1_headers_case_adjust_postparser()
3277{
3278 FILE *file = NULL;
3279 char *c, *key_beg, *key_end, *value_beg, *value_end;
3280 char *err;
3281 int rc, line = 0, err_code = 0;
3282
3283 if (!hdrs_map.name)
3284 goto end;
3285
3286 file = fopen(hdrs_map.name, "r");
3287 if (!file) {
3288 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
3289 hdrs_map.name);
3290 err_code |= ERR_ALERT | ERR_FATAL;
3291 goto end;
3292 }
3293
3294 /* now parse all lines. The file may contain only two header name per
3295 * line, separated by spaces. All heading and trailing spaces will be
3296 * ignored. Lines starting with a # are ignored.
3297 */
3298 while (fgets(trash.area, trash.size, file) != NULL) {
3299 line++;
3300 c = trash.area;
3301
3302 /* strip leading spaces and tabs */
3303 while (*c == ' ' || *c == '\t')
3304 c++;
3305
3306 /* ignore emptu lines, or lines beginning with a dash */
3307 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
3308 continue;
3309
3310 /* look for the end of the key */
3311 key_beg = c;
3312 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
3313 c++;
3314 key_end = c;
3315
3316 /* strip middle spaces and tabs */
3317 while (*c == ' ' || *c == '\t')
3318 c++;
3319
3320 /* look for the end of the value, it is the end of the line */
3321 value_beg = c;
3322 while (*c && *c != '\n' && *c != '\r')
3323 c++;
3324 value_end = c;
3325
3326 /* trim possibly trailing spaces and tabs */
3327 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
3328 value_end--;
3329
3330 /* set final \0 and check entries */
3331 *key_end = '\0';
3332 *value_end = '\0';
3333
3334 err = NULL;
3335 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
3336 if (rc < 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003337 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3338 hdrs_map.name, err, line);
3339 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003340 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003341 goto end;
3342 }
3343 if (rc > 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02003344 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
3345 hdrs_map.name, err, line);
3346 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02003347 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02003348 }
3349 }
3350
3351 end:
3352 if (file)
3353 fclose(file);
3354 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
3355 return err_code;
3356}
3357
3358
3359/* config parser for global "h1-outgoing-header-case-adjust" */
3360static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
3361 struct proxy *defpx, const char *file, int line,
3362 char **err)
3363{
3364 if (too_many_args(2, args, err, NULL))
3365 return -1;
3366 if (!*(args[1]) || !*(args[2])) {
3367 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
3368 return -1;
3369 }
3370 return add_hdr_case_adjust(args[1], args[2], err);
3371}
3372
3373/* config parser for global "h1-outgoing-headers-case-adjust-file" */
3374static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
3375 struct proxy *defpx, const char *file, int line,
3376 char **err)
3377{
3378 if (too_many_args(1, args, err, NULL))
3379 return -1;
3380 if (!*(args[1])) {
3381 memprintf(err, "'%s' expects <file> as argument.", args[0]);
3382 return -1;
3383 }
3384 free(hdrs_map.name);
3385 hdrs_map.name = strdup(args[1]);
3386 return 0;
3387}
3388
3389
3390/* config keyword parsers */
3391static struct cfg_kw_list cfg_kws = {{ }, {
3392 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
3393 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
3394 { 0, NULL, NULL },
3395 }
3396};
3397
3398INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3399REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
3400
3401
Christopher Faulet51dbc942018-09-13 09:05:15 +02003402/****************************************/
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05003403/* MUX initialization and instantiation */
Christopher Faulet51dbc942018-09-13 09:05:15 +02003404/****************************************/
3405
3406/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01003407static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02003408 .init = h1_init,
3409 .wake = h1_wake,
3410 .attach = h1_attach,
3411 .get_first_cs = h1_get_first_cs,
3412 .detach = h1_detach,
3413 .destroy = h1_destroy,
3414 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01003415 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02003416 .rcv_buf = h1_rcv_buf,
3417 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02003418#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02003419 .rcv_pipe = h1_rcv_pipe,
3420 .snd_pipe = h1_snd_pipe,
3421#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02003422 .subscribe = h1_subscribe,
3423 .unsubscribe = h1_unsubscribe,
3424 .shutr = h1_shutr,
3425 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01003426 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01003427 .reset = h1_reset,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003428 .ctl = h1_ctl,
Olivier Houchardf12ca9f2020-02-20 16:00:18 +01003429 .takeover = h1_takeover,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02003430 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02003431 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02003432};
3433
3434
3435/* this mux registers default HTX proto */
3436static struct mux_proto_list mux_proto_htx =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02003437{ .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02003438
Willy Tarreau0108d902018-11-25 19:14:37 +01003439INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
3440
Christopher Faulet51dbc942018-09-13 09:05:15 +02003441/*
3442 * Local variables:
3443 * c-indent-level: 8
3444 * c-basic-offset: 8
3445 * End:
3446 */