blob: 78343f38bbc6fa4e76415c7b3991d19c5913c9ab [file] [log] [blame]
Willy Tarreau62f52692017-10-08 23:01:42 +02001/*
2 * HTTP/2 mux-demux for connections
3 *
4 * Copyright 2017 Willy Tarreau <w@1wt.eu>
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
13#include <common/cfgparse.h>
14#include <common/config.h>
Willy Tarreauafba57a2018-12-11 13:44:24 +010015#include <common/h1.h>
Willy Tarreau5ab6b572017-09-22 08:05:00 +020016#include <common/h2.h>
Willy Tarreau13278b42017-10-13 19:23:14 +020017#include <common/hpack-dec.h>
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +020018#include <common/hpack-enc.h>
Willy Tarreau5ab6b572017-09-22 08:05:00 +020019#include <common/hpack-tbl.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010020#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010021#include <common/initcall.h>
Willy Tarreaue4820742017-07-27 13:37:23 +020022#include <common/net_helper.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020023#include <proto/connection.h>
Willy Tarreaubcd3bb32018-12-01 18:59:00 +010024#include <proto/http_htx.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010025#include <proto/session.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020026#include <proto/stream.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010027#include <proto/stream_interface.h>
Willy Tarreauea392822017-10-31 10:02:25 +010028#include <types/session.h>
Willy Tarreau5ab6b572017-09-22 08:05:00 +020029#include <eb32tree.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020030
31
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010032/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020033static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010034static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010035static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020036static const struct h2s *h2_idle_stream;
37
Willy Tarreau5ab6b572017-09-22 08:05:00 +020038/* Connection flags (32 bit), in h2c->flags */
39#define H2_CF_NONE 0x00000000
40
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020041/* Flags indicating why writing to the mux is blocked. */
42#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
43#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
44#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
45
Willy Tarreau315d8072017-12-10 22:17:57 +010046/* Flags indicating why writing to the demux is blocked.
47 * The first two ones directly affect the ability for the mux to receive data
48 * from the connection. The other ones affect the mux's ability to demux
49 * received data.
50 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020051#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
52#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010053
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020054#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
55#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
56#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
57#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020058#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
59#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020060
Willy Tarreau081d4722017-05-16 21:51:05 +020061/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020062#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
63#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
64#define H2_CF_WAIT_FOR_HS 0x00004000 // We did check that at least a stream was waiting for handshake
Willy Tarreaub3fb56d2018-10-03 13:56:38 +020065#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3b94d982021-01-20 10:53:13 +010066#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
67#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
68#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020069
Willy Tarreau5ab6b572017-09-22 08:05:00 +020070/* H2 connection state, in h2c->st0 */
71enum h2_cs {
72 H2_CS_PREFACE, // init done, waiting for connection preface
73 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
74 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
75 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010076 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
77 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020078 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
79 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
80 H2_CS_ENTRIES // must be last
81} __attribute__((packed));
82
Willy Tarreau51330962019-05-26 09:38:07 +020083
Willy Tarreau9c218e72019-05-26 10:08:28 +020084/* 32 buffers: one for the ring's root, rest for the mbuf itself */
85#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020086
Willy Tarreau5ab6b572017-09-22 08:05:00 +020087/* H2 connection descriptor */
88struct h2c {
89 struct connection *conn;
90
91 enum h2_cs st0; /* mux state */
92 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
93
94 /* 16 bit hole here */
95 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010096 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020097 int32_t max_id; /* highest ID known on this connection, <0 before preface */
98 uint32_t rcvd_c; /* newly received data to ACK for the connection */
99 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
100
101 /* states for the demux direction */
102 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200103 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200104
105 int32_t dsi; /* demux stream ID (<0 = idle) */
106 int32_t dfl; /* demux frame length (if dsi >= 0) */
107 int8_t dft; /* demux frame type (if dsi >= 0) */
108 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100109 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
110 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200111 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
112
113 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200114 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200115 int32_t msi; /* mux stream ID (<0 = idle) */
116 int32_t mfl; /* mux frame length (if dsi >= 0) */
117 int8_t mft; /* mux frame type (if dsi >= 0) */
118 int8_t mff; /* mux frame flags (if dsi >= 0) */
119 /* 16 bit hole here */
120 int32_t miw; /* mux initial window size for all new streams */
121 int32_t mws; /* mux window size. Can be negative. */
122 int32_t mfs; /* mux's max frame size */
123
Willy Tarreauea392822017-10-31 10:02:25 +0100124 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100125 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100126 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200127 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100128 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100129 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200130 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100131 struct task *task; /* timeout management task */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200132 struct eb_root streams_by_id; /* all active streams by their ID */
133 struct list send_list; /* list of blocked streams requesting to send */
134 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreaubda92dd2019-10-02 10:49:59 +0200135 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Olivier Houchardd846c262018-10-19 17:24:29 +0200136 struct list sending_list; /* list of h2s scheduled to send data */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100137 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200138 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200139};
140
Willy Tarreau18312642017-10-11 07:57:07 +0200141/* H2 stream state, in h2s->st */
142enum h2_ss {
143 H2_SS_IDLE = 0, // idle
144 H2_SS_RLOC, // reserved(local)
145 H2_SS_RREM, // reserved(remote)
146 H2_SS_OPEN, // open
147 H2_SS_HREM, // half-closed(remote)
148 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200149 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200150 H2_SS_CLOSED, // closed
151 H2_SS_ENTRIES // must be last
152} __attribute__((packed));
153
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200154#define H2_SS_MASK(state) (1UL << (state))
155#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
156#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
157#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
158#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
159#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
160#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
161#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
162#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200163
Willy Tarreau18312642017-10-11 07:57:07 +0200164/* HTTP/2 stream flags (32 bit), in h2s->flags */
165#define H2_SF_NONE 0x00000000
166#define H2_SF_ES_RCVD 0x00000001
167#define H2_SF_ES_SENT 0x00000002
168
169#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
170#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
171
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200172/* stream flags indicating the reason the stream is blocked */
173#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreaubda92dd2019-10-02 10:49:59 +0200174#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
175#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
176#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200177#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
178
Willy Tarreau454f9052017-10-26 19:40:35 +0200179/* stream flags indicating how data is supposed to be sent */
180#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
181#define H2_SF_DATA_CHNK 0x00000200 // data sent using chunked-encoding
182
183/* step we're currently in when sending chunks. This is needed because we may
184 * have to transfer chunks as large as a full buffer so there's no room left
185 * for size nor crlf around.
186 */
187#define H2_SF_CHNK_SIZE 0x00000000 // trying to send chunk size
188#define H2_SF_CHNK_DATA 0x00000400 // trying to send chunk data
189#define H2_SF_CHNK_CRLF 0x00000800 // trying to send chunk crlf after data
190
191#define H2_SF_CHNK_MASK 0x00000C00 // trying to send chunk size
192
Willy Tarreau67434202017-11-06 20:20:51 +0100193#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100194#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100195
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100196#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
197
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200198#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
199#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200200#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200201
202
Willy Tarreau18312642017-10-11 07:57:07 +0200203/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
204 * it is being processed in the internal HTTP representation (H1 for now).
205 */
206struct h2s {
207 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100208 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200209 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200210 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200211 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200212 int32_t id; /* stream ID */
213 uint32_t flags; /* H2_SF_* */
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200214 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200215 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
216 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200217 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100218 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200219 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200220 struct wait_event wait_event; /* Wait list, when we're attempting to send a RST but we can't send */
Willy Tarreau749f5ca2019-03-21 19:19:36 +0100221 struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
222 struct wait_event *send_wait; /* send wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200223 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100224 struct list sending_list; /* To be used when adding in h2c->sending_list */
Willy Tarreau18312642017-10-11 07:57:07 +0200225};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200226
Willy Tarreauc6405142017-09-21 20:23:50 +0200227/* descriptor for an h2 frame header */
228struct h2_fh {
229 uint32_t len; /* length, host order, 24 bits */
230 uint32_t sid; /* stream id, host order, 31 bits */
231 uint8_t ft; /* frame type */
232 uint8_t ff; /* frame flags */
233};
234
Willy Tarreau8ceae722018-11-26 11:58:30 +0100235/* the h2c connection pool */
236DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
237
238/* the h2s stream pool */
239DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
240
Willy Tarreaudc572362018-12-12 08:08:05 +0100241/* The default connection window size is 65535, it may only be enlarged using
242 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
243 * we'll pretend we already received the difference between the two to send
244 * an equivalent window update to enlarge it to 2G-1.
245 */
246#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
247
Willy Tarreau455d5682019-05-24 19:42:18 +0200248/* maximum amount of data we're OK with re-aligning for buffer optimizations */
249#define MAX_DATA_REALIGN 1024
250
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200251/* a few settings from the global section */
252static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200253static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100254static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100255static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200256
Willy Tarreau2a856182017-05-16 15:20:39 +0200257/* a dmumy closed stream */
258static const struct h2s *h2_closed_stream = &(const struct h2s){
259 .cs = NULL,
260 .h2c = NULL,
261 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100262 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100263 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200264 .id = 0,
265};
266
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100267/* a dmumy closed stream returning a PROTOCOL_ERROR error */
268static const struct h2s *h2_error_stream = &(const struct h2s){
269 .cs = NULL,
270 .h2c = NULL,
271 .st = H2_SS_CLOSED,
272 .errcode = H2_ERR_PROTOCOL_ERROR,
273 .flags = 0,
274 .id = 0,
275};
276
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100277/* a dmumy closed stream returning a REFUSED_STREAM error */
278static const struct h2s *h2_refused_stream = &(const struct h2s){
279 .cs = NULL,
280 .h2c = NULL,
281 .st = H2_SS_CLOSED,
282 .errcode = H2_ERR_REFUSED_STREAM,
283 .flags = 0,
284 .id = 0,
285};
286
Willy Tarreau2a856182017-05-16 15:20:39 +0200287/* and a dummy idle stream for use with any unannounced stream */
288static const struct h2s *h2_idle_stream = &(const struct h2s){
289 .cs = NULL,
290 .h2c = NULL,
291 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100292 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200293 .id = 0,
294};
295
Olivier Houchard9f6af332018-05-25 14:04:04 +0200296static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200297static int h2_send(struct h2c *h2c);
298static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200299static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200300static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100301static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100302static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len);
Willy Tarreaua56a6de2018-02-26 15:59:07 +0100303static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200304static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100305static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100306static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200307
Christopher Faulet11b10532020-10-08 15:38:41 +0200308
Willy Tarreau3b94d982021-01-20 10:53:13 +0100309/* Detect a pending read0 for a H2 connection. It happens if a read0 was
310 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
311 * to parse pending data, confirming no more progress is possible because
312 * we're facing a truncated frame. The function returns 1 to report a read0
313 * or 0 otherwise.
Christopher Faulet11b10532020-10-08 15:38:41 +0200314 */
Willy Tarreau3b94d982021-01-20 10:53:13 +0100315static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Faulet11b10532020-10-08 15:38:41 +0200316{
Willy Tarreau3b94d982021-01-20 10:53:13 +0100317 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Faulet11b10532020-10-08 15:38:41 +0200318}
319
Willy Tarreau534d8f92019-10-01 10:12:00 +0200320/* returns true if the connection is allowed to expire, false otherwise. A
321 * connection may expire when:
322 * - it has no stream
323 * - it has data in the mux buffer
324 * - it has streams in the blocked list
325 * - it has streams in the fctl list
326 * - it has streams in the send list
327 * Otherwise it means some streams are waiting in the data layer and it should
328 * not expire.
329 */
330static inline int h2c_may_expire(const struct h2c *h2c)
331{
332 return eb_is_empty(&h2c->streams_by_id) ||
333 br_data(h2c->mbuf) ||
334 !LIST_ISEMPTY(&h2c->blocked_list) ||
335 !LIST_ISEMPTY(&h2c->fctl_list) ||
336 !LIST_ISEMPTY(&h2c->send_list) ||
337 !LIST_ISEMPTY(&h2c->sending_list);
338}
339
Olivier Houchard7a977432019-03-21 15:47:13 +0100340static __inline int
Willy Tarreau534d8f92019-10-01 10:12:00 +0200341h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100342{
343 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
344 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
345 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
346 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200347 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100348 (conn_xprt_read0_pending(h2c->conn) ||
349 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
350 return 1;
351
352 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100353}
354
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200355/*****************************************************/
356/* functions below are for dynamic buffer management */
357/*****************************************************/
358
Willy Tarreau315d8072017-12-10 22:17:57 +0100359/* indicates whether or not the we may call the h2_recv() function to attempt
360 * to receive data into the buffer and/or demux pending data. The condition is
361 * a bit complex due to some API limits for now. The rules are the following :
362 * - if an error or a shutdown was detected on the connection and the buffer
363 * is empty, we must not attempt to receive
364 * - if the demux buf failed to be allocated, we must not try to receive and
365 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100366 * - if no flag indicates a blocking condition, we may attempt to receive,
367 * regardless of whether the demux buffer is full or not, so that only
368 * de demux part decides whether or not to block. This is needed because
369 * the connection API indeed prevents us from re-enabling receipt that is
370 * already enabled in a polled state, so we must always immediately stop
371 * as soon as the demux can't proceed so as never to hit an end of read
372 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100373 * - otherwise must may not attempt
374 */
375static inline int h2_recv_allowed(const struct h2c *h2c)
376{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200377 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100378 (h2c->st0 >= H2_CS_ERROR ||
379 h2c->conn->flags & CO_FL_ERROR ||
380 conn_xprt_read0_pending(h2c->conn)))
381 return 0;
382
383 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100384 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100385 return 1;
386
387 return 0;
388}
389
Willy Tarreau47b515a2018-12-21 16:09:41 +0100390/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200391static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100392{
393 if (!h2_recv_allowed(h2c))
394 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200395 if ((!consider_buffer || !b_data(&h2c->dbuf))
396 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100397 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200398 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100399}
400
401
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100402/* returns true if the front connection has too many conn_streams attached */
403static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200404{
Willy Tarreaua8754662018-12-23 20:43:58 +0100405 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200406}
407
Willy Tarreau44e973f2018-03-01 17:49:30 +0100408/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
409 * flags are used to figure what buffer was requested. It returns 1 if the
410 * allocation succeeds, in which case the connection is woken up, or 0 if it's
411 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200412 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100413static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200414{
415 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100416 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200417
Willy Tarreau44e973f2018-03-01 17:49:30 +0100418 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200419 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200420 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200421 return 1;
422 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200423
Willy Tarreau51330962019-05-26 09:38:07 +0200424 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100425 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200426
427 if (h2c->flags & H2_CF_DEM_MROOM) {
428 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200429 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200430 }
Willy Tarreau14398122017-09-22 14:26:04 +0200431 return 1;
432 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100433
434 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
435 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200436 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100437 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200438 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100439 return 1;
440 }
441
Willy Tarreau14398122017-09-22 14:26:04 +0200442 return 0;
443}
444
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200445static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200446{
447 struct buffer *buf = NULL;
448
Willy Tarreauc234ae32019-05-13 17:56:11 +0200449 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100450 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
451 h2c->buf_wait.target = h2c;
452 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100453 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100454 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100455 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200456 __conn_xprt_stop_recv(h2c->conn);
457 }
458 return buf;
459}
460
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200461static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200462{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200463 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100464 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200465 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200466 }
467}
468
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200469static inline void h2_release_mbuf(struct h2c *h2c)
470{
471 struct buffer *buf;
472 unsigned int count = 0;
473
474 while (b_size(buf = br_head_pick(h2c->mbuf))) {
475 b_free(buf);
476 count++;
477 }
478 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200479 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200480}
481
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100482/* returns the number of allocatable outgoing streams for the connection taking
483 * the last_sid and the reserved ones into account.
484 */
485static inline int h2_streams_left(const struct h2c *h2c)
486{
487 int ret;
488
489 /* consider the number of outgoing streams we're allowed to create before
490 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
491 * nb_reserved is the number of streams which don't yet have an ID.
492 */
493 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
494 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
495 if (ret < 0)
496 ret = 0;
497 return ret;
498}
499
Willy Tarreau00f18a32019-01-26 12:19:01 +0100500/* returns the number of streams in use on a connection to figure if it's
501 * idle or not. We check nb_cs and not nb_streams as the caller will want
502 * to know if it was the last one after a detach().
503 */
504static int h2_used_streams(struct connection *conn)
505{
506 struct h2c *h2c = conn->ctx;
507
508 return h2c->nb_cs;
509}
510
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100511/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100512static int h2_avail_streams(struct connection *conn)
513{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100514 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100515 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100516 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100517
Willy Tarreau6afec462019-01-28 06:40:19 +0100518 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
519 * streams on the connection.
520 */
521 if (h2c->last_sid >= 0)
522 return 0;
523
Willy Tarreaud63b85d2019-10-31 15:10:03 +0100524 if (h2c->st0 >= H2_CS_ERROR)
525 return 0;
526
Willy Tarreau86949782019-01-31 10:42:05 +0100527 /* note: may be negative if a SETTINGS frame changes the limit */
528 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100529
530 /* we must also consider the limit imposed by stream IDs */
531 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100532 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100533 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100534 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
535 ret1 = MIN(ret1, ret2);
536 }
537 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100538}
539
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200540
Willy Tarreau62f52692017-10-08 23:01:42 +0200541/*****************************************************************/
542/* functions below are dedicated to the mux setup and management */
543/*****************************************************************/
544
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200545/* Initialize the mux once it's attached. For outgoing connections, the context
546 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200547 * connections from the fact that the context is still NULL (even during mux
548 * upgrades). <input> is always used as Input buffer and may contain data. It is
549 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200550 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200551static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
552 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200553{
554 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100555 struct task *t = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200556
Willy Tarreaubafbe012017-11-24 17:34:44 +0100557 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200558 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200559 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200560
Christopher Faulete9b70722019-04-08 10:46:02 +0200561 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200562 h2c->flags = H2_CF_IS_BACK;
563 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
564 if (tick_isset(prx->timeout.serverfin))
565 h2c->shut_timeout = prx->timeout.serverfin;
566 } else {
567 h2c->flags = H2_CF_NONE;
568 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
569 if (tick_isset(prx->timeout.clientfin))
570 h2c->shut_timeout = prx->timeout.clientfin;
571 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100572
Willy Tarreau0b37d652018-10-03 10:33:02 +0200573 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100574 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100575 if (tick_isset(h2c->timeout)) {
576 t = task_new(tid_bit);
577 if (!t)
578 goto fail;
579
580 h2c->task = t;
581 t->process = h2_timeout_task;
582 t->context = h2c;
583 t->expire = tick_add(now_ms, h2c->timeout);
584 }
Willy Tarreauea392822017-10-31 10:02:25 +0100585
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200586 h2c->wait_event.tasklet = tasklet_new();
587 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200588 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200589 h2c->wait_event.tasklet->process = h2_io_cb;
590 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100591 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200592
Willy Tarreau32218eb2017-09-22 08:07:25 +0200593 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
594 if (!h2c->ddht)
595 goto fail;
596
597 /* Initialise the context. */
598 h2c->st0 = H2_CS_PREFACE;
599 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100600 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200601 h2c->max_id = -1;
602 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100603 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200604 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100605 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200606 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100607 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100608 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200609
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200610 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200611 h2c->dsi = -1;
612 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100613
Willy Tarreau32218eb2017-09-22 08:07:25 +0200614 h2c->last_sid = -1;
615
Willy Tarreau51330962019-05-26 09:38:07 +0200616 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200617 h2c->miw = 65535; /* mux initial window size */
618 h2c->mws = 65535; /* mux window size */
619 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200620 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200621 LIST_INIT(&h2c->send_list);
622 LIST_INIT(&h2c->fctl_list);
Willy Tarreaubda92dd2019-10-02 10:49:59 +0200623 LIST_INIT(&h2c->blocked_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200624 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100625 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200626
Willy Tarreau3f133572017-10-31 19:21:06 +0100627 if (t)
628 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100629
Willy Tarreau01b44822018-10-03 14:26:37 +0200630 if (h2c->flags & H2_CF_IS_BACK) {
631 /* FIXME: this is temporary, for outgoing connections we need
632 * to immediately allocate a stream until the code is modified
633 * so that the caller calls ->attach(). For now the outgoing cs
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100634 * is stored as conn->ctx by the caller.
Willy Tarreau01b44822018-10-03 14:26:37 +0200635 */
636 struct h2s *h2s;
637
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100638 h2s = h2c_bck_stream_new(h2c, conn->ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200639 if (!h2s)
640 goto fail_stream;
641 }
642
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100643 conn->ctx = h2c;
Willy Tarreau01b44822018-10-03 14:26:37 +0200644
Willy Tarreau0f383582018-10-03 14:22:21 +0200645 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200646 h2c_restart_reading(h2c, 1);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200647 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200648 fail_stream:
649 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200650 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200651 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200652 if (h2c->wait_event.tasklet)
653 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100654 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200655 fail_no_h2c:
Willy Tarreau32218eb2017-09-22 08:07:25 +0200656 return -1;
657}
658
Willy Tarreau751f2d02018-10-05 09:35:00 +0200659/* returns the next allocatable outgoing stream ID for the H2 connection, or
660 * -1 if no more is allocatable.
661 */
662static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
663{
664 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100665
666 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200667 id = -1;
668 return id;
669}
670
Willy Tarreau2373acc2017-10-12 17:35:14 +0200671/* returns the stream associated with id <id> or NULL if not found */
672static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
673{
674 struct eb32_node *node;
675
Willy Tarreau751f2d02018-10-05 09:35:00 +0200676 if (id == 0)
677 return (struct h2s *)h2_closed_stream;
678
Willy Tarreau2a856182017-05-16 15:20:39 +0200679 if (id > h2c->max_id)
680 return (struct h2s *)h2_idle_stream;
681
Willy Tarreau2373acc2017-10-12 17:35:14 +0200682 node = eb32_lookup(&h2c->streams_by_id, id);
683 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200684 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200685
686 return container_of(node, struct h2s, by_id);
687}
688
Christopher Faulet73c12072019-04-08 11:23:22 +0200689/* release function. This one should be called to free all resources allocated
690 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200691 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200692static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200693{
Christopher Faulet61840e72019-04-15 09:33:32 +0200694 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200695
Willy Tarreau32218eb2017-09-22 08:07:25 +0200696 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200697 /* The connection must be aattached to this mux to be released */
698 if (h2c->conn && h2c->conn->ctx == h2c)
699 conn = h2c->conn;
700
Willy Tarreau32218eb2017-09-22 08:07:25 +0200701 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200702
Willy Tarreau186e96e2019-05-28 17:21:18 +0200703 if (LIST_ADDED(&h2c->buf_wait.list)) {
704 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
705 LIST_DEL(&h2c->buf_wait.list);
706 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
707 }
Willy Tarreau14398122017-09-22 14:26:04 +0200708
Willy Tarreau44e973f2018-03-01 17:49:30 +0100709 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200710 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100711
Willy Tarreauea392822017-10-31 10:02:25 +0100712 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200713 h2c->task->context = NULL;
714 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100715 h2c->task = NULL;
716 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200717 if (h2c->wait_event.tasklet)
718 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet0e012562019-09-18 11:07:20 +0200719 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100720 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet0e012562019-09-18 11:07:20 +0200721 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100722
Willy Tarreaubafbe012017-11-24 17:34:44 +0100723 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200724 }
725
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200726 if (conn) {
727 conn->mux = NULL;
728 conn->ctx = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200729
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200730 conn_stop_tracking(conn);
731 conn_full_close(conn);
732 if (conn->destroy_cb)
733 conn->destroy_cb(conn);
734 conn_free(conn);
735 }
Willy Tarreau62f52692017-10-08 23:01:42 +0200736}
737
738
Willy Tarreau71681172017-10-23 14:39:06 +0200739/******************************************************/
740/* functions below are for the H2 protocol processing */
741/******************************************************/
742
743/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100744static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200745{
746 return h2s ? h2s->id : 0;
747}
748
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200749/* returns the sum of the stream's own window size and the mux's initial
750 * window, which together form the stream's effective window size.
751 */
752static inline int h2s_mws(const struct h2s *h2s)
753{
754 return h2s->sws + h2s->h2c->miw;
755}
756
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200757/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100758static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200759{
760 if (h2c->msi < 0)
761 return 0;
762
763 if (h2c->msi == h2s_id(h2s))
764 return 0;
765
766 return 1;
767}
768
Willy Tarreau741d6df2017-10-17 08:00:59 +0200769/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +0100770static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +0200771{
772 h2c->errcode = err;
773 h2c->st0 = H2_CS_ERROR;
774}
775
Willy Tarreau175cebb2019-01-24 10:02:24 +0100776/* marks an error on the stream. It may also update an already closed stream
777 * (e.g. to report an error after an RST was received).
778 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100779static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +0200780{
Willy Tarreau175cebb2019-01-24 10:02:24 +0100781 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau2e43f082017-10-17 08:03:59 +0200782 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +0100783 if (h2s->st < H2_SS_ERROR)
784 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +0100785 if (h2s->cs)
786 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +0200787 }
788}
789
Willy Tarreau7e094452018-12-19 18:08:52 +0100790/* attempt to notify the data layer of recv availability */
791static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
792{
793 struct wait_event *sw;
794
795 if (h2s->recv_wait) {
796 sw = h2s->recv_wait;
797 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200798 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100799 h2s->recv_wait = NULL;
800 }
801}
802
803/* attempt to notify the data layer of send availability */
804static void __maybe_unused h2s_notify_send(struct h2s *h2s)
805{
806 struct wait_event *sw;
807
Willy Tarreauc234ae32019-05-13 17:56:11 +0200808 if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau7e094452018-12-19 18:08:52 +0100809 sw = h2s->send_wait;
810 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchardfd1e96d2019-03-25 14:04:25 +0100811 LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200812 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100813 }
814}
815
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100816/* alerts the data layer, trying to wake it up by all means, following
817 * this sequence :
818 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
819 * - if its subscribed to send, then it's woken up for send
820 * - if it was subscribed to neither, its ->wake() callback is called
821 * It is safe to call this function with a closed stream which doesn't have a
822 * conn_stream anymore.
823 */
824static void __maybe_unused h2s_alert(struct h2s *h2s)
825{
826 if (h2s->recv_wait || h2s->send_wait) {
827 h2s_notify_recv(h2s);
828 h2s_notify_send(h2s);
829 }
830 else if (h2s->cs && h2s->cs->data_cb->wake != NULL)
831 h2s->cs->data_cb->wake(h2s->cs);
832}
833
Willy Tarreaue4820742017-07-27 13:37:23 +0200834/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100835static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +0200836{
837 uint8_t *out = frame;
838
839 *out = len >> 16;
840 write_n16(out + 1, len);
841}
842
Willy Tarreau54c15062017-10-10 17:10:03 +0200843/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
844 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
845 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200846 * available in the buffer's input prior to calling this function. The buffer
847 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +0200848 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100849static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +0200850 const struct buffer *b, int o)
851{
Willy Tarreau591d4452018-06-15 17:21:00 +0200852 readv_bytes(dst, bytes, b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200853}
854
Willy Tarreau1f094672017-11-20 21:27:45 +0100855static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200856{
Willy Tarreau591d4452018-06-15 17:21:00 +0200857 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200858}
859
Willy Tarreau1f094672017-11-20 21:27:45 +0100860static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200861{
Willy Tarreau591d4452018-06-15 17:21:00 +0200862 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200863}
864
Willy Tarreau1f094672017-11-20 21:27:45 +0100865static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200866{
Willy Tarreau591d4452018-06-15 17:21:00 +0200867 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200868}
869
870
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100871/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
872 * The algorithm is not obvious. It turns out that H2 headers are neither
873 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
874 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +0200875 *
876 * b0 b1 b2 b3 b4 b5..b8
877 * +----------+---------+--------+----+----+----------------------+
878 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
879 * +----------+---------+--------+----+----+----------------------+
880 *
881 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
882 * we get the sid properly aligned and ordered, and 16 bits of len properly
883 * ordered as well. The type and flags can be extracted using bit shifts from
884 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200885 * Returns zero if some bytes are missing, otherwise non-zero on success. The
886 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +0200887 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100888static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200889{
890 uint64_t w;
891
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100892 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +0200893 return 0;
894
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100895 w = h2_get_n64(b, o + 1);
896 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +0200897 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
898 h->ff = w >> 32;
899 h->ft = w >> 40;
900 h->len += w >> 48;
901 return 1;
902}
903
904/* skip the next 9 bytes corresponding to the frame header possibly parsed by
905 * h2_peek_frame_hdr() above.
906 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100907static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +0200908{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200909 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +0200910}
911
912/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +0100913static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200914{
915 int ret;
916
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100917 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +0200918 if (ret > 0)
919 h2_skip_frame_hdr(b);
920 return ret;
921}
922
Willy Tarreau00dd0782018-03-01 16:31:34 +0100923/* marks stream <h2s> as CLOSED and decrement the number of active streams for
924 * its connection if the stream was not yet closed. Please use this exclusively
925 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100926 */
Willy Tarreau00dd0782018-03-01 16:31:34 +0100927static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100928{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100929 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100930 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100931 if (!h2s->id)
932 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +0100933 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +0100934 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
935 h2s_notify_recv(h2s);
936 }
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100937 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100938 h2s->st = H2_SS_CLOSED;
939}
940
Willy Tarreau71049cc2018-03-28 13:56:39 +0200941/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
942static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +0100943{
944 h2s_close(h2s);
945 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +0200946 if (b_size(&h2s->rxbuf)) {
947 b_free(&h2s->rxbuf);
948 offer_buffers(NULL, tasks_run_queue);
949 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200950 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100951 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200952 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100953 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -0800954 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200955 * reference left would be in the h2c send_list/fctl_list, and if
956 * we're in it, we're getting out anyway
957 */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100958 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc234ae32019-05-13 17:56:11 +0200959 if (LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau86eded62019-06-14 14:47:49 +0200960 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +0200961 LIST_DEL_INIT(&h2s->sending_list);
962 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200963 tasklet_free(h2s->wait_event.tasklet);
Willy Tarreau0a10de62018-03-01 16:27:53 +0100964 pool_free(pool_head_h2s, h2s);
965}
966
Willy Tarreaua8e49542018-10-03 18:53:55 +0200967/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
968 * stream tree. In case of error, nothing is added and NULL is returned. The
969 * causes of errors can be any failed memory allocation. The caller is
970 * responsible for checking if the connection may support an extra stream
971 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200972 */
Willy Tarreaua8e49542018-10-03 18:53:55 +0200973static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200974{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200975 struct h2s *h2s;
976
Willy Tarreaubafbe012017-11-24 17:34:44 +0100977 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200978 if (!h2s)
979 goto out;
980
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200981 h2s->wait_event.tasklet = tasklet_new();
982 if (!h2s->wait_event.tasklet) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200983 pool_free(pool_head_h2s, h2s);
984 goto out;
985 }
986 h2s->send_wait = NULL;
987 h2s->recv_wait = NULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200988 h2s->wait_event.tasklet->process = h2_deferred_shut;
989 h2s->wait_event.tasklet->context = h2s;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100990 h2s->wait_event.events = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200991 LIST_INIT(&h2s->list);
Olivier Houchardd360ac62019-03-22 17:37:16 +0100992 LIST_INIT(&h2s->sending_list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200993 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +0200994 h2s->cs = NULL;
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200995 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200996 h2s->flags = H2_SF_NONE;
997 h2s->errcode = H2_ERR_NO_ERROR;
998 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200999 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001000 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001001 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001002
1003 if (h2c->flags & H2_CF_IS_BACK) {
1004 h1m_init_req(&h2s->h1m);
1005 h2s->h1m.err_pos = -1; // don't care about errors on the request path
1006 h2s->h1m.flags |= H1_MF_TOLOWER;
1007 } else {
1008 h1m_init_res(&h2s->h1m);
1009 h2s->h1m.err_pos = -1; // don't care about errors on the response path
1010 h2s->h1m.flags |= H1_MF_TOLOWER;
1011 }
1012
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001013 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001014 if (id > 0)
1015 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001016 else
1017 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001018
1019 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001020 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001021 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001022
1023 return h2s;
1024
1025 out_free_h2s:
1026 pool_free(pool_head_h2s, h2s);
1027 out:
1028 return NULL;
1029}
1030
1031/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1032 * case of memory allocation error.
1033 */
1034static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1035{
1036 struct session *sess = h2c->conn->owner;
1037 struct conn_stream *cs;
1038 struct h2s *h2s;
1039
1040 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1041 goto out;
1042
1043 h2s = h2s_new(h2c, id);
1044 if (!h2s)
1045 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001046
1047 cs = cs_new(h2c->conn);
1048 if (!cs)
1049 goto out_close;
1050
Olivier Houchard746fb772018-12-15 19:42:00 +01001051 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001052 h2s->cs = cs;
1053 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001054 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001055
1056 if (stream_create_from_cs(cs) < 0)
1057 goto out_free_cs;
1058
Willy Tarreau590a0512018-09-05 11:56:48 +02001059 /* We want the accept date presented to the next stream to be the one
1060 * we have now, the handshake time to be null (since the next stream
1061 * is not delayed by a handshake), and the idle time to count since
1062 * right now.
1063 */
1064 sess->accept_date = date;
1065 sess->tv_accept = now;
1066 sess->t_handshake = 0;
1067
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001068 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001069 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001070 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001071 return h2s;
1072
1073 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001074 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001075 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001076 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001077 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001078 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001079 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001080 sess_log(sess);
1081 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001082}
1083
Willy Tarreau751f2d02018-10-05 09:35:00 +02001084/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1085 * and returns it, or NULL in case of memory allocation error or if the highest
1086 * possible stream ID was reached.
1087 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001088static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001089{
1090 struct h2s *h2s = NULL;
1091
Willy Tarreau86949782019-01-31 10:42:05 +01001092 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001093 goto out;
1094
Willy Tarreaua80dca82019-01-24 17:08:28 +01001095 if (h2_streams_left(h2c) < 1)
1096 goto out;
1097
Willy Tarreau751f2d02018-10-05 09:35:00 +02001098 /* Defer choosing the ID until we send the first message to create the stream */
1099 h2s = h2s_new(h2c, 0);
1100 if (!h2s)
1101 goto out;
1102
1103 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001104 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001105 cs->ctx = h2s;
1106 h2c->nb_cs++;
1107
Willy Tarreau751f2d02018-10-05 09:35:00 +02001108 out:
1109 return h2s;
1110}
1111
Willy Tarreaube5b7152017-09-25 16:25:39 +02001112/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1113 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1114 * the various settings codes.
1115 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001116static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001117{
1118 struct buffer *res;
1119 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001120 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001121 int mfs;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001122 int ret;
1123
1124 if (h2c_mux_busy(h2c, NULL)) {
1125 h2c->flags |= H2_CF_DEM_MBUSY;
1126 return 0;
1127 }
1128
Willy Tarreaube5b7152017-09-25 16:25:39 +02001129 chunk_init(&buf, buf_data, sizeof(buf_data));
1130 chunk_memcpy(&buf,
1131 "\x00\x00\x00" /* length : 0 for now */
1132 "\x04\x00" /* type : 4 (settings), flags : 0 */
1133 "\x00\x00\x00\x00", /* stream ID : 0 */
1134 9);
1135
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001136 if (h2c->flags & H2_CF_IS_BACK) {
1137 /* send settings_enable_push=0 */
1138 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1139 }
1140
Willy Tarreaube5b7152017-09-25 16:25:39 +02001141 if (h2_settings_header_table_size != 4096) {
1142 char str[6] = "\x00\x01"; /* header_table_size */
1143
1144 write_n32(str + 2, h2_settings_header_table_size);
1145 chunk_memcat(&buf, str, 6);
1146 }
1147
1148 if (h2_settings_initial_window_size != 65535) {
1149 char str[6] = "\x00\x04"; /* initial_window_size */
1150
1151 write_n32(str + 2, h2_settings_initial_window_size);
1152 chunk_memcat(&buf, str, 6);
1153 }
1154
1155 if (h2_settings_max_concurrent_streams != 0) {
1156 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1157
1158 /* Note: 0 means "unlimited" for haproxy's config but not for
1159 * the protocol, so never send this value!
1160 */
1161 write_n32(str + 2, h2_settings_max_concurrent_streams);
1162 chunk_memcat(&buf, str, 6);
1163 }
1164
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001165 mfs = h2_settings_max_frame_size;
1166 if (mfs > global.tune.bufsize)
1167 mfs = global.tune.bufsize;
1168
1169 if (!mfs)
1170 mfs = global.tune.bufsize;
1171
1172 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001173 char str[6] = "\x00\x05"; /* max_frame_size */
1174
1175 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1176 * match bufsize - rewrite size, but at the moment it seems
1177 * that clients don't take care of it.
1178 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001179 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001180 chunk_memcat(&buf, str, 6);
1181 }
1182
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001183 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001184
1185 res = br_tail(h2c->mbuf);
1186 retry:
1187 if (!h2_get_buf(h2c, res)) {
1188 h2c->flags |= H2_CF_MUX_MALLOC;
1189 h2c->flags |= H2_CF_DEM_MROOM;
1190 return 0;
1191 }
1192
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001193 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001194 if (unlikely(ret <= 0)) {
1195 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001196 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1197 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001198 h2c->flags |= H2_CF_MUX_MFULL;
1199 h2c->flags |= H2_CF_DEM_MROOM;
1200 return 0;
1201 }
1202 else {
1203 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1204 return 0;
1205 }
1206 }
1207 return ret;
1208}
1209
Willy Tarreau52eed752017-09-22 15:05:09 +02001210/* Try to receive a connection preface, then upon success try to send our
1211 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1212 * missing data. It may return an error in h2c.
1213 */
1214static int h2c_frt_recv_preface(struct h2c *h2c)
1215{
1216 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001217 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001218
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001219 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001220
1221 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001222 if (ret1 < 0)
1223 sess_log(h2c->conn->owner);
1224
Willy Tarreau52eed752017-09-22 15:05:09 +02001225 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1226 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1227 return 0;
1228 }
1229
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001230 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001231 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001232 b_del(&h2c->dbuf, ret1);
Willy Tarreau52eed752017-09-22 15:05:09 +02001233
Willy Tarreaube5b7152017-09-25 16:25:39 +02001234 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001235}
1236
Willy Tarreau01b44822018-10-03 14:26:37 +02001237/* Try to send a connection preface, then upon success try to send our
1238 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1239 * missing data. It may return an error in h2c.
1240 */
1241static int h2c_bck_send_preface(struct h2c *h2c)
1242{
1243 struct buffer *res;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001244 int ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001245
1246 if (h2c_mux_busy(h2c, NULL)) {
1247 h2c->flags |= H2_CF_DEM_MBUSY;
1248 return 0;
1249 }
1250
Willy Tarreaubcc45952019-05-26 10:05:50 +02001251 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001252 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001253 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001254 h2c->flags |= H2_CF_MUX_MALLOC;
1255 h2c->flags |= H2_CF_DEM_MROOM;
1256 return 0;
1257 }
1258
1259 if (!b_data(res)) {
1260 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001261 ret = b_istput(res, ist(H2_CONN_PREFACE));
1262 if (unlikely(ret <= 0)) {
1263 if (!ret) {
1264 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1265 goto retry;
1266 h2c->flags |= H2_CF_MUX_MFULL;
1267 h2c->flags |= H2_CF_DEM_MROOM;
1268 return 0;
1269 }
1270 else {
1271 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1272 return 0;
1273 }
1274 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001275 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001276 return h2c_send_settings(h2c);
1277}
1278
Willy Tarreau081d4722017-05-16 21:51:05 +02001279/* try to send a GOAWAY frame on the connection to report an error or a graceful
1280 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1281 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1282 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1283 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1284 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1285 * on unrecoverable failure. It will not attempt to send one again in this last
1286 * case so that it is safe to use h2c_error() to report such errors.
1287 */
1288static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1289{
1290 struct buffer *res;
1291 char str[17];
1292 int ret;
1293
1294 if (h2c->flags & H2_CF_GOAWAY_FAILED)
1295 return 1; // claim that it worked
1296
1297 if (h2c_mux_busy(h2c, h2s)) {
1298 if (h2s)
1299 h2s->flags |= H2_SF_BLK_MBUSY;
1300 else
1301 h2c->flags |= H2_CF_DEM_MBUSY;
1302 return 0;
1303 }
1304
Willy Tarreau9c218e72019-05-26 10:08:28 +02001305 /* len: 8, type: 7, flags: none, sid: 0 */
1306 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1307
1308 if (h2c->last_sid < 0)
1309 h2c->last_sid = h2c->max_id;
1310
1311 write_n32(str + 9, h2c->last_sid);
1312 write_n32(str + 13, h2c->errcode);
1313
Willy Tarreaubcc45952019-05-26 10:05:50 +02001314 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001315 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001316 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001317 h2c->flags |= H2_CF_MUX_MALLOC;
1318 if (h2s)
1319 h2s->flags |= H2_SF_BLK_MROOM;
1320 else
1321 h2c->flags |= H2_CF_DEM_MROOM;
1322 return 0;
1323 }
1324
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001325 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001326 if (unlikely(ret <= 0)) {
1327 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001328 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1329 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001330 h2c->flags |= H2_CF_MUX_MFULL;
1331 if (h2s)
1332 h2s->flags |= H2_SF_BLK_MROOM;
1333 else
1334 h2c->flags |= H2_CF_DEM_MROOM;
1335 return 0;
1336 }
1337 else {
1338 /* we cannot report this error using GOAWAY, so we mark
1339 * it and claim a success.
1340 */
1341 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1342 h2c->flags |= H2_CF_GOAWAY_FAILED;
1343 return 1;
1344 }
1345 }
1346 h2c->flags |= H2_CF_GOAWAY_SENT;
1347 return ret;
1348}
1349
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001350/* Try to send an RST_STREAM frame on the connection for the indicated stream
1351 * during mux operations. This stream must be valid and cannot be closed
1352 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1353 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1354 * not yet.
1355 *
1356 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1357 * to write the message, it subscribes the stream to future notifications.
1358 */
1359static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1360{
1361 struct buffer *res;
1362 char str[13];
1363 int ret;
1364
1365 if (!h2s || h2s->st == H2_SS_CLOSED)
1366 return 1;
1367
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001368 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1369 * RST_STREAM in response to a RST_STREAM frame.
1370 */
Willy Tarreaubf9a20b2019-08-06 10:01:40 +02001371 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001372 ret = 1;
1373 goto ignore;
1374 }
1375
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001376 if (h2c_mux_busy(h2c, h2s)) {
1377 h2s->flags |= H2_SF_BLK_MBUSY;
1378 return 0;
1379 }
1380
Willy Tarreau9c218e72019-05-26 10:08:28 +02001381 /* len: 4, type: 3, flags: none */
1382 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1383 write_n32(str + 5, h2s->id);
1384 write_n32(str + 9, h2s->errcode);
1385
Willy Tarreaubcc45952019-05-26 10:05:50 +02001386 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001387 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001388 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001389 h2c->flags |= H2_CF_MUX_MALLOC;
1390 h2s->flags |= H2_SF_BLK_MROOM;
1391 return 0;
1392 }
1393
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001394 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001395 if (unlikely(ret <= 0)) {
1396 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001397 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1398 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001399 h2c->flags |= H2_CF_MUX_MFULL;
1400 h2s->flags |= H2_SF_BLK_MROOM;
1401 return 0;
1402 }
1403 else {
1404 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1405 return 0;
1406 }
1407 }
1408
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001409 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001410 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001411 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001412 return ret;
1413}
1414
1415/* Try to send an RST_STREAM frame on the connection for the stream being
1416 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001417 * error code, even if the stream is one of the dummy ones, and will update
1418 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001419 *
1420 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1421 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001422 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001423 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001424 */
1425static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1426{
1427 struct buffer *res;
1428 char str[13];
1429 int ret;
1430
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001431 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1432 * RST_STREAM in response to a RST_STREAM frame.
1433 */
1434 if (h2c->dft == H2_FT_RST_STREAM) {
1435 ret = 1;
1436 goto ignore;
1437 }
1438
Willy Tarreau27a84c92017-10-17 08:10:17 +02001439 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001440 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001441 return 0;
1442 }
1443
Willy Tarreau9c218e72019-05-26 10:08:28 +02001444 /* len: 4, type: 3, flags: none */
1445 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1446
1447 write_n32(str + 5, h2c->dsi);
1448 write_n32(str + 9, h2s->errcode);
1449
Willy Tarreaubcc45952019-05-26 10:05:50 +02001450 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001451 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001452 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001453 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001454 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001455 return 0;
1456 }
1457
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001458 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001459 if (unlikely(ret <= 0)) {
1460 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001461 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1462 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001463 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001464 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001465 return 0;
1466 }
1467 else {
1468 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1469 return 0;
1470 }
1471 }
1472
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001473 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001474 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001475 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001476 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001477 }
1478
Willy Tarreau27a84c92017-10-17 08:10:17 +02001479 return ret;
1480}
1481
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001482/* try to send an empty DATA frame with the ES flag set to notify about the
1483 * end of stream and match a shutdown(write). If an ES was already sent as
1484 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1485 * on success or zero if nothing was done. In case of lack of room to write the
1486 * message, it subscribes the requesting stream to future notifications.
1487 */
1488static int h2_send_empty_data_es(struct h2s *h2s)
1489{
1490 struct h2c *h2c = h2s->h2c;
1491 struct buffer *res;
1492 char str[9];
1493 int ret;
1494
Willy Tarreau721c9742017-11-07 11:05:42 +01001495 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED)
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001496 return 1;
1497
1498 if (h2c_mux_busy(h2c, h2s)) {
1499 h2s->flags |= H2_SF_BLK_MBUSY;
1500 return 0;
1501 }
1502
Willy Tarreau9c218e72019-05-26 10:08:28 +02001503 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1504 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1505 write_n32(str + 5, h2s->id);
1506
Willy Tarreaubcc45952019-05-26 10:05:50 +02001507 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001508 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001509 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001510 h2c->flags |= H2_CF_MUX_MALLOC;
1511 h2s->flags |= H2_SF_BLK_MROOM;
1512 return 0;
1513 }
1514
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001515 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001516 if (likely(ret > 0)) {
1517 h2s->flags |= H2_SF_ES_SENT;
1518 }
1519 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001520 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1521 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001522 h2c->flags |= H2_CF_MUX_MFULL;
1523 h2s->flags |= H2_SF_BLK_MROOM;
1524 return 0;
1525 }
1526 else {
1527 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1528 return 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001529 }
1530 return ret;
1531}
1532
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001533/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001534 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001535 * is automatically updated accordingly. If the stream is orphaned, it is
1536 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001537 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001538static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001539{
1540 if (!h2s->cs) {
1541 /* this stream was already orphaned */
1542 h2s_destroy(h2s);
1543 return;
1544 }
1545
Christopher Faulet11b10532020-10-08 15:38:41 +02001546 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001547 if (h2s->st == H2_SS_OPEN)
1548 h2s->st = H2_SS_HREM;
1549 else if (h2s->st == H2_SS_HLOC)
1550 h2s_close(h2s);
1551 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001552
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001553 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1554 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1555 h2s->cs->flags |= CS_FL_ERR_PENDING;
1556 if (h2s->cs->flags & CS_FL_EOS)
1557 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001558
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001559 if (h2s->st < H2_SS_ERROR)
1560 h2s->st = H2_SS_ERROR;
1561 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001562
1563 h2s_alert(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001564}
1565
1566/* wake the streams attached to the connection, whose id is greater than <last>
1567 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001568 */
Willy Tarreau23482912019-05-07 15:23:14 +02001569static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001570{
1571 struct eb32_node *node;
1572 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001573
Christopher Fauletf02ca002019-03-07 16:21:34 +01001574 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001575 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1576 while (node) {
1577 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001578 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001579 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001580 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001581
Christopher Fauletf02ca002019-03-07 16:21:34 +01001582 /* Wake all streams with unassigned ID (ID == 0) */
1583 node = eb32_lookup(&h2c->streams_by_id, 0);
1584 while (node) {
1585 h2s = container_of(node, struct h2s, by_id);
1586 if (h2s->id > 0)
1587 break;
1588 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001589 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001590 }
1591}
1592
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001593/* Wake up all blocked streams whose window size has become positive after the
1594 * mux's initial window was adjusted. This should be done after having processed
1595 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001596 */
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001597static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001598{
1599 struct h2s *h2s;
1600 struct eb32_node *node;
1601
Willy Tarreau3421aba2017-07-27 15:41:03 +02001602 node = eb32_first(&h2c->streams_by_id);
1603 while (node) {
1604 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001605 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001606 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreaubda92dd2019-10-02 10:49:59 +02001607 LIST_DEL_INIT(&h2s->list);
1608 if (h2s->send_wait)
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001609 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001610 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001611 node = eb32_next(node);
1612 }
1613}
1614
1615/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1616 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001617 * return an error in h2c. The caller must have already verified frame length
1618 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001619 */
1620static int h2c_handle_settings(struct h2c *h2c)
1621{
1622 unsigned int offset;
1623 int error;
1624
1625 if (h2c->dff & H2_F_SETTINGS_ACK) {
1626 if (h2c->dfl) {
1627 error = H2_ERR_FRAME_SIZE_ERROR;
1628 goto fail;
1629 }
1630 return 1;
1631 }
1632
Willy Tarreau3421aba2017-07-27 15:41:03 +02001633 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001634 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001635 return 0;
1636
1637 /* parse the frame */
1638 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001639 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
1640 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001641
1642 switch (type) {
1643 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
1644 /* we need to update all existing streams with the
1645 * difference from the previous iws.
1646 */
1647 if (arg < 0) { // RFC7540#6.5.2
1648 error = H2_ERR_FLOW_CONTROL_ERROR;
1649 goto fail;
1650 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001651 h2c->miw = arg;
1652 break;
1653 case H2_SETTINGS_MAX_FRAME_SIZE:
1654 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
1655 error = H2_ERR_PROTOCOL_ERROR;
1656 goto fail;
1657 }
1658 h2c->mfs = arg;
1659 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01001660 case H2_SETTINGS_ENABLE_PUSH:
1661 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
1662 error = H2_ERR_PROTOCOL_ERROR;
1663 goto fail;
1664 }
1665 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001666 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
1667 if (h2c->flags & H2_CF_IS_BACK) {
1668 /* the limit is only for the backend; for the frontend it is our limit */
1669 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
1670 arg = h2_settings_max_concurrent_streams;
1671 h2c->streams_limit = arg;
1672 }
1673 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001674 }
1675 }
1676
1677 /* need to ACK this frame now */
1678 h2c->st0 = H2_CS_FRAME_A;
1679 return 1;
1680 fail:
Willy Tarreau21178a52019-10-23 11:06:35 +02001681 if (!(h2c->flags & H2_CF_IS_BACK))
1682 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001683 h2c_error(h2c, error);
1684 return 0;
1685}
1686
1687/* try to send an ACK for a settings frame on the connection. Returns > 0 on
1688 * success or one of the h2_status values.
1689 */
1690static int h2c_ack_settings(struct h2c *h2c)
1691{
1692 struct buffer *res;
1693 char str[9];
1694 int ret = -1;
1695
1696 if (h2c_mux_busy(h2c, NULL)) {
1697 h2c->flags |= H2_CF_DEM_MBUSY;
1698 return 0;
1699 }
1700
Willy Tarreau9c218e72019-05-26 10:08:28 +02001701 memcpy(str,
1702 "\x00\x00\x00" /* length : 0 (no data) */
1703 "\x04" "\x01" /* type : 4, flags : ACK */
1704 "\x00\x00\x00\x00" /* stream ID */, 9);
1705
Willy Tarreaubcc45952019-05-26 10:05:50 +02001706 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001707 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001708 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02001709 h2c->flags |= H2_CF_MUX_MALLOC;
1710 h2c->flags |= H2_CF_DEM_MROOM;
1711 return 0;
1712 }
1713
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001714 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02001715 if (unlikely(ret <= 0)) {
1716 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001717 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1718 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001719 h2c->flags |= H2_CF_MUX_MFULL;
1720 h2c->flags |= H2_CF_DEM_MROOM;
1721 return 0;
1722 }
1723 else {
1724 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1725 return 0;
1726 }
1727 }
1728 return ret;
1729}
1730
Willy Tarreaucf68c782017-10-10 17:11:41 +02001731/* processes a PING frame and schedules an ACK if needed. The caller must pass
1732 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01001733 * missing data. The caller must have already verified frame length
1734 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02001735 */
1736static int h2c_handle_ping(struct h2c *h2c)
1737{
Willy Tarreaucf68c782017-10-10 17:11:41 +02001738 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01001739 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02001740 h2c->st0 = H2_CS_FRAME_A;
1741 return 1;
1742}
1743
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001744/* Try to send a window update for stream id <sid> and value <increment>.
1745 * Returns > 0 on success or zero on missing room or failure. It may return an
1746 * error in h2c.
1747 */
1748static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
1749{
1750 struct buffer *res;
1751 char str[13];
1752 int ret = -1;
1753
1754 if (h2c_mux_busy(h2c, NULL)) {
1755 h2c->flags |= H2_CF_DEM_MBUSY;
1756 return 0;
1757 }
1758
Willy Tarreau9c218e72019-05-26 10:08:28 +02001759 /* length: 4, type: 8, flags: none */
1760 memcpy(str, "\x00\x00\x04\x08\x00", 5);
1761 write_n32(str + 5, sid);
1762 write_n32(str + 9, increment);
1763
Willy Tarreaubcc45952019-05-26 10:05:50 +02001764 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001765 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001766 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001767 h2c->flags |= H2_CF_MUX_MALLOC;
1768 h2c->flags |= H2_CF_DEM_MROOM;
1769 return 0;
1770 }
1771
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001772 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001773 if (unlikely(ret <= 0)) {
1774 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001775 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1776 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001777 h2c->flags |= H2_CF_MUX_MFULL;
1778 h2c->flags |= H2_CF_DEM_MROOM;
1779 return 0;
1780 }
1781 else {
1782 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1783 return 0;
1784 }
1785 }
1786 return ret;
1787}
1788
1789/* try to send pending window update for the connection. It's safe to call it
1790 * with no pending updates. Returns > 0 on success or zero on missing room or
1791 * failure. It may return an error in h2c.
1792 */
1793static int h2c_send_conn_wu(struct h2c *h2c)
1794{
1795 int ret = 1;
1796
1797 if (h2c->rcvd_c <= 0)
1798 return 1;
1799
Willy Tarreau97aaa672018-12-23 09:49:04 +01001800 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
1801 /* increase the advertised connection window to 2G on
1802 * first update.
1803 */
1804 h2c->flags |= H2_CF_WINDOW_OPENED;
1805 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
1806 }
1807
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001808 /* send WU for the connection */
1809 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
1810 if (ret > 0)
1811 h2c->rcvd_c = 0;
1812
1813 return ret;
1814}
1815
1816/* try to send pending window update for the current dmux stream. It's safe to
1817 * call it with no pending updates. Returns > 0 on success or zero on missing
1818 * room or failure. It may return an error in h2c.
1819 */
1820static int h2c_send_strm_wu(struct h2c *h2c)
1821{
1822 int ret = 1;
1823
1824 if (h2c->rcvd_s <= 0)
1825 return 1;
1826
1827 /* send WU for the stream */
1828 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
1829 if (ret > 0)
1830 h2c->rcvd_s = 0;
1831
1832 return ret;
1833}
1834
Willy Tarreaucf68c782017-10-10 17:11:41 +02001835/* try to send an ACK for a ping frame on the connection. Returns > 0 on
1836 * success, 0 on missing data or one of the h2_status values.
1837 */
1838static int h2c_ack_ping(struct h2c *h2c)
1839{
1840 struct buffer *res;
1841 char str[17];
1842 int ret = -1;
1843
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001844 if (b_data(&h2c->dbuf) < 8)
Willy Tarreaucf68c782017-10-10 17:11:41 +02001845 return 0;
1846
1847 if (h2c_mux_busy(h2c, NULL)) {
1848 h2c->flags |= H2_CF_DEM_MBUSY;
1849 return 0;
1850 }
1851
Willy Tarreaucf68c782017-10-10 17:11:41 +02001852 memcpy(str,
1853 "\x00\x00\x08" /* length : 8 (same payload) */
1854 "\x06" "\x01" /* type : 6, flags : ACK */
1855 "\x00\x00\x00\x00" /* stream ID */, 9);
1856
1857 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001858 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02001859
Willy Tarreau9c218e72019-05-26 10:08:28 +02001860 res = br_tail(h2c->mbuf);
1861 retry:
1862 if (!h2_get_buf(h2c, res)) {
1863 h2c->flags |= H2_CF_MUX_MALLOC;
1864 h2c->flags |= H2_CF_DEM_MROOM;
1865 return 0;
1866 }
1867
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001868 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02001869 if (unlikely(ret <= 0)) {
1870 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001871 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1872 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02001873 h2c->flags |= H2_CF_MUX_MFULL;
1874 h2c->flags |= H2_CF_DEM_MROOM;
1875 return 0;
1876 }
1877 else {
1878 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1879 return 0;
1880 }
1881 }
1882 return ret;
1883}
1884
Willy Tarreau26f95952017-07-27 17:18:30 +02001885/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
1886 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01001887 * h2c or h2s. The caller must have already verified frame length and stream ID
1888 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02001889 */
1890static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
1891{
1892 int32_t inc;
1893 int error;
1894
Willy Tarreau26f95952017-07-27 17:18:30 +02001895 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001896 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau26f95952017-07-27 17:18:30 +02001897 return 0;
1898
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001899 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02001900
1901 if (h2c->dsi != 0) {
1902 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02001903
1904 /* it's not an error to receive WU on a closed stream */
1905 if (h2s->st == H2_SS_CLOSED)
1906 return 1;
1907
1908 if (!inc) {
1909 error = H2_ERR_PROTOCOL_ERROR;
1910 goto strm_err;
1911 }
1912
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001913 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001914 error = H2_ERR_FLOW_CONTROL_ERROR;
1915 goto strm_err;
1916 }
1917
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001918 h2s->sws += inc;
1919 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001920 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreaubda92dd2019-10-02 10:49:59 +02001921 LIST_DEL_INIT(&h2s->list);
1922 if (h2s->send_wait)
Olivier Houcharddddfe312018-10-10 18:51:00 +02001923 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02001924 }
1925 }
1926 else {
1927 /* connection window update */
1928 if (!inc) {
1929 error = H2_ERR_PROTOCOL_ERROR;
1930 goto conn_err;
1931 }
1932
1933 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
1934 error = H2_ERR_FLOW_CONTROL_ERROR;
1935 goto conn_err;
1936 }
1937
1938 h2c->mws += inc;
1939 }
1940
1941 return 1;
1942
1943 conn_err:
1944 h2c_error(h2c, error);
1945 return 0;
1946
1947 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01001948 h2s_error(h2s, error);
1949 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau26f95952017-07-27 17:18:30 +02001950 return 0;
1951}
1952
Willy Tarreaue96b0922017-10-30 00:28:29 +01001953/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01001954 * the last ID. Returns > 0 on success or zero on missing data. The caller must
1955 * have already verified frame length and stream ID validity. Described in
1956 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01001957 */
1958static int h2c_handle_goaway(struct h2c *h2c)
1959{
Willy Tarreaue96b0922017-10-30 00:28:29 +01001960 int last;
1961
Willy Tarreaue96b0922017-10-30 00:28:29 +01001962 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001963 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaue96b0922017-10-30 00:28:29 +01001964 return 0;
1965
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001966 last = h2_get_n32(&h2c->dbuf, 0);
1967 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01001968 if (h2c->last_sid < 0)
1969 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02001970 h2_wake_some_streams(h2c, last);
Willy Tarreaue96b0922017-10-30 00:28:29 +01001971 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01001972}
1973
Willy Tarreau92153fc2017-12-03 19:46:19 +01001974/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01001975 * invalid. Returns > 0 on success or zero on missing data. It may return an
1976 * error in h2c. The caller must have already verified frame length and stream
1977 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01001978 */
1979static int h2c_handle_priority(struct h2c *h2c)
1980{
Willy Tarreau92153fc2017-12-03 19:46:19 +01001981 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001982 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau92153fc2017-12-03 19:46:19 +01001983 return 0;
1984
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001985 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01001986 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01001987 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1988 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001989 }
1990 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001991}
1992
Willy Tarreaucd234e92017-08-18 10:59:39 +02001993/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01001994 * Returns > 0 on success or zero on missing data. The caller must have already
1995 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02001996 */
1997static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
1998{
Willy Tarreaucd234e92017-08-18 10:59:39 +02001999 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002000 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaucd234e92017-08-18 10:59:39 +02002001 return 0;
2002
2003 /* late RST, already handled */
2004 if (h2s->st == H2_SS_CLOSED)
2005 return 1;
2006
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002007 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002008 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002009
2010 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002011 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002012 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002013 }
2014
2015 h2s->flags |= H2_SF_RST_RCVD;
2016 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002017}
2018
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002019/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2020 * It may return an error in h2c or h2s. The caller must consider that the
2021 * return value is the new h2s in case one was allocated (most common case).
2022 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002023 * errors here are reported as connection errors since it's impossible to
2024 * recover from such errors after the compression context has been altered.
2025 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002026static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002027{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002028 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002029 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002030 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002031 int error;
2032
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002033 if (!b_size(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002034 return NULL; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002035
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002036 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002037 return NULL; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002038
2039 /* now either the frame is complete or the buffer is complete */
2040 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002041 /* The stream exists/existed, this must be a trailers frame */
2042 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002043 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2044 /* unrecoverable error ? */
2045 if (h2c->st0 >= H2_CS_ERROR)
2046 goto out;
2047
2048 if (error == 0)
2049 goto out; // missing data
2050
2051 if (error < 0) {
2052 /* Failed to decode this frame (e.g. too large request)
2053 * but the HPACK decompressor is still synchronized.
2054 */
2055 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2056 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002057 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002058 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002059 goto done;
2060 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002061 /* the connection was already killed by an RST, let's consume
2062 * the data and send another RST.
2063 */
2064 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2065 h2s = (struct h2s*)h2_error_stream;
2066 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002067 }
2068 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2069 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2070 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002071 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002072 goto conn_err;
2073 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002074 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2075 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002076
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002077 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002078
Willy Tarreau25919232019-01-03 14:48:18 +01002079 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002080 if (h2c->st0 >= H2_CS_ERROR)
2081 goto out;
2082
Willy Tarreau25919232019-01-03 14:48:18 +01002083 if (error <= 0) {
2084 if (error == 0)
2085 goto out; // missing data
2086
2087 /* Failed to decode this stream (e.g. too large request)
2088 * but the HPACK decompressor is still synchronized.
2089 */
2090 h2s = (struct h2s*)h2_error_stream;
2091 goto send_rst;
2092 }
2093
Willy Tarreau22de8d32018-09-05 19:55:58 +02002094 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002095 * positively from h2c_frt_stream_new(), the stream will report the error,
2096 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002097 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002098 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002099 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002100 h2s = (struct h2s*)h2_refused_stream;
2101 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002102 }
2103
2104 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002105 h2s->rxbuf = rxbuf;
2106 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002107 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002108
Willy Tarreau88d138e2019-01-02 19:38:14 +01002109 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002110 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002111 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002112
2113 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002114 if (h2s->st == H2_SS_OPEN)
2115 h2s->st = H2_SS_HREM;
2116 else
2117 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002118 }
2119
Willy Tarreau3a429f02019-01-03 11:41:50 +01002120 /* update the max stream ID if the request is being processed */
2121 if (h2s->id > h2c->max_id)
2122 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002123
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002124 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002125
2126 conn_err:
2127 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002128 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002129
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002130 out:
2131 h2_release_buf(h2c, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002132 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002133
2134 send_rst:
2135 /* make the demux send an RST for the current stream. We may only
2136 * do this if we're certain that the HEADERS frame was properly
2137 * decompressed so that the HPACK decoder is still kept up to date.
2138 */
2139 h2_release_buf(h2c, &rxbuf);
2140 h2c->st0 = H2_CS_FRAME_E;
2141 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002142}
2143
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002144/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2145 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2146 * errors here are reported as connection errors since it's impossible to
2147 * recover from such errors after the compression context has been altered.
2148 */
2149static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2150{
Christopher Faulet96b88f22019-09-23 15:28:20 +02002151 struct buffer rxbuf = BUF_NULL;
2152 unsigned long long body_len = 0;
2153 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002154 int error;
2155
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002156 if (!b_size(&h2c->dbuf))
2157 return NULL; // empty buffer
2158
2159 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
2160 return NULL; // incomplete frame
2161
Christopher Faulet96b88f22019-09-23 15:28:20 +02002162 if (h2s->st != H2_SS_CLOSED) {
2163 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2164 }
2165 else {
2166 /* the connection was already killed by an RST, let's consume
2167 * the data and send another RST.
2168 */
2169 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Faulet03427052019-09-26 16:19:13 +02002170 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet96b88f22019-09-23 15:28:20 +02002171 h2c->st0 = H2_CS_FRAME_E;
2172 goto send_rst;
2173 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002174
Willy Tarreau25919232019-01-03 14:48:18 +01002175 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002176 if (h2c->st0 >= H2_CS_ERROR)
2177 return NULL;
2178
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002179 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2180 /* RFC7540#5.1 */
2181 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2182 h2c->st0 = H2_CS_FRAME_E;
2183 return NULL;
2184 }
2185
Willy Tarreau25919232019-01-03 14:48:18 +01002186 if (error <= 0) {
2187 if (error == 0)
2188 return NULL; // missing data
2189
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002190 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002191 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002192 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau25919232019-01-03 14:48:18 +01002193 return NULL;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002194 }
2195
Christopher Fauletfa922f02019-05-07 10:55:17 +02002196 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002197 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002198
Willy Tarreau927b88b2019-03-04 08:03:25 +01002199 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002200 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002201 else if (h2s->flags & H2_SF_ES_RCVD) {
2202 if (h2s->st == H2_SS_OPEN)
2203 h2s->st = H2_SS_HREM;
2204 else if (h2s->st == H2_SS_HLOC)
2205 h2s_close(h2s);
2206 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002207
2208 return h2s;
Christopher Faulet96b88f22019-09-23 15:28:20 +02002209
2210 send_rst:
2211 /* make the demux send an RST for the current stream. We may only
2212 * do this if we're certain that the HEADERS frame was properly
2213 * decompressed so that the HPACK decoder is still kept up to date.
2214 */
2215 h2_release_buf(h2c, &rxbuf);
2216 h2c->st0 = H2_CS_FRAME_E;
2217 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002218}
2219
Willy Tarreau454f9052017-10-26 19:40:35 +02002220/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2221 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2222 */
2223static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2224{
2225 int error;
2226
2227 /* note that empty DATA frames are perfectly valid and sometimes used
2228 * to signal an end of stream (with the ES flag).
2229 */
2230
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002231 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau454f9052017-10-26 19:40:35 +02002232 return 0; // empty buffer
2233
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002234 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau454f9052017-10-26 19:40:35 +02002235 return 0; // incomplete frame
2236
2237 /* now either the frame is complete or the buffer is complete */
2238
Willy Tarreau454f9052017-10-26 19:40:35 +02002239 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2240 /* RFC7540#6.1 */
2241 error = H2_ERR_STREAM_CLOSED;
2242 goto strm_err;
2243 }
2244
Christopher Faulet4fb65f42019-06-19 09:25:58 +02002245 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002246 /* RFC7540#8.1.2 */
2247 error = H2_ERR_PROTOCOL_ERROR;
2248 goto strm_err;
2249 }
2250
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002251 if (!h2_frt_transfer_data(h2s))
2252 return 0;
2253
Willy Tarreau454f9052017-10-26 19:40:35 +02002254 /* call the upper layers to process the frame, then let the upper layer
2255 * notify the stream about any change.
2256 */
2257 if (!h2s->cs) {
Willy Tarreauc1a29652019-08-06 10:11:02 +02002258 /* The upper layer has already closed, this may happen on
2259 * 4xx/redirects during POST, or when receiving a response
2260 * from an H2 server after the client has aborted.
2261 */
2262 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002263 goto strm_err;
2264 }
2265
Willy Tarreau8f650c32017-11-21 19:36:21 +01002266 if (h2c->st0 >= H2_CS_ERROR)
2267 return 0;
2268
Willy Tarreau721c9742017-11-07 11:05:42 +01002269 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002270 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002271 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002272 }
2273
2274 /* check for completion : the callee will change this to FRAME_A or
2275 * FRAME_H once done.
2276 */
2277 if (h2c->st0 == H2_CS_FRAME_P)
2278 return 0;
2279
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002280 /* last frame */
2281 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002282 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002283 if (h2s->st == H2_SS_OPEN)
2284 h2s->st = H2_SS_HREM;
2285 else
2286 h2s_close(h2s);
2287
Willy Tarreau1915ca22019-01-24 11:49:37 +01002288 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2289 /* RFC7540#8.1.2 */
2290 error = H2_ERR_PROTOCOL_ERROR;
2291 goto strm_err;
2292 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002293 }
2294
Willy Tarreau454f9052017-10-26 19:40:35 +02002295 return 1;
2296
Willy Tarreau454f9052017-10-26 19:40:35 +02002297 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002298 h2s_error(h2s, error);
2299 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002300 return 0;
2301}
2302
Willy Tarreaubc933932017-10-09 16:21:43 +02002303/* process Rx frames to be demultiplexed */
2304static void h2_process_demux(struct h2c *h2c)
2305{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002306 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002307 struct h2_fh hdr;
2308 unsigned int padlen = 0;
Willy Tarreau5a9c8752019-08-02 07:52:08 +02002309 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002310
Willy Tarreau081d4722017-05-16 21:51:05 +02002311 if (h2c->st0 >= H2_CS_ERROR)
2312 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002313
2314 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2315 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau01b44822018-10-03 14:26:37 +02002316 if (h2c->flags & H2_CF_IS_BACK)
2317 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002318 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2319 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002320 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau52eed752017-09-22 15:05:09 +02002321 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002322 sess_log(h2c->conn->owner);
2323 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002324 goto fail;
2325 }
2326
2327 h2c->max_id = 0;
2328 h2c->st0 = H2_CS_SETTINGS1;
2329 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002330
2331 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002332 /* ensure that what is pending is a valid SETTINGS frame
2333 * without an ACK.
2334 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002335 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002336 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002337 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002338 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau21178a52019-10-23 11:06:35 +02002339 if (!(h2c->flags & H2_CF_IS_BACK))
2340 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002341 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002342 goto fail;
2343 }
2344
2345 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2346 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2347 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2348 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau21178a52019-10-23 11:06:35 +02002349 if (!(h2c->flags & H2_CF_IS_BACK))
2350 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002351 goto fail;
2352 }
2353
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002354 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002355 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2356 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2357 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau21178a52019-10-23 11:06:35 +02002358 if (!(h2c->flags & H2_CF_IS_BACK))
2359 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002360 goto fail;
2361 }
2362
Willy Tarreau3bf69182018-12-21 15:34:50 +01002363 /* that's OK, switch to FRAME_P to process it. This is
2364 * a SETTINGS frame whose header has already been
2365 * deleted above.
2366 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002367 padlen = 0;
2368 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002369 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002370 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002371
2372 /* process as many incoming frames as possible below */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002373 while (b_data(&h2c->dbuf)) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002374 int ret = 0;
2375
2376 if (h2c->st0 >= H2_CS_ERROR)
2377 break;
2378
2379 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreauab3ebbc2019-08-06 15:49:51 +02002380 h2c->rcvd_s = 0;
2381
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002382 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002383 break;
2384
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002385 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002386 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002387 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02002388 /* only log if no other stream can report the error */
2389 sess_log(h2c->conn->owner);
2390 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002391 break;
2392 }
2393
Christopher Faulet3d574a52019-06-18 12:22:38 +02002394 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002395 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2396 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2397 * we read the pad length and drop it from the remaining
2398 * payload (one byte + the 9 remaining ones = 10 total
2399 * removed), so we have a frame payload starting after the
2400 * pad len. Flow controlled frames (DATA) also count the
2401 * padlen in the flow control, so it must be adjusted.
2402 */
2403 if (hdr.len < 1) {
2404 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002405 if (!(h2c->flags & H2_CF_IS_BACK))
2406 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01002407 goto fail;
2408 }
2409 hdr.len--;
2410
2411 if (b_data(&h2c->dbuf) < 10)
2412 break; // missing padlen
2413
2414 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
2415
2416 if (padlen > hdr.len) {
2417 /* RFC7540#6.1 : pad length = length of
2418 * frame payload or greater => error.
2419 */
2420 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002421 if (!(h2c->flags & H2_CF_IS_BACK))
2422 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01002423 goto fail;
2424 }
2425
2426 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
2427 h2c->rcvd_c++;
2428 h2c->rcvd_s++;
2429 }
2430 b_del(&h2c->dbuf, 1);
2431 }
2432 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002433
2434 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002435 h2c->dfl = hdr.len;
2436 h2c->dsi = hdr.sid;
2437 h2c->dft = hdr.ft;
2438 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002439 h2c->dpl = padlen;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002440 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002441
2442 /* check for minimum basic frame format validity */
2443 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
2444 if (ret != H2_ERR_NO_ERROR) {
2445 h2c_error(h2c, ret);
Willy Tarreau21178a52019-10-23 11:06:35 +02002446 if (!(h2c->flags & H2_CF_IS_BACK))
2447 sess_log(h2c->conn->owner);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002448 goto fail;
2449 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002450 }
2451
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002452 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
2453 * H2_CS_FRAME_P indicates an incomplete previous operation
2454 * (most often the first attempt) and requires some validity
2455 * checks for the frame and the current state. The two other
2456 * ones are set after completion (or abortion) and must skip
2457 * validity checks.
2458 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002459 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
2460
Willy Tarreau567beb82018-12-18 16:52:44 +01002461 if (tmp_h2s != h2s && h2s && h2s->cs &&
2462 (b_data(&h2s->rxbuf) ||
Christopher Faulet11b10532020-10-08 15:38:41 +02002463 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002464 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002465 (h2s->flags & H2_SF_ES_RCVD) ||
2466 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002467 /* we may have to signal the upper layers */
2468 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002469 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002470 }
2471 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002472
Willy Tarreaud7901432017-12-29 11:34:40 +01002473 if (h2c->st0 == H2_CS_FRAME_E)
2474 goto strm_err;
2475
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002476 if (h2c->st0 == H2_CS_FRAME_A)
2477 goto valid_frame_type;
2478
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002479 if (h2s->st == H2_SS_IDLE &&
2480 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2481 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2482 * this state MUST be treated as a connection error
2483 */
2484 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002485 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02002486 /* only log if no other stream can report the error */
2487 sess_log(h2c->conn->owner);
2488 }
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002489 break;
2490 }
2491
Willy Tarreau85ee6e82019-11-24 14:57:53 +01002492 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2493 /* only PUSH_PROMISE would be permitted here */
2494 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2495 break;
2496 }
2497
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002498 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2499 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2500 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002501 * this state MUST be treated as a stream error.
2502 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2503 * PUSH_PROMISE/CONTINUATION cause connection errors.
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002504 */
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002505 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2506 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2507 else
2508 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002509 goto strm_err;
2510 }
2511
Willy Tarreauab837502017-12-27 15:07:30 +01002512 /* Below the management of frames received in closed state is a
2513 * bit hackish because the spec makes strong differences between
2514 * streams closed by receiving RST, sending RST, and seeing ES
2515 * in both directions. In addition to this, the creation of a
2516 * new stream reusing the identifier of a closed one will be
2517 * detected here. Given that we cannot keep track of all closed
2518 * streams forever, we consider that unknown closed streams were
2519 * closed on RST received, which allows us to respond with an
2520 * RST without breaking the connection (eg: to abort a transfer).
2521 * Some frames have to be silently ignored as well.
2522 */
2523 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
Willy Tarreau3ad5d312019-01-29 18:33:26 +01002524 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreauab837502017-12-27 15:07:30 +01002525 /* #5.1.1: The identifier of a newly
2526 * established stream MUST be numerically
2527 * greater than all streams that the initiating
2528 * endpoint has opened or reserved. This
2529 * governs streams that are opened using a
2530 * HEADERS frame and streams that are reserved
2531 * using PUSH_PROMISE. An endpoint that
2532 * receives an unexpected stream identifier
2533 * MUST respond with a connection error.
2534 */
2535 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2536 goto strm_err;
2537 }
2538
Willy Tarreaueb5be9d2019-09-26 08:47:15 +02002539 if (h2s->flags & H2_SF_RST_RCVD &&
2540 !(h2_ft_bit(h2c->dft) & (H2_FT_HDR_MASK | H2_FT_RST_STREAM_BIT | H2_FT_PRIORITY_BIT | H2_FT_WINDOW_UPDATE_BIT))) {
Willy Tarreauab837502017-12-27 15:07:30 +01002541 /* RFC7540#5.1:closed: an endpoint that
2542 * receives any frame other than PRIORITY after
2543 * receiving a RST_STREAM MUST treat that as a
2544 * stream error of type STREAM_CLOSED.
2545 *
2546 * Note that old streams fall into this category
2547 * and will lead to an RST being sent.
Willy Tarreau8d9ac3e2019-01-30 16:58:30 +01002548 *
2549 * However, we cannot generalize this to all frame types. Those
2550 * carrying compression state must still be processed before
2551 * being dropped or we'll desynchronize the decoder. This can
2552 * happen with request trailers received after sending an
2553 * RST_STREAM, or with header/trailers responses received after
2554 * sending RST_STREAM (aborted stream).
Willy Tarreaueb5be9d2019-09-26 08:47:15 +02002555 *
2556 * In addition, since our CLOSED streams always carry the
2557 * RST_RCVD bit, we don't want to accidently catch valid
2558 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreauab837502017-12-27 15:07:30 +01002559 */
2560 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2561 h2c->st0 = H2_CS_FRAME_E;
2562 goto strm_err;
2563 }
2564
2565 /* RFC7540#5.1:closed: if this state is reached as a
2566 * result of sending a RST_STREAM frame, the peer that
2567 * receives the RST_STREAM might have already sent
2568 * frames on the stream that cannot be withdrawn. An
2569 * endpoint MUST ignore frames that it receives on
2570 * closed streams after it has sent a RST_STREAM
2571 * frame. An endpoint MAY choose to limit the period
2572 * over which it ignores frames and treat frames that
2573 * arrive after this time as being in error.
2574 */
Willy Tarreau24ff1f82019-01-30 19:20:09 +01002575 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
Willy Tarreauab837502017-12-27 15:07:30 +01002576 /* RFC7540#5.1:closed: any frame other than
2577 * PRIO/WU/RST in this state MUST be treated as
2578 * a connection error
2579 */
2580 if (h2c->dft != H2_FT_RST_STREAM &&
2581 h2c->dft != H2_FT_PRIORITY &&
2582 h2c->dft != H2_FT_WINDOW_UPDATE) {
2583 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2584 goto strm_err;
2585 }
2586 }
2587 }
2588
Willy Tarreauc0da1962017-10-30 18:38:00 +01002589#if 0
2590 // problem below: it is not possible to completely ignore such
2591 // streams as we need to maintain the compression state as well
2592 // and for this we need to completely process these frames (eg:
2593 // HEADERS frames) as well as counting DATA frames to emit
2594 // proper WINDOW UPDATES and ensure the connection doesn't stall.
2595 // This is a typical case of layer violation where the
2596 // transported contents are critical to the connection's
2597 // validity and must be ignored at the same time :-(
2598
2599 /* graceful shutdown, ignore streams whose ID is higher than
2600 * the one advertised in GOAWAY. RFC7540#6.8.
2601 */
2602 if (unlikely(h2c->last_sid >= 0) && h2c->dsi > h2c->last_sid) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002603 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2604 b_del(&h2c->dbuf, ret);
Willy Tarreauc0da1962017-10-30 18:38:00 +01002605 h2c->dfl -= ret;
2606 ret = h2c->dfl == 0;
2607 goto strm_err;
2608 }
2609#endif
2610
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002611 valid_frame_type:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002612 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002613 case H2_FT_SETTINGS:
2614 if (h2c->st0 == H2_CS_FRAME_P)
2615 ret = h2c_handle_settings(h2c);
2616
2617 if (h2c->st0 == H2_CS_FRAME_A)
2618 ret = h2c_ack_settings(h2c);
2619 break;
2620
Willy Tarreaucf68c782017-10-10 17:11:41 +02002621 case H2_FT_PING:
2622 if (h2c->st0 == H2_CS_FRAME_P)
2623 ret = h2c_handle_ping(h2c);
2624
2625 if (h2c->st0 == H2_CS_FRAME_A)
2626 ret = h2c_ack_ping(h2c);
2627 break;
2628
Willy Tarreau26f95952017-07-27 17:18:30 +02002629 case H2_FT_WINDOW_UPDATE:
2630 if (h2c->st0 == H2_CS_FRAME_P)
2631 ret = h2c_handle_window_update(h2c, h2s);
2632 break;
2633
Willy Tarreau61290ec2017-10-17 08:19:21 +02002634 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01002635 /* RFC7540#6.10: CONTINUATION may only be preceeded by
2636 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
2637 * frames' parsers consume all following CONTINUATION
2638 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02002639 */
Willy Tarreauea18f862018-12-22 20:19:26 +01002640 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002641 if (!(h2c->flags & H2_CF_IS_BACK))
2642 sess_log(h2c->conn->owner);
Willy Tarreauea18f862018-12-22 20:19:26 +01002643 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02002644
Willy Tarreau13278b42017-10-13 19:23:14 +02002645 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002646 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002647 if (h2c->flags & H2_CF_IS_BACK)
2648 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
2649 else
2650 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002651 if (tmp_h2s) {
2652 h2s = tmp_h2s;
2653 ret = 1;
2654 }
2655 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002656 break;
2657
Willy Tarreau454f9052017-10-26 19:40:35 +02002658 case H2_FT_DATA:
2659 if (h2c->st0 == H2_CS_FRAME_P)
2660 ret = h2c_frt_handle_data(h2c, h2s);
2661
2662 if (h2c->st0 == H2_CS_FRAME_A)
2663 ret = h2c_send_strm_wu(h2c);
2664 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002665
Willy Tarreau92153fc2017-12-03 19:46:19 +01002666 case H2_FT_PRIORITY:
2667 if (h2c->st0 == H2_CS_FRAME_P)
2668 ret = h2c_handle_priority(h2c);
2669 break;
2670
Willy Tarreaucd234e92017-08-18 10:59:39 +02002671 case H2_FT_RST_STREAM:
2672 if (h2c->st0 == H2_CS_FRAME_P)
2673 ret = h2c_handle_rst_stream(h2c, h2s);
2674 break;
2675
Willy Tarreaue96b0922017-10-30 00:28:29 +01002676 case H2_FT_GOAWAY:
2677 if (h2c->st0 == H2_CS_FRAME_P)
2678 ret = h2c_handle_goaway(h2c);
2679 break;
2680
Willy Tarreau1c661982017-10-30 13:52:01 +01002681 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02002682 default:
2683 /* drop frames that we ignore. They may be larger than
2684 * the buffer so we drain all of their contents until
2685 * we reach the end.
2686 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002687 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2688 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002689 h2c->dfl -= ret;
2690 ret = h2c->dfl == 0;
2691 }
2692
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002693 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01002694 /* We may have to send an RST if not done yet */
2695 if (h2s->st == H2_SS_ERROR)
2696 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002697
Willy Tarreaua20a5192017-12-27 11:02:06 +01002698 if (h2c->st0 == H2_CS_FRAME_E)
2699 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002700
Willy Tarreau7e98c052017-10-10 15:56:59 +02002701 /* error or missing data condition met above ? */
Willy Tarreau3b94d982021-01-20 10:53:13 +01002702 if (ret <= 0) {
2703 if (h2c->flags & H2_CF_RCVD_SHUT)
2704 h2c->flags |= H2_CF_END_REACHED;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002705 break;
Willy Tarreau3b94d982021-01-20 10:53:13 +01002706 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002707
2708 if (h2c->st0 != H2_CS_FRAME_H) {
Christopher Faulete12a26f2019-09-26 16:38:28 +02002709 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2710 b_del(&h2c->dbuf, ret);
2711 h2c->dfl -= ret;
2712 if (!h2c->dfl)
2713 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002714 }
2715 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002716
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002717 if (h2c->rcvd_c > 0 &&
2718 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM)))
2719 h2c_send_conn_wu(h2c);
2720
Willy Tarreau3b94d982021-01-20 10:53:13 +01002721 done:
Willy Tarreau567beb82018-12-18 16:52:44 +01002722 if (h2s && h2s->cs &&
2723 (b_data(&h2s->rxbuf) ||
Christopher Faulet11b10532020-10-08 15:38:41 +02002724 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002725 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002726 (h2s->flags & H2_SF_ES_RCVD) ||
2727 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002728 /* we may have to signal the upper layers */
2729 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002730 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002731 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002732
Willy Tarreau5a9c8752019-08-02 07:52:08 +02002733 if (old_iw != h2c->miw)
2734 h2c_unblock_sfctl(h2c);
2735
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02002736 h2c_restart_reading(h2c, 0);
Willy Tarreau3b94d982021-01-20 10:53:13 +01002737 return;
2738
2739 fail:
2740 /* we can go here on missing data, blocked response or error, but we
2741 * need to check if we've met a short read condition.
2742 */
2743 if (h2c->flags & H2_CF_RCVD_SHUT)
2744 h2c->flags |= H2_CF_END_REACHED;
2745 goto done;
Willy Tarreaubc933932017-10-09 16:21:43 +02002746}
2747
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002748/* resume each h2s eligible for sending in list head <head> */
2749static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
2750{
2751 struct h2s *h2s, *h2s_back;
2752
2753 list_for_each_entry_safe(h2s, h2s_back, head, list) {
2754 if (h2c->mws <= 0 ||
2755 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
2756 h2c->st0 >= H2_CS_ERROR)
2757 break;
2758
2759 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreaud4e72e22020-01-10 18:20:15 +01002760
2761 if (LIST_ADDED(&h2s->sending_list))
2762 continue;
2763
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002764 /* For some reason, the upper layer failed to subscribe again,
2765 * so remove it from the send_list
2766 */
2767 if (!h2s->send_wait) {
2768 LIST_DEL_INIT(&h2s->list);
2769 continue;
2770 }
2771
2772 h2s->send_wait->events &= ~SUB_RETRY_SEND;
2773 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
2774 tasklet_wakeup(h2s->send_wait->tasklet);
2775 }
2776}
2777
Willy Tarreaubc933932017-10-09 16:21:43 +02002778/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
2779 * the end.
2780 */
2781static int h2_process_mux(struct h2c *h2c)
2782{
Willy Tarreau01b44822018-10-03 14:26:37 +02002783 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2784 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
2785 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
2786 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau21178a52019-10-23 11:06:35 +02002787 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02002788 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02002789 goto fail;
2790 }
2791 h2c->st0 = H2_CS_SETTINGS1;
2792 }
2793 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01002794 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau01b44822018-10-03 14:26:37 +02002795 return 1;
2796 }
2797
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002798 /* start by sending possibly pending window updates */
Willy Tarreau9c497c22019-08-06 15:39:32 +02002799 if (h2c->rcvd_s > 0 &&
2800 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2801 h2c_send_strm_wu(h2c) < 0)
2802 goto fail;
2803
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002804 if (h2c->rcvd_c > 0 &&
2805 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2806 h2c_send_conn_wu(h2c) < 0)
2807 goto fail;
2808
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002809 /* First we always process the flow control list because the streams
2810 * waiting there were already elected for immediate emission but were
2811 * blocked just on this.
2812 */
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002813 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
2814 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002815
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002816 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01002817 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02002818 if (h2c->st0 == H2_CS_ERROR) {
2819 if (h2c->max_id >= 0) {
2820 h2c_send_goaway_error(h2c, NULL);
2821 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
2822 return 0;
2823 }
2824
2825 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
2826 }
2827 return 1;
2828 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002829 return (1);
Willy Tarreaubc933932017-10-09 16:21:43 +02002830}
2831
Willy Tarreau62f52692017-10-08 23:01:42 +02002832
Willy Tarreau479998a2018-11-18 06:30:59 +01002833/* Attempt to read data, and subscribe if none available.
2834 * The function returns 1 if data has been received, otherwise zero.
2835 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002836static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002837{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002838 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002839 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002840 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02002841 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002842
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002843 if (h2c->wait_event.events & SUB_RETRY_RECV)
Olivier Houchard81a15af2018-10-19 17:26:49 +02002844 return (b_data(&h2c->dbuf));
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002845
Willy Tarreau315d8072017-12-10 22:17:57 +01002846 if (!h2_recv_allowed(h2c))
Olivier Houchard81a15af2018-10-19 17:26:49 +02002847 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002848
Willy Tarreau44e973f2018-03-01 17:49:30 +01002849 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002850 if (!buf) {
2851 h2c->flags |= H2_CF_DEM_DALLOC;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002852 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002853 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002854
Willy Tarreau3b94d982021-01-20 10:53:13 +01002855 if (h2c->flags & H2_CF_RCVD_SHUT)
2856 return 0;
2857
Olivier Houchard7505f942018-08-21 18:10:44 +02002858 do {
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002859 b_realign_if_empty(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01002860 if (!b_data(buf) && (h2c->proxy->options2 & PR_O2_USE_HTX)) {
2861 /* HTX in use : try to pre-align the buffer like the
2862 * rxbufs will be to optimize memory copies. We'll make
2863 * sure that the frame header lands at the end of the
2864 * HTX block to alias it upon recv. We cannot use the
2865 * head because rcv_buf() will realign the buffer if
2866 * it's empty. Thus we cheat and pretend we already
2867 * have a few bytes there.
2868 */
2869 max = buf_room_for_htx_data(buf) + 9;
Willy Tarreauc0960d12018-12-14 10:59:15 +01002870 buf->head = sizeof(struct htx) - 9;
Willy Tarreau2a59e872018-12-12 08:23:47 +01002871 }
2872 else
2873 max = b_room(buf);
2874
Olivier Houchard7505f942018-08-21 18:10:44 +02002875 if (max)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002876 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0);
Olivier Houchard7505f942018-08-21 18:10:44 +02002877 else
2878 ret = 0;
2879 } while (ret > 0);
Willy Tarreaua2af5122017-10-09 11:56:46 +02002880
Willy Tarreaue70050e2021-02-05 11:41:46 +01002881 if (max && !ret) {
Willy Tarreau3b94d982021-01-20 10:53:13 +01002882 if (conn_xprt_read0_pending(h2c->conn))
2883 h2c->flags |= H2_CF_RCVD_SHUT;
Willy Tarreaue70050e2021-02-05 11:41:46 +01002884 else if (h2_recv_allowed(h2c))
Willy Tarreau3b94d982021-01-20 10:53:13 +01002885 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
2886 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02002887
Olivier Houcharda1411e62018-08-17 18:42:48 +02002888 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01002889 h2_release_buf(h2c, &h2c->dbuf);
Olivier Houchard46677732018-11-29 17:06:17 +01002890 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002891 }
2892
Willy Tarreaub7b5fe12018-06-18 13:33:09 +02002893 if (b_data(buf) == buf->size)
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002894 h2c->flags |= H2_CF_DEM_DFULL;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002895 return 1;
Willy Tarreau62f52692017-10-08 23:01:42 +02002896}
2897
Willy Tarreau479998a2018-11-18 06:30:59 +01002898/* Try to send data if possible.
2899 * The function returns 1 if data have been sent, otherwise zero.
2900 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002901static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002902{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002903 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02002904 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002905 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002906
2907 if (conn->flags & CO_FL_ERROR)
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01002908 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002909
Olivier Houchard7505f942018-08-21 18:10:44 +02002910
Willy Tarreaua2af5122017-10-09 11:56:46 +02002911 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
2912 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002913 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002914 }
2915
Willy Tarreaubc933932017-10-09 16:21:43 +02002916 /* This loop is quite simple : it tries to fill as much as it can from
2917 * pending streams into the existing buffer until it's reportedly full
2918 * or the end of send requests is reached. Then it tries to send this
2919 * buffer's contents out, marks it not full if at least one byte could
2920 * be sent, and tries again.
2921 *
2922 * The snd_buf() function normally takes a "flags" argument which may
2923 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
2924 * data immediately comes and CO_SFL_STREAMER to indicate that the
2925 * connection is streaming lots of data (used to increase TLS record
2926 * size at the expense of latency). The former can be sent any time
2927 * there's a buffer full flag, as it indicates at least one stream
2928 * attempted to send and failed so there are pending data. An
2929 * alternative would be to set it as long as there's an active stream
2930 * but that would be problematic for ACKs until we have an absolute
2931 * guarantee that all waiters have at least one byte to send. The
2932 * latter should possibly not be set for now.
2933 */
2934
2935 done = 0;
2936 while (!done) {
2937 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002938 unsigned int released = 0;
2939 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02002940
2941 /* fill as much as we can into the current buffer */
2942 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
2943 done = h2_process_mux(h2c);
2944
Olivier Houchard2b094432019-01-29 18:28:36 +01002945 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002946 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01002947
Christopher Faulet71633512020-10-22 16:24:58 +02002948 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
2949 (h2c->st0 == H2_CS_ERROR2) || (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02002950 break;
2951
2952 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
2953 flags |= CO_SFL_MSG_MORE;
2954
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002955 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
2956 if (b_data(buf)) {
2957 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002958 if (!ret) {
2959 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002960 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002961 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002962 sent = 1;
2963 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002964 if (b_data(buf)) {
2965 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002966 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002967 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002968 }
2969 b_free(buf);
2970 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02002971 }
Willy Tarreaubc933932017-10-09 16:21:43 +02002972
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002973 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02002974 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002975
Willy Tarreaubc933932017-10-09 16:21:43 +02002976 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet07423082019-10-24 10:31:01 +02002977 if (sent)
2978 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02002979 }
2980
Willy Tarreaua2af5122017-10-09 11:56:46 +02002981 if (conn->flags & CO_FL_SOCK_WR_SH) {
2982 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02002983 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002984 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002985 /* We're not full anymore, so we can wake any task that are waiting
2986 * for us.
2987 */
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002988 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
2989 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchard998410a2019-04-15 19:23:37 +02002990
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002991 /* We're done, no more to send */
Willy Tarreau662fafc2019-05-26 09:43:07 +02002992 if (!br_data(h2c->mbuf))
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002993 return sent;
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002994schedule:
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002995 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002996 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002997
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002998 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002999}
3000
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003001/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003002static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
3003{
3004 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003005 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003006
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003007 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003008 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003009 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003010 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003011 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02003012 h2_process(h2c);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003013 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003014}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003015
Willy Tarreau62f52692017-10-08 23:01:42 +02003016/* callback called on any event by the connection handler.
3017 * It applies changes and returns zero, or < 0 if it wants immediate
3018 * destruction of the connection (which normally doesn not happen in h2).
3019 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003020static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003021{
Olivier Houchard7505f942018-08-21 18:10:44 +02003022 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003023
Willy Tarreaue70050e2021-02-05 11:41:46 +01003024 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3025 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003026 h2_process_demux(h2c);
3027
3028 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003029 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003030
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003031 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003032 h2c->flags &= ~H2_CF_DEM_DFULL;
3033 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003034 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003035
Willy Tarreau318822b2020-10-13 18:09:15 +02003036 if (unlikely(h2c->proxy->state == PR_STSTOPPED) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003037 /* frontend is stopping, reload likely in progress, let's try
3038 * to announce a graceful shutdown if not yet done. We don't
3039 * care if it fails, it will be tried again later.
3040 */
3041 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3042 if (h2c->last_sid < 0)
3043 h2c->last_sid = (1U << 31) - 1;
3044 h2c_send_goaway_error(h2c, NULL);
3045 }
3046 }
3047
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003048 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003049 * If we received early data, and the handshake is done, wake
3050 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003051 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003052 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3053 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3054 struct eb32_node *node;
3055 struct h2s *h2s;
3056
3057 h2c->flags |= H2_CF_WAIT_FOR_HS;
3058 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3059
3060 while (node) {
3061 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003062 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003063 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003064 node = eb32_next(node);
3065 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003066 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003067
Christopher Faulet11b10532020-10-08 15:38:41 +02003068 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003069 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3070 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3071 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003072 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003073
3074 if (eb_is_empty(&h2c->streams_by_id)) {
3075 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003076 h2_release(h2c);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003077 return -1;
3078 }
Willy Tarreauab66e152019-10-31 15:36:30 +01003079
3080 /* connections in error must be removed from the idle lists */
3081 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3082 LIST_DEL_LOCKED(&conn->list);
3083 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3084 }
3085 else if (h2c->st0 == H2_CS_ERROR) {
3086 /* connections in error must be removed from the idle lists */
3087 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3088 LIST_DEL_LOCKED(&conn->list);
3089 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003090 }
3091
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003092 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003093 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003094
Olivier Houchard53216e72018-10-10 15:46:36 +02003095 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3096 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3097 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003098 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003099 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3100 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003101 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003102
Willy Tarreau3f133572017-10-31 19:21:06 +01003103 if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003104 if (h2c_may_expire(h2c))
3105 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3106 else
3107 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003108 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003109 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003110
Olivier Houchard7505f942018-08-21 18:10:44 +02003111 h2_send(h2c);
Willy Tarreau62f52692017-10-08 23:01:42 +02003112 return 0;
3113}
3114
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003115/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003116static int h2_wake(struct connection *conn)
3117{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003118 struct h2c *h2c = conn->ctx;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003119
3120 return (h2_process(h2c));
3121}
3122
Willy Tarreauea392822017-10-31 10:02:25 +01003123/* Connection timeout management. The principle is that if there's no receipt
3124 * nor sending for a certain amount of time, the connection is closed. If the
3125 * MUX buffer still has lying data or is not allocatable, the connection is
3126 * immediately killed. If it's allocatable and empty, we attempt to send a
3127 * GOAWAY frame.
3128 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003129static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003130{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003131 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003132 int expired = tick_is_expired(t->expire, now_ms);
3133
Willy Tarreau0975f112018-03-29 15:22:59 +02003134 if (!expired && h2c)
Willy Tarreauea392822017-10-31 10:02:25 +01003135 return t;
3136
Willy Tarreau534d8f92019-10-01 10:12:00 +02003137 if (h2c && !h2c_may_expire(h2c)) {
3138 /* we do still have streams but all of them are idle, waiting
3139 * for the data layer, so we must not enforce the timeout here.
3140 */
3141 t->expire = TICK_ETERNITY;
3142 return t;
3143 }
3144
Olivier Houchard3f795f72019-04-17 22:51:06 +02003145 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003146
3147 if (!h2c) {
3148 /* resources were already deleted */
3149 return NULL;
3150 }
3151
3152 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003153 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003154 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003155
Willy Tarreau662fafc2019-05-26 09:43:07 +02003156 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003157 /* don't even try to send a GOAWAY, the buffer is stuck */
3158 h2c->flags |= H2_CF_GOAWAY_FAILED;
3159 }
3160
3161 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003162 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003163 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3164 h2c->flags |= H2_CF_GOAWAY_FAILED;
3165
Willy Tarreau662fafc2019-05-26 09:43:07 +02003166 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003167 unsigned int released = 0;
3168 struct buffer *buf;
3169
3170 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3171 if (b_data(buf)) {
3172 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3173 if (!ret)
3174 break;
3175 b_del(buf, ret);
3176 if (b_data(buf))
3177 break;
3178 b_free(buf);
3179 released++;
3180 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003181 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003182
3183 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003184 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003185 }
Willy Tarreauea392822017-10-31 10:02:25 +01003186
Willy Tarreauab66e152019-10-31 15:36:30 +01003187 /* in any case this connection must not be considered idle anymore */
3188 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3189 LIST_DEL_LOCKED(&h2c->conn->list);
3190 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3191
Willy Tarreau0975f112018-03-29 15:22:59 +02003192 /* either we can release everything now or it will be done later once
3193 * the last stream closes.
3194 */
3195 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003196 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003197
Willy Tarreauea392822017-10-31 10:02:25 +01003198 return NULL;
3199}
3200
3201
Willy Tarreau62f52692017-10-08 23:01:42 +02003202/*******************************************/
3203/* functions below are used by the streams */
3204/*******************************************/
3205
3206/*
3207 * Attach a new stream to a connection
3208 * (Used for outgoing connections)
3209 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003210static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003211{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003212 struct conn_stream *cs;
3213 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003214 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003215
3216 cs = cs_new(conn);
3217 if (!cs)
3218 return NULL;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003219 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003220 if (!h2s) {
3221 cs_free(cs);
3222 return NULL;
3223 }
3224 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003225}
3226
Willy Tarreaufafd3982018-11-18 21:29:20 +01003227/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3228 * We have to scan because we may have some orphan streams. It might be
3229 * beneficial to scan backwards from the end to reduce the likeliness to find
3230 * orphans.
3231 */
3232static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3233{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003234 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003235 struct h2s *h2s;
3236 struct eb32_node *node;
3237
3238 node = eb32_first(&h2c->streams_by_id);
3239 while (node) {
3240 h2s = container_of(node, struct h2s, by_id);
3241 if (h2s->cs)
3242 return h2s->cs;
3243 node = eb32_next(node);
3244 }
3245 return NULL;
3246}
3247
Olivier Houchard198d1292019-10-25 16:19:26 +02003248static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3249{
3250 int ret = 0;
3251 struct h2c *h2c = conn->ctx;
3252
3253 switch (mux_ctl) {
3254 case MUX_STATUS:
3255 /* Only consider the mux to be ready if we're done with
3256 * the preface and settings, and we had no error.
3257 */
3258 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
3259 ret |= MUX_STATUS_READY;
3260 return ret;
3261 default:
3262 return -1;
3263 }
3264}
3265
Willy Tarreau62f52692017-10-08 23:01:42 +02003266/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003267 * Destroy the mux and the associated connection, if it is no longer used
3268 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003269static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003270{
Christopher Faulet73c12072019-04-08 11:23:22 +02003271 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003272
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003273 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003274 h2_release(h2c);
Olivier Houchard060ed432018-11-06 16:32:42 +01003275}
3276
3277/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003278 * Detach the stream from the connection and possibly release the connection.
3279 */
3280static void h2_detach(struct conn_stream *cs)
3281{
Willy Tarreau60935142017-10-16 18:11:19 +02003282 struct h2s *h2s = cs->ctx;
3283 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003284 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003285
3286 cs->ctx = NULL;
3287 if (!h2s)
3288 return;
3289
Olivier Houchard998410a2019-04-15 19:23:37 +02003290 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003291 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003292 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003293 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003294 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003295 /*
3296 * At this point, the stream_interface is supposed to have called
3297 * h2_unsubscribe(), so the only way there's still a
3298 * subscription that came from the stream_interface (as we
3299 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3300 * without the stream_interface involved) is that we subscribed
3301 * for sending, we woke the tasklet up and removed the
3302 * SUB_RETRY_SEND flag, so the stream_interface would not
3303 * know it has to unsubscribe for send, but the tasklet hasn't
3304 * run yet. Make sure to handle that by explicitely setting
3305 * send_wait to NULL, as nothing else will do it for us.
3306 */
3307 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003308 }
3309
Olivier Houchardf502aca2018-12-14 19:42:40 +01003310 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003311 h2c = h2s->h2c;
3312 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003313 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003314 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3315 !h2_frt_has_too_many_cs(h2c)) {
3316 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003317 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003318 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003319 }
Willy Tarreau60935142017-10-16 18:11:19 +02003320
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003321 /* this stream may be blocked waiting for some data to leave (possibly
3322 * an ES or RST frame), so orphan it in this case.
3323 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003324 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003325 (h2c->st0 < H2_CS_ERROR) &&
Olivier Houchard16ff2612019-03-21 15:48:46 +01003326 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) && (h2s->send_wait || h2s->recv_wait))
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003327 return;
3328
Willy Tarreau45f752e2017-10-30 15:44:59 +01003329 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3330 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3331 /* unblock the connection if it was blocked on this
3332 * stream.
3333 */
3334 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3335 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003336 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003337 }
3338
Willy Tarreau71049cc2018-03-28 13:56:39 +02003339 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003340
Olivier Houchard8a786902018-12-15 16:05:40 +01003341 if (h2c->flags & H2_CF_IS_BACK &&
3342 (h2c->proxy->options2 & PR_O2_USE_HTX)) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003343 if (!(h2c->conn->flags &
3344 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3345 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003346 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003347 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3348 h2c->conn->owner = NULL;
3349 if (eb_is_empty(&h2c->streams_by_id)) {
3350 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3351 /* The server doesn't want it, let's kill the connection right away */
Olivier Houchard109ba132020-02-14 13:23:45 +01003352 h2c->conn->mux->destroy(h2c);
Olivier Houchard351411f2018-12-27 17:20:54 +01003353 return;
3354 }
3355 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003356 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003357 if (eb_is_empty(&h2c->streams_by_id)) {
3358 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0)
3359 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
3360 return;
3361 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003362 /* Never ever allow to reuse a connection from a non-reuse backend */
3363 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3364 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003365 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003366 struct server *srv = objt_server(h2c->conn->target);
3367
3368 if (srv) {
3369 if (h2c->conn->flags & CO_FL_PRIVATE)
3370 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3371 else
3372 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3373 }
3374
3375 }
3376 }
3377 }
3378
Willy Tarreaue323f342018-03-28 13:51:45 +02003379 /* We don't want to close right now unless we're removing the
3380 * last stream, and either the connection is in error, or it
3381 * reached the ID already specified in a GOAWAY frame received
3382 * or sent (as seen by last_sid >= 0).
3383 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003384 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003385 /* no more stream will come, kill it now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003386 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003387 }
3388 else if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003389 if (h2c_may_expire(h2c))
3390 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3391 else
3392 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003393 task_queue(h2c->task);
Willy Tarreau60935142017-10-16 18:11:19 +02003394 }
Willy Tarreau62f52692017-10-08 23:01:42 +02003395}
3396
Willy Tarreau88bdba32019-05-13 18:17:53 +02003397/* Performs a synchronous or asynchronous shutr(). */
3398static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003399{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003400 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003401 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003402
Willy Tarreauf983d002019-05-14 10:40:21 +02003403 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003404 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003405
Willy Tarreau18059042019-01-31 19:12:48 +01003406 /* a connstream may require us to immediately kill the whole connection
3407 * for example because of a "tcp-request content reject" rule that is
3408 * normally used to limit abuse. In this case we schedule a goaway to
3409 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003410 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003411 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003412 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3413 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3414 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3415 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003416 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3417 /* Nothing was never sent for this stream, so reset with
3418 * REFUSED_STREAM error to let the client retry the
3419 * request.
3420 */
3421 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3422 }
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003423 else {
3424 /* a final response was already provided, we don't want this
3425 * stream anymore. This may happen when the server responds
3426 * before the end of an upload and closes quickly (redirect,
3427 * deny, ...)
3428 */
3429 h2s_error(h2s, H2_ERR_CANCEL);
3430 }
Willy Tarreau18059042019-01-31 19:12:48 +01003431
Willy Tarreau90c32322017-11-24 08:00:30 +01003432 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003433 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003434 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003435
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003436 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003437 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003438 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003439 done:
3440 h2s->flags &= ~H2_SF_WANT_SHUTR;
3441 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003442add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003443 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003444 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003445 if (h2s->flags & H2_SF_BLK_MFCTL) {
3446 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3447 h2s->send_wait = sw;
3448 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3449 h2s->send_wait = sw;
3450 LIST_ADDQ(&h2c->send_list, &h2s->list);
3451 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003452 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003453 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003454 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003455 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003456}
3457
Willy Tarreau88bdba32019-05-13 18:17:53 +02003458/* Performs a synchronous or asynchronous shutw(). */
3459static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003460{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003461 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003462 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003463
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003464 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003465 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003466
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003467 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003468 /* we can cleanly close using an empty data frame only after headers */
3469
3470 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3471 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003472 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003473
3474 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003475 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003476 else
3477 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003478 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003479 /* a connstream may require us to immediately kill the whole connection
3480 * for example because of a "tcp-request content reject" rule that is
3481 * normally used to limit abuse. In this case we schedule a goaway to
3482 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003483 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003484 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003485 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3486 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3487 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3488 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003489 else {
3490 /* Nothing was never sent for this stream, so reset with
3491 * REFUSED_STREAM error to let the client retry the
3492 * request.
3493 */
3494 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3495 }
Willy Tarreau18059042019-01-31 19:12:48 +01003496
Willy Tarreau90c32322017-11-24 08:00:30 +01003497 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003498 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003499 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003500
Willy Tarreau00dd0782018-03-01 16:31:34 +01003501 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003502 }
3503
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003504 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003505 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003506 done:
3507 h2s->flags &= ~H2_SF_WANT_SHUTW;
3508 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003509
3510 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003511 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003512 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003513 if (h2s->flags & H2_SF_BLK_MFCTL) {
3514 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3515 h2s->send_wait = sw;
3516 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3517 h2s->send_wait = sw;
3518 LIST_ADDQ(&h2c->send_list, &h2s->list);
3519 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003520 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003521 /* let the handler know we want to shutw */
3522 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003523 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003524}
3525
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003526/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003527 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3528 * and prevented the last frame from being emitted.
3529 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003530static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3531{
3532 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003533 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003534
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003535 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003536 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003537 h2_do_shutw(h2s);
3538
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003539 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003540 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003541
Willy Tarreau88bdba32019-05-13 18:17:53 +02003542 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003543 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003544 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01003545
Willy Tarreau88bdba32019-05-13 18:17:53 +02003546 if (!h2s->cs) {
3547 h2s_destroy(h2s);
3548 if (h2c_is_dead(h2c))
3549 h2_release(h2c);
3550 }
Olivier Houchard7a977432019-03-21 15:47:13 +01003551 }
3552
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003553 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02003554}
3555
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003556/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003557static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3558{
3559 struct h2s *h2s = cs->ctx;
3560
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003561 if (cs->flags & CS_FL_KILL_CONN)
3562 h2s->flags |= H2_SF_KILL_CONN;
3563
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003564 if (!mode)
3565 return;
3566
3567 h2_do_shutr(h2s);
3568}
3569
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003570/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003571static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3572{
3573 struct h2s *h2s = cs->ctx;
3574
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003575 if (cs->flags & CS_FL_KILL_CONN)
3576 h2s->flags |= H2_SF_KILL_CONN;
3577
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003578 h2_do_shutw(h2s);
3579}
3580
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003581/* Decode the payload of a HEADERS frame and produce the equivalent HTTP/1 or
Willy Tarreau86277d42019-01-02 15:36:11 +01003582 * HTX request or response depending on the connection's side. Returns a
3583 * positive value on success, a negative value on failure, or 0 if it couldn't
3584 * proceed. May report connection errors in h2c->errcode if the frame is
3585 * non-decodable and the connection unrecoverable. In absence of connection
3586 * error when a failure is reported, the caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01003587 *
3588 * The function may fold CONTINUATION frames into the initial HEADERS frame
3589 * by removing padding and next frame header, then moving the CONTINUATION
3590 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
3591 * leaving a hole between the main frame and the beginning of the next one.
3592 * The possibly remaining incomplete or next frame at the end may be moved
3593 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
3594 * HEADERS frames are unwrapped into a temporary buffer before decoding.
3595 *
3596 * A buffer at the beginning of processing may look like this :
3597 *
3598 * ,---.---------.-----.--------------.--------------.------.---.
3599 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
3600 * `---^---------^-----^--------------^--------------^------^---'
3601 * | | <-----> | |
3602 * area | dpl | wrap
3603 * |<--------------> |
3604 * | dfl |
3605 * |<-------------------------------------------------->|
3606 * head data
3607 *
3608 * Padding is automatically overwritten when folding, participating to the
3609 * hole size after dfl :
3610 *
3611 * ,---.------------------------.-----.--------------.------.---.
3612 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
3613 * `---^------------------------^-----^--------------^------^---'
3614 * | | <-----> | |
3615 * area | hole | wrap
3616 * |<-----------------------> |
3617 * | dfl |
3618 * |<-------------------------------------------------->|
3619 * head data
3620 *
3621 * Please note that the HEADERS frame is always deprived from its PADLEN byte
3622 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
3623 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003624 *
3625 * The <flags> field must point to either the stream's flags or to a copy of it
3626 * so that the function can update the following flags :
3627 * - H2_SF_DATA_CLEN when content-length is seen
3628 * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion
3629 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01003630 *
3631 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
3632 * decoding, in order to detect if we're dealing with a headers or a trailers
3633 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02003634 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003635static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len)
Willy Tarreau13278b42017-10-13 19:23:14 +02003636{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003637 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02003638 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003639 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02003640 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003641 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003642 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01003643 int flen; // header frame len
3644 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01003645 int ret = 0;
3646 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02003647 int wrap;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003648 int try = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02003649
Willy Tarreauea18f862018-12-22 20:19:26 +01003650next_frame:
3651 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
3652 goto leave; // incomplete input frame
3653
3654 /* No END_HEADERS means there's one or more CONTINUATION frames. In
3655 * this case, we'll try to paste it immediately after the initial
3656 * HEADERS frame payload and kill any possible padding. The initial
3657 * frame's length will be increased to represent the concatenation
3658 * of the two frames. The next frame is read from position <tlen>
3659 * and written at position <flen> (minus padding if some is present).
3660 */
3661 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
3662 struct h2_fh hdr;
3663 int clen; // CONTINUATION frame's payload length
3664
3665 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
3666 /* no more data, the buffer may be full, either due to
3667 * too large a frame or because of too large a hole that
3668 * we're going to compact at the end.
3669 */
3670 goto leave;
3671 }
3672
3673 if (hdr.ft != H2_FT_CONTINUATION) {
3674 /* RFC7540#6.10: frame of unexpected type */
3675 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3676 goto fail;
3677 }
3678
3679 if (hdr.sid != h2c->dsi) {
3680 /* RFC7540#6.10: frame of different stream */
3681 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3682 goto fail;
3683 }
3684
3685 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
3686 /* RFC7540#4.2: invalid frame length */
3687 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3688 goto fail;
3689 }
3690
3691 /* detect when we must stop aggragating frames */
3692 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
3693
3694 /* Take as much as we can of the CONTINUATION frame's payload */
3695 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
3696 if (clen > hdr.len)
3697 clen = hdr.len;
3698
3699 /* Move the frame's payload over the padding, hole and frame
3700 * header. At least one of hole or dpl is null (see diagrams
3701 * above). The hole moves after the new aggragated frame.
3702 */
3703 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
3704 h2c->dfl += clen - h2c->dpl;
3705 hole += h2c->dpl + 9;
3706 h2c->dpl = 0;
3707 goto next_frame;
3708 }
3709
3710 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01003711
Willy Tarreau13278b42017-10-13 19:23:14 +02003712 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003713 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02003714 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02003715 copy = alloc_trash_chunk();
3716 if (!copy) {
3717 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
3718 goto fail;
3719 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003720 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
3721 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
3722 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02003723 }
3724
Willy Tarreau13278b42017-10-13 19:23:14 +02003725 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
3726 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003727 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003728 /* RFC7540#5.3.1 : stream dep may not depend on itself */
3729 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02003730 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003731 }
3732
Willy Tarreaua01f45e2018-12-31 07:41:24 +01003733 if (flen < 5) {
3734 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3735 goto fail;
3736 }
3737
Willy Tarreau13278b42017-10-13 19:23:14 +02003738 hdrs += 5; // stream dep = 4, weight = 1
3739 flen -= 5;
3740 }
3741
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003742 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau937f7602018-02-26 15:22:17 +01003743 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01003744 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003745 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003746
Willy Tarreau937f7602018-02-26 15:22:17 +01003747 /* we can't retry a failed decompression operation so we must be very
3748 * careful not to take any risks. In practice the output buffer is
3749 * always empty except maybe for trailers, in which case we simply have
3750 * to wait for the upper layer to finish consuming what is available.
3751 */
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003752
3753 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003754 htx = htx_from_buf(rxbuf);
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003755 if (!htx_is_empty(htx)) {
3756 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003757 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003758 }
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003759 } else {
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003760 if (b_data(rxbuf)) {
3761 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003762 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003763 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003764
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003765 rxbuf->head = 0;
3766 try = b_size(rxbuf);
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003767 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003768
Willy Tarreau25919232019-01-03 14:48:18 +01003769 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003770 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
3771 sizeof(list)/sizeof(list[0]), tmp);
3772 if (outlen < 0) {
3773 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
3774 goto fail;
3775 }
3776
Willy Tarreau25919232019-01-03 14:48:18 +01003777 /* The PACK decompressor was updated, let's update the input buffer and
3778 * the parser's state to commit these changes and allow us to later
3779 * fail solely on the stream if needed.
3780 */
3781 b_del(&h2c->dbuf, h2c->dfl + hole);
3782 h2c->dfl = hole = 0;
3783 h2c->st0 = H2_CS_FRAME_H;
3784
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003785 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01003786 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003787
Willy Tarreau88d138e2019-01-02 19:38:14 +01003788 if (*flags & H2_SF_HEADERS_RCVD)
3789 goto trailers;
3790
3791 /* This is the first HEADERS frame so it's a headers block */
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003792 if (htx) {
3793 /* HTX mode */
3794 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003795 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003796 else
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003797 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003798 } else {
3799 /* HTTP/1 mode */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003800 outlen = h2_make_h1_request(list, b_tail(rxbuf), try, &msgf, body_len);
Willy Tarreau83195932019-01-03 10:26:23 +01003801 if (outlen > 0)
3802 b_add(rxbuf, outlen);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003803 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003804
3805 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01003806 /* too large headers? this is a stream error only */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003807 goto fail;
3808 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003809
Willy Tarreau174b06a2018-04-25 18:13:58 +02003810 if (msgf & H2_MSGF_BODY) {
3811 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003812 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003813 *flags |= H2_SF_DATA_CLEN;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003814 if (htx)
3815 htx->extra = *body_len;
3816 }
Olivier Houchard50d660c2018-12-08 00:18:31 +01003817 else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003818 *flags |= H2_SF_DATA_CHNK;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003819 }
3820
Willy Tarreau88d138e2019-01-02 19:38:14 +01003821 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01003822 /* indicate that a HEADERS frame was received for this stream, except
3823 * for 1xx responses. For 1xx responses, another HEADERS frame is
3824 * expected.
3825 */
3826 if (!(msgf & H2_MSGF_RSP_1XX))
3827 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003828
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02003829 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01003830 /* Mark the end of message, either using EOM in HTX or with the
3831 * trailing CRLF after the end of trailers. Note that DATA_CHNK
Willy Tarreau2135f912019-05-07 11:17:32 +02003832 * is not set during headers with END_STREAM. For HTX trailers,
3833 * we must not leave an HTX trailers block not followed by an
3834 * EOM block, the two must be atomic. Thus if we fail to emit
3835 * the EOM block we must remove the TLR block we've just added.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003836 */
3837 if (htx) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02003838 if (!htx_add_endof(htx, HTX_BLK_EOM))
Willy Tarreau88d138e2019-01-02 19:38:14 +01003839 goto fail;
3840 }
3841 else if (*flags & H2_SF_DATA_CHNK) {
3842 if (!b_putblk(rxbuf, "\r\n", 2))
3843 goto fail;
3844 }
3845 }
Willy Tarreau937f7602018-02-26 15:22:17 +01003846
Willy Tarreau86277d42019-01-02 15:36:11 +01003847 /* success */
3848 ret = 1;
3849
Willy Tarreau68dd9852017-07-03 14:44:26 +02003850 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01003851 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01003852 * move the remaining data over it.
3853 */
3854 if (hole) {
3855 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
3856 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
3857 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
3858 b_sub(&h2c->dbuf, hole);
3859 }
3860
Willy Tarreau97215ca2019-04-29 10:20:21 +02003861 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01003862 /* too large frames */
3863 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01003864 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01003865 }
3866
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003867 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003868 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02003869 free_trash_chunk(copy);
Willy Tarreau86277d42019-01-02 15:36:11 +01003870 return ret;
3871
Willy Tarreau68dd9852017-07-03 14:44:26 +02003872 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01003873 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02003874 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003875
3876 trailers:
3877 /* This is the last HEADERS frame hence a trailer */
3878
3879 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
3880 /* It's a trailer but it's missing ES flag */
3881 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3882 goto fail;
3883 }
3884
Christopher Faulet54b5e212019-06-04 10:08:28 +02003885 /* Trailers terminate a DATA sequence. In HTX we always handle them. In
3886 * legacy, when using chunks, we have to emit the 0 CRLF marker first
3887 * and then handle the trailers. For other modes, the trailers are
3888 * silently dropped.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003889 */
3890 if (htx) {
Willy Tarreau5255f282019-01-03 18:41:05 +01003891 if (h2_make_htx_trailers(list, htx) <= 0)
3892 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003893 }
3894 else if (*flags & H2_SF_DATA_CHNK) {
3895 /* Legacy mode with chunked encoding : we must finalize the
3896 * data block message emit the trailing CRLF */
3897 if (!b_putblk(rxbuf, "0\r\n", 3))
3898 goto fail;
Willy Tarreaue2b05cc2019-01-03 16:18:34 +01003899
3900 outlen = h2_make_h1_trailers(list, b_tail(rxbuf), try);
3901 if (outlen > 0)
3902 b_add(rxbuf, outlen);
3903 else
3904 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003905 }
3906
3907 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02003908}
3909
Willy Tarreau454f9052017-10-26 19:40:35 +02003910/* Transfer the payload of a DATA frame to the HTTP/1 side. When content-length
3911 * or a tunnel is used, the contents are copied as-is. When chunked encoding is
3912 * in use, a new chunk is emitted for each frame. This is supposed to fit
3913 * because the smallest chunk takes 1 byte for the size, 2 for CRLF, X for the
3914 * data, 2 for the extra CRLF, so that's 5+X, while on the H2 side the smallest
3915 * frame will be 9+X bytes based on the same buffer size. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003916 * parser state is automatically updated. Returns > 0 if it could completely
3917 * send the current frame, 0 if it couldn't complete, in which case
3918 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
3919 * DATA frame can return 0 as a valid result). Stream errors are reported in
3920 * h2s->errcode and connection errors in h2c->errcode. The caller must already
3921 * have checked the frame header and ensured that the frame was complete or the
3922 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02003923 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01003924static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003925{
3926 struct h2c *h2c = h2s->h2c;
3927 int block1, block2;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003928 unsigned int flen = 0;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003929 unsigned int chklen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003930 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003931 struct buffer *csbuf;
Willy Tarreau454f9052017-10-26 19:40:35 +02003932
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003933 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003934
Olivier Houchard638b7992018-08-16 15:41:52 +02003935 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003936 if (!csbuf) {
3937 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003938 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003939 }
3940
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003941try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003942 flen = h2c->dfl - h2c->dpl;
Olivier Houchard2f308832018-12-19 15:53:53 +01003943 if (h2c->proxy->options2 & PR_O2_USE_HTX)
3944 htx = htx_from_buf(csbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003945 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01003946 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003947
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003948 if (flen > b_data(&h2c->dbuf)) {
3949 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003950 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01003951 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003952 }
3953
Willy Tarreaua9b77962019-01-31 07:23:00 +01003954 if (htx) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003955 unsigned int sent;
3956
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003957 block1 = htx_free_data_space(htx);
3958 if (!block1) {
3959 h2c->flags |= H2_CF_DEM_SFULL;
3960 goto fail;
3961 }
3962 if (flen > block1)
3963 flen = block1;
3964
3965 /* here, flen is the max we can copy into the output buffer */
3966 block1 = b_contig_data(&h2c->dbuf, 0);
3967 if (flen > block1)
3968 flen = block1;
3969
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003970 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003971
Willy Tarreaub6563f42019-06-15 11:34:41 +02003972 b_del(&h2c->dbuf, sent);
3973 h2c->dfl -= sent;
3974 h2c->rcvd_c += sent;
3975 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau1915ca22019-01-24 11:49:37 +01003976
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003977 if (h2s->flags & H2_SF_DATA_CLEN) {
Willy Tarreaub6563f42019-06-15 11:34:41 +02003978 h2s->body_len -= sent;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003979 htx->extra = h2s->body_len;
3980 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003981
3982 if (sent < flen) {
3983 h2c->flags |= H2_CF_DEM_SFULL;
3984 goto fail;
3985 }
3986
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003987 goto try_again;
3988 }
Willy Tarreau455d5682019-05-24 19:42:18 +02003989 else if (unlikely(b_space_wraps(csbuf) &&
3990 flen + chklen <= b_room(csbuf) &&
3991 b_data(csbuf) <= MAX_DATA_REALIGN)) {
3992 /* it doesn't fit in a single block and the buffer is fragmented, if there are
3993 * not too many data in the buffer, let's defragment it and try
3994 * again.
Willy Tarreaud755ea62018-02-26 15:44:54 +01003995 */
3996 b_slow_realign(csbuf, trash.area, 0);
Willy Tarreau454f9052017-10-26 19:40:35 +02003997 }
3998
Willy Tarreaueba10f22018-04-25 20:44:22 +02003999 /* chunked-encoding requires more room */
4000 if (h2s->flags & H2_SF_DATA_CHNK) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004001 chklen = MIN(flen, b_room(csbuf));
Willy Tarreaueba10f22018-04-25 20:44:22 +02004002 chklen = (chklen < 16) ? 1 : (chklen < 256) ? 2 :
4003 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
4004 (chklen < 1048576) ? 4 : 8;
4005 chklen += 4; // CRLF, CRLF
4006 }
4007
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004008 /* does it fit in output buffer or should we wait ? */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004009 if (flen + chklen > b_room(csbuf)) {
4010 if (chklen >= b_room(csbuf)) {
4011 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004012 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004013 }
4014 flen = b_room(csbuf) - chklen;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004015 }
4016
4017 if (h2s->flags & H2_SF_DATA_CHNK) {
4018 /* emit the chunk size */
4019 unsigned int chksz = flen;
4020 char str[10];
4021 char *beg;
4022
4023 beg = str + sizeof(str);
4024 *--beg = '\n';
4025 *--beg = '\r';
4026 do {
4027 *--beg = hextab[chksz & 0xF];
4028 } while (chksz >>= 4);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004029 b_putblk(csbuf, beg, str + sizeof(str) - beg);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004030 }
4031
Willy Tarreau454f9052017-10-26 19:40:35 +02004032 /* Block1 is the length of the first block before the buffer wraps,
4033 * block2 is the optional second block to reach the end of the frame.
4034 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004035 block1 = b_contig_data(&h2c->dbuf, 0);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004036 if (block1 > flen)
4037 block1 = flen;
Willy Tarreau454f9052017-10-26 19:40:35 +02004038 block2 = flen - block1;
4039
4040 if (block1)
Willy Tarreaud755ea62018-02-26 15:44:54 +01004041 b_putblk(csbuf, b_head(&h2c->dbuf), block1);
Willy Tarreau454f9052017-10-26 19:40:35 +02004042
4043 if (block2)
Willy Tarreaud755ea62018-02-26 15:44:54 +01004044 b_putblk(csbuf, b_peek(&h2c->dbuf, block1), block2);
Willy Tarreau454f9052017-10-26 19:40:35 +02004045
Willy Tarreaueba10f22018-04-25 20:44:22 +02004046 if (h2s->flags & H2_SF_DATA_CHNK) {
4047 /* emit the CRLF */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004048 b_putblk(csbuf, "\r\n", 2);
Willy Tarreaueba10f22018-04-25 20:44:22 +02004049 }
4050
Willy Tarreau454f9052017-10-26 19:40:35 +02004051 /* now mark the input data as consumed (will be deleted from the buffer
4052 * by the caller when seeing FRAME_A after sending the window update).
4053 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004054 b_del(&h2c->dbuf, flen);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004055 h2c->dfl -= flen;
4056 h2c->rcvd_c += flen;
4057 h2c->rcvd_s += flen; // warning, this can also affect the closed streams!
4058
Willy Tarreau1915ca22019-01-24 11:49:37 +01004059 if (h2s->flags & H2_SF_DATA_CLEN)
4060 h2s->body_len -= flen;
4061
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004062 if (h2c->dfl > h2c->dpl) {
4063 /* more data available, transfer stalled on stream full */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004064 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004065 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004066 }
4067
Willy Tarreau4a28da12018-01-04 14:41:00 +01004068 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004069 /* here we're done with the frame, all the payload (except padding) was
4070 * transferred.
4071 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004072
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004073 if (h2c->dff & H2_F_DATA_END_STREAM) {
4074 if (htx) {
4075 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4076 h2c->flags |= H2_CF_DEM_SFULL;
4077 goto fail;
4078 }
Willy Tarreaud755ea62018-02-26 15:44:54 +01004079 }
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004080 else if (h2s->flags & H2_SF_DATA_CHNK) {
4081 /* emit the trailing 0 CRLF CRLF */
4082 if (b_room(csbuf) < 5) {
4083 h2c->flags |= H2_CF_DEM_SFULL;
4084 goto fail;
4085 }
4086 chklen += 5;
4087 b_putblk(csbuf, "0\r\n\r\n", 5);
4088 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004089 }
4090
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004091 h2c->rcvd_c += h2c->dpl;
4092 h2c->rcvd_s += h2c->dpl;
4093 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004094 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004095 if (htx)
4096 htx_to_buf(htx, csbuf);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004097 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004098 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004099 if (htx)
4100 htx_to_buf(htx, csbuf);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004101 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004102}
4103
Willy Tarreau5dd17352018-06-14 13:33:30 +02004104/* Try to send a HEADERS frame matching HTTP/1 response present at offset <ofs>
4105 * and for <max> bytes in buffer <buf> for the H2 stream <h2s>. Returns the
4106 * number of bytes sent. The caller must check the stream's status to detect
4107 * any error which might have happened subsequently to a successful send.
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004108 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004109static size_t h2s_frt_make_resp_headers(struct h2s *h2s, const struct buffer *buf, size_t ofs, size_t max)
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004110{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004111 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004112 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004113 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004114 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004115 struct buffer *mbuf;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004116 union h1_sl sl;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004117 int es_now = 0;
4118 int ret = 0;
4119 int hdr;
4120
4121 if (h2c_mux_busy(h2c, h2s)) {
4122 h2s->flags |= H2_SF_BLK_MBUSY;
4123 return 0;
4124 }
4125
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004126 /* First, try to parse the H1 response and index it into <list>.
4127 * NOTE! Since it comes from haproxy, we *know* that a response header
4128 * block does not wrap and we can safely read it this way without
4129 * having to realign the buffer.
4130 */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004131 ret = h1_headers_to_hdr_list(b_peek(buf, ofs), b_peek(buf, ofs) + max,
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004132 list, sizeof(list)/sizeof(list[0]), h1m, &sl);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004133 if (ret <= 0) {
Willy Tarreauf13ef962017-11-02 15:14:19 +01004134 /* incomplete or invalid response, this is abnormal coming from
4135 * haproxy and may only result in a bad errorfile or bad Lua code
4136 * so that won't be fixed, raise an error now.
4137 *
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004138 * FIXME: we should instead add the ability to only return a
4139 * 502 bad gateway. But in theory this is not supposed to
4140 * happen.
4141 */
4142 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4143 ret = 0;
4144 goto end;
4145 }
4146
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004147 h2s->status = sl.st.status;
Willy Tarreaudb72da02018-09-13 11:52:20 +02004148
4149 /* certain statuses have no body or an empty one, regardless of
4150 * what the headers say.
4151 */
4152 if (sl.st.status >= 100 && sl.st.status < 200) {
4153 h1m->flags &= ~(H1_MF_CLEN | H1_MF_CHNK);
4154 h1m->curr_len = h1m->body_len = 0;
4155 }
4156 else if (sl.st.status == 204 || sl.st.status == 304) {
4157 /* no contents, claim c-len is present and set to zero */
4158 h1m->flags &= ~H1_MF_CHNK;
4159 h1m->flags |= H1_MF_CLEN;
4160 h1m->curr_len = h1m->body_len = 0;
4161 }
4162
Willy Tarreaubcc45952019-05-26 10:05:50 +02004163 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004164 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004165 if (!h2_get_buf(h2c, mbuf)) {
4166 h2c->flags |= H2_CF_MUX_MALLOC;
4167 h2s->flags |= H2_SF_BLK_MROOM;
4168 return 0;
4169 }
4170
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004171 chunk_reset(&outbuf);
4172
4173 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004174 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4175 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004176 break;
4177 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004178 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004179 }
4180
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004181 if (outbuf.size < 9)
4182 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004183
4184 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004185 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4186 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4187 outbuf.data = 9;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004188
4189 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004190 if (unlikely(list[0].v.len != 3)) {
Willy Tarreaua87f2022017-11-09 11:23:00 +01004191 /* this is an unparsable response */
4192 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4193 ret = 0;
4194 goto end;
4195 }
Willy Tarreauaafdf582018-12-10 18:06:40 +01004196
4197 if (!hpack_encode_str_status(&outbuf, h2s->status, list[0].v)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004198 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004199 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004200 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004201 }
4202
4203 /* encode all headers, stop at empty name */
4204 for (hdr = 1; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaua76e4c22017-11-24 08:17:28 +01004205 /* these ones do not exist in H2 and must be dropped. */
4206 if (isteq(list[hdr].n, ist("connection")) ||
4207 isteq(list[hdr].n, ist("proxy-connection")) ||
4208 isteq(list[hdr].n, ist("keep-alive")) ||
4209 isteq(list[hdr].n, ist("upgrade")) ||
4210 isteq(list[hdr].n, ist("transfer-encoding")))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004211 continue;
4212
4213 if (isteq(list[hdr].n, ist("")))
4214 break; // end
4215
4216 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4217 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004218 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004219 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004220 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004221 }
4222 }
4223
4224 /* we may need to add END_STREAM */
Willy Tarreau927b88b2019-03-04 08:03:25 +01004225 if (((h1m->flags & H1_MF_CLEN) && !h1m->body_len) || !h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004226 es_now = 1;
4227
4228 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004229 h2_set_frame_size(outbuf.area, outbuf.data - 9);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004230
4231 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004232 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004233
4234 /* consume incoming H1 response */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004235 max -= ret;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004236
4237 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004238 b_add(mbuf, outbuf.data);
Willy Tarreau67434202017-11-06 20:20:51 +01004239 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004240
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004241 if (es_now) {
Willy Tarreau35a62702018-02-27 15:37:25 +01004242 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004243 ret += max;
Willy Tarreau35a62702018-02-27 15:37:25 +01004244
Willy Tarreau801250e2018-09-11 11:45:04 +02004245 h1m->state = H1_MSG_DONE;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004246 h2s->flags |= H2_SF_ES_SENT;
4247 if (h2s->st == H2_SS_OPEN)
4248 h2s->st = H2_SS_HLOC;
4249 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004250 h2s_close(h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004251 }
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004252 else if (h2s->status >= 100 && h2s->status < 200) {
Willy Tarreau87285592017-11-29 15:41:32 +01004253 /* we'll let the caller check if it has more headers to send */
Willy Tarreau7f437ff2018-09-11 13:51:19 +02004254 h1m_init_res(h1m);
Willy Tarreau9b8cd1f2018-09-12 09:24:38 +02004255 h1m->err_pos = -1; // don't care about errors on the response path
Willy Tarreaueb528db2018-09-12 09:54:00 +02004256 h2s->h1m.flags |= H1_MF_TOLOWER;
Willy Tarreau87285592017-11-29 15:41:32 +01004257 goto end;
Willy Tarreauc199faf2017-10-31 08:35:27 +01004258 }
Willy Tarreau001823c2018-09-12 17:25:32 +02004259
4260 /* now the h1m state is either H1_MSG_CHUNK_SIZE or H1_MSG_DATA */
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004261
4262 end:
Dirkjan Bussinkc26c72d2018-09-14 14:30:25 +02004263 //fprintf(stderr, "[%d] sent simple H2 response (sid=%d) = %d bytes (%d in, ep=%u, es=%s)\n", h2c->st0, h2s->id, outbuf.len, ret, h1m->err_pos, h1m_state_str(h1m->err_state));
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004264 return ret;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004265 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004266 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4267 goto retry;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004268 h1m_init_res(h1m);
4269 h1m->err_pos = -1; // don't care about errors on the response path
4270 h2c->flags |= H2_CF_MUX_MFULL;
4271 h2s->flags |= H2_SF_BLK_MROOM;
4272 ret = 0;
4273 goto end;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004274}
4275
Willy Tarreau5dd17352018-06-14 13:33:30 +02004276/* Try to send a DATA frame matching HTTP/1 response present at offset <ofs>
4277 * for up to <max> bytes in response buffer <buf>, for stream <h2s>. Returns
4278 * the number of bytes sent. The caller must check the stream's status to
4279 * detect any error which might have happened subsequently to a successful send.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004280 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004281static size_t h2s_frt_make_resp_data(struct h2s *h2s, const struct buffer *buf, size_t ofs, size_t max)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004282{
4283 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004284 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004285 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004286 struct buffer *mbuf;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004287 int ret = 0;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02004288 size_t total = 0;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004289 int es_now = 0;
4290 int size = 0;
Willy Tarreau206ba832018-06-14 15:27:31 +02004291 const char *blk1, *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004292 size_t len1, len2;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004293
4294 if (h2c_mux_busy(h2c, h2s)) {
4295 h2s->flags |= H2_SF_BLK_MBUSY;
4296 goto end;
4297 }
4298
Willy Tarreaubcc45952019-05-26 10:05:50 +02004299 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004300 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004301 if (!h2_get_buf(h2c, mbuf)) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004302 h2c->flags |= H2_CF_MUX_MALLOC;
4303 h2s->flags |= H2_SF_BLK_MROOM;
4304 goto end;
4305 }
4306
4307 new_frame:
Willy Tarreau5dd17352018-06-14 13:33:30 +02004308 if (!max)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004309 goto end;
4310
4311 chunk_reset(&outbuf);
4312
4313 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004314 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4315 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004316 break;
4317 realign_again:
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004318 /* If there are pending data in the output buffer, and we have
4319 * less than 1/4 of the mbuf's size and everything fits, we'll
4320 * still perform a copy anyway. Otherwise we'll pretend the mbuf
4321 * is full and wait, to save some slow realign calls.
4322 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004323 if ((max + 9 > b_room(mbuf) || max >= b_size(mbuf) / 4)) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004324 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4325 goto retry;
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004326 h2c->flags |= H2_CF_MUX_MFULL;
4327 h2s->flags |= H2_SF_BLK_MROOM;
4328 goto end;
4329 }
4330
Willy Tarreaubcc45952019-05-26 10:05:50 +02004331 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004332 }
4333
4334 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004335 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4336 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004337 h2c->flags |= H2_CF_MUX_MFULL;
4338 h2s->flags |= H2_SF_BLK_MROOM;
4339 goto end;
4340 }
4341
4342 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004343 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4344 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4345 outbuf.data = 9;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004346
4347 switch (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
4348 case 0: /* no content length, read till SHUTW */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004349 size = max;
Willy Tarreau13e4e942017-12-14 10:55:21 +01004350 h1m->curr_len = size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004351 break;
4352 case H1_MF_CLEN: /* content-length: read only h2m->body_len */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004353 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004354 if ((long long)size > h1m->curr_len)
4355 size = h1m->curr_len;
4356 break;
4357 default: /* te:chunked : parse chunks */
Willy Tarreau801250e2018-09-11 11:45:04 +02004358 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Willy Tarreauc0973c62018-06-14 15:53:21 +02004359 ret = h1_skip_chunk_crlf(buf, ofs, ofs + max);
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02004360 if (ret <= 0) {
Christopher Faulet307f31e2020-08-05 14:37:13 +02004361 /* FIXME: bad contents or truncated response. how to proceed here when we're in H2 ?
4362 * It should not happen except if opposite connection was closed.
4363 * Note: check there is at least something to parse to be sure the chunk crlf
4364 * is truncated.
4365 */
4366 if (max) {
4367 h1m->err_pos = ofs + max + ret;
4368 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4369 }
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004370 goto end;
4371 }
Willy Tarreau5dd17352018-06-14 13:33:30 +02004372 max -= ret;
4373 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004374 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004375 h1m->state = H1_MSG_CHUNK_SIZE;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004376 }
4377
Willy Tarreau801250e2018-09-11 11:45:04 +02004378 if (h1m->state == H1_MSG_CHUNK_SIZE) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004379 unsigned int chunk;
Willy Tarreau84d6b7a2018-06-14 15:59:05 +02004380 ret = h1_parse_chunk_size(buf, ofs, ofs + max, &chunk);
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02004381 if (ret <= 0) {
Christopher Faulet307f31e2020-08-05 14:37:13 +02004382 /* FIXME: bad contents or truncated response. how to proceed here when we're in H2 ?
4383 * It should not happen except if opposite connection was closed.
4384 * Note: check there is at least something to parse to be sure the chunke size
4385 * is truncated.
4386 */
4387 if (max) {
4388 h1m->err_pos = ofs + max + ret;
4389 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4390 }
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004391 goto end;
4392 }
4393
4394 size = chunk;
4395 h1m->curr_len = chunk;
4396 h1m->body_len += chunk;
Willy Tarreau5dd17352018-06-14 13:33:30 +02004397 max -= ret;
4398 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004399 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004400 h1m->state = size ? H1_MSG_DATA : H1_MSG_TRAILERS;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004401 if (!size)
4402 goto send_empty;
4403 }
4404
4405 /* in MSG_DATA state, continue below */
4406 size = h1m->curr_len;
4407 break;
4408 }
4409
4410 /* we have in <size> the exact number of bytes we need to copy from
4411 * the H1 buffer. We need to check this against the connection's and
4412 * the stream's send windows, and to ensure that this fits in the max
4413 * frame size and in the buffer's available space minus 9 bytes (for
4414 * the frame header). The connection's flow control is applied last so
4415 * that we can use a separate list of streams which are immediately
4416 * unblocked on window opening. Note: we don't implement padding.
4417 */
4418
Willy Tarreau5dd17352018-06-14 13:33:30 +02004419 if (size > max)
4420 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004421
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004422 if (size > h2s_mws(h2s))
4423 size = h2s_mws(h2s);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004424
4425 if (size <= 0) {
4426 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004427 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02004428 LIST_DEL_INIT(&h2s->list);
Willy Tarreau55dc0842019-10-22 10:04:39 +02004429 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004430 goto end;
4431 }
4432
4433 if (h2c->mfs && size > h2c->mfs)
4434 size = h2c->mfs;
4435
4436 if (size + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02004437 /* It doesn't fit at once. If it at least fits once split and
4438 * the amount of data to move is low, let's defragment the
4439 * buffer now.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004440 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004441 if (b_space_wraps(mbuf) &&
4442 (size + 9 <= b_room(mbuf)) &&
4443 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004444 goto realign_again;
4445 size = outbuf.size - 9;
4446 }
4447
4448 if (size <= 0) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004449 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4450 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004451 h2c->flags |= H2_CF_MUX_MFULL;
4452 h2s->flags |= H2_SF_BLK_MROOM;
4453 goto end;
4454 }
4455
4456 if (size > h2c->mws)
4457 size = h2c->mws;
4458
4459 if (size <= 0) {
4460 h2s->flags |= H2_SF_BLK_MFCTL;
4461 goto end;
4462 }
4463
4464 /* copy whatever we can */
4465 blk1 = blk2 = NULL; // silence a maybe-uninitialized warning
Willy Tarreau5dd17352018-06-14 13:33:30 +02004466 ret = b_getblk_nc(buf, &blk1, &len1, &blk2, &len2, ofs, max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004467 if (ret == 1)
4468 len2 = 0;
4469
4470 if (!ret || len1 + len2 < size) {
4471 /* FIXME: must normally never happen */
4472 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4473 goto end;
4474 }
4475
4476 /* limit len1/len2 to size */
4477 if (len1 + len2 > size) {
4478 int sub = len1 + len2 - size;
4479
4480 if (len2 > sub)
4481 len2 -= sub;
4482 else {
4483 sub -= len2;
4484 len2 = 0;
4485 len1 -= sub;
4486 }
4487 }
4488
4489 /* now let's copy this this into the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004490 memcpy(outbuf.area + 9, blk1, len1);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004491 if (len2)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004492 memcpy(outbuf.area + 9 + len1, blk2, len2);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004493
4494 send_empty:
4495 /* we may need to add END_STREAM */
4496 /* FIXME: we should also detect shutdown(w) below, but how ? Maybe we
4497 * could rely on the MSG_MORE flag as a hint for this ?
Willy Tarreau00610962018-07-19 10:58:28 +02004498 *
4499 * FIXME: what we do here is not correct because we send end_stream
4500 * before knowing if we'll have to send a HEADERS frame for the
4501 * trailers. More importantly we're not consuming the trailing CRLF
4502 * after the end of trailers, so it will be left to the caller to
4503 * eat it. The right way to do it would be to measure trailers here
4504 * and to send ES only if there are no trailers.
4505 *
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004506 */
4507 if (((h1m->flags & H1_MF_CLEN) && !(h1m->curr_len - size)) ||
Willy Tarreau801250e2018-09-11 11:45:04 +02004508 !h1m->curr_len || h1m->state >= H1_MSG_DONE)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004509 es_now = 1;
4510
4511 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004512 h2_set_frame_size(outbuf.area, size);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004513
4514 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004515 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004516
4517 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004518 b_add(mbuf, size + 9);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004519
4520 /* consume incoming H1 response */
4521 if (size > 0) {
Willy Tarreau5dd17352018-06-14 13:33:30 +02004522 max -= size;
4523 ofs += size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004524 total += size;
4525 h1m->curr_len -= size;
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004526 h2s->sws -= size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004527 h2c->mws -= size;
4528
4529 if (size && !h1m->curr_len && (h1m->flags & H1_MF_CHNK)) {
Willy Tarreau801250e2018-09-11 11:45:04 +02004530 h1m->state = H1_MSG_CHUNK_CRLF;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004531 goto new_frame;
4532 }
4533 }
4534
4535 if (es_now) {
4536 if (h2s->st == H2_SS_OPEN)
4537 h2s->st = H2_SS_HLOC;
4538 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004539 h2s_close(h2s);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004540
Willy Tarreau35a62702018-02-27 15:37:25 +01004541 if (!(h1m->flags & H1_MF_CHNK)) {
4542 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004543 total += max;
4544 ofs += max;
4545 max = 0;
Willy Tarreau35a62702018-02-27 15:37:25 +01004546
Willy Tarreau801250e2018-09-11 11:45:04 +02004547 h1m->state = H1_MSG_DONE;
Willy Tarreau35a62702018-02-27 15:37:25 +01004548 }
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004549
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004550 h2s->flags |= H2_SF_ES_SENT;
4551 }
4552
4553 end:
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004554 trace("[%d] sent simple H2 DATA response (sid=%d) = %d bytes out (%u in, st=%s, ep=%u, es=%s, h2cws=%d h2sws=%d) data=%u", h2c->st0, h2s->id, size+9, (unsigned int)total, h1m_state_str(h1m->state), h1m->err_pos, h1m_state_str(h1m->err_state), h2c->mws, h2s_mws(h2s), (unsigned int)b_data(buf));
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004555 return total;
4556}
4557
Willy Tarreau115e83b2018-12-01 19:17:53 +01004558/* Try to send a HEADERS frame matching HTX response present in HTX message
4559 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4560 * must check the stream's status to detect any error which might have happened
4561 * subsequently to a successful send. The htx blocks are automatically removed
4562 * from the message. The htx message is assumed to be valid since produced from
4563 * the internal code, hence it contains a start line, an optional series of
4564 * header blocks and an end of header, otherwise an invalid frame could be
4565 * emitted and the resulting htx message could be left in an inconsistent state.
4566 */
4567static size_t h2s_htx_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
4568{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004569 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004570 struct h2c *h2c = h2s->h2c;
4571 struct htx_blk *blk;
4572 struct htx_blk *blk_end;
4573 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004574 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004575 struct htx_sl *sl;
4576 enum htx_blk_type type;
4577 int es_now = 0;
4578 int ret = 0;
4579 int hdr;
4580 int idx;
4581
4582 if (h2c_mux_busy(h2c, h2s)) {
4583 h2s->flags |= H2_SF_BLK_MBUSY;
4584 return 0;
4585 }
4586
Willy Tarreau115e83b2018-12-01 19:17:53 +01004587 /* determine the first block which must not be deleted, blk_end may
4588 * be NULL if all blocks have to be deleted.
4589 */
4590 idx = htx_get_head(htx);
4591 blk_end = NULL;
4592 while (idx != -1) {
4593 type = htx_get_blk_type(htx_get_blk(htx, idx));
4594 idx = htx_get_next(htx, idx);
4595 if (type == HTX_BLK_EOH) {
4596 if (idx != -1)
4597 blk_end = htx_get_blk(htx, idx);
4598 break;
4599 }
4600 }
4601
4602 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004603 blk = htx_get_head_blk(htx);
Christopher Faulet43a686d2019-11-18 15:50:25 +01004604 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004605 ALREADY_CHECKED(blk);
4606 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004607 h2s->status = sl->info.res.status;
Willy Tarreauaafdf582018-12-10 18:06:40 +01004608 if (h2s->status < 100 || h2s->status > 999)
4609 goto fail;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004610
4611 /* and the rest of the headers, that we dump starting at header 0 */
4612 hdr = 0;
4613
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004614 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004615 while ((idx = htx_get_next(htx, idx)) != -1) {
4616 blk = htx_get_blk(htx, idx);
4617 type = htx_get_blk_type(blk);
4618
4619 if (type == HTX_BLK_UNUSED)
4620 continue;
4621
4622 if (type != HTX_BLK_HDR)
4623 break;
4624
4625 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4626 goto fail;
4627
4628 list[hdr].n = htx_get_blk_name(htx, blk);
4629 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004630 hdr++;
4631 }
4632
4633 /* marker for end of headers */
4634 list[hdr].n = ist("");
4635
4636 if (h2s->status == 204 || h2s->status == 304) {
4637 /* no contents, claim c-len is present and set to zero */
4638 es_now = 1;
4639 }
4640
Willy Tarreau9c218e72019-05-26 10:08:28 +02004641 mbuf = br_tail(h2c->mbuf);
4642 retry:
4643 if (!h2_get_buf(h2c, mbuf)) {
4644 h2c->flags |= H2_CF_MUX_MALLOC;
4645 h2s->flags |= H2_SF_BLK_MROOM;
4646 return 0;
4647 }
4648
Willy Tarreau115e83b2018-12-01 19:17:53 +01004649 chunk_reset(&outbuf);
4650
4651 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004652 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4653 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004654 break;
4655 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004656 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004657 }
4658
4659 if (outbuf.size < 9)
4660 goto full;
4661
4662 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4663 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4664 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4665 outbuf.data = 9;
4666
4667 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004668 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004669 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004670 goto realign_again;
4671 goto full;
4672 }
4673
4674 /* encode all headers, stop at empty name */
4675 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4676 /* these ones do not exist in H2 and must be dropped. */
4677 if (isteq(list[hdr].n, ist("connection")) ||
4678 isteq(list[hdr].n, ist("proxy-connection")) ||
4679 isteq(list[hdr].n, ist("keep-alive")) ||
4680 isteq(list[hdr].n, ist("upgrade")) ||
4681 isteq(list[hdr].n, ist("transfer-encoding")))
4682 continue;
4683
4684 if (isteq(list[hdr].n, ist("")))
4685 break; // end
4686
4687 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4688 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004689 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004690 goto realign_again;
4691 goto full;
4692 }
4693 }
4694
Christopher Faulet0b465482019-02-19 15:14:23 +01004695 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004696 * FIXME: we should also set it when we know for sure that the
4697 * content-length is zero as well as on 204/304
4698 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004699 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4700 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004701 es_now = 1;
4702
Willy Tarreau927b88b2019-03-04 08:03:25 +01004703 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004704 es_now = 1;
4705
4706 /* update the frame's size */
4707 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4708
4709 if (es_now)
4710 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4711
4712 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004713 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004714
4715 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4716 * 1xx responses, another HEADERS frame is expected.
4717 */
4718 if (h2s->status >= 200 || h2s->status == 101)
4719 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004720
Willy Tarreau115e83b2018-12-01 19:17:53 +01004721 if (es_now) {
4722 h2s->flags |= H2_SF_ES_SENT;
4723 if (h2s->st == H2_SS_OPEN)
4724 h2s->st = H2_SS_HLOC;
4725 else
4726 h2s_close(h2s);
4727 }
4728
4729 /* OK we could properly deliver the response */
4730
4731 /* remove all header blocks including the EOH and compute the
4732 * corresponding size.
4733 *
4734 * FIXME: We should remove everything when es_now is set.
4735 */
4736 ret = 0;
4737 idx = htx_get_head(htx);
4738 blk = htx_get_blk(htx, idx);
4739 while (blk != blk_end) {
4740 ret += htx_get_blksz(blk);
4741 blk = htx_remove_blk(htx, blk);
4742 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004743
Christopher Faulet316934d2019-05-15 14:22:48 +02004744 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4745 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004746 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004747 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004748 end:
4749 return ret;
4750 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004751 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4752 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004753 h2c->flags |= H2_CF_MUX_MFULL;
4754 h2s->flags |= H2_SF_BLK_MROOM;
4755 ret = 0;
4756 goto end;
4757 fail:
4758 /* unparsable HTX messages, too large ones to be produced in the local
4759 * list etc go here (unrecoverable errors).
4760 */
4761 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4762 ret = 0;
4763 goto end;
4764}
4765
Willy Tarreau80739692018-10-05 11:35:57 +02004766/* Try to send a HEADERS frame matching HTX request present in HTX message
4767 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4768 * must check the stream's status to detect any error which might have happened
4769 * subsequently to a successful send. The htx blocks are automatically removed
4770 * from the message. The htx message is assumed to be valid since produced from
4771 * the internal code, hence it contains a start line, an optional series of
4772 * header blocks and an end of header, otherwise an invalid frame could be
4773 * emitted and the resulting htx message could be left in an inconsistent state.
4774 */
4775static size_t h2s_htx_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
4776{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004777 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004778 struct h2c *h2c = h2s->h2c;
4779 struct htx_blk *blk;
4780 struct htx_blk *blk_end;
4781 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004782 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004783 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004784 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004785 enum htx_blk_type type;
4786 int es_now = 0;
4787 int ret = 0;
4788 int hdr;
4789 int idx;
4790
4791 if (h2c_mux_busy(h2c, h2s)) {
4792 h2s->flags |= H2_SF_BLK_MBUSY;
4793 return 0;
4794 }
4795
Willy Tarreau80739692018-10-05 11:35:57 +02004796 /* determine the first block which must not be deleted, blk_end may
4797 * be NULL if all blocks have to be deleted.
4798 */
4799 idx = htx_get_head(htx);
4800 blk_end = NULL;
4801 while (idx != -1) {
4802 type = htx_get_blk_type(htx_get_blk(htx, idx));
4803 idx = htx_get_next(htx, idx);
4804 if (type == HTX_BLK_EOH) {
4805 if (idx != -1)
4806 blk_end = htx_get_blk(htx, idx);
4807 break;
4808 }
4809 }
4810
4811 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004812 blk = htx_get_head_blk(htx);
Christopher Faulet43a686d2019-11-18 15:50:25 +01004813 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004814 ALREADY_CHECKED(blk);
4815 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004816 meth = htx_sl_req_meth(sl);
4817 path = htx_sl_req_uri(sl);
4818
4819 /* and the rest of the headers, that we dump starting at header 0 */
4820 hdr = 0;
4821
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004822 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004823 while ((idx = htx_get_next(htx, idx)) != -1) {
4824 blk = htx_get_blk(htx, idx);
4825 type = htx_get_blk_type(blk);
4826
4827 if (type == HTX_BLK_UNUSED)
4828 continue;
4829
4830 if (type != HTX_BLK_HDR)
4831 break;
4832
4833 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4834 goto fail;
4835
4836 list[hdr].n = htx_get_blk_name(htx, blk);
4837 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004838 hdr++;
4839 }
4840
4841 /* marker for end of headers */
4842 list[hdr].n = ist("");
4843
Willy Tarreau9c218e72019-05-26 10:08:28 +02004844 mbuf = br_tail(h2c->mbuf);
4845 retry:
4846 if (!h2_get_buf(h2c, mbuf)) {
4847 h2c->flags |= H2_CF_MUX_MALLOC;
4848 h2s->flags |= H2_SF_BLK_MROOM;
4849 return 0;
4850 }
4851
Willy Tarreau80739692018-10-05 11:35:57 +02004852 chunk_reset(&outbuf);
4853
4854 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004855 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4856 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004857 break;
4858 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004859 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004860 }
4861
4862 if (outbuf.size < 9)
4863 goto full;
4864
4865 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4866 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4867 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4868 outbuf.data = 9;
4869
4870 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004871 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004872 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004873 goto realign_again;
4874 goto full;
4875 }
4876
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004877 /* RFC7540 #8.3: the CONNECT method must have :
4878 * - :authority set to the URI part (host:port)
4879 * - :method set to CONNECT
4880 * - :scheme and :path omitted
4881 */
4882 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4883 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004884 struct ist scheme;
4885
4886 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4887 scheme = ist("http");
4888 else
4889 scheme = ist("https");
4890
4891 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004892 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004893 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004894 goto realign_again;
4895 goto full;
4896 }
Willy Tarreau80739692018-10-05 11:35:57 +02004897
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004898 /* encode the path, which necessarily is the second one */
4899 if (!hpack_encode_path(&outbuf, path)) {
4900 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004901 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004902 goto realign_again;
4903 goto full;
4904 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004905
4906 /* look for the Host header and place it in :authority */
4907 auth = ist2(NULL, 0);
4908 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4909 if (isteq(list[hdr].n, ist("")))
4910 break; // end
4911
4912 if (isteq(list[hdr].n, ist("host"))) {
4913 auth = list[hdr].v;
4914 break;
4915 }
4916 }
4917 }
4918 else {
4919 /* for CONNECT, :authority is taken from the path */
4920 auth = path;
4921 }
4922
4923 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4924 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004925 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004926 goto realign_again;
4927 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004928 }
4929
4930 /* encode all headers, stop at empty name */
4931 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004932 struct ist n = list[hdr].n;
4933 struct ist v = list[hdr].v;
4934
Willy Tarreau80739692018-10-05 11:35:57 +02004935 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004936 if (isteq(n, ist("connection")) ||
4937 isteq(n, ist("host")) ||
4938 isteq(n, ist("proxy-connection")) ||
4939 isteq(n, ist("keep-alive")) ||
4940 isteq(n, ist("upgrade")) ||
4941 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02004942 continue;
4943
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004944 if (isteq(n, ist("te"))) {
4945 /* "te" may only be sent with "trailers" if this value
4946 * is present, otherwise it must be deleted.
4947 */
4948 v = istist(v, ist("trailers"));
4949 if (!v.ptr || (v.len > 8 && v.ptr[8] != ','))
4950 continue;
4951 v = ist("trailers");
4952 }
4953
4954 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02004955 break; // end
4956
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004957 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02004958 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004959 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004960 goto realign_again;
4961 goto full;
4962 }
4963 }
4964
4965 /* we may need to add END_STREAM if we have no body :
4966 * - request already closed, or :
4967 * - no transfer-encoding, and :
4968 * - no content-length or content-length:0
4969 * Fixme: this doesn't take into account CONNECT requests.
4970 */
4971 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4972 es_now = 1;
4973
4974 if (sl->flags & HTX_SL_F_BODYLESS)
4975 es_now = 1;
4976
Willy Tarreau927b88b2019-03-04 08:03:25 +01004977 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004978 es_now = 1;
4979
4980 /* update the frame's size */
4981 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4982
4983 if (es_now)
4984 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4985
4986 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004987 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004988 h2s->flags |= H2_SF_HEADERS_SENT;
4989 h2s->st = H2_SS_OPEN;
4990
Willy Tarreau80739692018-10-05 11:35:57 +02004991 if (es_now) {
4992 // trim any possibly pending data (eg: inconsistent content-length)
4993 h2s->flags |= H2_SF_ES_SENT;
4994 h2s->st = H2_SS_HLOC;
4995 }
4996
4997 /* remove all header blocks including the EOH and compute the
4998 * corresponding size.
4999 *
5000 * FIXME: We should remove everything when es_now is set.
5001 */
5002 ret = 0;
5003 idx = htx_get_head(htx);
5004 blk = htx_get_blk(htx, idx);
5005 while (blk != blk_end) {
5006 ret += htx_get_blksz(blk);
5007 blk = htx_remove_blk(htx, blk);
5008 }
5009
Christopher Faulet316934d2019-05-15 14:22:48 +02005010 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5011 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02005012 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005013 }
Willy Tarreau80739692018-10-05 11:35:57 +02005014
5015 end:
5016 return ret;
5017 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005018 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5019 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005020 h2c->flags |= H2_CF_MUX_MFULL;
5021 h2s->flags |= H2_SF_BLK_MROOM;
5022 ret = 0;
5023 goto end;
5024 fail:
5025 /* unparsable HTX messages, too large ones to be produced in the local
5026 * list etc go here (unrecoverable errors).
5027 */
5028 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5029 ret = 0;
5030 goto end;
5031}
5032
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005033/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005034 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5035 * caller must check the stream's status to detect any error which might have
5036 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02005037 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005038 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01005039static size_t h2s_htx_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005040{
5041 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005042 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005043 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005044 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005045 size_t total = 0;
5046 int es_now = 0;
5047 int bsize; /* htx block size */
5048 int fsize; /* h2 frame size */
5049 struct htx_blk *blk;
5050 enum htx_blk_type type;
5051 int idx;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005052 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005053
5054 if (h2c_mux_busy(h2c, h2s)) {
5055 h2s->flags |= H2_SF_BLK_MBUSY;
5056 goto end;
5057 }
5058
Willy Tarreau98de12a2018-12-12 07:03:00 +01005059 htx = htx_from_buf(buf);
5060
Christopher Faulet54b5e212019-06-04 10:08:28 +02005061 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5062 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5063 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005064 */
5065
5066 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005067 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005068 goto end;
5069
5070 idx = htx_get_head(htx);
5071 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005072 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005073 bsize = htx_get_blksz(blk);
5074 fsize = bsize;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005075 trunc_out = 0;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005076
Christopher Faulet54b5e212019-06-04 10:08:28 +02005077 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005078 if (h2s->flags & H2_SF_ES_SENT) {
5079 /* ES already sent */
5080 htx_remove_blk(htx, blk);
5081 total++; // EOM counts as one byte
5082 count--;
5083 goto end;
5084 }
5085 }
5086 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005087 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005088
Willy Tarreau9c218e72019-05-26 10:08:28 +02005089 mbuf = br_tail(h2c->mbuf);
5090 retry:
5091 if (!h2_get_buf(h2c, mbuf)) {
5092 h2c->flags |= H2_CF_MUX_MALLOC;
5093 h2s->flags |= H2_SF_BLK_MROOM;
5094 goto end;
5095 }
5096
Willy Tarreau98de12a2018-12-12 07:03:00 +01005097 /* Perform some optimizations to reduce the number of buffer copies.
5098 * First, if the mux's buffer is empty and the htx area contains
5099 * exactly one data block of the same size as the requested count, and
5100 * this count fits within the frame size, the stream's window size, and
5101 * the connection's window size, then it's possible to simply swap the
5102 * caller's buffer with the mux's output buffer and adjust offsets and
5103 * length to match the entire DATA HTX block in the middle. In this
5104 * case we perform a true zero-copy operation from end-to-end. This is
5105 * the situation that happens all the time with large files. Second, if
5106 * this is not possible, but the mux's output buffer is empty, we still
5107 * have an opportunity to avoid the copy to the intermediary buffer, by
5108 * making the intermediary buffer's area point to the output buffer's
5109 * area. In this case we want to skip the HTX header to make sure that
5110 * copies remain aligned and that this operation remains possible all
5111 * the time. This goes for headers, data blocks and any data extracted
5112 * from the HTX blocks.
5113 */
5114 if (unlikely(fsize == count &&
5115 htx->used == 1 && type == HTX_BLK_DATA &&
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005116 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005117 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005118
Willy Tarreaubcc45952019-05-26 10:05:50 +02005119 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005120 /* Too bad there are data left there. We're willing to memcpy/memmove
5121 * up to 1/4 of the buffer, which means that it's OK to copy a large
5122 * frame into a buffer containing few data if it needs to be realigned,
5123 * and that it's also OK to copy few data without realigning. Otherwise
5124 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005125 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005126 if (fsize + 9 <= b_room(mbuf) &&
5127 (b_data(mbuf) <= b_size(mbuf) / 4 ||
5128 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf))))
Willy Tarreau98de12a2018-12-12 07:03:00 +01005129 goto copy;
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005130
Willy Tarreau9c218e72019-05-26 10:08:28 +02005131 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5132 goto retry;
5133
Willy Tarreau98de12a2018-12-12 07:03:00 +01005134 h2c->flags |= H2_CF_MUX_MFULL;
5135 h2s->flags |= H2_SF_BLK_MROOM;
5136 goto end;
5137 }
5138
5139 /* map an H2 frame to the HTX block so that we can put the
5140 * frame header there.
5141 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005142 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5143 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005144
5145 /* prepend an H2 DATA frame header just before the DATA block */
5146 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5147 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5148 h2_set_frame_size(outbuf.area, fsize);
5149
5150 /* update windows */
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005151 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005152 h2c->mws -= fsize;
5153
5154 /* and exchange with our old area */
5155 buf->area = old_area;
5156 buf->data = buf->head = 0;
5157 total += fsize;
5158 goto end;
5159 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005160
Willy Tarreau98de12a2018-12-12 07:03:00 +01005161 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005162 /* for DATA and EOM we'll have to emit a frame, even if empty */
5163
5164 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005165 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5166 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005167 break;
5168 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005169 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005170 }
5171
5172 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005173 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5174 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005175 h2c->flags |= H2_CF_MUX_MFULL;
5176 h2s->flags |= H2_SF_BLK_MROOM;
5177 goto end;
5178 }
5179
5180 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5181 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5182 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5183 outbuf.data = 9;
5184
5185 /* we have in <fsize> the exact number of bytes we need to copy from
5186 * the HTX buffer. We need to check this against the connection's and
5187 * the stream's send windows, and to ensure that this fits in the max
5188 * frame size and in the buffer's available space minus 9 bytes (for
5189 * the frame header). The connection's flow control is applied last so
5190 * that we can use a separate list of streams which are immediately
5191 * unblocked on window opening. Note: we don't implement padding.
5192 */
5193
5194 /* EOM is presented with bsize==1 but would lead to the emission of an
5195 * empty frame, thus we force it to zero here.
5196 */
5197 if (type == HTX_BLK_EOM)
5198 bsize = fsize = 0;
5199
5200 if (!fsize)
5201 goto send_empty;
5202
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005203 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005204 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005205 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005206 LIST_DEL_INIT(&h2s->list);
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005207 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005208 goto end;
5209 }
5210
Willy Tarreauee573762018-12-04 15:25:57 +01005211 if (fsize > count)
5212 fsize = count;
5213
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005214 if (fsize > h2s_mws(h2s))
5215 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005216
5217 if (h2c->mfs && fsize > h2c->mfs)
5218 fsize = h2c->mfs; // >0
5219
5220 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005221 /* It doesn't fit at once. If it at least fits once split and
5222 * the amount of data to move is low, let's defragment the
5223 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005224 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005225 if (b_space_wraps(mbuf) &&
5226 (fsize + 9 <= b_room(mbuf)) &&
5227 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005228 goto realign_again;
5229 fsize = outbuf.size - 9;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005230 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005231
5232 if (fsize <= 0) {
5233 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005234 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5235 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005236 h2c->flags |= H2_CF_MUX_MFULL;
5237 h2s->flags |= H2_SF_BLK_MROOM;
5238 goto end;
5239 }
5240 }
5241
5242 if (h2c->mws <= 0) {
5243 h2s->flags |= H2_SF_BLK_MFCTL;
5244 goto end;
5245 }
5246
5247 if (fsize > h2c->mws)
5248 fsize = h2c->mws;
5249
5250 /* now let's copy this this into the output buffer */
5251 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005252 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005253 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005254 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005255
5256 send_empty:
5257 /* update the frame's size */
5258 h2_set_frame_size(outbuf.area, fsize);
5259
5260 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5261 * meeting EOM. We should optimize this later.
5262 */
5263 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005264 total++; // EOM counts as one byte
5265 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005266 es_now = 1;
5267 }
5268
5269 if (es_now)
5270 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5271
5272 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005273 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005274
5275 /* consume incoming HTX block, including EOM */
5276 total += fsize;
5277 if (fsize == bsize) {
5278 htx_remove_blk(htx, blk);
5279 if (fsize)
5280 goto new_frame;
5281 } else {
5282 /* we've truncated this block */
5283 htx_cut_data_blk(htx, blk, fsize);
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005284 if (trunc_out)
5285 goto new_frame;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005286 }
5287
5288 if (es_now) {
5289 if (h2s->st == H2_SS_OPEN)
5290 h2s->st = H2_SS_HLOC;
5291 else
5292 h2s_close(h2s);
5293
5294 h2s->flags |= H2_SF_ES_SENT;
5295 }
5296
5297 end:
5298 return total;
5299}
5300
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005301/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5302 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5303 * processed. The caller must check the stream's status to detect any error
5304 * which might have happened subsequently to a successful send. The htx blocks
5305 * are automatically removed from the message. The htx message is assumed to be
5306 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005307 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005308 * as a single frame. The ES flag is always set.
5309 */
5310static size_t h2s_htx_make_trailers(struct h2s *h2s, struct htx *htx)
5311{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005312 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005313 struct h2c *h2c = h2s->h2c;
5314 struct htx_blk *blk;
5315 struct htx_blk *blk_end;
5316 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005317 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005318 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005319 int ret = 0;
5320 int hdr;
5321 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005322
5323 if (h2c_mux_busy(h2c, h2s)) {
5324 h2s->flags |= H2_SF_BLK_MBUSY;
5325 goto end;
5326 }
5327
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005328 /* determine the first block which must not be deleted, blk_end may
5329 * be NULL if all blocks have to be deleted. also get trailers.
5330 */
5331 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005332 blk_end = NULL;
5333
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005334 hdr = 0;
5335 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005336 blk = htx_get_blk(htx, idx);
5337 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005338 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005339 if (type == HTX_BLK_UNUSED)
5340 continue;
5341
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005342 if (type == HTX_BLK_EOT) {
5343 if (idx != -1)
5344 blk_end = blk;
5345 break;
5346 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005347 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005348 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005349
5350 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
5351 goto fail;
5352
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005353 list[hdr].n = htx_get_blk_name(htx, blk);
5354 list[hdr].v = htx_get_blk_value(htx, blk);
5355 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005356 }
5357
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005358 /* marker for end of trailers */
5359 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005360
Willy Tarreau9c218e72019-05-26 10:08:28 +02005361 mbuf = br_tail(h2c->mbuf);
5362 retry:
5363 if (!h2_get_buf(h2c, mbuf)) {
5364 h2c->flags |= H2_CF_MUX_MALLOC;
5365 h2s->flags |= H2_SF_BLK_MROOM;
5366 goto end;
5367 }
5368
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005369 chunk_reset(&outbuf);
5370
5371 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005372 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5373 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005374 break;
5375 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005376 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005377 }
5378
5379 if (outbuf.size < 9)
5380 goto full;
5381
5382 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5383 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5384 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5385 outbuf.data = 9;
5386
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005387 /* encode all headers */
5388 for (idx = 0; idx < hdr; idx++) {
5389 /* these ones do not exist in H2 or must not appear in
5390 * trailers and must be dropped.
5391 */
5392 if (isteq(list[idx].n, ist("host")) ||
5393 isteq(list[idx].n, ist("content-length")) ||
5394 isteq(list[idx].n, ist("connection")) ||
5395 isteq(list[idx].n, ist("proxy-connection")) ||
5396 isteq(list[idx].n, ist("keep-alive")) ||
5397 isteq(list[idx].n, ist("upgrade")) ||
5398 isteq(list[idx].n, ist("te")) ||
5399 isteq(list[idx].n, ist("transfer-encoding")))
5400 continue;
5401
5402 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5403 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005404 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005405 goto realign_again;
5406 goto full;
5407 }
5408 }
5409
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005410 if (outbuf.data == 9) {
5411 /* here we have a problem, we have nothing to emit (either we
5412 * received an empty trailers block followed or we removed its
5413 * contents above). Because of this we can't send a HEADERS
5414 * frame, so we have to cheat and instead send an empty DATA
5415 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005416 */
5417 outbuf.area[3] = H2_FT_DATA;
5418 outbuf.area[4] = H2_F_DATA_END_STREAM;
5419 }
5420
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005421 /* update the frame's size */
5422 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5423
5424 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005425 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005426 h2s->flags |= H2_SF_ES_SENT;
5427
5428 if (h2s->st == H2_SS_OPEN)
5429 h2s->st = H2_SS_HLOC;
5430 else
5431 h2s_close(h2s);
5432
5433 /* OK we could properly deliver the response */
5434 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005435 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005436 ret = 0;
5437 idx = htx_get_head(htx);
5438 blk = htx_get_blk(htx, idx);
5439 while (blk != blk_end) {
5440 ret += htx_get_blksz(blk);
5441 blk = htx_remove_blk(htx, blk);
5442 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005443
5444 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5445 ret += htx_get_blksz(blk_end);
5446 htx_remove_blk(htx, blk_end);
5447 }
5448
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005449 end:
5450 return ret;
5451 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005452 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5453 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005454 h2c->flags |= H2_CF_MUX_MFULL;
5455 h2s->flags |= H2_SF_BLK_MROOM;
5456 ret = 0;
5457 goto end;
5458 fail:
5459 /* unparsable HTX messages, too large ones to be produced in the local
5460 * list etc go here (unrecoverable errors).
5461 */
5462 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5463 ret = 0;
5464 goto end;
5465}
5466
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005467/* Called from the upper layer, to subscribe to events, such as being able to send.
5468 * The <param> argument here is supposed to be a pointer to a wait_event struct
5469 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5470 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5471 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5472 * returns 0 except for the error above.
5473 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005474static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5475{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005476 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005477 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005478 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005479
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005480 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005481 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005482 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5483 sw->events |= SUB_RETRY_RECV;
5484 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005485 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005486 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005487 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +02005488 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005489 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5490 sw->events |= SUB_RETRY_SEND;
5491 h2s->send_wait = sw;
5492 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5493 !LIST_ADDED(&h2s->list)) {
5494 if (h2s->flags & H2_SF_BLK_MFCTL)
5495 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5496 else
5497 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005498 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005499 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005500 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005501 if (event_type != 0)
5502 return -1;
5503 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005504}
5505
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005506/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5507 * The <param> argument here is supposed to be a pointer to the same wait_event
5508 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5509 * It always returns zero.
5510 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005511static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5512{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005513 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005514 struct h2s *h2s = cs->ctx;
5515
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005516 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005517 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005518 BUG_ON(h2s->recv_wait != sw);
5519 sw->events &= ~SUB_RETRY_RECV;
5520 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005521 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005522 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005523 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005524 BUG_ON(h2s->send_wait != sw);
5525 LIST_DEL(&h2s->list);
5526 LIST_INIT(&h2s->list);
5527 sw->events &= ~SUB_RETRY_SEND;
5528 /* We were about to send, make sure it does not happen */
5529 if (LIST_ADDED(&h2s->sending_list) &&
5530 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02005531 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005532 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005533 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005534 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005535 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005536 return 0;
5537}
5538
5539
Olivier Houchard511efea2018-08-16 15:30:32 +02005540/* Called from the upper layer, to receive data */
5541static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5542{
Olivier Houchard638b7992018-08-16 15:41:52 +02005543 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005544 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005545 struct htx *h2s_htx = NULL;
5546 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005547 size_t ret = 0;
5548
5549 /* transfer possibly pending data to the upper layer */
Willy Tarreau86724e22018-12-01 23:19:43 +01005550 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau86724e22018-12-01 23:19:43 +01005551 h2s_htx = htx_from_buf(&h2s->rxbuf);
Olivier Houchard56b03482018-12-10 16:09:53 +01005552 if (htx_is_empty(h2s_htx)) {
Christopher Faulet37070b22019-02-14 15:12:14 +01005553 /* Here htx_to_buf() will set buffer data to 0 because
5554 * the HTX is empty.
5555 */
5556 htx_to_buf(h2s_htx, &h2s->rxbuf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005557 goto end;
Olivier Houchard56b03482018-12-10 16:09:53 +01005558 }
Willy Tarreau86724e22018-12-01 23:19:43 +01005559
Christopher Faulet156852b2019-05-16 11:29:13 +02005560 ret = h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005561 buf_htx = htx_from_buf(buf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005562
Christopher Faulet2f6edc82019-05-15 10:07:59 +02005563 /* <buf> is empty and the message is small enough, swap the
5564 * buffers. */
5565 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
5566 htx_to_buf(buf_htx, buf);
5567 htx_to_buf(h2s_htx, &h2s->rxbuf);
5568 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5569 goto end;
5570 }
5571
Christopher Faulet156852b2019-05-16 11:29:13 +02005572 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005573
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005574 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
Willy Tarreau7196dd62019-03-05 10:51:11 +01005575 buf_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005576 if (htx_is_empty(buf_htx))
5577 cs->flags |= CS_FL_EOI;
5578 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005579
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01005580 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005581 htx_to_buf(buf_htx, buf);
5582 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet156852b2019-05-16 11:29:13 +02005583 ret -= h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005584 }
5585 else {
5586 ret = b_xfer(buf, &h2s->rxbuf, count);
5587 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005588
Christopher Faulet37070b22019-02-14 15:12:14 +01005589 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005590 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005591 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005592 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005593 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005594 if (h2s->flags & H2_SF_ES_RCVD)
5595 cs->flags |= CS_FL_EOI;
Christopher Faulet11b10532020-10-08 15:38:41 +02005596 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005597 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005598 if (cs->flags & CS_FL_ERR_PENDING)
5599 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005600 if (b_size(&h2s->rxbuf)) {
5601 b_free(&h2s->rxbuf);
5602 offer_buffers(NULL, tasks_run_queue);
5603 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005604 }
5605
Willy Tarreau082f5592018-11-25 08:03:32 +01005606 if (ret && h2c->dsi == h2s->id) {
5607 /* demux is blocking on this stream's buffer */
5608 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005609 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005610 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005611
Olivier Houchard511efea2018-08-16 15:30:32 +02005612 return ret;
5613}
5614
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005615/* stops all senders of this connection for example when the mux buffer is full.
5616 * They are moved from the sending_list to either fctl_list or send_list.
5617 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005618static void h2_stop_senders(struct h2c *h2c)
5619{
5620 struct h2s *h2s, *h2s_back;
5621
Olivier Houchardd360ac62019-03-22 17:37:16 +01005622 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5623 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02005624 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005625 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005626 }
5627}
5628
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005629/* Called from the upper layer, to send data from buffer <buf> for no more than
5630 * <count> bytes. Returns the number of bytes effectively sent. Some status
5631 * flags may be updated on the conn_stream.
5632 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005633static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005634{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005635 struct h2s *h2s = cs->ctx;
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005636 size_t orig_count = count;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005637 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005638 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005639 struct htx *htx;
5640 struct htx_blk *blk;
5641 enum htx_blk_type btype;
5642 uint32_t bsize;
5643 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005644
Olivier Houchardd360ac62019-03-22 17:37:16 +01005645 /* If we were not just woken because we wanted to send but couldn't,
5646 * and there's somebody else that is waiting to send, do nothing,
5647 * we will subscribe later and be put at the end of the list
5648 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005649 if (!LIST_ADDED(&h2s->sending_list) &&
Olivier Houchardd360ac62019-03-22 17:37:16 +01005650 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list)))
5651 return 0;
Olivier Houchard998410a2019-04-15 19:23:37 +02005652 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005653
Olivier Houchard998410a2019-04-15 19:23:37 +02005654 /* We couldn't set it to NULL before, because we needed it in case
5655 * we had to cancel the tasklet
5656 */
5657 h2s->send_wait = NULL;
5658
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005659 if (h2s->h2c->st0 < H2_CS_FRAME_H)
5660 return 0;
5661
Willy Tarreau902df222019-10-31 15:48:18 +01005662 if (h2s->h2c->st0 >= H2_CS_ERROR) {
5663 cs->flags |= CS_FL_ERROR;
5664 return 0;
5665 }
5666
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005667 /* htx will be enough to decide if we're using HTX or legacy */
5668 htx = (h2s->h2c->proxy->options2 & PR_O2_USE_HTX) ? htx_from_buf(buf) : NULL;
5669
Willy Tarreau0bad0432018-06-14 16:54:01 +02005670 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005671 h2s->flags |= H2_SF_OUTGOING_DATA;
5672
Willy Tarreau751f2d02018-10-05 09:35:00 +02005673 if (h2s->id == 0) {
5674 int32_t id = h2c_get_next_sid(h2s->h2c);
5675
5676 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005677 cs->flags |= CS_FL_ERROR;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005678 return 0;
5679 }
5680
5681 eb32_delete(&h2s->by_id);
5682 h2s->by_id.key = h2s->id = id;
5683 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005684 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005685 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5686 }
5687
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005688 if (htx) {
Willy Tarreau2b778482019-05-06 15:00:22 +02005689 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
Willy Tarreauc14999b2018-12-06 14:09:09 +01005690 count && !htx_is_empty(htx)) {
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005691 idx = htx_get_head(htx);
5692 blk = htx_get_blk(htx, idx);
5693 btype = htx_get_blk_type(blk);
5694 bsize = htx_get_blksz(blk);
5695
5696 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005697 case HTX_BLK_REQ_SL:
5698 /* start-line before headers */
5699 ret = h2s_htx_bck_make_req_headers(h2s, htx);
5700 if (ret > 0) {
5701 total += ret;
5702 count -= ret;
5703 if (ret < bsize)
5704 goto done;
5705 }
5706 break;
5707
Willy Tarreau115e83b2018-12-01 19:17:53 +01005708 case HTX_BLK_RES_SL:
5709 /* start-line before headers */
5710 ret = h2s_htx_frt_make_resp_headers(h2s, htx);
5711 if (ret > 0) {
5712 total += ret;
5713 count -= ret;
5714 if (ret < bsize)
5715 goto done;
5716 }
5717 break;
5718
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005719 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005720 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005721 /* all these cause the emission of a DATA frame (possibly empty).
5722 * This EOM necessarily is one before trailers, as the EOM following
5723 * trailers would have been consumed by the trailers parser.
5724 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01005725 ret = h2s_htx_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005726 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005727 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005728 total += ret;
5729 count -= ret;
5730 if (ret < bsize)
5731 goto done;
5732 }
5733 break;
5734
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005735 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005736 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005737 /* This is the first trailers block, all the subsequent ones AND
5738 * the EOM will be swallowed by the parser.
5739 */
5740 ret = h2s_htx_make_trailers(h2s, htx);
5741 if (ret > 0) {
5742 total += ret;
5743 count -= ret;
5744 if (ret < bsize)
5745 goto done;
5746 }
5747 break;
5748
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005749 default:
5750 htx_remove_blk(htx, blk);
5751 total += bsize;
5752 count -= bsize;
5753 break;
5754 }
5755 }
5756 goto done;
5757 }
5758
5759 /* legacy transfer mode */
Willy Tarreaua40704a2018-09-11 13:52:04 +02005760 while (h2s->h1m.state < H1_MSG_DONE && count) {
Willy Tarreau001823c2018-09-12 17:25:32 +02005761 if (h2s->h1m.state <= H1_MSG_LAST_LF) {
Willy Tarreau80739692018-10-05 11:35:57 +02005762 if (h2s->h2c->flags & H2_CF_IS_BACK)
5763 ret = -1;
5764 else
5765 ret = h2s_frt_make_resp_headers(h2s, buf, total, count);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005766 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005767 else if (h2s->h1m.state < H1_MSG_TRAILERS) {
Willy Tarreau0bad0432018-06-14 16:54:01 +02005768 ret = h2s_frt_make_resp_data(h2s, buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005769 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005770 else if (h2s->h1m.state == H1_MSG_TRAILERS) {
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005771 /* consume the trailers if any (we don't forward them for now) */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005772 ret = h1_measure_trailers(buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005773
Willy Tarreau5dd17352018-06-14 13:33:30 +02005774 if (unlikely((int)ret <= 0)) {
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02005775 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005776 break;
5777 }
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02005778
Willy Tarreau35a62702018-02-27 15:37:25 +01005779 // trim any possibly pending data (eg: extra CR-LF, ...)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005780 total += count;
5781 count = 0;
Willy Tarreaua40704a2018-09-11 13:52:04 +02005782 h2s->h1m.state = H1_MSG_DONE;
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005783 break;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02005784 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005785 else {
Willy Tarreauec988c72018-12-19 18:00:29 +01005786 cs_set_error(cs);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005787 break;
5788 }
Willy Tarreau0bad0432018-06-14 16:54:01 +02005789
5790 total += ret;
5791 count -= ret;
5792
Willy Tarreau2b778482019-05-06 15:00:22 +02005793 if (h2s->st >= H2_SS_HLOC)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005794 break;
5795
5796 if (h2s->flags & H2_SF_BLK_ANY)
5797 break;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005798 }
5799
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005800 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005801 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005802 /* trim any possibly pending data after we close (extra CR-LF,
5803 * unprocessed trailers, abnormal extra data, ...)
5804 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005805 total += count;
5806 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005807 }
5808
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005809 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005810 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreauec988c72018-12-19 18:00:29 +01005811 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005812 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005813 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005814 }
5815
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005816 if (htx) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005817 htx_to_buf(htx, buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005818 } else {
5819 b_del(buf, total);
5820 }
Olivier Houchardd846c262018-10-19 17:24:29 +02005821
5822 /* The mux is full, cancel the pending tasks */
5823 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
5824 (h2s->flags & H2_SF_BLK_MBUSY))
5825 h2_stop_senders(h2s->h2c);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005826
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005827 /* If we're running HTX, and we read the whole buffer, then pretend
5828 * we read exactly what the caller specified, as with HTX the caller
5829 * will always give the buffer size, instead of the amount of data
5830 * available.
5831 */
5832 if (htx && !b_data(buf))
5833 total = orig_count;
5834
Olivier Houchard7505f942018-08-21 18:10:44 +02005835 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005836 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005837 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005838
Olivier Houchard7505f942018-08-21 18:10:44 +02005839 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005840 /* If we're waiting for flow control, and we got a shutr on the
5841 * connection, we will never be unlocked, so add an error on
5842 * the conn_stream.
5843 */
5844 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5845 !b_data(&h2s->h2c->dbuf) &&
5846 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
5847 if (cs->flags & CS_FL_EOS)
5848 cs->flags |= CS_FL_ERROR;
5849 else
5850 cs->flags |= CS_FL_ERR_PENDING;
5851 }
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005852
5853 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL)) {
5854 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005855 LIST_DEL_INIT(&h2s->list);
5856 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005857 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005858}
5859
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005860/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005861static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005862{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005863 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005864 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005865 struct eb32_node *node;
5866 int fctl_cnt = 0;
5867 int send_cnt = 0;
5868 int tree_cnt = 0;
5869 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005870 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005871
5872 if (!h2c)
5873 return;
5874
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005875 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005876 fctl_cnt++;
5877
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005878 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005879 send_cnt++;
5880
Willy Tarreau3af37712018-12-18 14:34:41 +01005881 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005882 node = eb32_first(&h2c->streams_by_id);
5883 while (node) {
5884 h2s = container_of(node, struct h2s, by_id);
5885 tree_cnt++;
5886 if (!h2s->cs)
5887 orph_cnt++;
5888 node = eb32_next(node);
5889 }
5890
Willy Tarreau60f62682019-05-26 11:32:27 +02005891 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005892 tmbuf = br_tail(h2c->mbuf);
Willy Tarreau987c0632018-12-18 10:32:05 +01005893 chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
5894 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005895 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5896 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau616ac812018-07-24 14:12:42 +02005897 h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
5898 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005899 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005900 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5901 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5902 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005903 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5904 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5905 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005906 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5907 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005908
5909 if (h2s) {
5910 chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5911 h2s, h2s->id, h2s->flags,
5912 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5913 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5914 h2s->cs);
5915 if (h2s->cs)
5916 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5917 h2s->cs->flags, h2s->cs->data);
5918 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005919}
Willy Tarreau62f52692017-10-08 23:01:42 +02005920
5921/*******************************************************/
5922/* functions below are dedicated to the config parsers */
5923/*******************************************************/
5924
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005925/* config parser for global "tune.h2.header-table-size" */
5926static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5927 struct proxy *defpx, const char *file, int line,
5928 char **err)
5929{
5930 if (too_many_args(1, args, err, NULL))
5931 return -1;
5932
5933 h2_settings_header_table_size = atoi(args[1]);
5934 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5935 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5936 return -1;
5937 }
5938 return 0;
5939}
Willy Tarreau62f52692017-10-08 23:01:42 +02005940
Willy Tarreaue6baec02017-07-27 11:45:11 +02005941/* config parser for global "tune.h2.initial-window-size" */
5942static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5943 struct proxy *defpx, const char *file, int line,
5944 char **err)
5945{
5946 if (too_many_args(1, args, err, NULL))
5947 return -1;
5948
5949 h2_settings_initial_window_size = atoi(args[1]);
5950 if (h2_settings_initial_window_size < 0) {
5951 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5952 return -1;
5953 }
5954 return 0;
5955}
5956
Willy Tarreau5242ef82017-07-27 11:47:28 +02005957/* config parser for global "tune.h2.max-concurrent-streams" */
5958static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5959 struct proxy *defpx, const char *file, int line,
5960 char **err)
5961{
5962 if (too_many_args(1, args, err, NULL))
5963 return -1;
5964
5965 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005966 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005967 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5968 return -1;
5969 }
5970 return 0;
5971}
5972
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005973/* config parser for global "tune.h2.max-frame-size" */
5974static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5975 struct proxy *defpx, const char *file, int line,
5976 char **err)
5977{
5978 if (too_many_args(1, args, err, NULL))
5979 return -1;
5980
5981 h2_settings_max_frame_size = atoi(args[1]);
5982 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5983 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5984 return -1;
5985 }
5986 return 0;
5987}
5988
Willy Tarreau62f52692017-10-08 23:01:42 +02005989
5990/****************************************/
5991/* MUX initialization and instanciation */
5992/***************************************/
5993
5994/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005995static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005996 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005997 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005998 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005999 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006000 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006001 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006002 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006003 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006004 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006005 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006006 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006007 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006008 .shutr = h2_shutr,
6009 .shutw = h2_shutw,
Olivier Houchard198d1292019-10-25 16:19:26 +02006010 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006011 .show_fd = h2_show_fd,
Willy Tarreau28f1cb92017-12-20 16:14:44 +01006012 .flags = MX_FL_CLEAN_ABRT,
Willy Tarreau62f52692017-10-08 23:01:42 +02006013 .name = "H2",
6014};
6015
Christopher Faulet32f61c02018-04-10 14:33:41 +02006016/* PROTO selection : this mux registers PROTO token "h2" */
6017static struct mux_proto_list mux_proto_h2 =
Willy Tarreauf8957272018-10-03 10:25:20 +02006018 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_FE, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006019
Willy Tarreau0108d902018-11-25 19:14:37 +01006020INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6021
Christopher Faulet9b579102019-04-11 22:52:25 +02006022
6023/* The mux operations */
6024static const struct mux_ops h2_htx_ops = {
6025 .init = h2_init,
6026 .wake = h2_wake,
6027 .snd_buf = h2_snd_buf,
6028 .rcv_buf = h2_rcv_buf,
6029 .subscribe = h2_subscribe,
6030 .unsubscribe = h2_unsubscribe,
6031 .attach = h2_attach,
6032 .get_first_cs = h2_get_first_cs,
6033 .detach = h2_detach,
6034 .destroy = h2_destroy,
6035 .avail_streams = h2_avail_streams,
6036 .used_streams = h2_used_streams,
6037 .shutr = h2_shutr,
6038 .shutw = h2_shutw,
Olivier Houchard198d1292019-10-25 16:19:26 +02006039 .ctl = h2_ctl,
Christopher Faulet9b579102019-04-11 22:52:25 +02006040 .show_fd = h2_show_fd,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02006041 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Christopher Faulet9b579102019-04-11 22:52:25 +02006042 .name = "H2",
6043};
6044
Willy Tarreauf8957272018-10-03 10:25:20 +02006045static struct mux_proto_list mux_proto_h2_htx =
Christopher Faulet9b579102019-04-11 22:52:25 +02006046 { .token = IST("h2"), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &h2_htx_ops };
Willy Tarreauf8957272018-10-03 10:25:20 +02006047
6048INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2_htx);
6049
Willy Tarreau62f52692017-10-08 23:01:42 +02006050/* config keyword parsers */
6051static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006052 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006053 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006054 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006055 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006056 { 0, NULL, NULL }
6057}};
6058
Willy Tarreau0108d902018-11-25 19:14:37 +01006059INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);