blob: 66ffdb70bcfc19f71df3580fd27c9cfc454bb58e [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 Faulet04f89192019-10-16 09:41:07 +02001674 /* If the reply comes from haproxy while the request is
1675 * not finished, we force the connection close. */
1676 if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) {
1677 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
1678 TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s);
1679 }
1680
1681 /* the conn_mode must be processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02001682 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001683 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001684 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001685 if (v.len) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02001686 /* Try to adjust the case of the header name */
1687 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1688 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001689 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001690 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001691 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001692 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001693 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001694
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001695 if ((h1s->meth != HTTP_METH_CONNECT &&
1696 (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 +01001697 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1698 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1699 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1700 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1701 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001702 /* chunking needed but header not seen */
Christopher Faulet7a991a92019-10-04 10:23:51 +02001703 n = ist("transfer-encoding");
1704 v = ist("chunked");
1705 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1706 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001707 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001708 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001709 TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Willy Tarreau4710d202019-01-03 17:39:54 +01001710 h1m->flags |= H1_MF_CHNK;
1711 }
1712
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001713 /* Now add the server name to a header (if requested) */
1714 if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) &&
1715 !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) {
1716 struct server *srv = objt_server(h1c->conn->target);
1717
1718 if (srv) {
1719 n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len);
1720 v = ist(srv->id);
Christopher Faulet5cef2a62019-10-02 11:06:13 +02001721
1722 /* Try to adjust the case of the header name */
1723 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1724 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001725 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001726 goto full;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001727 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001728 TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02001729 h1s->flags |= H1S_F_HAVE_SRV_NAME;
1730 }
1731
Christopher Fauletc2518a52019-06-25 21:41:02 +02001732 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001733 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001734
Christopher Faulet6b81df72019-10-01 22:08:43 +02001735 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"),
1736 H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
1737
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001738 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1739 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1740 h1_set_req_tunnel_mode(h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001741 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 +01001742 }
1743 else if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101) {
1744 /* a successfull reply to a CONNECT or a protocol switching is sent
1745 * to the client . Switch the response to tunnel mode. */
1746 h1_set_res_tunnel_mode(h1s);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001747 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 +01001748 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001749 else if ((h1m->flags & H1_MF_RESP) &&
1750 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1751 h1m_init_res(&h1s->res);
1752 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001753 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001754 TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001755 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001756 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD) {
Christopher Fauletb8fc3042019-07-01 16:17:30 +02001757 h1m->state = H1_MSG_DONE;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001758 TRACE_STATE("HEAD response processed", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s);
1759 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001760 else
1761 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001762 break;
1763
Christopher Faulet94b2c762019-05-24 15:28:57 +02001764 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02001765 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001766 if (type == HTX_BLK_EOM) {
1767 /* Chunked message without explicit trailers */
1768 if (h1m->flags & H1_MF_CHNK) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001769 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001770 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001771 }
1772 goto done;
1773 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001774 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001775 /* If the message is not chunked, never
1776 * add the last chunk. */
1777 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001778 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001779 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 +02001780 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001781 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001782 else if (type != HTX_BLK_DATA)
1783 goto error;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001784
1785 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 +02001786
1787
1788 if (vlen > count) {
1789 /* Get the maximum amount of data we can xferred */
1790 vlen = count;
1791 }
1792
1793 chklen = 0;
1794 if (h1m->flags & H1_MF_CHNK) {
1795 chklen = b_room(&tmp);
1796 chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 :
1797 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
1798 (chklen < 1048576) ? 5 : 8);
1799 chklen += 4; /* 2 x CRLF */
1800 }
1801
1802 if (vlen + chklen > b_room(&tmp)) {
1803 /* too large for the buffer */
1804 if (chklen >= b_room(&tmp))
1805 goto full;
1806 vlen = b_room(&tmp) - chklen;
1807 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001808 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001809 v.len = vlen;
Christopher Faulet53a899b2019-10-08 16:38:42 +02001810 if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001811 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001812
1813 if (h1m->state == H1_MSG_DATA)
1814 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"),
Christopher Faulet08618a72019-10-08 11:59:47 +02001815 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s,, (size_t[]){v.len});
Christopher Faulet6b81df72019-10-01 22:08:43 +02001816 else
1817 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"),
Christopher Faulet08618a72019-10-08 11:59:47 +02001818 H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s,, (size_t[]){v.len});
Christopher Faulet9768c262018-10-22 09:34:31 +02001819 break;
1820
Christopher Faulet94b2c762019-05-24 15:28:57 +02001821 case H1_MSG_TRAILERS:
1822 if (type == HTX_BLK_EOM)
1823 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001824 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001825 goto error;
1826 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001827 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001828 /* If the message is not chunked, ignore
1829 * trailers. It may happen with H2 messages. */
1830 if (!(h1m->flags & H1_MF_CHNK))
1831 break;
1832
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001833 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001834 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001835 goto full;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001836 TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"),
1837 H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s);
Christopher Faulet32188212018-11-20 18:21:43 +01001838 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001839 else { // HTX_BLK_TLR
1840 n = htx_get_blk_name(chn_htx, blk);
1841 v = htx_get_blk_value(chn_htx, blk);
Christopher Faulet98fbe952019-07-22 16:18:24 +02001842
1843 /* Try to adjust the case of the header name */
1844 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1845 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet53a899b2019-10-08 16:38:42 +02001846 if (!h1_format_htx_hdr(n, v, &tmp))
Christopher Fauleta61aa542019-10-14 14:17:00 +02001847 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001848 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001849 break;
1850
Christopher Faulet94b2c762019-05-24 15:28:57 +02001851 case H1_MSG_DONE:
1852 if (type != HTX_BLK_EOM)
1853 goto error;
1854 done:
1855 h1m->state = H1_MSG_DONE;
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001856 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
1857 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
1858 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001859 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 +02001860 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02001861
1862 TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"),
1863 H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001864 break;
1865
Christopher Faulet9768c262018-10-22 09:34:31 +02001866 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001867 error:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001868 TRACE_PROTO("formatting error", H1_EV_TX_DATA, h1c->conn, h1s);
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02001869 /* Unexpected error during output processing */
Christopher Faulet69b48212019-09-09 10:11:30 +02001870 chn_htx->flags |= HTX_FL_PROCESSING_ERROR;
Christopher Fauleta2ea1582019-05-28 10:35:18 +02001871 h1s->flags |= errflag;
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02001872 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001873 TRACE_STATE("processing error, set error on h1c/h1s", H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s);
1874 TRACE_DEVEL("unexpected error", H1_EV_TX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s);
Christopher Faulet9768c262018-10-22 09:34:31 +02001875 break;
1876 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001877
1878 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001879 total += vlen;
1880 count -= vlen;
1881 if (sz == vlen)
1882 blk = htx_remove_blk(chn_htx, blk);
1883 else {
1884 htx_cut_data_blk(chn_htx, blk, vlen);
1885 break;
1886 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001887 }
1888
Christopher Faulet9768c262018-10-22 09:34:31 +02001889 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001890 /* when the output buffer is empty, tmp shares the same area so that we
1891 * only have to update pointers and lengths.
1892 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02001893 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
1894 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001895 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02001896 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001897
Willy Tarreau3815b222018-12-11 19:50:43 +01001898 htx_to_buf(chn_htx, buf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02001899 out:
1900 if (!buf_room_for_htx_data(&h1c->obuf)) {
1901 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001902 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001903 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001904 end:
Christopher Faulet6b81df72019-10-01 22:08:43 +02001905 TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total});
Christopher Faulet9768c262018-10-22 09:34:31 +02001906 return total;
Christopher Fauleta61aa542019-10-14 14:17:00 +02001907
1908 full:
1909 TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s);
1910 h1c->flags |= H1C_F_OUT_FULL;
1911 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001912}
1913
Christopher Faulet51dbc942018-09-13 09:05:15 +02001914/*********************************************************/
1915/* functions below are I/O callbacks from the connection */
1916/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001917static void h1_wake_stream_for_recv(struct h1s *h1s)
1918{
1919 if (h1s && h1s->recv_wait) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001920 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001921 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001922 tasklet_wakeup(h1s->recv_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001923 h1s->recv_wait = NULL;
1924 }
1925}
1926static void h1_wake_stream_for_send(struct h1s *h1s)
1927{
1928 if (h1s && h1s->send_wait) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001929 TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001930 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001931 tasklet_wakeup(h1s->send_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001932 h1s->send_wait = NULL;
1933 }
1934}
1935
Christopher Faulet51dbc942018-09-13 09:05:15 +02001936/*
1937 * Attempt to read data, and subscribe if none available
1938 */
1939static int h1_recv(struct h1c *h1c)
1940{
1941 struct connection *conn = h1c->conn;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001942 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001943 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001944 int rcvd = 0;
1945
Christopher Faulet6b81df72019-10-01 22:08:43 +02001946 TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn);
1947
1948 if (h1c->wait_event.events & SUB_RETRY_RECV) {
1949 TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn);
Christopher Fauletc386a882018-12-04 16:06:28 +01001950 return (b_data(&h1c->ibuf));
Christopher Faulet6b81df72019-10-01 22:08:43 +02001951 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001952
Olivier Houchard75159a92018-12-03 18:46:09 +01001953 if (!h1_recv_allowed(h1c)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001954 TRACE_DEVEL("leaving on !recv_allowed", H1_EV_H1C_RECV, h1c->conn);
Olivier Houchard75159a92018-12-03 18:46:09 +01001955 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001956 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001957 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001958
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001959 if (!h1_get_buf(h1c, &h1c->ibuf)) {
1960 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001961 TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet9768c262018-10-22 09:34:31 +02001962 goto end;
1963 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02001964
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001965 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001966 if (!h1s_data_pending(h1s))
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001967 h1_wake_stream_for_recv(h1s);
1968 rcvd = 1;
Christopher Faulet6b81df72019-10-01 22:08:43 +02001969 TRACE_DEVEL("leaving on (buf_flush|spliced_data)", H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet9768c262018-10-22 09:34:31 +02001970 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001971 }
1972
Olivier Houchard29a22bc2018-12-04 18:16:45 +01001973 /*
1974 * If we only have a small amount of data, realign it,
1975 * it's probably cheaper than doing 2 recv() calls.
1976 */
1977 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
1978 b_slow_realign(&h1c->ibuf, trash.area, 0);
1979
Willy Tarreau45f2b892018-12-05 07:59:27 +01001980 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001981 if (max) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001982 if (h1c->flags & H1C_F_IN_FULL) {
1983 h1c->flags &= ~H1C_F_IN_FULL;
1984 TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
1985 }
Willy Tarreau78f548f2018-12-05 10:02:39 +01001986
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01001987 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001988 if (!b_data(&h1c->ibuf)) {
1989 /* try to pre-align the buffer like the rxbufs will be
1990 * to optimize memory copies.
1991 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01001992 h1c->ibuf.head = sizeof(struct htx);
1993 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001994 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001995 }
Christopher Faulet47365272018-10-31 17:40:50 +01001996 if (ret > 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02001997 TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn,,, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02001998 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001999 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01002000 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01002001 if (h1s->csinfo.t_idle == -1)
2002 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2003 }
Christopher Faulet47365272018-10-31 17:40:50 +01002004 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002005
Olivier Houchardcc3fec82019-07-26 15:11:11 +02002006 if (ret > 0 || !h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01002007 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01002008 goto end;
2009 }
2010
Christopher Faulet6b81df72019-10-01 22:08:43 +02002011 TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002012 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002013
Christopher Faulet9768c262018-10-22 09:34:31 +02002014 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002015 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
2016 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002017
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002018 if (conn_xprt_read0_pending(conn) && h1s) {
2019 h1s->flags |= H1S_F_REOS;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002020 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002021 rcvd = 1;
2022 }
2023
Christopher Faulet51dbc942018-09-13 09:05:15 +02002024 if (!b_data(&h1c->ibuf))
2025 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002026 else if (!buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002027 h1c->flags |= H1C_F_IN_FULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002028 TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK);
2029 }
2030
2031 TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002032 return rcvd;
2033}
2034
2035
2036/*
2037 * Try to send data if possible
2038 */
2039static int h1_send(struct h1c *h1c)
2040{
2041 struct connection *conn = h1c->conn;
2042 unsigned int flags = 0;
2043 size_t ret;
2044 int sent = 0;
2045
Christopher Faulet6b81df72019-10-01 22:08:43 +02002046 TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn);
2047
2048 if (conn->flags & CO_FL_ERROR) {
2049 TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002050 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002051 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002052
2053 if (!b_data(&h1c->obuf))
2054 goto end;
2055
2056 if (h1c->flags & H1C_F_OUT_FULL)
2057 flags |= CO_SFL_MSG_MORE;
2058
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002059 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002060 if (ret > 0) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002061 TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn,,, (size_t[]){ret});
2062 if (h1c->flags & H1C_F_OUT_FULL) {
2063 h1c->flags &= ~H1C_F_OUT_FULL;
2064 TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn);
2065 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002066 b_del(&h1c->obuf, ret);
2067 sent = 1;
2068 }
2069
Christopher Faulet145aa472018-12-06 10:56:20 +01002070 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002071 TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet145aa472018-12-06 10:56:20 +01002072 /* error or output closed, nothing to send, clear the buffer to release it */
2073 b_reset(&h1c->obuf);
2074 }
2075
Christopher Faulet51dbc942018-09-13 09:05:15 +02002076 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002077 if (!(h1c->flags & H1C_F_OUT_FULL))
2078 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002079
Christopher Faulet51dbc942018-09-13 09:05:15 +02002080 /* We're done, no more to send */
2081 if (!b_data(&h1c->obuf)) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002082 TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002083 h1_release_buf(h1c, &h1c->obuf);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002084 if (h1c->flags & H1C_F_CS_SHUTW_NOW) {
2085 TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002086 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002087 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002088 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002089 else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) {
2090 TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002091 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002092 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002093
Christopher Faulet6b81df72019-10-01 22:08:43 +02002094 TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002095 return sent;
2096}
2097
Christopher Faulet51dbc942018-09-13 09:05:15 +02002098
2099/* callback called on any event by the connection handler.
2100 * It applies changes and returns zero, or < 0 if it wants immediate
2101 * destruction of the connection.
2102 */
2103static int h1_process(struct h1c * h1c)
2104{
2105 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002106 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002107
Christopher Faulet6b81df72019-10-01 22:08:43 +02002108 TRACE_ENTER(H1_EV_H1C_WAKE, conn);
2109
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002110 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002111 return -1;
2112
Christopher Fauletfeb11742018-11-29 15:12:34 +01002113 if (!h1s) {
Christopher Faulet37243bc2019-07-11 15:40:25 +02002114 if (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN) ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002115 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH) ||
Christopher Faulet539e0292018-11-19 10:40:09 +01002116 conn_xprt_read0_pending(conn))
2117 goto release;
Christopher Faulet666a0c42019-01-08 11:12:04 +01002118 if (!conn_is_back(conn) && !(h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002119 TRACE_STATE("K/A incoming connection, create new H1 stream", H1_EV_H1C_WAKE, conn);
Olivier Houchardf502aca2018-12-14 19:42:40 +01002120 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01002121 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002122 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01002123 else
Olivier Houcharde7284782018-12-06 18:54:54 +01002124 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002125 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002126 }
2127
Christopher Fauletfeb11742018-11-29 15:12:34 +01002128 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
2129 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2130
Christopher Faulet6b81df72019-10-01 22:08:43 +02002131 if (conn_xprt_read0_pending(conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002132 h1s->flags |= H1S_F_REOS;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002133 TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s);
2134 }
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002135
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002136 if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002137 (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002138 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01002139 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002140 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002141 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002142 h1s->cs->data_cb->wake(h1s->cs);
2143 }
Christopher Faulet47365272018-10-31 17:40:50 +01002144 end:
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002145 if (h1c->task) {
2146 h1c->task->expire = TICK_ETERNITY;
2147 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002148 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 +01002149 ? h1c->shut_timeout
2150 : h1c->timeout));
2151 task_queue(h1c->task);
2152 }
2153 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002154 TRACE_LEAVE(H1_EV_H1C_WAKE, conn);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002155 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002156
2157 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002158 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002159 TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE);
Christopher Faulet539e0292018-11-19 10:40:09 +01002160 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002161}
2162
2163static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2164{
2165 struct h1c *h1c = ctx;
2166 int ret = 0;
2167
Christopher Faulet6b81df72019-10-01 22:08:43 +02002168 TRACE_POINT(H1_EV_H1C_WAKE, h1c->conn);
2169
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002170 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002171 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002172 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002173 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01002174 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002175 h1_process(h1c);
2176 return NULL;
2177}
2178
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002179static void h1_reset(struct connection *conn)
2180{
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002181
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002182}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002183
2184static int h1_wake(struct connection *conn)
2185{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002186 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002187 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002188
Christopher Faulet6b81df72019-10-01 22:08:43 +02002189 TRACE_POINT(H1_EV_H1C_WAKE, conn);
2190
Christopher Faulet539e0292018-11-19 10:40:09 +01002191 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002192 ret = h1_process(h1c);
2193 if (ret == 0) {
2194 struct h1s *h1s = h1c->h1s;
2195
Christopher Faulet6b81df72019-10-01 22:08:43 +02002196 if (h1s && h1s->cs && h1s->cs->data_cb->wake) {
2197 TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002198 ret = h1s->cs->data_cb->wake(h1s->cs);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002199 }
Olivier Houchard75159a92018-12-03 18:46:09 +01002200 }
2201 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002202}
2203
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002204/* Connection timeout management. The principle is that if there's no receipt
2205 * nor sending for a certain amount of time, the connection is closed.
2206 */
2207static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2208{
2209 struct h1c *h1c = context;
2210 int expired = tick_is_expired(t->expire, now_ms);
2211
Christopher Faulet6b81df72019-10-01 22:08:43 +02002212 TRACE_POINT(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL);
2213
2214 if (!expired && h1c) {
2215 TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002216 return t;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002217 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002218
Olivier Houchard3f795f72019-04-17 22:51:06 +02002219 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002220
2221 if (!h1c) {
2222 /* resources were already deleted */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002223 TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002224 return NULL;
2225 }
2226
2227 h1c->task = NULL;
2228 /* If a stream is still attached to the mux, just set an error and wait
2229 * for the stream's timeout. Otherwise, release the mux. This is only ok
2230 * because same timeouts are used.
2231 */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002232 if (h1c->h1s && h1c->h1s->cs) {
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002233 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002234 TRACE_STATE("error on h1c, h1s still attached (expired)", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s);
2235 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002236 else
Christopher Faulet73c12072019-04-08 11:23:22 +02002237 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002238
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002239 return NULL;
2240}
2241
Christopher Faulet51dbc942018-09-13 09:05:15 +02002242/*******************************************/
2243/* functions below are used by the streams */
2244/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002245
Christopher Faulet51dbc942018-09-13 09:05:15 +02002246/*
2247 * Attach a new stream to a connection
2248 * (Used for outgoing connections)
2249 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002250static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002251{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002252 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002253 struct conn_stream *cs = NULL;
2254 struct h1s *h1s;
2255
Christopher Faulet6b81df72019-10-01 22:08:43 +02002256 TRACE_ENTER(H1_EV_STRM_NEW, conn);
2257 if (h1c->flags & H1C_F_CS_ERROR) {
2258 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 +02002259 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002260 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002261
2262 cs = cs_new(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002263 if (!cs) {
2264 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 +02002265 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002266 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002267
Olivier Houchardf502aca2018-12-14 19:42:40 +01002268 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002269 if (h1s == NULL) {
2270 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 +02002271 goto end;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002272 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002273
Christopher Faulet6b81df72019-10-01 22:08:43 +02002274 TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002275 return cs;
2276 end:
2277 cs_free(cs);
2278 return NULL;
2279}
2280
2281/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2282 * this mux, it's easy as we can only store a single conn_stream.
2283 */
2284static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2285{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002286 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002287 struct h1s *h1s = h1c->h1s;
2288
2289 if (h1s)
2290 return h1s->cs;
2291
2292 return NULL;
2293}
2294
Christopher Faulet73c12072019-04-08 11:23:22 +02002295static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002296{
Christopher Faulet73c12072019-04-08 11:23:22 +02002297 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002298
Christopher Faulet6b81df72019-10-01 22:08:43 +02002299 TRACE_POINT(H1_EV_H1C_END, h1c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002300 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002301 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002302}
2303
2304/*
2305 * Detach the stream from the connection and possibly release the connection.
2306 */
2307static void h1_detach(struct conn_stream *cs)
2308{
2309 struct h1s *h1s = cs->ctx;
2310 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002311 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002312 int has_keepalive;
2313 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002314
Christopher Faulet6b81df72019-10-01 22:08:43 +02002315 TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s);
2316
Christopher Faulet51dbc942018-09-13 09:05:15 +02002317 cs->ctx = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002318 if (!h1s) {
2319 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002320 return;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002321 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002322
Olivier Houchardf502aca2018-12-14 19:42:40 +01002323 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002324 h1c = h1s->h1c;
2325 h1s->cs = NULL;
2326
Olivier Houchard8a786902018-12-15 16:05:40 +01002327 has_keepalive = h1s->flags & H1S_F_WANT_KAL;
2328 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2329 h1s_destroy(h1s);
2330
2331 if (conn_is_back(h1c->conn) && has_keepalive &&
Olivier Houchard44d59142018-12-13 18:46:22 +01002332 !(h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletf1204b82019-07-19 14:51:06 +02002333 /* If there are any excess server data in the input buffer,
2334 * release it and close the connection ASAP (some data may
2335 * remain in the output buffer). This happens if a server sends
2336 * invalid responses. So in such case, we don't want to reuse
2337 * the connection
Christopher Faulet03627242019-07-19 11:34:08 +02002338 */
Christopher Fauletf1204b82019-07-19 14:51:06 +02002339 if (b_data(&h1c->ibuf)) {
2340 h1_release_buf(h1c, &h1c->ibuf);
2341 h1c->flags |= H1C_F_CS_SHUTW_NOW;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002342 TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END);
Christopher Fauletf1204b82019-07-19 14:51:06 +02002343 goto release;
2344 }
Christopher Faulet03627242019-07-19 11:34:08 +02002345
Christopher Faulet9400a392018-11-23 23:10:39 +01002346 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002347 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002348 h1c->conn->flags |= CO_FL_PRIVATE;
2349
Olivier Houchard44d59142018-12-13 18:46:22 +01002350 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002351 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002352 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2353 h1c->conn->owner = NULL;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002354 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn)) {
Olivier Houchard351411f2018-12-27 17:20:54 +01002355 /* The server doesn't want it, let's kill the connection right away */
2356 h1c->conn->mux->destroy(h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002357 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
2358 goto end;
2359 }
2360 tasklet_wakeup(h1c->wait_event.tasklet);
2361 TRACE_DEVEL("reusable idle connection", H1_EV_STRM_END, h1c->conn);
2362 goto end;
Olivier Houchard351411f2018-12-27 17:20:54 +01002363 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002364 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002365 if (h1c->conn->owner == sess) {
2366 int ret = session_check_idle_conn(sess, h1c->conn);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002367 if (ret == -1) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002368 /* The connection got destroyed, let's leave */
Christopher Faulet6b81df72019-10-01 22:08:43 +02002369 TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END);
2370 goto end;
2371 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002372 else if (ret == 1) {
2373 /* The connection was added to the server list,
2374 * wake the task so we can subscribe to events
2375 */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002376 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002377 TRACE_DEVEL("reusable idle connection", H1_EV_STRM_END, h1c->conn);
2378 goto end;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002379 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002380 TRACE_DEVEL("connection in idle session list", H1_EV_STRM_END, h1c->conn);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002381 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002382 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002383 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002384 struct server *srv = objt_server(h1c->conn->target);
2385
2386 if (srv) {
2387 if (h1c->conn->flags & CO_FL_PRIVATE)
2388 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002389 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002390 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2391 else
2392 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002393 TRACE_DEVEL("connection in idle server list", H1_EV_STRM_END, h1c->conn);
Christopher Faulet9400a392018-11-23 23:10:39 +01002394 }
2395 }
2396 }
2397
Christopher Fauletf1204b82019-07-19 14:51:06 +02002398 release:
Christopher Faulet3ac0f432019-06-28 17:41:42 +02002399 /* 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 +02002400 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
2401 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
2402 ((h1c->flags & H1C_F_CS_SHUTW_NOW) && !b_data(&h1c->obuf)) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02002403 !h1c->conn->owner) {
2404 TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02002405 h1_release(h1c);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002406 }
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002407 else {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002408 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002409 if (h1c->task) {
2410 h1c->task->expire = TICK_ETERNITY;
2411 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002412 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 +01002413 ? h1c->shut_timeout
2414 : h1c->timeout));
2415 task_queue(h1c->task);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002416 TRACE_DEVEL("refreshing connection's timeout", H1_EV_STRM_END, h1c->conn);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002417 }
2418 }
2419 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002420 end:
2421 TRACE_LEAVE(H1_EV_STRM_END);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002422}
2423
2424
2425static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2426{
2427 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002428 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002429
2430 if (!h1s)
2431 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002432 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002433
Christopher Faulet6b81df72019-10-01 22:08:43 +02002434 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
2435
2436 if (cs->flags & CS_FL_KILL_CONN) {
2437 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
2438 goto do_shutr;
2439 }
2440 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
2441 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02002442 goto do_shutr;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002443 }
Christopher Faulet7f366362019-04-08 10:51:20 +02002444
Christopher Faulet6b81df72019-10-01 22:08:43 +02002445 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL)) {
2446 TRACE_STATE("keep connection alive (upg_h2c|want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
2447 goto end;
2448 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002449
Christopher Faulet7f366362019-04-08 10:51:20 +02002450 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002451 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2452 if (cs->flags & CS_FL_SHR)
Christopher Faulet6b81df72019-10-01 22:08:43 +02002453 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002454 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002455 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Faulet6b81df72019-10-01 22:08:43 +02002456 (mode == CS_SHR_DRAIN));
Christopher Faulet666a0c42019-01-08 11:12:04 +01002457 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 +02002458 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002459 end:
2460 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002461}
2462
2463static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2464{
2465 struct h1s *h1s = cs->ctx;
2466 struct h1c *h1c;
2467
2468 if (!h1s)
2469 return;
2470 h1c = h1s->h1c;
2471
Christopher Faulet6b81df72019-10-01 22:08:43 +02002472 TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s);
2473
2474 if (cs->flags & CS_FL_KILL_CONN) {
2475 TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet7f366362019-04-08 10:51:20 +02002476 goto do_shutw;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002477 }
2478 if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) {
2479 TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s);
2480 goto do_shutw;
2481 }
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002482
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002483 if ((h1c->flags & H1C_F_UPG_H2C) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02002484 ((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) {
2485 TRACE_STATE("keep connection alive (upg_h2c|want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s);
2486 goto end;
2487 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002488
Christopher Faulet7f366362019-04-08 10:51:20 +02002489 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002490 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2491 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
Christopher Faulet6b81df72019-10-01 22:08:43 +02002492 goto end;
Christopher Faulet666a0c42019-01-08 11:12:04 +01002493 h1_shutw_conn(cs->conn, mode);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002494 end:
2495 TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002496}
2497
Christopher Faulet666a0c42019-01-08 11:12:04 +01002498static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002499{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002500 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002501
Christopher Faulet6b81df72019-10-01 22:08:43 +02002502 TRACE_ENTER(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet666a0c42019-01-08 11:12:04 +01002503 conn_xprt_shutw(conn);
2504 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
2505 if ((conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
2506 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002507 TRACE_LEAVE(H1_EV_STRM_SHUT, conn, h1c->h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002508}
2509
2510/* Called from the upper layer, to unsubscribe to events */
2511static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2512{
2513 struct wait_event *sw;
2514 struct h1s *h1s = cs->ctx;
2515
2516 if (!h1s)
2517 return 0;
2518
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002519 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002520 TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002521 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002522 BUG_ON(h1s->recv_wait != sw);
2523 sw->events &= ~SUB_RETRY_RECV;
2524 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002525 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002526 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002527 TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002528 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002529 BUG_ON(h1s->send_wait != sw);
2530 sw->events &= ~SUB_RETRY_SEND;
2531 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002532 }
2533 return 0;
2534}
2535
2536/* Called from the upper layer, to subscribe to events, such as being able to send */
2537static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2538{
2539 struct wait_event *sw;
2540 struct h1s *h1s = cs->ctx;
Christopher Faulet51bb1852019-09-04 10:22:34 +02002541 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002542
2543 if (!h1s)
2544 return -1;
2545
Christopher Faulet6b81df72019-10-01 22:08:43 +02002546 if (event_type & SUB_RETRY_RECV) {
2547 TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s);
2548 sw = param;
2549 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2550 sw->events |= SUB_RETRY_RECV;
2551 h1s->recv_wait = sw;
2552 event_type &= ~SUB_RETRY_RECV;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002553 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002554 if (event_type & SUB_RETRY_SEND) {
2555 TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s);
2556 sw = param;
2557 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2558 sw->events |= SUB_RETRY_SEND;
2559 h1s->send_wait = sw;
2560 event_type &= ~SUB_RETRY_SEND;
2561 /*
2562 * If the conn_stream attempt to subscribe, and the
2563 * mux isn't subscribed to the connection, then it
2564 * probably means the connection wasn't established
2565 * yet, so we have to subscribe.
2566 */
2567 h1c = h1s->h1c;
2568 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
2569 h1c->conn->xprt->subscribe(h1c->conn,
2570 h1c->conn->xprt_ctx,
2571 SUB_RETRY_SEND,
2572 &h1c->wait_event);
2573 }
2574 if (event_type != 0)
2575 return -1;
2576 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002577}
2578
2579/* Called from the upper layer, to receive data */
2580static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2581{
2582 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002583 struct h1c *h1c = h1s->h1c;
Olivier Houcharddedd3062019-07-26 15:12:38 +02002584 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002585 size_t ret = 0;
2586
Christopher Faulet6b81df72019-10-01 22:08:43 +02002587 TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s,, (size_t[]){count});
Christopher Faulet539e0292018-11-19 10:40:09 +01002588 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002589 ret = h1_process_input(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002590 else
2591 TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002592
Christopher Faulete18777b2019-04-16 16:46:36 +02002593 if (flags & CO_RFL_BUF_FLUSH) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002594 if (h1m->state != H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len)) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002595 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002596 TRACE_STATE("flush stream's buffer", H1_EV_STRM_RECV, h1c->conn, h1s);
2597 }
Christopher Faulete18777b2019-04-16 16:46:36 +02002598 }
Olivier Houchard02bac852019-08-22 18:34:25 +02002599 else {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002600 if (h1s->flags & H1S_F_SPLICED_DATA) {
2601 h1s->flags &= ~H1S_F_SPLICED_DATA;
2602 TRACE_STATE("disable splicing", H1_EV_STRM_RECV, h1c->conn, h1s);
2603 }
2604 if (h1m->state != H1_MSG_DONE && !(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002605 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002606 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002607 TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s,, (size_t[]){ret});
Christopher Faulet51dbc942018-09-13 09:05:15 +02002608 return ret;
2609}
2610
2611
2612/* Called from the upper layer, to send data */
2613static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2614{
2615 struct h1s *h1s = cs->ctx;
2616 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002617 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002618
2619 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002620 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002621 h1c = h1s->h1c;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002622
Christopher Faulet6b81df72019-10-01 22:08:43 +02002623 TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s,, (size_t[]){count});
2624
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002625 /* If we're not connected yet, or we're waiting for a handshake, stop
2626 * now, as we don't want to remove everything from the channel buffer
2627 * before we're sure we can send it.
2628 */
2629 if (!(h1c->conn->flags & CO_FL_CONNECTED) ||
Christopher Faulet6b81df72019-10-01 22:08:43 +02002630 (h1c->conn->flags & CO_FL_HANDSHAKE)) {
2631 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002632 return 0;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002633 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002634
Christopher Fauletc31872f2019-06-04 22:09:36 +02002635 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002636 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002637
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002638 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2639 ret = h1_process_output(h1c, buf, count);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002640 else
2641 TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s);
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002642 if (!ret)
2643 break;
2644 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02002645 count -= ret;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002646 if (!h1_send(h1c))
2647 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002648 }
Christopher Fauletf96c3222018-11-20 18:38:01 +01002649
Christopher Faulet6b81df72019-10-01 22:08:43 +02002650 TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s,, (size_t[]){total});
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002651 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002652}
2653
Willy Tarreaue5733232019-05-22 19:24:06 +02002654#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002655/* Send and get, using splicing */
2656static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2657{
2658 struct h1s *h1s = cs->ctx;
2659 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2660 int ret = 0;
2661
Christopher Faulet6b81df72019-10-01 22:08:43 +02002662 TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s,, (size_t[]){count});
2663
Christopher Faulet1146f972019-05-29 14:35:24 +02002664 if (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002665 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002666 TRACE_STATE("disable splicing on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s);
2667 if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV)) {
2668 TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1146f972019-05-29 14:35:24 +02002669 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002670 }
Christopher Faulete18777b2019-04-16 16:46:36 +02002671 goto end;
2672 }
2673
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002674 if (h1s_data_pending(h1s)) {
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002675 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002676 TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002677 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002678 }
2679
2680 h1s->flags &= ~H1S_F_BUF_FLUSH;
2681 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002682 TRACE_STATE("enable splicing", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002683 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2684 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002685 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02002686 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002687 h1m->curr_len -= ret;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002688 if (!h1m->curr_len) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002689 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002690 TRACE_STATE("disable splicing on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s);
2691 }
Christopher Faulete18777b2019-04-16 16:46:36 +02002692 }
2693
Christopher Faulet1be55f92018-10-02 15:59:23 +02002694 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002695 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002696 h1s->flags |= H1S_F_REOS;
Christopher Faulet6b81df72019-10-01 22:08:43 +02002697 TRACE_STATE("read0 on connection", H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet038ad812019-04-17 11:03:22 +02002698 if (!pipe->data)
2699 cs->flags |= CS_FL_EOS;
2700 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002701
2702 TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002703 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002704}
2705
2706static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2707{
2708 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002709 int ret = 0;
2710
Christopher Faulet6b81df72019-10-01 22:08:43 +02002711 TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s,, (size_t[]){pipe->data});
2712
Christopher Faulet1be55f92018-10-02 15:59:23 +02002713 if (b_data(&h1s->h1c->obuf))
2714 goto end;
2715
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002716 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002717 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002718 if (pipe->data) {
Christopher Faulet6b81df72019-10-01 22:08:43 +02002719 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) {
2720 TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002721 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Faulet6b81df72019-10-01 22:08:43 +02002722 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002723 }
Christopher Faulet6b81df72019-10-01 22:08:43 +02002724
2725 TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002726 return ret;
2727}
2728#endif
2729
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02002730static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
2731{
2732 int ret = 0;
2733 switch (mux_ctl) {
2734 case MUX_STATUS:
2735 if (conn->flags & CO_FL_CONNECTED)
2736 ret |= MUX_STATUS_READY;
2737 return ret;
2738 default:
2739 return -1;
2740 }
2741}
2742
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002743/* for debugging with CLI's "show fd" command */
2744static void h1_show_fd(struct buffer *msg, struct connection *conn)
2745{
2746 struct h1c *h1c = conn->ctx;
2747 struct h1s *h1s = h1c->h1s;
2748
Christopher Fauletf376a312019-01-04 15:16:06 +01002749 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2750 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002751 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2752 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2753 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2754 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2755
2756 if (h1s) {
2757 char *method;
2758
2759 if (h1s->meth < HTTP_METH_OTHER)
2760 method = http_known_methods[h1s->meth].ptr;
2761 else
2762 method = "UNKNOWN";
2763 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2764 " .meth=%s status=%d",
2765 h1s, h1s->flags,
2766 h1m_state_str(h1s->req.state),
2767 h1m_state_str(h1s->res.state), method, h1s->status);
2768 if (h1s->cs)
2769 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2770 h1s->cs->flags, h1s->cs->data);
2771 }
Christopher Faulet98fbe952019-07-22 16:18:24 +02002772}
2773
2774
2775/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
2776static int add_hdr_case_adjust(const char *from, const char *to, char **err)
2777{
2778 struct h1_hdr_entry *entry;
2779
2780 /* Be sure there is a non-empty <to> */
2781 if (!strlen(to)) {
2782 memprintf(err, "expect <to>");
2783 return -1;
2784 }
2785
2786 /* Be sure only the case differs between <from> and <to> */
2787 if (strcasecmp(from, to)) {
2788 memprintf(err, "<from> and <to> must not differ execpt the case");
2789 return -1;
2790 }
2791
2792 /* Be sure <from> does not already existsin the tree */
2793 if (ebis_lookup(&hdrs_map.map, from)) {
2794 memprintf(err, "duplicate entry '%s'", from);
2795 return -1;
2796 }
2797
2798 /* Create the entry and insert it in the tree */
2799 entry = malloc(sizeof(*entry));
2800 if (!entry) {
2801 memprintf(err, "out of memory");
2802 return -1;
2803 }
2804
2805 entry->node.key = strdup(from);
2806 entry->name.ptr = strdup(to);
2807 entry->name.len = strlen(to);
2808 if (!entry->node.key || !entry->name.ptr) {
2809 free(entry->node.key);
2810 free(entry->name.ptr);
2811 free(entry);
2812 memprintf(err, "out of memory");
2813 return -1;
2814 }
2815 ebis_insert(&hdrs_map.map, &entry->node);
2816 return 0;
2817}
2818
2819static void h1_hdeaders_case_adjust_deinit()
2820{
2821 struct ebpt_node *node, *next;
2822 struct h1_hdr_entry *entry;
2823
2824 node = ebpt_first(&hdrs_map.map);
2825 while (node) {
2826 next = ebpt_next(node);
2827 ebpt_delete(node);
2828 entry = container_of(node, struct h1_hdr_entry, node);
2829 free(entry->node.key);
2830 free(entry->name.ptr);
2831 free(entry);
2832 node = next;
2833 }
2834 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002835}
2836
Christopher Faulet98fbe952019-07-22 16:18:24 +02002837static int cfg_h1_headers_case_adjust_postparser()
2838{
2839 FILE *file = NULL;
2840 char *c, *key_beg, *key_end, *value_beg, *value_end;
2841 char *err;
2842 int rc, line = 0, err_code = 0;
2843
2844 if (!hdrs_map.name)
2845 goto end;
2846
2847 file = fopen(hdrs_map.name, "r");
2848 if (!file) {
2849 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
2850 hdrs_map.name);
2851 err_code |= ERR_ALERT | ERR_FATAL;
2852 goto end;
2853 }
2854
2855 /* now parse all lines. The file may contain only two header name per
2856 * line, separated by spaces. All heading and trailing spaces will be
2857 * ignored. Lines starting with a # are ignored.
2858 */
2859 while (fgets(trash.area, trash.size, file) != NULL) {
2860 line++;
2861 c = trash.area;
2862
2863 /* strip leading spaces and tabs */
2864 while (*c == ' ' || *c == '\t')
2865 c++;
2866
2867 /* ignore emptu lines, or lines beginning with a dash */
2868 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
2869 continue;
2870
2871 /* look for the end of the key */
2872 key_beg = c;
2873 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
2874 c++;
2875 key_end = c;
2876
2877 /* strip middle spaces and tabs */
2878 while (*c == ' ' || *c == '\t')
2879 c++;
2880
2881 /* look for the end of the value, it is the end of the line */
2882 value_beg = c;
2883 while (*c && *c != '\n' && *c != '\r')
2884 c++;
2885 value_end = c;
2886
2887 /* trim possibly trailing spaces and tabs */
2888 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
2889 value_end--;
2890
2891 /* set final \0 and check entries */
2892 *key_end = '\0';
2893 *value_end = '\0';
2894
2895 err = NULL;
2896 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
2897 if (rc < 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002898 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2899 hdrs_map.name, err, line);
2900 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Fauletcac5c092019-07-30 16:51:42 +02002901 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002902 goto end;
2903 }
2904 if (rc > 0) {
Christopher Faulet98fbe952019-07-22 16:18:24 +02002905 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2906 hdrs_map.name, err, line);
2907 err_code |= ERR_WARN;
Christopher Fauletcac5c092019-07-30 16:51:42 +02002908 free(err);
Christopher Faulet98fbe952019-07-22 16:18:24 +02002909 }
2910 }
2911
2912 end:
2913 if (file)
2914 fclose(file);
2915 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
2916 return err_code;
2917}
2918
2919
2920/* config parser for global "h1-outgoing-header-case-adjust" */
2921static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
2922 struct proxy *defpx, const char *file, int line,
2923 char **err)
2924{
2925 if (too_many_args(2, args, err, NULL))
2926 return -1;
2927 if (!*(args[1]) || !*(args[2])) {
2928 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
2929 return -1;
2930 }
2931 return add_hdr_case_adjust(args[1], args[2], err);
2932}
2933
2934/* config parser for global "h1-outgoing-headers-case-adjust-file" */
2935static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
2936 struct proxy *defpx, const char *file, int line,
2937 char **err)
2938{
2939 if (too_many_args(1, args, err, NULL))
2940 return -1;
2941 if (!*(args[1])) {
2942 memprintf(err, "'%s' expects <file> as argument.", args[0]);
2943 return -1;
2944 }
2945 free(hdrs_map.name);
2946 hdrs_map.name = strdup(args[1]);
2947 return 0;
2948}
2949
2950
2951/* config keyword parsers */
2952static struct cfg_kw_list cfg_kws = {{ }, {
2953 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
2954 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
2955 { 0, NULL, NULL },
2956 }
2957};
2958
2959INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2960REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
2961
2962
Christopher Faulet51dbc942018-09-13 09:05:15 +02002963/****************************************/
2964/* MUX initialization and instanciation */
2965/****************************************/
2966
2967/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002968static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002969 .init = h1_init,
2970 .wake = h1_wake,
2971 .attach = h1_attach,
2972 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002973 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002974 .detach = h1_detach,
2975 .destroy = h1_destroy,
2976 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002977 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002978 .rcv_buf = h1_rcv_buf,
2979 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002980#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002981 .rcv_pipe = h1_rcv_pipe,
2982 .snd_pipe = h1_snd_pipe,
2983#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002984 .subscribe = h1_subscribe,
2985 .unsubscribe = h1_unsubscribe,
2986 .shutr = h1_shutr,
2987 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002988 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002989 .reset = h1_reset,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02002990 .ctl = h1_ctl,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002991 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002992 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002993};
2994
2995
2996/* this mux registers default HTX proto */
2997static struct mux_proto_list mux_proto_htx =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02002998{ .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
Christopher Faulet51dbc942018-09-13 09:05:15 +02002999
Willy Tarreau0108d902018-11-25 19:14:37 +01003000INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
3001
Christopher Faulet51dbc942018-09-13 09:05:15 +02003002/*
3003 * Local variables:
3004 * c-indent-level: 8
3005 * c-basic-offset: 8
3006 * End:
3007 */