blob: b9b78f0b6777ce9bb993bbac92b0313b816210d6 [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 */
12#include <common/cfgparse.h>
13#include <common/config.h>
Willy Tarreauafba57a2018-12-11 13:44:24 +010014#include <common/h1.h>
Christopher Faulet0ef372a2019-04-08 10:57:20 +020015#include <common/h2.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010016#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010017#include <common/initcall.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020018
Christopher Faulet98fbe952019-07-22 16:18:24 +020019#include <ebistree.h>
20
Christopher Faulet1be55f92018-10-02 15:59:23 +020021#include <types/pipe.h>
Christopher Fauletf2824e62018-10-01 12:12:37 +020022#include <types/proxy.h>
23#include <types/session.h>
24
Christopher Faulet51dbc942018-09-13 09:05:15 +020025#include <proto/connection.h>
Christopher Faulet4f0f88a2019-08-10 11:17:44 +020026#include <proto/h1_htx.h>
Christopher Faulet9768c262018-10-22 09:34:31 +020027#include <proto/http_htx.h>
Christopher Faulet129817b2018-09-20 16:14:40 +020028#include <proto/log.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010029#include <proto/session.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020030#include <proto/stream.h>
31#include <proto/stream_interface.h>
Christopher Faulet6b81df72019-10-01 22:08:43 +020032#include <proto/trace.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020033
34/*
35 * H1 Connection flags (32 bits)
36 */
37#define H1C_F_NONE 0x00000000
38
39/* Flags indicating why writing output data are blocked */
40#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
41#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
42/* 0x00000004 - 0x00000008 unused */
43
44/* Flags indicating why reading input data are blocked. */
45#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
46#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletcb55f482018-12-10 11:56:47 +010047#define H1C_F_IN_BUSY 0x00000040
Christopher Faulet539e0292018-11-19 10:40:09 +010048/* 0x00000040 - 0x00000800 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020049
50#define H1C_F_CS_ERROR 0x00001000 /* connection must be closed ASAP because an error occurred */
51#define H1C_F_CS_SHUTW_NOW 0x00002000 /* connection must be shut down for writes ASAP */
Christopher Faulet666a0c42019-01-08 11:12:04 +010052#define H1C_F_CS_SHUTDOWN 0x00004000 /* connection is shut down for read and writes */
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 Faulet51dbc942018-09-13 09:05:15 +020057/*
58 * H1 Stream flags (32 bits)
59 */
Christopher Faulet129817b2018-09-20 16:14:40 +020060#define H1S_F_NONE 0x00000000
61#define H1S_F_ERROR 0x00000001 /* An error occurred on the H1 stream */
Christopher Fauletf2824e62018-10-01 12:12:37 +020062#define H1S_F_REQ_ERROR 0x00000002 /* An error occurred during the request parsing/xfer */
63#define H1S_F_RES_ERROR 0x00000004 /* An error occurred during the response parsing/xfer */
Willy Tarreauc493c9c2019-06-03 14:18:22 +020064#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020065#define H1S_F_WANT_KAL 0x00000010
66#define H1S_F_WANT_TUN 0x00000020
67#define H1S_F_WANT_CLO 0x00000040
68#define H1S_F_WANT_MSK 0x00000070
69#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet539e0292018-11-19 10:40:09 +010070#define H1S_F_BUF_FLUSH 0x00000100 /* Flush input buffer and don't read more data */
Christopher Fauletd44ad5b2018-11-19 21:52:12 +010071#define H1S_F_SPLICED_DATA 0x00000200 /* Set when the kernel splicing is in used */
Willy Tarreau34d23482019-01-03 17:46:56 +010072#define H1S_F_HAVE_I_TLR 0x00000800 /* Set during input process to know the trailers were processed */
Willy Tarreau0bb5a5c2019-08-23 09:29:29 +020073#define H1S_F_APPEND_EOM 0x00001000 /* Send EOM to the HTX buffer */
Christopher Faulet72ba6cd2019-09-24 16:20:05 +020074/* 0x00002000 .. 0x00001000 unused */
75#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 +020076#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020077
78/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020079struct h1c {
80 struct connection *conn;
81 struct proxy *px;
82 uint32_t flags; /* Connection flags: H1C_F_* */
83
84 struct buffer ibuf; /* Input buffer to store data before parsing */
85 struct buffer obuf; /* Output buffer to store data after reformatting */
86
87 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
88 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
89
90 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +010091 struct task *task; /* timeout management task */
92 int timeout; /* idle timeout duration in ticks */
93 int shut_timeout; /* idle timeout duration in ticks after stream shutdown */
Christopher Faulet51dbc942018-09-13 09:05:15 +020094};
95
96/* H1 stream descriptor */
97struct h1s {
98 struct h1c *h1c;
99 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100100 struct cs_info csinfo; /* CS info, only used for client connections */
101 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200102
Christopher Faulet51dbc942018-09-13 09:05:15 +0200103 struct wait_event *recv_wait; /* Address of the wait_event the conn_stream associated is waiting on */
104 struct wait_event *send_wait; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200105
Olivier Houchardf502aca2018-12-14 19:42:40 +0100106 struct session *sess; /* Associated session */
Christopher Faulet129817b2018-09-20 16:14:40 +0200107 struct h1m req;
108 struct h1m res;
109
110 enum http_meth_t meth; /* HTTP resquest method */
111 uint16_t status; /* HTTP response status */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112};
113
Christopher Faulet98fbe952019-07-22 16:18:24 +0200114/* Map of headers used to convert outgoing headers */
115struct h1_hdrs_map {
116 char *name;
117 struct eb_root map;
118};
119
120/* An entry in a headers map */
121struct h1_hdr_entry {
122 struct ist name;
123 struct ebpt_node node;
124};
125
126/* Declare the headers map */
127static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
128
129
Christopher Faulet6b81df72019-10-01 22:08:43 +0200130/* trace source and events */
131static void h1_trace(enum trace_level level, uint64_t mask,
132 const struct trace_source *src,
133 const struct ist where, const struct ist func,
134 const void *a1, const void *a2, const void *a3, const void *a4);
135
136/* The event representation is split like this :
137 * h1c - internal H1 connection
138 * h1s - internal H1 stream
139 * strm - application layer
140 * rx - data receipt
141 * tx - data transmission
142 *
143 */
144static const struct trace_event h1_trace_events[] = {
145#define H1_EV_H1C_NEW (1ULL << 0)
146 { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" },
147#define H1_EV_H1C_RECV (1ULL << 1)
148 { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" },
149#define H1_EV_H1C_SEND (1ULL << 2)
150 { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" },
151#define H1_EV_H1C_BLK (1ULL << 3)
152 { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" },
153#define H1_EV_H1C_WAKE (1ULL << 4)
154 { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" },
155#define H1_EV_H1C_END (1ULL << 5)
156 { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" },
157#define H1_EV_H1C_ERR (1ULL << 6)
158 { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" },
159
160#define H1_EV_RX_DATA (1ULL << 7)
161 { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" },
162#define H1_EV_RX_EOI (1ULL << 8)
163 { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" },
164#define H1_EV_RX_HDRS (1ULL << 9)
165 { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" },
166#define H1_EV_RX_BODY (1ULL << 10)
167 { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" },
168#define H1_EV_RX_TLRS (1ULL << 11)
169 { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" },
170
171#define H1_EV_TX_DATA (1ULL << 12)
172 { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" },
173#define H1_EV_TX_EOI (1ULL << 13)
174 { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" },
175#define H1_EV_TX_HDRS (1ULL << 14)
176 { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" },
177#define H1_EV_TX_BODY (1ULL << 15)
178 { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" },
179#define H1_EV_TX_TLRS (1ULL << 16)
180 { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" },
181
182#define H1_EV_H1S_NEW (1ULL << 17)
183 { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" },
184#define H1_EV_H1S_BLK (1ULL << 18)
185 { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" },
186#define H1_EV_H1S_END (1ULL << 19)
187 { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" },
188#define H1_EV_H1S_ERR (1ULL << 20)
189 { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" },
190
191#define H1_EV_STRM_NEW (1ULL << 21)
192 { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
193#define H1_EV_STRM_RECV (1ULL << 22)
194 { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
195#define H1_EV_STRM_SEND (1ULL << 23)
196 { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
197#define H1_EV_STRM_WAKE (1ULL << 24)
198 { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
199#define H1_EV_STRM_SHUT (1ULL << 25)
200 { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
201#define H1_EV_STRM_END (1ULL << 26)
202 { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
203#define H1_EV_STRM_ERR (1ULL << 27)
204 { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
205
206 { }
207};
208
209static const struct name_desc h1_trace_lockon_args[4] = {
210 /* arg1 */ { /* already used by the connection */ },
211 /* arg2 */ { .name="h1s", .desc="H1 stream" },
212 /* arg3 */ { },
213 /* arg4 */ { }
214};
215
216static const struct name_desc h1_trace_decoding[] = {
217#define H1_VERB_CLEAN 1
218 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
219#define H1_VERB_MINIMAL 2
220 { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" },
221#define H1_VERB_SIMPLE 3
222 { .name="simple", .desc="add request/response status line or htx info when available" },
223#define H1_VERB_ADVANCED 4
224 { .name="advanced", .desc="add header fields or frame decoding when available" },
225#define H1_VERB_COMPLETE 5
226 { .name="complete", .desc="add full data dump when available" },
227 { /* end */ }
228};
229
230static struct trace_source trace_h1 = {
231 .name = IST("h1"),
232 .desc = "HTTP/1 multiplexer",
233 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
234 .default_cb = h1_trace,
235 .known_events = h1_trace_events,
236 .lockon_args = h1_trace_lockon_args,
237 .decoding = h1_trace_decoding,
238 .report_events = ~0, // report everything by default
239};
240
241#define TRACE_SOURCE &trace_h1
242INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
243
Christopher Faulet51dbc942018-09-13 09:05:15 +0200244/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100245DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
246DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200247
Christopher Faulet51dbc942018-09-13 09:05:15 +0200248static int h1_recv(struct h1c *h1c);
249static int h1_send(struct h1c *h1c);
250static int h1_process(struct h1c *h1c);
251static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state);
Christopher Faulet666a0c42019-01-08 11:12:04 +0100252static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100253static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200254static void h1_wake_stream_for_recv(struct h1s *h1s);
255static void h1_wake_stream_for_send(struct h1s *h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200256
Christopher Faulet6b81df72019-10-01 22:08:43 +0200257/* the H1 traces always expect that arg1, if non-null, is of type connection
258 * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and
259 * that arg3, if non-null, is a htx for rx/tx headers.
260 */
261static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
262 const struct ist where, const struct ist func,
263 const void *a1, const void *a2, const void *a3, const void *a4)
264{
265 const struct connection *conn = a1;
266 const struct h1c *h1c = conn ? conn->ctx : NULL;
267 const struct h1s *h1s = a2;
268 const struct htx *htx = a3;
269 const size_t *val = a4;
270
271 if (!h1c)
272 h1c = (h1s ? h1s->h1c : NULL);
273
274 if (!h1c || src->verbosity < H1_VERB_CLEAN)
275 return;
276
277 /* Display frontend/backend info by default */
278 chunk_appendf(&trace_buf, " : [%c]", (conn_is_back(h1c->conn) ? 'B' : 'F'));
279
280 /* Display request and response states if h1s is defined */
281 if (h1s)
282 chunk_appendf(&trace_buf, " [%s, %s]",
283 h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state));
284
285 if (src->verbosity == H1_VERB_CLEAN)
286 return;
287
288 /* Display the value to the 4th argument (level > STATE) */
289 if (src->level > TRACE_LEVEL_STATE && val)
290 chunk_appendf(&trace_buf, " - VAL=%lu", *val);
291
292 /* Display status-line if possible (verbosity > MINIMAL) */
293 if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) {
294 const struct htx_blk *blk = htx_get_head_blk(htx);
295 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
296 enum htx_blk_type type = htx_get_blk_type(blk);
297
298 if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL)
299 chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"",
300 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
301 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
302 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
303 }
304
305 /* Display h1c info and, if defined, h1s info (pointer + flags) */
306 chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags);
307 if (h1s)
308 chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags);
309
310 if (src->verbosity == H1_VERB_MINIMAL)
311 return;
312
313 /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */
314 if (src->level > TRACE_LEVEL_USER) {
315 if (src->verbosity == H1_VERB_COMPLETE ||
316 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV))))
317 chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u",
318 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
319 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf));
320 if (src->verbosity == H1_VERB_COMPLETE ||
321 (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND))))
322 chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u",
323 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
324 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
325 }
326
327 /* Display htx info if defined (level > USER) */
328 if (src->level > TRACE_LEVEL_USER && htx) {
329 int full = 0;
330
331 /* Full htx info (level > STATE && verbosity > SIMPLE) */
332 if (src->level > TRACE_LEVEL_STATE) {
333 if (src->verbosity == H1_VERB_COMPLETE)
334 full = 1;
335 else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS)))
336 full = 1;
337 }
338
339 chunk_memcat(&trace_buf, "\n\t", 2);
340 htx_dump(&trace_buf, htx, full);
341 }
342}
343
344
Christopher Faulet51dbc942018-09-13 09:05:15 +0200345/*****************************************************/
346/* functions below are for dynamic buffer management */
347/*****************************************************/
348/*
349 * Indicates whether or not the we may call the h1_recv() function to
350 * attempt to receive data into the buffer and/or parse pending data. The
351 * condition is a bit complex due to some API limits for now. The rules are the
352 * following :
353 * - if an error or a shutdown was detected on the connection and the buffer
354 * is empty, we must not attempt to receive
355 * - if the input buffer failed to be allocated, we must not try to receive
356 * and we know there is nothing pending
357 * - if no flag indicates a blocking condition, we may attempt to receive,
358 * regardless of whether the input buffer is full or not, so that only de
359 * receiving part decides whether or not to block. This is needed because
360 * the connection API indeed prevents us from re-enabling receipt that is
361 * already enabled in a polled state, so we must always immediately stop as
362 * soon as the mux can't proceed so as never to hit an end of read with data
363 * pending in the buffers.
364 * - otherwise must may not attempt to receive
365 */
366static inline int h1_recv_allowed(const struct h1c *h1c)
367{
Christopher Faulet6b81df72019-10-01 22:08:43 +0200368 if (b_data(&h1c->ibuf) == 0 && (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN))) {
369 TRACE_DEVEL("recv not allowed because of (error|shudown) on h1c", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200370 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200371 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200372
Christopher Faulet6b81df72019-10-01 22:08:43 +0200373 if (h1c->conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(h1c->conn)) {
374 TRACE_DEVEL("recv not allowed because of (error|read0) on connection", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Fauletcf56b992018-12-11 16:12:31 +0100375 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200376 }
Christopher Fauletcf56b992018-12-11 16:12:31 +0100377
Christopher Fauletcb55f482018-12-10 11:56:47 +0100378 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_BUSY)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200379 return 1;
380
Christopher Faulet6b81df72019-10-01 22:08:43 +0200381 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 +0200382 return 0;
383}
384
385/*
386 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
387 * flags are used to figure what buffer was requested. It returns 1 if the
388 * allocation succeeds, in which case the connection is woken up, or 0 if it's
389 * impossible to wake up and we prefer to be woken up later.
390 */
391static int h1_buf_available(void *target)
392{
393 struct h1c *h1c = target;
394
395 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200396 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 +0200397 h1c->flags &= ~H1C_F_IN_ALLOC;
398 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200399 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200400 return 1;
401 }
402
403 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200404 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 +0200405 h1c->flags &= ~H1C_F_OUT_ALLOC;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200406 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet660f6f32019-10-04 10:22:47 +0200407 if (h1c->h1s)
408 h1_wake_stream_for_send(h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200409 return 1;
410 }
411
Christopher Faulet51dbc942018-09-13 09:05:15 +0200412 return 0;
413}
414
415/*
416 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
417 */
418static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
419{
420 struct buffer *buf = NULL;
421
422 if (likely(LIST_ISEMPTY(&h1c->buf_wait.list)) &&
423 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
424 h1c->buf_wait.target = h1c;
425 h1c->buf_wait.wakeup_cb = h1_buf_available;
426 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
427 LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list);
428 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
429 __conn_xprt_stop_recv(h1c->conn);
430 }
431 return buf;
432}
433
434/*
435 * Release a buffer, if any, and try to wake up entities waiting in the buffer
436 * wait queue.
437 */
438static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
439{
440 if (bptr->size) {
441 b_free(bptr);
442 offer_buffers(h1c->buf_wait.target, tasks_run_queue);
443 }
444}
445
Willy Tarreau00f18a32019-01-26 12:19:01 +0100446/* returns the number of streams in use on a connection to figure if it's
447 * idle or not. We can't have an h1s without a CS so checking h1s is fine,
448 * as the caller will want to know if it was the last one after a detach().
449 */
450static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200451{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100452 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200453
Willy Tarreau00f18a32019-01-26 12:19:01 +0100454 return h1c->h1s ? 1 : 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200455}
456
Willy Tarreau00f18a32019-01-26 12:19:01 +0100457/* returns the number of streams still available on a connection */
458static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100459{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100460 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100461}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200462
Willy Tarreau00f18a32019-01-26 12:19:01 +0100463
Christopher Faulet51dbc942018-09-13 09:05:15 +0200464/*****************************************************************/
465/* functions below are dedicated to the mux setup and management */
466/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200467
468/* returns non-zero if there are input data pending for stream h1s. */
469static inline size_t h1s_data_pending(const struct h1s *h1s)
470{
471 const struct h1m *h1m;
472
473 h1m = conn_is_back(h1s->h1c->conn) ? &h1s->res : &h1s->req;
474 if (h1m->state == H1_MSG_DONE)
475 return 0; // data not for this stream (e.g. pipelining)
476
477 return b_data(&h1s->h1c->ibuf);
478}
479
Christopher Faulet47365272018-10-31 17:40:50 +0100480static struct conn_stream *h1s_new_cs(struct h1s *h1s)
481{
482 struct conn_stream *cs;
483
Christopher Faulet6b81df72019-10-01 22:08:43 +0200484 TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100485 cs = cs_new(h1s->h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200486 if (!cs) {
487 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 +0100488 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200489 }
Christopher Faulet47365272018-10-31 17:40:50 +0100490 h1s->cs = cs;
491 cs->ctx = h1s;
492
493 if (h1s->flags & H1S_F_NOT_FIRST)
494 cs->flags |= CS_FL_NOT_FIRST;
495
Christopher Faulet6b81df72019-10-01 22:08:43 +0200496 if (stream_create_from_cs(cs) < 0) {
497 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 +0100498 goto err;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200499 }
500
501 TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +0100502 return cs;
503
504 err:
505 cs_free(cs);
506 h1s->cs = NULL;
507 return NULL;
508}
509
Olivier Houchardf502aca2018-12-14 19:42:40 +0100510static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200511{
512 struct h1s *h1s;
513
Christopher Faulet6b81df72019-10-01 22:08:43 +0200514 TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn);
515
Christopher Faulet51dbc942018-09-13 09:05:15 +0200516 h1s = pool_alloc(pool_head_h1s);
517 if (!h1s)
Christopher Faulet47365272018-10-31 17:40:50 +0100518 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200519
520 h1s->h1c = h1c;
521 h1c->h1s = h1s;
522
Olivier Houchardf502aca2018-12-14 19:42:40 +0100523 h1s->sess = sess;
524
Christopher Faulet51dbc942018-09-13 09:05:15 +0200525 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100526 h1s->flags = H1S_F_WANT_KAL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200527
528 h1s->recv_wait = NULL;
529 h1s->send_wait = NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200530
531 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100532 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200533
Christopher Faulet129817b2018-09-20 16:14:40 +0200534 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100535 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200536
537 h1s->status = 0;
538 h1s->meth = HTTP_METH_OTHER;
539
Christopher Faulet47365272018-10-31 17:40:50 +0100540 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
541 h1s->flags |= H1S_F_NOT_FIRST;
542 h1c->flags &= ~H1C_F_WAIT_NEXT_REQ;
543
Christopher Faulet129817b2018-09-20 16:14:40 +0200544 if (!conn_is_back(h1c->conn)) {
545 if (h1c->px->options2 & PR_O2_REQBUG_OK)
546 h1s->req.err_pos = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200547
548 /* For frontend connections we should always have a session */
549 if (!sess)
550 sess = h1c->conn->owner;
551
Dave Pirotte234740f2019-07-10 13:57:38 +0000552 /* Timers for subsequent sessions on the same HTTP 1.x connection
553 * measure from `now`, not from the connection accept time */
554 if (h1s->flags & H1S_F_NOT_FIRST) {
555 h1s->csinfo.create_date = date;
556 h1s->csinfo.tv_create = now;
557 h1s->csinfo.t_handshake = 0;
558 h1s->csinfo.t_idle = -1;
559 }
560 else {
561 h1s->csinfo.create_date = sess->accept_date;
562 h1s->csinfo.tv_create = sess->tv_accept;
563 h1s->csinfo.t_handshake = sess->t_handshake;
564 h1s->csinfo.t_idle = -1;
565 }
Christopher Faulet129817b2018-09-20 16:14:40 +0200566 }
567 else {
568 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
569 h1s->res.err_pos = -1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200570
Christopher Fauletfeb11742018-11-29 15:12:34 +0100571 h1s->csinfo.create_date = date;
572 h1s->csinfo.tv_create = now;
573 h1s->csinfo.t_handshake = 0;
574 h1s->csinfo.t_idle = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200575 }
Christopher Fauletfeb11742018-11-29 15:12:34 +0100576
Christopher Faulete9b70722019-04-08 10:46:02 +0200577 /* If a conn_stream already exists, attach it to this H1S. Otherwise we
578 * create a new one.
579 */
580 if (cs) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200581 cs->ctx = h1s;
582 h1s->cs = cs;
583 }
Christopher Faulet47365272018-10-31 17:40:50 +0100584 else {
585 cs = h1s_new_cs(h1s);
586 if (!cs)
587 goto fail;
588 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200589 TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200590 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100591
592 fail:
593 pool_free(pool_head_h1s, h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +0200594 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 +0100595 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200596}
597
598static void h1s_destroy(struct h1s *h1s)
599{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200600 if (h1s) {
601 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200602
Christopher Faulet6b81df72019-10-01 22:08:43 +0200603 TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200604 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200605
Christopher Fauletf2824e62018-10-01 12:12:37 +0200606 if (h1s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100607 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200608 if (h1s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100609 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200610
Christopher Fauletcb55f482018-12-10 11:56:47 +0100611 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Faulet47365272018-10-31 17:40:50 +0100612 h1c->flags |= H1C_F_WAIT_NEXT_REQ;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200613 if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR)) {
Christopher Faulet47365272018-10-31 17:40:50 +0100614 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200615 TRACE_STATE("h1s on error, set error on h1c", H1_EV_H1C_ERR, h1c->conn, h1s);
616 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200617 pool_free(pool_head_h1s, h1s);
618 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200619}
620
Christopher Fauletfeb11742018-11-29 15:12:34 +0100621static const struct cs_info *h1_get_cs_info(struct conn_stream *cs)
622{
623 struct h1s *h1s = cs->ctx;
624
625 if (h1s && !conn_is_back(cs->conn))
626 return &h1s->csinfo;
627 return NULL;
628}
629
Christopher Faulet51dbc942018-09-13 09:05:15 +0200630/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200631 * Initialize the mux once it's attached. It is expected that conn->ctx points
632 * to the existing conn_stream (for outgoing connections or for incoming onces
633 * during a mux upgrade) or NULL (for incoming ones during the connexion
634 * establishment). <input> is always used as Input buffer and may contain
635 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
636 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200637 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200638static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
639 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200640{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200641 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100642 struct task *t = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200643 void *conn_ctx = conn->ctx;
644
645 TRACE_ENTER(H1_EV_H1C_NEW);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200646
647 h1c = pool_alloc(pool_head_h1c);
648 if (!h1c)
649 goto fail_h1c;
650 h1c->conn = conn;
651 h1c->px = proxy;
652
653 h1c->flags = H1C_F_NONE;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200654 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200655 h1c->obuf = BUF_NULL;
656 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200657 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200658
Christopher Faulet51dbc942018-09-13 09:05:15 +0200659 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200660 h1c->wait_event.tasklet = tasklet_new();
661 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200662 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200663 h1c->wait_event.tasklet->process = h1_io_cb;
664 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100665 h1c->wait_event.events = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200666
Christopher Faulete9b70722019-04-08 10:46:02 +0200667 if (conn_is_back(conn)) {
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100668 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
669 if (tick_isset(proxy->timeout.serverfin))
670 h1c->shut_timeout = proxy->timeout.serverfin;
671 } else {
672 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
673 if (tick_isset(proxy->timeout.clientfin))
674 h1c->shut_timeout = proxy->timeout.clientfin;
675 }
676 if (tick_isset(h1c->timeout)) {
677 t = task_new(tid_bit);
678 if (!t)
679 goto fail;
680
681 h1c->task = t;
682 t->process = h1_timeout_task;
683 t->context = h1c;
684 t->expire = tick_add(now_ms, h1c->timeout);
685 }
686
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100687 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200688
Christopher Faulet6b81df72019-10-01 22:08:43 +0200689 /* Always Create a new H1S */
690 if (!h1s_create(h1c, conn_ctx, sess))
691 goto fail;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100692
693 if (t)
694 task_queue(t);
695
Christopher Faulet51dbc942018-09-13 09:05:15 +0200696 /* Try to read, if nothing is available yet we'll just subscribe */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200697 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200698
699 /* mux->wake will be called soon to complete the operation */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200700 TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200701 return 0;
702
703 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200704 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200705 if (h1c->wait_event.tasklet)
706 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200707 pool_free(pool_head_h1c, h1c);
708 fail_h1c:
Christopher Faulet6b81df72019-10-01 22:08:43 +0200709 conn->ctx = conn_ctx; // restore saved context
710 TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200711 return -1;
712}
713
Christopher Faulet73c12072019-04-08 11:23:22 +0200714/* release function. This one should be called to free all resources allocated
715 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200716 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200717static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200718{
Christopher Faulet61840e72019-04-15 09:33:32 +0200719 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200720
Christopher Faulet6b81df72019-10-01 22:08:43 +0200721 TRACE_POINT(H1_EV_H1C_END);
722
Christopher Faulet51dbc942018-09-13 09:05:15 +0200723 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200724 /* The connection must be aattached to this mux to be released */
725 if (h1c->conn && h1c->conn->ctx == h1c)
726 conn = h1c->conn;
727
Christopher Faulet6b81df72019-10-01 22:08:43 +0200728 TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn);
729
Christopher Faulet61840e72019-04-15 09:33:32 +0200730 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200731 TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200732 h1c->flags &= ~H1C_F_UPG_H2C;
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200733 /* Make sure we're no longer subscribed to anything */
734 if (h1c->wait_event.events)
735 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
736 h1c->wait_event.events, &h1c->wait_event);
Christopher Fauletc985f6c2019-07-15 11:42:52 +0200737 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200738 /* connection successfully upgraded to H2, this
739 * mux was already released */
740 return;
741 }
Christopher Faulet6b81df72019-10-01 22:08:43 +0200742 TRACE_DEVEL("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn);
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200743 sess_log(conn->owner); /* Log if the upgrade failed */
744 }
745
Olivier Houchard45c44372019-06-11 14:06:23 +0200746
Christopher Faulet51dbc942018-09-13 09:05:15 +0200747 if (!LIST_ISEMPTY(&h1c->buf_wait.list)) {
748 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
749 LIST_DEL(&h1c->buf_wait.list);
750 LIST_INIT(&h1c->buf_wait.list);
751 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
752 }
753
754 h1_release_buf(h1c, &h1c->ibuf);
755 h1_release_buf(h1c, &h1c->obuf);
756
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100757 if (h1c->task) {
758 h1c->task->context = NULL;
759 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
760 h1c->task = NULL;
761 }
762
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200763 if (h1c->wait_event.tasklet)
764 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200765
Christopher Fauletf2824e62018-10-01 12:12:37 +0200766 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200767 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100768 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200769 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200770 pool_free(pool_head_h1c, h1c);
771 }
772
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200773 if (conn) {
774 conn->mux = NULL;
775 conn->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200776 TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200777
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200778 conn_stop_tracking(conn);
779 conn_full_close(conn);
780 if (conn->destroy_cb)
781 conn->destroy_cb(conn);
782 conn_free(conn);
783 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200784}
785
786/******************************************************/
787/* functions below are for the H1 protocol processing */
788/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200789/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
790 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200791 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100792static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200793{
Christopher Faulet570d1612018-11-26 11:13:57 +0100794 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200795
Christopher Faulet570d1612018-11-26 11:13:57 +0100796 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200797 (*(p + 5) > '1' ||
798 (*(p + 5) == '1' && *(p + 7) >= '1')))
799 h1m->flags |= H1_MF_VER_11;
800}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200801
Christopher Faulet9768c262018-10-22 09:34:31 +0200802/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
803 * greater or equal to 1.1
804 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100805static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200806{
Christopher Faulet570d1612018-11-26 11:13:57 +0100807 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200808
Christopher Faulet570d1612018-11-26 11:13:57 +0100809 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200810 (*(p + 5) > '1' ||
811 (*(p + 5) == '1' && *(p + 7) >= '1')))
812 h1m->flags |= H1_MF_VER_11;
813}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200814
Christopher Fauletf2824e62018-10-01 12:12:37 +0200815/* Deduce the connection mode of the client connection, depending on the
816 * configuration and the H1 message flags. This function is called twice, the
817 * first time when the request is parsed and the second time when the response
818 * is parsed.
819 */
820static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
821{
822 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200823
824 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100825 /* Output direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200826 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100827 h1s->status == 101) {
828 /* Either we've established an explicit tunnel, or we're
829 * switching the protocol. In both cases, we're very unlikely to
830 * understand the next protocols. We have to switch to tunnel
831 * mode, so that we transfer the request and responses then let
832 * this protocol pass unmodified. When we later implement
833 * specific parsers for such protocols, we'll want to check the
834 * Upgrade header which contains information about that protocol
835 * for responses with status 101 (eg: see RFC2817 about TLS).
836 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200837 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200838 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 +0100839 }
840 else if (h1s->flags & H1S_F_WANT_KAL) {
841 /* By default the client is in KAL mode. CLOSE mode mean
842 * it is imposed by the client itself. So only change
843 * KAL mode here. */
844 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
845 /* no length known or explicit close => close */
846 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200847 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 +0100848 }
849 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
850 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
851 /* no explict keep-alive and option httpclose => close */
852 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200853 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 +0100854 }
855 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200856 }
857 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100858 /* Input direction: first pass */
859 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
860 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +0200861 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200862 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 +0100863 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200864 }
865
866 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200867 if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200868 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200869 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);
870 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200871}
872
873/* Deduce the connection mode of the client connection, depending on the
874 * configuration and the H1 message flags. This function is called twice, the
875 * first time when the request is parsed and the second time when the response
876 * is parsed.
877 */
878static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
879{
Olivier Houchardf502aca2018-12-14 19:42:40 +0100880 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +0100881 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100882 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200883
Christopher Fauletf2824e62018-10-01 12:12:37 +0200884 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100885 /* Input direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200886 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100887 h1s->status == 101) {
888 /* Either we've established an explicit tunnel, or we're
889 * switching the protocol. In both cases, we're very unlikely to
890 * understand the next protocols. We have to switch to tunnel
891 * mode, so that we transfer the request and responses then let
892 * this protocol pass unmodified. When we later implement
893 * specific parsers for such protocols, we'll want to check the
894 * Upgrade header which contains information about that protocol
895 * for responses with status 101 (eg: see RFC2817 about TLS).
896 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200897 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200898 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 +0100899 }
900 else if (h1s->flags & H1S_F_WANT_KAL) {
901 /* By default the server is in KAL mode. CLOSE mode mean
902 * it is imposed by haproxy itself. So only change KAL
903 * mode here. */
904 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
905 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
906 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
907 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200908 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 +0100909 }
910 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200911 }
Christopher Faulet70033782018-12-05 13:50:11 +0100912 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100913 /* Output direction: first pass */
914 if (h1m->flags & H1_MF_CONN_CLO) {
915 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +0100916 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200917 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 +0100918 }
919 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
920 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
921 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
922 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
923 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
924 /* no explicit keep-alive option httpclose/server-close => close */
925 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200926 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 +0100927 }
Christopher Faulet70033782018-12-05 13:50:11 +0100928 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200929
930 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200931 if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200932 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Faulet6b81df72019-10-01 22:08:43 +0200933 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);
934 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200935}
936
Christopher Fauletb992af02019-03-28 15:42:24 +0100937static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200938{
939 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200940
941 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
942 * token is found
943 */
944 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200945 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200946
947 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet6b81df72019-10-01 22:08:43 +0200948 if (!(h1m->flags & H1_MF_VER_11)) {
949 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 +0100950 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +0200951 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200952 }
953 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200954 if (h1m->flags & H1_MF_VER_11) {
955 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +0100956 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +0200957 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200958 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200959}
960
Christopher Fauletb992af02019-03-28 15:42:24 +0100961static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200962{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200963 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
964 * token is found
965 */
966 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200967 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200968
969 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100970 if (!(h1m->flags & H1_MF_VER_11) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +0200971 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
972 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 +0100973 *conn_val = ist("keep-alive");
Christopher Faulet6b81df72019-10-01 22:08:43 +0200974 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200975 }
976 else { /* H1S_F_WANT_CLO */
Christopher Faulet6b81df72019-10-01 22:08:43 +0200977 if (h1m->flags & H1_MF_VER_11) {
978 TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
Christopher Fauletb992af02019-03-28 15:42:24 +0100979 *conn_val = ist("close");
Christopher Faulet6b81df72019-10-01 22:08:43 +0200980 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200981 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200982}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200983
Christopher Fauletb992af02019-03-28 15:42:24 +0100984static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +0200985{
Christopher Fauletb992af02019-03-28 15:42:24 +0100986 if (!conn_is_back(h1s->h1c->conn))
Christopher Faulet9768c262018-10-22 09:34:31 +0200987 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +0100988 else
Christopher Faulet9768c262018-10-22 09:34:31 +0200989 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200990}
991
Christopher Fauletb992af02019-03-28 15:42:24 +0100992static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
993{
994 if (!conn_is_back(h1s->h1c->conn))
995 h1_set_cli_conn_mode(h1s, h1m);
996 else
997 h1_set_srv_conn_mode(h1s, h1m);
998
999 if (!(h1m->flags & H1_MF_RESP))
1000 h1_update_req_conn_value(h1s, h1m, conn_val);
1001 else
1002 h1_update_res_conn_value(h1s, h1m, conn_val);
1003}
Christopher Faulete44769b2018-11-29 23:01:45 +01001004
Christopher Faulet98fbe952019-07-22 16:18:24 +02001005/* Try to adjust the case of the message header name using the global map
1006 * <hdrs_map>.
1007 */
1008static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
1009{
1010 struct ebpt_node *node;
1011 struct h1_hdr_entry *entry;
1012
1013 /* No entry in the map, do nothing */
1014 if (eb_is_empty(&hdrs_map.map))
1015 return;
1016
1017 /* No conversion fo the request headers */
1018 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
1019 return;
1020
1021 /* No conversion fo the response headers */
1022 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
1023 return;
1024
1025 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
1026 if (!node)
1027 return;
1028 entry = container_of(node, struct h1_hdr_entry, node);
1029 name->ptr = entry->name.ptr;
1030 name->len = entry->name.len;
1031}
1032
Christopher Faulete44769b2018-11-29 23:01:45 +01001033/* Append the description of what is present in error snapshot <es> into <out>.
1034 * The description must be small enough to always fit in a buffer. The output
1035 * buffer may be the trash so the trash must not be used inside this function.
1036 */
1037static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
1038{
1039 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001040 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
1041 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
1042 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
1043 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
1044 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
1045 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +01001046}
1047/*
1048 * Capture a bad request or response and archive it in the proxy's structure.
1049 * By default it tries to report the error position as h1m->err_pos. However if
1050 * this one is not set, it will then report h1m->next, which is the last known
1051 * parsing point. The function is able to deal with wrapping buffers. It always
1052 * displays buffers as a contiguous area starting at buf->p. The direction is
1053 * determined thanks to the h1m's flags.
1054 */
1055static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
1056 struct h1m *h1m, struct buffer *buf)
1057{
1058 struct session *sess = h1c->conn->owner;
1059 struct proxy *proxy = h1c->px;
1060 struct proxy *other_end = sess->fe;
1061 union error_snapshot_ctx ctx;
1062
Willy Tarreau598d7fc2018-12-18 18:10:38 +01001063 if (h1s->cs->data && !(h1m->flags & H1_MF_RESP))
Christopher Faulete44769b2018-11-29 23:01:45 +01001064 other_end = si_strm(h1s->cs->data)->be;
1065
1066 /* http-specific part now */
1067 ctx.h1.state = h1m->state;
1068 ctx.h1.c_flags = h1c->flags;
1069 ctx.h1.s_flags = h1s->flags;
1070 ctx.h1.m_flags = h1m->flags;
1071 ctx.h1.m_clen = h1m->curr_len;
1072 ctx.h1.m_blen = h1m->body_len;
1073
1074 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
1075 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001076 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
1077 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +01001078}
1079
Christopher Fauletadb22202018-12-12 10:32:09 +01001080/* Emit the chunksize followed by a CRLF in front of data of the buffer
1081 * <buf>. It goes backwards and starts with the byte before the buffer's
1082 * head. The caller is responsible for ensuring there is enough room left before
1083 * the buffer's head for the string.
1084 */
1085static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
1086{
1087 char *beg, *end;
1088
1089 beg = end = b_head(buf);
1090 *--beg = '\n';
1091 *--beg = '\r';
1092 do {
1093 *--beg = hextab[chksz & 0xF];
1094 } while (chksz >>= 4);
1095 buf->head -= (end - beg);
1096 b_add(buf, end - beg);
1097}
1098
1099/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
1100 * ensuring there is enough room left in the buffer for the string. */
1101static void h1_emit_chunk_crlf(struct buffer *buf)
1102{
1103 *(b_peek(buf, b_data(buf))) = '\r';
1104 *(b_peek(buf, b_data(buf) + 1)) = '\n';
1105 b_add(buf, 2);
1106}
1107
Christopher Faulet129817b2018-09-20 16:14:40 +02001108/*
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001109 * Switch the request to tunnel mode. This function must only be called for
1110 * CONNECT requests. On the client side, the mux is mark as busy on input,
1111 * waiting the response.
1112 */
1113static void h1_set_req_tunnel_mode(struct h1s *h1s)
1114{
1115 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
1116 h1s->req.state = H1_MSG_TUNNEL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001117 if (!conn_is_back(h1s->h1c->conn)) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001118 h1s->h1c->flags |= H1C_F_IN_BUSY;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001119 TRACE_STATE("switch h1c in busy mode", H1_EV_RX_DATA|H1_EV_H1C_BLK, h1s->h1c->conn, h1s);
1120 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001121}
1122
1123/*
1124 * Switch the response to tunnel mode. This function must only be called on
1125 * successfull replies to CONNECT requests or on protocol switching. On the
1126 * server side, if the request is not finished, the mux is mark as busy on
1127 * input. Otherwise the request is also switch to tunnel mode.
1128 */
1129static void h1_set_res_tunnel_mode(struct h1s *h1s)
1130{
1131 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
1132 h1s->res.state = H1_MSG_TUNNEL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001133 if (conn_is_back(h1s->h1c->conn) && h1s->req.state < H1_MSG_DONE) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001134 h1s->h1c->flags |= H1C_F_IN_BUSY;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001135 TRACE_STATE("switch h1c in busy mode", H1_EV_RX_DATA|H1_EV_H1C_BLK, h1s->h1c->conn, h1s);
1136 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001137 else {
1138 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
1139 h1s->req.state = H1_MSG_TUNNEL;
1140 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
1141 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001142 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001143 TRACE_STATE("h1c no more busy", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1s->h1c->conn, h1s);
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001144 }
1145 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001146}
1147
1148/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001149 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001150 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001151 * flag. If relies on the function http_parse_msg_hdrs() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001152 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001153static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001154 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001155{
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001156 union h1_sl h1sl;
Christopher Faulet129817b2018-09-20 16:14:40 +02001157 int ret = 0;
1158
Christopher Faulet6b81df72019-10-01 22:08:43 +02001159 TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s,, (size_t[]){max});
1160
Christopher Fauleteec96b52019-09-25 09:10:46 +02001161 if (!(h1s->flags & H1S_F_NOT_FIRST) && !(h1m->flags & H1_MF_RESP)) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001162 /* Try to match H2 preface before parsing the request headers. */
1163 ret = b_isteq(buf, 0, b_data(buf), ist(H2_CONN_PREFACE));
Christopher Faulet6b81df72019-10-01 22:08:43 +02001164 if (ret > 0) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001165 goto h2c_upgrade;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001166 }
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001167 }
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001168 else {
1169 if (h1s->meth == HTTP_METH_CONNECT)
1170 h1m->flags |= H1_MF_METH_CONNECT;
1171 if (h1s->meth == HTTP_METH_HEAD)
1172 h1m->flags |= H1_MF_METH_HEAD;
1173 }
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001174
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001175 ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max);
1176 if (!ret) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001177 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 +02001178 if (htx->flags & HTX_FL_PARSING_ERROR) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001179 if (!(h1m->flags & H1_MF_RESP)) {
1180 h1s->flags |= H1S_F_REQ_ERROR;
1181 TRACE_USER("rejected H1 request", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1182 }
1183 else {
1184 h1s->flags |= H1S_F_RES_ERROR;
1185 TRACE_USER("rejected H1 response", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1186 }
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001187 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001188 TRACE_STATE("parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001189 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1190 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001191 goto end;
1192 }
1193
Christopher Faulet486498c2019-10-11 14:22:00 +02001194 if (h1m->err_pos >= 0) {
1195 /* Maybe we found an error during the parsing while we were
1196 * configured not to block on that, so we have to capture it
1197 * now.
1198 */
1199 TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1200 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1201 }
1202
Christopher Faulet129817b2018-09-20 16:14:40 +02001203 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001204 h1s->meth = h1sl.rq.meth;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001205 if (h1m->state == H1_MSG_TUNNEL) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001206 h1_set_req_tunnel_mode(h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001207 TRACE_STATE("switch H1 request in tunnel mode", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1208 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001209 }
1210 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001211 h1s->status = h1sl.st.status;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001212 if (h1m->state == H1_MSG_TUNNEL) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001213 h1_set_res_tunnel_mode(h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001214 TRACE_STATE("switch H1 response in tunnel mode", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s);
1215 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001216 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001217 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001218 *ofs += ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001219
Christopher Faulet129817b2018-09-20 16:14:40 +02001220 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001221 TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s,, (size_t[]){ret});
Christopher Faulet129817b2018-09-20 16:14:40 +02001222 return ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001223
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001224 h2c_upgrade:
1225 h1s->h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +02001226 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001227 htx->flags |= HTX_FL_UPGRADE;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001228 TRACE_DEVEL("leaving on H2 update", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_RX_EOI, h1s->h1c->conn, h1s);
1229 return 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001230}
1231
1232/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001233 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001234 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag.
1235 * If relies on the function http_parse_msg_data() to do the parsing.
Christopher Faulet129817b2018-09-20 16:14:40 +02001236 */
Christopher Fauletaf542632019-10-01 21:52:49 +02001237static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001238 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001239 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001240{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001241 int ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001242
Christopher Faulet6b81df72019-10-01 22:08:43 +02001243 TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s,, (size_t[]){max});
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001244 ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf);
1245 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001246 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001247 if (ret < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001248 if (!(h1m->flags & H1_MF_RESP)) {
1249 h1s->flags |= H1S_F_REQ_ERROR;
1250 TRACE_USER("rejected H1 request", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1251 }
1252 else {
1253 h1s->flags |= H1S_F_RES_ERROR;
1254 TRACE_USER("rejected H1 response", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1255 }
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001256 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001257 TRACE_STATE("parsing error", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001258 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001259 }
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001260 return 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001261 }
1262
Christopher Faulet6b81df72019-10-01 22:08:43 +02001263 if (h1m->state == H1_MSG_DONE) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001264 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001265 TRACE_STATE("end of message", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_RX_EOI, h1s->h1c->conn);
1266 }
1267
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001268 *ofs += ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001269 TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s,, (size_t[]){ret});
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001270 return ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001271}
1272
1273/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001274 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1275 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1276 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
1277 * responsible to update the parser state <h1m>.
1278 */
1279static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1280 struct buffer *buf, size_t *ofs, size_t max)
1281{
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001282 int ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001283
Christopher Faulet6b81df72019-10-01 22:08:43 +02001284 TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_TLRS, h1s->h1c->conn, h1s,, (size_t[]){max});
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001285 ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001286 if (ret <= 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001287 TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001288 if (ret < 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001289 if (!(h1m->flags & H1_MF_RESP)) {
1290 h1s->flags |= H1S_F_REQ_ERROR;
1291 TRACE_USER("rejected H1 request", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1292 }
1293 else {
1294 h1s->flags |= H1S_F_RES_ERROR;
1295 TRACE_USER("rejected H1 response", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
1296 }
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001297 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001298 TRACE_STATE("parsing error", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001299 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1300 }
1301 return 0;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001302 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001303
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001304 *ofs += ret;
1305 h1s->flags |= H1S_F_HAVE_I_TLR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001306 TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_TLRS, h1s->h1c->conn, h1s,, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001307 return ret;
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001308}
1309
1310/*
1311 * Add the EOM in the HTX message and switch the message to the DONE state. It
1312 * returns the number of bytes parsed if > 0, or 0 if iet couldn't proceed. This
1313 * functions is responsible to update the parser state <h1m>. It also add the
1314 * flag CS_FL_EOI on the CS.
1315 */
1316static size_t h1_process_eom(struct h1s *h1s, struct h1m *h1m, struct htx *htx, size_t max)
1317{
Christopher Faulet6b81df72019-10-01 22:08:43 +02001318 TRACE_ENTER(H1_EV_RX_DATA, h1s->h1c->conn, h1s,, (size_t[]){max});
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001319 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM)) {
1320 h1s->flags |= H1S_F_APPEND_EOM;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001321 TRACE_STATE("leaving on append_eom", H1_EV_RX_DATA, h1s->h1c->conn);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001322 return 0;
1323 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001324
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001325 h1s->flags &= ~H1S_F_APPEND_EOM;
1326 h1m->state = H1_MSG_DONE;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001327 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001328 TRACE_STATE("end of message", H1_EV_RX_DATA|H1_EV_RX_EOI, h1s->h1c->conn, h1s);
1329 TRACE_LEAVE(H1_EV_RX_DATA, h1s->h1c->conn, h1s);
Christopher Faulet4f0f88a2019-08-10 11:17:44 +02001330 return (sizeof(struct htx_blk) + 1);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001331}
1332
1333/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001334 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001335 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1336 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001337 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001338static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001339{
Christopher Faulet539e0292018-11-19 10:40:09 +01001340 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001341 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001342 struct htx *htx;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001343 size_t ret, data;
Christopher Faulet129817b2018-09-20 16:14:40 +02001344 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001345 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001346
Christopher Faulet539e0292018-11-19 10:40:09 +01001347 htx = htx_from_buf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001348 TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count});
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001349
Christopher Fauletf2824e62018-10-01 12:12:37 +02001350 if (!conn_is_back(h1c->conn)) {
1351 h1m = &h1s->req;
1352 errflag = H1S_F_REQ_ERROR;
1353 }
1354 else {
1355 h1m = &h1s->res;
1356 errflag = H1S_F_RES_ERROR;
1357 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001358
Christopher Faulet74027762019-02-26 14:45:05 +01001359 data = htx->data;
Christopher Faulet0e54d542019-07-04 21:22:34 +02001360 if (h1s->flags & errflag)
1361 goto end;
1362
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001363 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001364 size_t used = htx_used_space(htx);
1365
Christopher Faulet129817b2018-09-20 16:14:40 +02001366 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001367 TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Faulet539e0292018-11-19 10:40:09 +01001368 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001369 if (!ret)
1370 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001371
1372 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"),
1373 H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret});
1374
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001375 if ((h1m->flags & H1_MF_RESP) &&
1376 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1377 h1m_init_res(&h1s->res);
1378 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001379 TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001380 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001381 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001382 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001383 TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001384 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001385 if (!ret)
1386 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001387
1388 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"),
1389 H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret});
1390
1391 if (h1m->state == H1_MSG_DONE)
1392 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1393 H1_EV_RX_DATA, h1c->conn, h1s, htx);
Christopher Faulet129817b2018-09-20 16:14:40 +02001394 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001395 else if (h1m->state == H1_MSG_TRAILERS) {
1396 if (!(h1s->flags & H1S_F_HAVE_I_TLR)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001397 TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001398 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1399 if (!ret)
1400 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001401
1402 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"),
1403 H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001404 }
Christopher Fauletf1ef7f62019-09-03 21:55:14 +02001405 else if (!h1_process_eom(h1s, h1m, htx, count))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001406 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001407
1408 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"),
1409 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001410 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001411 else if (h1m->state == H1_MSG_DONE) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001412 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
Christopher Faulet2f320ee2019-04-16 20:26:53 +02001413 h1c->flags |= H1C_F_IN_BUSY;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001414 TRACE_STATE("switch h1c in busy mode", H1_EV_RX_DATA|H1_EV_H1C_BLK, h1c->conn, h1s);
1415 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001416 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001417 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001418 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001419 TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Fauletaf542632019-10-01 21:52:49 +02001420 ret = h1_process_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001421 if (!ret)
1422 break;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001423
1424 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"),
1425 H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Fauletf2824e62018-10-01 12:12:37 +02001426 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001427 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001428 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001429 break;
1430 }
1431
Christopher Faulet30db3d72019-05-17 15:35:33 +02001432 count -= htx_used_space(htx) - used;
Christopher Faulet6b321922019-09-03 16:26:15 +02001433 } while (!(h1s->flags & errflag));
Christopher Faulet129817b2018-09-20 16:14:40 +02001434
Christopher Faulet6b81df72019-10-01 22:08:43 +02001435 if (h1s->flags & errflag) {
1436 TRACE_PROTO("parsing error", H1_EV_RX_DATA, h1c->conn, h1s);
Christopher Faulet47365272018-10-31 17:40:50 +01001437 goto parsing_err;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001438 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001439
Christopher Faulet539e0292018-11-19 10:40:09 +01001440 b_del(&h1c->ibuf, total);
1441
1442 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001443 htx_to_buf(htx, buf);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001444 ret = htx->data - data;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001445 if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001446 h1c->flags &= ~H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001447 TRACE_STATE("h1c ibuf not full anymore", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001448 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet47365272018-10-31 17:40:50 +01001449 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001450
Christopher Fauletcf56b992018-12-11 16:12:31 +01001451 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1452
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001453 if (!b_data(&h1c->ibuf))
Christopher Faulet539e0292018-11-19 10:40:09 +01001454 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001455 else if (h1s_data_pending(h1s) && !htx_is_empty(htx))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001456 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001457
Willy Tarreau0bb5a5c2019-08-23 09:29:29 +02001458 if (((h1s->flags & (H1S_F_REOS|H1S_F_APPEND_EOM)) == H1S_F_REOS) &&
1459 (!h1s_data_pending(h1s) || htx_is_empty(htx))) {
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001460 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001461 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001462 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001463 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001464
Christopher Faulet6b81df72019-10-01 22:08:43 +02001465 TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret});
Christopher Faulet30db3d72019-05-17 15:35:33 +02001466 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001467
1468 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001469 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001470 htx_to_buf(htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001471 TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001472 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001473}
1474
Christopher Faulet129817b2018-09-20 16:14:40 +02001475/*
1476 * Process outgoing data. It parses data and transfer them from the channel buffer into
1477 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1478 * 0 if it couldn't proceed.
1479 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001480static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1481{
Christopher Faulet129817b2018-09-20 16:14:40 +02001482 struct h1s *h1s = h1c->h1s;
1483 struct h1m *h1m;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001484 struct htx *chn_htx = NULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001485 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001486 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001487 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001488 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001489
Christopher Faulet47365272018-10-31 17:40:50 +01001490 if (!count)
1491 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001492
Christopher Faulet94b2c762019-05-24 15:28:57 +02001493 chn_htx = htxbuf(buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001494 TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count});
1495
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001496 if (htx_is_empty(chn_htx))
1497 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001498
Christopher Faulet51dbc942018-09-13 09:05:15 +02001499 if (!h1_get_buf(h1c, &h1c->obuf)) {
1500 h1c->flags |= H1C_F_OUT_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001501 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 +02001502 goto end;
1503 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001504
Christopher Fauletf2824e62018-10-01 12:12:37 +02001505 if (!conn_is_back(h1c->conn)) {
1506 h1m = &h1s->res;
1507 errflag = H1S_F_RES_ERROR;
1508 }
1509 else {
1510 h1m = &h1s->req;
1511 errflag = H1S_F_REQ_ERROR;
1512 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001513
Christopher Faulet0e54d542019-07-04 21:22:34 +02001514 if (h1s->flags & errflag)
1515 goto end;
1516
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001517 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001518 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001519
Willy Tarreau3815b222018-12-11 19:50:43 +01001520 /* Perform some optimizations to reduce the number of buffer copies.
1521 * First, if the mux's buffer is empty and the htx area contains
1522 * exactly one data block of the same size as the requested count,
1523 * then it's possible to simply swap the caller's buffer with the
1524 * mux's output buffer and adjust offsets and length to match the
1525 * entire DATA HTX block in the middle. In this case we perform a
1526 * true zero-copy operation from end-to-end. This is the situation
1527 * that happens all the time with large files. Second, if this is not
1528 * possible, but the mux's output buffer is empty, we still have an
1529 * opportunity to avoid the copy to the intermediary buffer, by making
1530 * the intermediary buffer's area point to the output buffer's area.
1531 * In this case we want to skip the HTX header to make sure that copies
1532 * remain aligned and that this operation remains possible all the
1533 * time. This goes for headers, data blocks and any data extracted from
1534 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001535 */
1536 if (!b_data(&h1c->obuf)) {
Christopher Faulet192c6a22019-06-11 16:32:24 +02001537 if (htx_nbblks(chn_htx) == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001538 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001539 htx_get_blk_value(chn_htx, blk).len == count) {
1540 void *old_area = h1c->obuf.area;
1541
Christopher Faulet6b81df72019-10-01 22:08:43 +02001542 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 +01001543 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001544 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001545 h1c->obuf.data = count;
1546
1547 buf->area = old_area;
1548 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001549
Christopher Faulet6b81df72019-10-01 22:08:43 +02001550 chn_htx = (struct htx *)buf->area;
1551 htx_reset(chn_htx);
1552
Christopher Fauletadb22202018-12-12 10:32:09 +01001553 /* The message is chunked. We need to emit the chunk
1554 * size. We have at least the size of the struct htx to
1555 * write the chunk envelope. It should be enough.
1556 */
1557 if (h1m->flags & H1_MF_CHNK) {
1558 h1_emit_chunk_size(&h1c->obuf, count);
1559 h1_emit_chunk_crlf(&h1c->obuf);
1560 }
1561
Willy Tarreau3815b222018-12-11 19:50:43 +01001562 total += count;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001563 if (h1m->state == H1_MSG_DATA)
1564 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Christopher Faulet08618a72019-10-08 11:59:47 +02001565 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s,, (size_t[]){count});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001566 else
1567 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Christopher Faulet08618a72019-10-08 11:59:47 +02001568 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s,, (size_t[]){count});
Willy Tarreau3815b222018-12-11 19:50:43 +01001569 goto out;
1570 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001571 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001572 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001573 else
1574 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001575
Christopher Fauletc2518a52019-06-25 21:41:02 +02001576 tmp.data = 0;
1577 tmp.size = b_room(&h1c->obuf);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001578 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001579 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001580 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001581 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001582 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletd9233f02019-10-14 14:01:24 +02001583 uint32_t vlen, chklen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001584
Christopher Fauletb2e84162018-12-06 11:39:49 +01001585 vlen = sz;
Christopher Fauletd9233f02019-10-14 14:01:24 +02001586 if (type != HTX_BLK_DATA && vlen > count)
1587 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001588
Christopher Faulet94b2c762019-05-24 15:28:57 +02001589 if (type == HTX_BLK_UNUSED)
1590 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001591
Christopher Faulet94b2c762019-05-24 15:28:57 +02001592 switch (h1m->state) {
1593 case H1_MSG_RQBEFORE:
1594 if (type != HTX_BLK_REQ_SL)
1595 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001596 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 +02001597 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001598 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001599 h1_parse_req_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001600 if (!h1_format_htx_reqline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001601 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001602 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001603 if (sl->flags & HTX_SL_F_BODYLESS)
1604 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001605 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001606 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001607
Christopher Faulet94b2c762019-05-24 15:28:57 +02001608 case H1_MSG_RPBEFORE:
1609 if (type != HTX_BLK_RES_SL)
1610 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001611 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 +02001612 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001613 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001614 h1_parse_res_vsn(h1m, sl);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001615 if (!h1_format_htx_stline(sl, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001616 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001617 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001618 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001619 if (sl->info.res.status < 200 &&
1620 (sl->info.res.status == 100 || sl->info.res.status >= 102))
Christopher Fauletada34b62019-05-24 16:36:43 +02001621 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001622 h1m->state = H1_MSG_HDR_FIRST;
1623 break;
1624
Christopher Faulet94b2c762019-05-24 15:28:57 +02001625 case H1_MSG_HDR_FIRST:
1626 case H1_MSG_HDR_NAME:
1627 case H1_MSG_HDR_L2_LWS:
1628 if (type == HTX_BLK_EOH)
1629 goto last_lf;
1630 if (type != HTX_BLK_HDR)
1631 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001632
Christopher Faulet9768c262018-10-22 09:34:31 +02001633 h1m->state = H1_MSG_HDR_NAME;
1634 n = htx_get_blk_name(chn_htx, blk);
1635 v = htx_get_blk_value(chn_htx, blk);
1636
Christopher Faulet86d144c2019-08-14 16:32:25 +02001637 /* Skip all pseudo-headers */
1638 if (*(n.ptr) == ':')
1639 goto skip_hdr;
1640
Christopher Faulet9768c262018-10-22 09:34:31 +02001641 if (isteqi(n, ist("transfer-encoding")))
1642 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001643 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001644 /* Only skip C-L header with invalid value. */
1645 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001646 goto skip_hdr;
1647 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001648 else if (isteqi(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001649 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001650 if (!v.len)
1651 goto skip_hdr;
1652 }
1653
Christopher Faulet67d58092019-10-02 10:51:38 +02001654 /* Skip header if same name is used to add the server name */
1655 if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name &&
1656 isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len)))
1657 goto skip_hdr;
1658
Christopher Faulet98fbe952019-07-22 16:18:24 +02001659 /* Try to adjust the case of the header name */
1660 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1661 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001662 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001663 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001664 skip_hdr:
1665 h1m->state = H1_MSG_HDR_L2_LWS;
1666 break;
1667
Christopher Faulet94b2c762019-05-24 15:28:57 +02001668 case H1_MSG_LAST_LF:
1669 if (type != HTX_BLK_EOH)
1670 goto error;
1671 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001672 h1m->state = H1_MSG_LAST_LF;
1673 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001674 /* There is no "Connection:" header and
1675 * it the conn_mode must be
1676 * processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02001677 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001678 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001679 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001680 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02001681 /* Try to adjust the case of the header name */
1682 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1683 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001684 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001685 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001686 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001687 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001688 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001689
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001690 if ((h1s->meth != HTTP_METH_CONNECT &&
1691 (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 +01001692 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1693 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1694 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1695 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1696 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001697 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02001698 n = ist("transfer-encoding");
1699 v = ist("chunked");
1700 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1701 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001702 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001703 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001704 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01001705 h1m->flags |= H1_MF_CHNK;
1706 }
1707
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001708 /* Now add the server name to a header (if requested) */
1709 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
1710 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
1711 struct server *srv = objt_server(h1c->conn->target);
1712
1713 if (srv) {
1714 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
1715 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02001716
1717 /* Try to adjust the case of the header name */
1718 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1719 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001720 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001721 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001722 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001723 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001724 h1s->flags |= H1S_F_HAVE_SRV_NAME;
1725 }
1726
Christopher Fauletc2518a52019-06-25 21:41:02 +02001727 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001728 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001729
Christopher Faulet6b81df72019-10-01 22:08:43 +02001730 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
1731 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
1732
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001733 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1734 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1735 h1_set_req_tunnel_mode(h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001736 TRACE_STATE("switch H1 request in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001737 }
1738 else if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101) {
1739 /* a successfull reply to a CONNECT or a protocol switching is sent
1740 * to the client . Switch the response to tunnel mode. */
1741 h1_set_res_tunnel_mode(h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001742 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 +01001743 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001744 else if ((h1m->flags & H1_MF_RESP) &&
1745 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1746 h1m_init_res(&h1s->res);
1747 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001748 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001749 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001750 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001751 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD) {
Christopher Fauletb8fc3042019-07-01 16:17:30 +02001752 h1m->state = H1_MSG_DONE;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001753 TRACE_STATE("HEAD response processed", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
1754 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001755 else
1756 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001757 break;
1758
Christopher Faulet94b2c762019-05-24 15:28:57 +02001759 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02001760 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001761 if (type == HTX_BLK_EOM) {
1762 /* Chunked message without explicit trailers */
1763 if (h1m->flags & H1_MF_CHNK) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001764 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001765 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001766 }
1767 goto done;
1768 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001769 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001770 /* If the message is not chunked, never
1771 * add the last chunk. */
1772 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001773 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001774 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 +02001775 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001776 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001777 else if (type != HTX_BLK_DATA)
1778 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001779
1780 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 +02001781
1782
1783 if (vlen > count) {
1784 /* Get the maximum amount of data we can xferred */
1785 vlen = count;
1786 }
1787
1788 chklen = 0;
1789 if (h1m->flags & H1_MF_CHNK) {
1790 chklen = b_room(&tmp);
1791 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
1792 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
1793 (chklen < 1048576) ? 5 : 8);
1794 chklen += 4; /* 2 x CRLF */
1795 }
1796
1797 if (vlen + chklen > b_room(&tmp)) {
1798 /* too large for the buffer */
1799 if (chklen >= b_room(&tmp))
1800 goto full;
1801 vlen = b_room(&tmp) - chklen;
1802 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001803 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001804 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02001805 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001806 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001807
1808 if (h1m->state == H1_MSG_DATA)
1809 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Christopher Faulet08618a72019-10-08 11:59:47 +02001810 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s,, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001811 else
1812 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Christopher Faulet08618a72019-10-08 11:59:47 +02001813 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s,, (size_t[]){v.len});
Christopher Faulet9768c262018-10-22 09:34:31 +02001814 break;
1815
Christopher Faulet94b2c762019-05-24 15:28:57 +02001816 case H1_MSG_TRAILERS:
1817 if (type == HTX_BLK_EOM)
1818 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001819 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001820 goto error;
1821 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001822 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001823 /* If the message is not chunked, ignore
1824 * trailers. It may happen with H2 messages. */
1825 if (!(h1m->flags & H1_MF_CHNK))
1826 break;
1827
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001828 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001829 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001830 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001831 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
1832 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Faulet32188212018-11-20 18:21:43 +01001833 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001834 else { // HTX_BLK_TLR
1835 n = htx_get_blk_name(chn_htx, blk);
1836 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +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 Faulet2d7c5392019-06-03 10:41:26 +02001843 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001844 break;
1845
Christopher Faulet94b2c762019-05-24 15:28:57 +02001846 case H1_MSG_DONE:
1847 if (type != HTX_BLK_EOM)
1848 goto error;
1849 done:
1850 h1m->state = H1_MSG_DONE;
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001851 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
1852 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
1853 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001854 TRACE_STATE("h1c no more busy", H1_EV_TX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s);
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001855 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001856
1857 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1858 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001859 break;
1860
Christopher Faulet9768c262018-10-22 09:34:31 +02001861 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001862 error:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001863 TRACE_PROTO("formatting error", H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02001864 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02001865 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Fauleta2ea1582019-05-28 10:35:18 +02001866 h1s->flags |= errflag;
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02001867 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001868 TRACE_STATE("processing error, set error on h1c/h1s", H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1869 TRACE_DEVEL("unexpected error", H1_EV_TX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001870 break;
1871 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001872
1873 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001874 total += vlen;
1875 count -= vlen;
1876 if (sz == vlen)
1877 blk = htx_remove_blk(chn_htx, blk);
1878 else {
1879 htx_cut_data_blk(chn_htx, blk, vlen);
1880 break;
1881 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001882 }
1883
Christopher Faulet9768c262018-10-22 09:34:31 +02001884 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001885 /* when the output buffer is empty, tmp shares the same area so that we
1886 * only have to update pointers and lengths.
1887 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02001888 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
1889 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001890 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02001891 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001892
Willy Tarreau3815b222018-12-11 19:50:43 +01001893 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001894 out:
1895 if (!buf_room_for_htx_data(&h1c->obuf)) {
1896 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001897 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001898 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001899 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001900 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02001901 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02001902
1903 full:
1904 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1905 h1c->flags |= H1C_F_OUT_FULL;
1906 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001907}
1908
Christopher Faulet51dbc942018-09-13 09:05:15 +02001909/*********************************************************/
1910/* functions below are I/O callbacks from the connection */
1911/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001912static void h1_wake_stream_for_recv(struct h1s *h1s)
1913{
1914 if (h1s && h1s->recv_wait) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001915 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001916 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001917 tasklet_wakeup(h1s->recv_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001918 h1s->recv_wait = NULL;
1919 }
1920}
1921static void h1_wake_stream_for_send(struct h1s *h1s)
1922{
1923 if (h1s && h1s->send_wait) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001924 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001925 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001926 tasklet_wakeup(h1s->send_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001927 h1s->send_wait = NULL;
1928 }
1929}
1930
Christopher Faulet51dbc942018-09-13 09:05:15 +02001931/*
1932 * Attempt to read data, and subscribe if none available
1933 */
1934static int h1_recv(struct h1c *h1c)
1935{
1936 struct connection *conn = h1c->conn;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001937 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001938 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001939 int rcvd = 0;
1940
Christopher Faulet6b81df72019-10-01 22:08:43 +02001941 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
1942
1943 if (h1c->wait_event.events & SUB_RETRY_RECV) {
1944 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01001945 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02001946 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001947
Olivier Houchard75159a92018-12-03 18:46:09 +01001948 if (!h1_recv_allowed(h1c)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001949 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_H1C_RECV, h1c->conn);
Olivier Houchard75159a92018-12-03 18:46:09 +01001950 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001951 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001952 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001953
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001954 if (!h1_get_buf(h1c, &h1c->ibuf)) {
1955 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001956 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet9768c262018-10-22 09:34:31 +02001957 goto end;
1958 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02001959
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001960 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001961 if (!h1s_data_pending(h1s))
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001962 h1_wake_stream_for_recv(h1s);
1963 rcvd = 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001964 TRACE_DEVEL("leaving on (buf_flush|spliced_data)", H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet9768c262018-10-22 09:34:31 +02001965 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001966 }
1967
Olivier Houchard29a22bc2018-12-04 18:16:45 +01001968 /*
1969 * If we only have a small amount of data, realign it,
1970 * it's probably cheaper than doing 2 recv() calls.
1971 */
1972 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
1973 b_slow_realign(&h1c->ibuf, trash.area, 0);
1974
Willy Tarreau45f2b892018-12-05 07:59:27 +01001975 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001976 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001977 if (h1c->flags & H1C_F_IN_FULL) {
1978 h1c->flags &= ~H1C_F_IN_FULL;
1979 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
1980 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01001981
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01001982 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001983 if (!b_data(&h1c->ibuf)) {
1984 /* try to pre-align the buffer like the rxbufs will be
1985 * to optimize memory copies.
1986 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01001987 h1c->ibuf.head = sizeof(struct htx);
1988 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001989 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001990 }
Christopher Faulet47365272018-10-31 17:40:50 +01001991 if (ret > 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001992 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn,,, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02001993 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001994 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01001995 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01001996 if (h1s->csinfo.t_idle == -1)
1997 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1998 }
Christopher Faulet47365272018-10-31 17:40:50 +01001999 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002000
Olivier Houchardcc3fec82019-07-26 15:11:11 +02002001 if (ret > 0 || !h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01002002 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01002003 goto end;
2004 }
2005
Christopher Faulet6b81df72019-10-01 22:08:43 +02002006 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002007 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002008
Christopher Faulet9768c262018-10-22 09:34:31 +02002009 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002010 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
2011 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002012
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002013 if (conn_xprt_read0_pending(conn) && h1s) {
2014 h1s->flags |= H1S_F_REOS;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002015 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002016 rcvd = 1;
2017 }
2018
Christopher Faulet51dbc942018-09-13 09:05:15 +02002019 if (!b_data(&h1c->ibuf))
2020 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002021 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002022 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002023 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2024 }
2025
2026 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002027 return rcvd;
2028}
2029
2030
2031/*
2032 * Try to send data if possible
2033 */
2034static int h1_send(struct h1c *h1c)
2035{
2036 struct connection *conn = h1c->conn;
2037 unsigned int flags = 0;
2038 size_t ret;
2039 int sent = 0;
2040
Christopher Faulet6b81df72019-10-01 22:08:43 +02002041 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2042
2043 if (conn->flags & CO_FL_ERROR) {
2044 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002045 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002046 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002047
2048 if (!b_data(&h1c->obuf))
2049 goto end;
2050
2051 if (h1c->flags & H1C_F_OUT_FULL)
2052 flags |= CO_SFL_MSG_MORE;
2053
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002054 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002055 if (ret > 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002056 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn,,, (size_t[]){ret});
2057 if (h1c->flags & H1C_F_OUT_FULL) {
2058 h1c->flags &= ~H1C_F_OUT_FULL;
2059 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2060 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002061 b_del(&h1c->obuf, ret);
2062 sent = 1;
2063 }
2064
Christopher Faulet145aa472018-12-06 10:56:20 +01002065 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002066 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002067 /* error or output closed, nothing to send, clear the buffer to release it */
2068 b_reset(&h1c->obuf);
2069 }
2070
Christopher Faulet51dbc942018-09-13 09:05:15 +02002071 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002072 if (!(h1c->flags & H1C_F_OUT_FULL))
2073 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002074
Christopher Faulet51dbc942018-09-13 09:05:15 +02002075 /* We're done, no more to send */
2076 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002077 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002078 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002079 if (h1c->flags & H1C_F_CS_SHUTW_NOW) {
2080 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002081 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002082 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002083 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002084 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2085 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002086 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002087 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002088
Christopher Faulet6b81df72019-10-01 22:08:43 +02002089 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002090 return sent;
2091}
2092
Christopher Faulet51dbc942018-09-13 09:05:15 +02002093
2094/* callback called on any event by the connection handler.
2095 * It applies changes and returns zero, or < 0 if it wants immediate
2096 * destruction of the connection.
2097 */
2098static int h1_process(struct h1c * h1c)
2099{
2100 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002101 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002102
Christopher Faulet6b81df72019-10-01 22:08:43 +02002103 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2104
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002105 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002106 return -1;
2107
Christopher Fauletfeb11742018-11-29 15:12:34 +01002108 if (!h1s) {
Christopher Faulet37243bc2019-07-11 15:40:25 +02002109 if (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN) ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002110 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH) ||
Christopher Faulet539e0292018-11-19 10:40:09 +01002111 conn_xprt_read0_pending(conn))
2112 goto release;
Christopher Faulet666a0c42019-01-08 11:12:04 +01002113 if (!conn_is_back(conn) && !(h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002114 TRACE_STATE("K/A incoming connection, create new H1 stream", H1_EV_H1C_WAKE, conn);
Olivier Houchardf502aca2018-12-14 19:42:40 +01002115 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01002116 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002117 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01002118 else
Olivier Houcharde7284782018-12-06 18:54:54 +01002119 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002120 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002121 }
2122
Christopher Fauletfeb11742018-11-29 15:12:34 +01002123 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
2124 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2125
Christopher Faulet6b81df72019-10-01 22:08:43 +02002126 if (conn_xprt_read0_pending(conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002127 h1s->flags |= H1S_F_REOS;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002128 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2129 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002130
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002131 if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002132 (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002133 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01002134 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002135 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002136 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002137 h1s->cs->data_cb->wake(h1s->cs);
2138 }
Christopher Faulet47365272018-10-31 17:40:50 +01002139 end:
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002140 if (h1c->task) {
2141 h1c->task->expire = TICK_ETERNITY;
2142 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002143 h1c->task->expire = tick_add(now_ms, ((h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002144 ? h1c->shut_timeout
2145 : h1c->timeout));
2146 task_queue(h1c->task);
2147 }
2148 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002149 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002150 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002151
2152 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002153 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002154 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002155 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002156}
2157
2158static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2159{
2160 struct h1c *h1c = ctx;
2161 int ret = 0;
2162
Christopher Faulet6b81df72019-10-01 22:08:43 +02002163 TRACE_POINT(H1_EV_H1C_WAKE, h1c->conn);
2164
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002165 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002166 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002167 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002168 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01002169 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002170 h1_process(h1c);
2171 return NULL;
2172}
2173
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002174static void h1_reset(struct connection *conn)
2175{
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002176
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002177}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002178
2179static int h1_wake(struct connection *conn)
2180{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002181 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002182 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002183
Christopher Faulet6b81df72019-10-01 22:08:43 +02002184 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2185
Christopher Faulet539e0292018-11-19 10:40:09 +01002186 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002187 ret = h1_process(h1c);
2188 if (ret == 0) {
2189 struct h1s *h1s = h1c->h1s;
2190
Christopher Faulet6b81df72019-10-01 22:08:43 +02002191 if (h1s && h1s->cs && h1s->cs->data_cb->wake) {
2192 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002193 ret = h1s->cs->data_cb->wake(h1s->cs);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002194 }
Olivier Houchard75159a92018-12-03 18:46:09 +01002195 }
2196 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002197}
2198
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002199/* Connection timeout management. The principle is that if there's no receipt
2200 * nor sending for a certain amount of time, the connection is closed.
2201 */
2202static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2203{
2204 struct h1c *h1c = context;
2205 int expired = tick_is_expired(t->expire, now_ms);
2206
Christopher Faulet6b81df72019-10-01 22:08:43 +02002207 TRACE_POINT(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
2208
2209 if (!expired && h1c) {
2210 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002211 return t;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002212 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002213
Olivier Houchard3f795f72019-04-17 22:51:06 +02002214 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002215
2216 if (!h1c) {
2217 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002218 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002219 return NULL;
2220 }
2221
2222 h1c->task = NULL;
2223 /* If a stream is still attached to the mux, just set an error and wait
2224 * for the stream's timeout. Otherwise, release the mux. This is only ok
2225 * because same timeouts are used.
2226 */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002227 if (h1c->h1s && h1c->h1s->cs) {
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002228 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002229 TRACE_STATE("error on h1c, h1s still attached (expired)", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
2230 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002231 else
Christopher Faulet73c12072019-04-08 11:23:22 +02002232 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002233
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002234 return NULL;
2235}
2236
Christopher Faulet51dbc942018-09-13 09:05:15 +02002237/*******************************************/
2238/* functions below are used by the streams */
2239/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002240
Christopher Faulet51dbc942018-09-13 09:05:15 +02002241/*
2242 * Attach a new stream to a connection
2243 * (Used for outgoing connections)
2244 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002245static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002246{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002247 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002248 struct conn_stream *cs = NULL;
2249 struct h1s *h1s;
2250
Christopher Faulet6b81df72019-10-01 22:08:43 +02002251 TRACE_ENTER(H1_EV_STRM_NEW, conn);
2252 if (h1c->flags & H1C_F_CS_ERROR) {
2253 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 +02002254 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002255 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002256
2257 cs = cs_new(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002258 if (!cs) {
2259 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 +02002260 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002261 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002262
Olivier Houchardf502aca2018-12-14 19:42:40 +01002263 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002264 if (h1s == NULL) {
2265 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 +02002266 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002267 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002268
Christopher Faulet6b81df72019-10-01 22:08:43 +02002269 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002270 return cs;
2271 end:
2272 cs_free(cs);
2273 return NULL;
2274}
2275
2276/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2277 * this mux, it's easy as we can only store a single conn_stream.
2278 */
2279static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2280{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002281 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002282 struct h1s *h1s = h1c->h1s;
2283
2284 if (h1s)
2285 return h1s->cs;
2286
2287 return NULL;
2288}
2289
Christopher Faulet73c12072019-04-08 11:23:22 +02002290static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002291{
Christopher Faulet73c12072019-04-08 11:23:22 +02002292 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002293
Christopher Faulet6b81df72019-10-01 22:08:43 +02002294 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002295 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002296 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002297}
2298
2299/*
2300 * Detach the stream from the connection and possibly release the connection.
2301 */
2302static void h1_detach(struct conn_stream *cs)
2303{
2304 struct h1s *h1s = cs->ctx;
2305 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002306 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002307 int has_keepalive;
2308 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002309
Christopher Faulet6b81df72019-10-01 22:08:43 +02002310 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
2311
Christopher Faulet51dbc942018-09-13 09:05:15 +02002312 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002313 if (!h1s) {
2314 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002315 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002316 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002317
Olivier Houchardf502aca2018-12-14 19:42:40 +01002318 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002319 h1c = h1s->h1c;
2320 h1s->cs = NULL;
2321
Olivier Houchard8a786902018-12-15 16:05:40 +01002322 has_keepalive = h1s->flags & H1S_F_WANT_KAL;
2323 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2324 h1s_destroy(h1s);
2325
2326 if (conn_is_back(h1c->conn) && has_keepalive &&
Olivier Houchard44d59142018-12-13 18:46:22 +01002327 !(h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletf1204b82019-07-19 14:51:06 +02002328 /* If there are any excess server data in the input buffer,
2329 * release it and close the connection ASAP (some data may
2330 * remain in the output buffer). This happens if a server sends
2331 * invalid responses. So in such case, we don't want to reuse
2332 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02002333 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02002334 if (b_data(&h1c->ibuf)) {
2335 h1_release_buf(h1c, &h1c->ibuf);
2336 h1c->flags |= H1C_F_CS_SHUTW_NOW;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002337 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02002338 goto release;
2339 }
Christopher Faulet03627242019-07-19 11:34:08 +02002340
Christopher Faulet9400a392018-11-23 23:10:39 +01002341 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002342 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002343 h1c->conn->flags |= CO_FL_PRIVATE;
2344
Olivier Houchard44d59142018-12-13 18:46:22 +01002345 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002346 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002347 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2348 h1c->conn->owner = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002349 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn)) {
Olivier Houchard351411f2018-12-27 17:20:54 +01002350 /* The server doesn't want it, let's kill the connection right away */
2351 h1c->conn->mux->destroy(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002352 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
2353 goto end;
2354 }
2355 tasklet_wakeup(h1c->wait_event.tasklet);
2356 TRACE_DEVEL("reusable idle connection", H1_EV_STRM_END, h1c->conn);
2357 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01002358 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002359 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002360 if (h1c->conn->owner == sess) {
2361 int ret = session_check_idle_conn(sess, h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002362 if (ret == -1) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002363 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002364 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
2365 goto end;
2366 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002367 else if (ret == 1) {
2368 /* The connection was added to the server list,
2369 * wake the task so we can subscribe to events
2370 */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002371 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002372 TRACE_DEVEL("reusable idle connection", H1_EV_STRM_END, h1c->conn);
2373 goto end;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002374 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002375 TRACE_DEVEL("connection in idle session list", H1_EV_STRM_END, h1c->conn);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002376 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002377 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002378 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002379 struct server *srv = objt_server(h1c->conn->target);
2380
2381 if (srv) {
2382 if (h1c->conn->flags & CO_FL_PRIVATE)
2383 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002384 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002385 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2386 else
2387 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002388 TRACE_DEVEL("connection in idle server list", H1_EV_STRM_END, h1c->conn);
Christopher Faulet9400a392018-11-23 23:10:39 +01002389 }
2390 }
2391 }
2392
Christopher Fauletf1204b82019-07-19 14:51:06 +02002393 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02002394 /* We don't want to close right now unless the connection is in error or shut down for writes */
Christopher Faulet37243bc2019-07-11 15:40:25 +02002395 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
2396 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
2397 ((h1c->flags & H1C_F_CS_SHUTW_NOW) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02002398 !h1c->conn->owner) {
2399 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02002400 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002401 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002402 else {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002403 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002404 if (h1c->task) {
2405 h1c->task->expire = TICK_ETERNITY;
2406 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002407 h1c->task->expire = tick_add(now_ms, ((h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002408 ? h1c->shut_timeout
2409 : h1c->timeout));
2410 task_queue(h1c->task);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002411 TRACE_DEVEL("refreshing connection's timeout", H1_EV_STRM_END, h1c->conn);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002412 }
2413 }
2414 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002415 end:
2416 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002417}
2418
2419
2420static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2421{
2422 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002423 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002424
2425 if (!h1s)
2426 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002427 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002428
Christopher Faulet6b81df72019-10-01 22:08:43 +02002429 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
2430
2431 if (cs->flags & CS_FL_KILL_CONN) {
2432 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
2433 goto do_shutr;
2434 }
2435 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
2436 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02002437 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002438 }
Christopher Faulet7f366362019-04-08 10:51:20 +02002439
Christopher Faulet6b81df72019-10-01 22:08:43 +02002440 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL)) {
2441 TRACE_STATE("keep connection alive (upg_h2c|want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
2442 goto end;
2443 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002444
Christopher Faulet7f366362019-04-08 10:51:20 +02002445 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002446 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2447 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02002448 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002449 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002450 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02002451 (mode == CS_SHR_DRAIN));
Christopher Faulet666a0c42019-01-08 11:12:04 +01002452 if ((cs->conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
Christopher Faulet7f366362019-04-08 10:51:20 +02002453 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002454 end:
2455 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002456}
2457
2458static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2459{
2460 struct h1s *h1s = cs->ctx;
2461 struct h1c *h1c;
2462
2463 if (!h1s)
2464 return;
2465 h1c = h1s->h1c;
2466
Christopher Faulet6b81df72019-10-01 22:08:43 +02002467 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
2468
2469 if (cs->flags & CS_FL_KILL_CONN) {
2470 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02002471 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002472 }
2473 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
2474 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
2475 goto do_shutw;
2476 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002477
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002478 if ((h1c->flags & H1C_F_UPG_H2C) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02002479 ((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
2480 TRACE_STATE("keep connection alive (upg_h2c|want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
2481 goto end;
2482 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002483
Christopher Faulet7f366362019-04-08 10:51:20 +02002484 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002485 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2486 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
Christopher Faulet6b81df72019-10-01 22:08:43 +02002487 goto end;
Christopher Faulet666a0c42019-01-08 11:12:04 +01002488 h1_shutw_conn(cs->conn, mode);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002489 end:
2490 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002491}
2492
Christopher Faulet666a0c42019-01-08 11:12:04 +01002493static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002494{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002495 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002496
Christopher Faulet6b81df72019-10-01 22:08:43 +02002497 TRACE_ENTER(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002498 conn_xprt_shutw(conn);
2499 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
2500 if ((conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
2501 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002502 TRACE_LEAVE(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002503}
2504
2505/* Called from the upper layer, to unsubscribe to events */
2506static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2507{
2508 struct wait_event *sw;
2509 struct h1s *h1s = cs->ctx;
2510
2511 if (!h1s)
2512 return 0;
2513
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002514 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002515 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002516 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002517 BUG_ON(h1s->recv_wait != sw);
2518 sw->events &= ~SUB_RETRY_RECV;
2519 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002520 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002521 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002522 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002523 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002524 BUG_ON(h1s->send_wait != sw);
2525 sw->events &= ~SUB_RETRY_SEND;
2526 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002527 }
2528 return 0;
2529}
2530
2531/* Called from the upper layer, to subscribe to events, such as being able to send */
2532static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2533{
2534 struct wait_event *sw;
2535 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02002536 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002537
2538 if (!h1s)
2539 return -1;
2540
Christopher Faulet6b81df72019-10-01 22:08:43 +02002541 if (event_type & SUB_RETRY_RECV) {
2542 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
2543 sw = param;
2544 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2545 sw->events |= SUB_RETRY_RECV;
2546 h1s->recv_wait = sw;
2547 event_type &= ~SUB_RETRY_RECV;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002548 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002549 if (event_type & SUB_RETRY_SEND) {
2550 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
2551 sw = param;
2552 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2553 sw->events |= SUB_RETRY_SEND;
2554 h1s->send_wait = sw;
2555 event_type &= ~SUB_RETRY_SEND;
2556 /*
2557 * If the conn_stream attempt to subscribe, and the
2558 * mux isn't subscribed to the connection, then it
2559 * probably means the connection wasn't established
2560 * yet, so we have to subscribe.
2561 */
2562 h1c = h1s->h1c;
2563 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
2564 h1c->conn->xprt->subscribe(h1c->conn,
2565 h1c->conn->xprt_ctx,
2566 SUB_RETRY_SEND,
2567 &h1c->wait_event);
2568 }
2569 if (event_type != 0)
2570 return -1;
2571 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002572}
2573
2574/* Called from the upper layer, to receive data */
2575static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2576{
2577 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002578 struct h1c *h1c = h1s->h1c;
Olivier Houcharddedd3062019-07-26 15:12:38 +02002579 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002580 size_t ret = 0;
2581
Christopher Faulet6b81df72019-10-01 22:08:43 +02002582 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s,, (size_t[]){count});
Christopher Faulet539e0292018-11-19 10:40:09 +01002583 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002584 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002585 else
2586 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002587
Christopher Faulete18777b2019-04-16 16:46:36 +02002588 if (flags & CO_RFL_BUF_FLUSH) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002589 if (h1m->state != H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len)) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002590 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002591 TRACE_STATE("flush stream's buffer", H1_EV_STRM_RECV, h1c->conn, h1s);
2592 }
Christopher Faulete18777b2019-04-16 16:46:36 +02002593 }
Olivier Houchard02bac852019-08-22 18:34:25 +02002594 else {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002595 if (h1s->flags & H1S_F_SPLICED_DATA) {
2596 h1s->flags &= ~H1S_F_SPLICED_DATA;
2597 TRACE_STATE("disable splicing", H1_EV_STRM_RECV, h1c->conn, h1s);
2598 }
2599 if (h1m->state != H1_MSG_DONE && !(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002600 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002601 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002602 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s,, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02002603 return ret;
2604}
2605
2606
2607/* Called from the upper layer, to send data */
2608static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2609{
2610 struct h1s *h1s = cs->ctx;
2611 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002612 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002613
2614 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002615 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002616 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002617
Christopher Faulet6b81df72019-10-01 22:08:43 +02002618 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s,, (size_t[]){count});
2619
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002620 /* If we're not connected yet, or we're waiting for a handshake, stop
2621 * now, as we don't want to remove everything from the channel buffer
2622 * before we're sure we can send it.
2623 */
2624 if (!(h1c->conn->flags & CO_FL_CONNECTED) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02002625 (h1c->conn->flags & CO_FL_HANDSHAKE)) {
2626 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002627 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002628 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002629
Christopher Fauletc31872f2019-06-04 22:09:36 +02002630 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002631 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002632
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002633 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2634 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002635 else
2636 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002637 if (!ret)
2638 break;
2639 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02002640 count -= ret;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002641 if (!h1_send(h1c))
2642 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002643 }
Christopher Fauletf96c3222018-11-20 18:38:01 +01002644
Christopher Faulet6b81df72019-10-01 22:08:43 +02002645 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s,, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002646 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002647}
2648
Willy Tarreaue5733232019-05-22 19:24:06 +02002649#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002650/* Send and get, using splicing */
2651static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2652{
2653 struct h1s *h1s = cs->ctx;
2654 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2655 int ret = 0;
2656
Christopher Faulet6b81df72019-10-01 22:08:43 +02002657 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s,, (size_t[]){count});
2658
Christopher Faulet1146f972019-05-29 14:35:24 +02002659 if (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002660 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002661 TRACE_STATE("disable splicing on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
2662 if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV)) {
2663 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1146f972019-05-29 14:35:24 +02002664 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002665 }
Christopher Faulete18777b2019-04-16 16:46:36 +02002666 goto end;
2667 }
2668
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002669 if (h1s_data_pending(h1s)) {
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002670 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002671 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002672 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002673 }
2674
2675 h1s->flags &= ~H1S_F_BUF_FLUSH;
2676 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002677 TRACE_STATE("enable splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002678 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2679 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002680 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02002681 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002682 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002683 if (!h1m->curr_len) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002684 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002685 TRACE_STATE("disable splicing on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
2686 }
Christopher Faulete18777b2019-04-16 16:46:36 +02002687 }
2688
Christopher Faulet1be55f92018-10-02 15:59:23 +02002689 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002690 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002691 h1s->flags |= H1S_F_REOS;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002692 TRACE_STATE("read0 on connection", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02002693 if (!pipe->data)
2694 cs->flags |= CS_FL_EOS;
2695 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002696
2697 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002698 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002699}
2700
2701static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2702{
2703 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002704 int ret = 0;
2705
Christopher Faulet6b81df72019-10-01 22:08:43 +02002706 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s,, (size_t[]){pipe->data});
2707
Christopher Faulet1be55f92018-10-02 15:59:23 +02002708 if (b_data(&h1s->h1c->obuf))
2709 goto end;
2710
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002711 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002712 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002713 if (pipe->data) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002714 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
2715 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002716 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002717 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002718 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002719
2720 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002721 return ret;
2722}
2723#endif
2724
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002725/* for debugging with CLI's "show fd" command */
2726static void h1_show_fd(struct buffer *msg, struct connection *conn)
2727{
2728 struct h1c *h1c = conn->ctx;
2729 struct h1s *h1s = h1c->h1s;
2730
Christopher Fauletf376a312019-01-04 15:16:06 +01002731 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2732 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002733 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2734 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2735 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2736 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2737
2738 if (h1s) {
2739 char *method;
2740
2741 if (h1s->meth < HTTP_METH_OTHER)
2742 method = http_known_methods[h1s->meth].ptr;
2743 else
2744 method = "UNKNOWN";
2745 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2746 " .meth=%s status=%d",
2747 h1s, h1s->flags,
2748 h1m_state_str(h1s->req.state),
2749 h1m_state_str(h1s->res.state), method, h1s->status);
2750 if (h1s->cs)
2751 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2752 h1s->cs->flags, h1s->cs->data);
2753 }
Christopher Faulet98fbe952019-07-22 16:18:24 +02002754}
2755
2756
2757/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
2758static int add_hdr_case_adjust(const char *from, const char *to, char **err)
2759{
2760 struct h1_hdr_entry *entry;
2761
2762 /* Be sure there is a non-empty <to> */
2763 if (!strlen(to)) {
2764 memprintf(err, "expect <to>");
2765 return -1;
2766 }
2767
2768 /* Be sure only the case differs between <from> and <to> */
2769 if (strcasecmp(from, to)) {
2770 memprintf(err, "<from> and <to> must not differ execpt the case");
2771 return -1;
2772 }
2773
2774 /* Be sure <from> does not already existsin the tree */
2775 if (ebis_lookup(&hdrs_map.map, from)) {
2776 memprintf(err, "duplicate entry '%s'", from);
2777 return -1;
2778 }
2779
2780 /* Create the entry and insert it in the tree */
2781 entry = malloc(sizeof(*entry));
2782 if (!entry) {
2783 memprintf(err, "out of memory");
2784 return -1;
2785 }
2786
2787 entry->node.key = strdup(from);
2788 entry->name.ptr = strdup(to);
2789 entry->name.len = strlen(to);
2790 if (!entry->node.key || !entry->name.ptr) {
2791 free(entry->node.key);
2792 free(entry->name.ptr);
2793 free(entry);
2794 memprintf(err, "out of memory");
2795 return -1;
2796 }
2797 ebis_insert(&hdrs_map.map, &entry->node);
2798 return 0;
2799}
2800
2801static void h1_hdeaders_case_adjust_deinit()
2802{
2803 struct ebpt_node *node, *next;
2804 struct h1_hdr_entry *entry;
2805
2806 node = ebpt_first(&hdrs_map.map);
2807 while (node) {
2808 next = ebpt_next(node);
2809 ebpt_delete(node);
2810 entry = container_of(node, struct h1_hdr_entry, node);
2811 free(entry->node.key);
2812 free(entry->name.ptr);
2813 free(entry);
2814 node = next;
2815 }
2816 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002817}
2818
Christopher Faulet98fbe952019-07-22 16:18:24 +02002819static int cfg_h1_headers_case_adjust_postparser()
2820{
2821 FILE *file = NULL;
2822 char *c, *key_beg, *key_end, *value_beg, *value_end;
2823 char *err;
2824 int rc, line = 0, err_code = 0;
2825
2826 if (!hdrs_map.name)
2827 goto end;
2828
2829 file = fopen(hdrs_map.name, "r");
2830 if (!file) {
2831 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
2832 hdrs_map.name);
2833 err_code |= ERR_ALERT | ERR_FATAL;
2834 goto end;
2835 }
2836
2837 /* now parse all lines. The file may contain only two header name per
2838 * line, separated by spaces. All heading and trailing spaces will be
2839 * ignored. Lines starting with a # are ignored.
2840 */
2841 while (fgets(trash.area, trash.size, file) != NULL) {
2842 line++;
2843 c = trash.area;
2844
2845 /* strip leading spaces and tabs */
2846 while (*c == ' ' || *c == '\t')
2847 c++;
2848
2849 /* ignore emptu lines, or lines beginning with a dash */
2850 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
2851 continue;
2852
2853 /* look for the end of the key */
2854 key_beg = c;
2855 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
2856 c++;
2857 key_end = c;
2858
2859 /* strip middle spaces and tabs */
2860 while (*c == ' ' || *c == '\t')
2861 c++;
2862
2863 /* look for the end of the value, it is the end of the line */
2864 value_beg = c;
2865 while (*c && *c != '\n' && *c != '\r')
2866 c++;
2867 value_end = c;
2868
2869 /* trim possibly trailing spaces and tabs */
2870 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
2871 value_end--;
2872
2873 /* set final \0 and check entries */
2874 *key_end = '\0';
2875 *value_end = '\0';
2876
2877 err = NULL;
2878 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
2879 if (rc < 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002880 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2881 hdrs_map.name, err, line);
2882 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02002883 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002884 goto end;
2885 }
2886 if (rc > 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002887 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2888 hdrs_map.name, err, line);
2889 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02002890 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002891 }
2892 }
2893
2894 end:
2895 if (file)
2896 fclose(file);
2897 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
2898 return err_code;
2899}
2900
2901
2902/* config parser for global "h1-outgoing-header-case-adjust" */
2903static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
2904 struct proxy *defpx, const char *file, int line,
2905 char **err)
2906{
2907 if (too_many_args(2, args, err, NULL))
2908 return -1;
2909 if (!*(args[1]) || !*(args[2])) {
2910 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
2911 return -1;
2912 }
2913 return add_hdr_case_adjust(args[1], args[2], err);
2914}
2915
2916/* config parser for global "h1-outgoing-headers-case-adjust-file" */
2917static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
2918 struct proxy *defpx, const char *file, int line,
2919 char **err)
2920{
2921 if (too_many_args(1, args, err, NULL))
2922 return -1;
2923 if (!*(args[1])) {
2924 memprintf(err, "'%s' expects <file> as argument.", args[0]);
2925 return -1;
2926 }
2927 free(hdrs_map.name);
2928 hdrs_map.name = strdup(args[1]);
2929 return 0;
2930}
2931
2932
2933/* config keyword parsers */
2934static struct cfg_kw_list cfg_kws = {{ }, {
2935 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
2936 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
2937 { 0, NULL, NULL },
2938 }
2939};
2940
2941INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2942REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
2943
2944
Christopher Faulet51dbc942018-09-13 09:05:15 +02002945/****************************************/
2946/* MUX initialization and instanciation */
2947/****************************************/
2948
2949/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002950static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002951 .init = h1_init,
2952 .wake = h1_wake,
2953 .attach = h1_attach,
2954 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002955 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002956 .detach = h1_detach,
2957 .destroy = h1_destroy,
2958 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002959 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002960 .rcv_buf = h1_rcv_buf,
2961 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002962#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002963 .rcv_pipe = h1_rcv_pipe,
2964 .snd_pipe = h1_snd_pipe,
2965#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002966 .subscribe = h1_subscribe,
2967 .unsubscribe = h1_unsubscribe,
2968 .shutr = h1_shutr,
2969 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002970 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002971 .reset = h1_reset,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002972 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002973 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002974};
2975
2976
2977/* this mux registers default HTX proto */
2978static struct mux_proto_list mux_proto_htx =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02002979{ .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02002980
Willy Tarreau0108d902018-11-25 19:14:37 +01002981INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2982
Christopher Faulet51dbc942018-09-13 09:05:15 +02002983/*
2984 * Local variables:
2985 * c-indent-level: 8
2986 * c-basic-offset: 8
2987 * End:
2988 */