blob: f1f816da2d355945f53ba67618405fc7df7b6eeb [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 Tarreau3b94d982021-01-20 10:53:13 +01002881 if (max && !ret && h2_recv_allowed(h2c)) {
2882 if (conn_xprt_read0_pending(h2c->conn))
2883 h2c->flags |= H2_CF_RCVD_SHUT;
2884 else
2885 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 Tarreauc9fa0482018-07-10 17:43:27 +02003024 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003025 h2_process_demux(h2c);
3026
3027 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003028 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003029
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003030 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003031 h2c->flags &= ~H2_CF_DEM_DFULL;
3032 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003033 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003034
Willy Tarreau318822b2020-10-13 18:09:15 +02003035 if (unlikely(h2c->proxy->state == PR_STSTOPPED) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003036 /* frontend is stopping, reload likely in progress, let's try
3037 * to announce a graceful shutdown if not yet done. We don't
3038 * care if it fails, it will be tried again later.
3039 */
3040 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3041 if (h2c->last_sid < 0)
3042 h2c->last_sid = (1U << 31) - 1;
3043 h2c_send_goaway_error(h2c, NULL);
3044 }
3045 }
3046
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003047 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003048 * If we received early data, and the handshake is done, wake
3049 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003050 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003051 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3052 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3053 struct eb32_node *node;
3054 struct h2s *h2s;
3055
3056 h2c->flags |= H2_CF_WAIT_FOR_HS;
3057 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3058
3059 while (node) {
3060 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003061 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003062 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003063 node = eb32_next(node);
3064 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003065 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003066
Christopher Faulet11b10532020-10-08 15:38:41 +02003067 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003068 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3069 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3070 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003071 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003072
3073 if (eb_is_empty(&h2c->streams_by_id)) {
3074 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003075 h2_release(h2c);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003076 return -1;
3077 }
Willy Tarreauab66e152019-10-31 15:36:30 +01003078
3079 /* connections in error must be removed from the idle lists */
3080 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3081 LIST_DEL_LOCKED(&conn->list);
3082 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3083 }
3084 else if (h2c->st0 == H2_CS_ERROR) {
3085 /* connections in error must be removed from the idle lists */
3086 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3087 LIST_DEL_LOCKED(&conn->list);
3088 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003089 }
3090
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003091 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003092 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003093
Olivier Houchard53216e72018-10-10 15:46:36 +02003094 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3095 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3096 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003097 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003098 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3099 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003100 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003101
Willy Tarreau3f133572017-10-31 19:21:06 +01003102 if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003103 if (h2c_may_expire(h2c))
3104 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3105 else
3106 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003107 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003108 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003109
Olivier Houchard7505f942018-08-21 18:10:44 +02003110 h2_send(h2c);
Willy Tarreau62f52692017-10-08 23:01:42 +02003111 return 0;
3112}
3113
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003114/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003115static int h2_wake(struct connection *conn)
3116{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003117 struct h2c *h2c = conn->ctx;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003118
3119 return (h2_process(h2c));
3120}
3121
Willy Tarreauea392822017-10-31 10:02:25 +01003122/* Connection timeout management. The principle is that if there's no receipt
3123 * nor sending for a certain amount of time, the connection is closed. If the
3124 * MUX buffer still has lying data or is not allocatable, the connection is
3125 * immediately killed. If it's allocatable and empty, we attempt to send a
3126 * GOAWAY frame.
3127 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003128static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003129{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003130 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003131 int expired = tick_is_expired(t->expire, now_ms);
3132
Willy Tarreau0975f112018-03-29 15:22:59 +02003133 if (!expired && h2c)
Willy Tarreauea392822017-10-31 10:02:25 +01003134 return t;
3135
Willy Tarreau534d8f92019-10-01 10:12:00 +02003136 if (h2c && !h2c_may_expire(h2c)) {
3137 /* we do still have streams but all of them are idle, waiting
3138 * for the data layer, so we must not enforce the timeout here.
3139 */
3140 t->expire = TICK_ETERNITY;
3141 return t;
3142 }
3143
Olivier Houchard3f795f72019-04-17 22:51:06 +02003144 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003145
3146 if (!h2c) {
3147 /* resources were already deleted */
3148 return NULL;
3149 }
3150
3151 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003152 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003153 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003154
Willy Tarreau662fafc2019-05-26 09:43:07 +02003155 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003156 /* don't even try to send a GOAWAY, the buffer is stuck */
3157 h2c->flags |= H2_CF_GOAWAY_FAILED;
3158 }
3159
3160 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003161 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003162 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3163 h2c->flags |= H2_CF_GOAWAY_FAILED;
3164
Willy Tarreau662fafc2019-05-26 09:43:07 +02003165 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003166 unsigned int released = 0;
3167 struct buffer *buf;
3168
3169 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3170 if (b_data(buf)) {
3171 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3172 if (!ret)
3173 break;
3174 b_del(buf, ret);
3175 if (b_data(buf))
3176 break;
3177 b_free(buf);
3178 released++;
3179 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003180 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003181
3182 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003183 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003184 }
Willy Tarreauea392822017-10-31 10:02:25 +01003185
Willy Tarreauab66e152019-10-31 15:36:30 +01003186 /* in any case this connection must not be considered idle anymore */
3187 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3188 LIST_DEL_LOCKED(&h2c->conn->list);
3189 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3190
Willy Tarreau0975f112018-03-29 15:22:59 +02003191 /* either we can release everything now or it will be done later once
3192 * the last stream closes.
3193 */
3194 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003195 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003196
Willy Tarreauea392822017-10-31 10:02:25 +01003197 return NULL;
3198}
3199
3200
Willy Tarreau62f52692017-10-08 23:01:42 +02003201/*******************************************/
3202/* functions below are used by the streams */
3203/*******************************************/
3204
3205/*
3206 * Attach a new stream to a connection
3207 * (Used for outgoing connections)
3208 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003209static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003210{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003211 struct conn_stream *cs;
3212 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003213 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003214
3215 cs = cs_new(conn);
3216 if (!cs)
3217 return NULL;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003218 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003219 if (!h2s) {
3220 cs_free(cs);
3221 return NULL;
3222 }
3223 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003224}
3225
Willy Tarreaufafd3982018-11-18 21:29:20 +01003226/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3227 * We have to scan because we may have some orphan streams. It might be
3228 * beneficial to scan backwards from the end to reduce the likeliness to find
3229 * orphans.
3230 */
3231static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3232{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003233 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003234 struct h2s *h2s;
3235 struct eb32_node *node;
3236
3237 node = eb32_first(&h2c->streams_by_id);
3238 while (node) {
3239 h2s = container_of(node, struct h2s, by_id);
3240 if (h2s->cs)
3241 return h2s->cs;
3242 node = eb32_next(node);
3243 }
3244 return NULL;
3245}
3246
Olivier Houchard198d1292019-10-25 16:19:26 +02003247static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3248{
3249 int ret = 0;
3250 struct h2c *h2c = conn->ctx;
3251
3252 switch (mux_ctl) {
3253 case MUX_STATUS:
3254 /* Only consider the mux to be ready if we're done with
3255 * the preface and settings, and we had no error.
3256 */
3257 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
3258 ret |= MUX_STATUS_READY;
3259 return ret;
3260 default:
3261 return -1;
3262 }
3263}
3264
Willy Tarreau62f52692017-10-08 23:01:42 +02003265/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003266 * Destroy the mux and the associated connection, if it is no longer used
3267 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003268static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003269{
Christopher Faulet73c12072019-04-08 11:23:22 +02003270 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003271
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003272 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003273 h2_release(h2c);
Olivier Houchard060ed432018-11-06 16:32:42 +01003274}
3275
3276/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003277 * Detach the stream from the connection and possibly release the connection.
3278 */
3279static void h2_detach(struct conn_stream *cs)
3280{
Willy Tarreau60935142017-10-16 18:11:19 +02003281 struct h2s *h2s = cs->ctx;
3282 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003283 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003284
3285 cs->ctx = NULL;
3286 if (!h2s)
3287 return;
3288
Olivier Houchard998410a2019-04-15 19:23:37 +02003289 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003290 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003291 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003292 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003293 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003294 /*
3295 * At this point, the stream_interface is supposed to have called
3296 * h2_unsubscribe(), so the only way there's still a
3297 * subscription that came from the stream_interface (as we
3298 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3299 * without the stream_interface involved) is that we subscribed
3300 * for sending, we woke the tasklet up and removed the
3301 * SUB_RETRY_SEND flag, so the stream_interface would not
3302 * know it has to unsubscribe for send, but the tasklet hasn't
3303 * run yet. Make sure to handle that by explicitely setting
3304 * send_wait to NULL, as nothing else will do it for us.
3305 */
3306 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003307 }
3308
Olivier Houchardf502aca2018-12-14 19:42:40 +01003309 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003310 h2c = h2s->h2c;
3311 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003312 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003313 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3314 !h2_frt_has_too_many_cs(h2c)) {
3315 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003316 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003317 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003318 }
Willy Tarreau60935142017-10-16 18:11:19 +02003319
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003320 /* this stream may be blocked waiting for some data to leave (possibly
3321 * an ES or RST frame), so orphan it in this case.
3322 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003323 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003324 (h2c->st0 < H2_CS_ERROR) &&
Olivier Houchard16ff2612019-03-21 15:48:46 +01003325 (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 +01003326 return;
3327
Willy Tarreau45f752e2017-10-30 15:44:59 +01003328 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3329 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3330 /* unblock the connection if it was blocked on this
3331 * stream.
3332 */
3333 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3334 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003335 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003336 }
3337
Willy Tarreau71049cc2018-03-28 13:56:39 +02003338 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003339
Olivier Houchard8a786902018-12-15 16:05:40 +01003340 if (h2c->flags & H2_CF_IS_BACK &&
3341 (h2c->proxy->options2 & PR_O2_USE_HTX)) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003342 if (!(h2c->conn->flags &
3343 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3344 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003345 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003346 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3347 h2c->conn->owner = NULL;
3348 if (eb_is_empty(&h2c->streams_by_id)) {
3349 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3350 /* The server doesn't want it, let's kill the connection right away */
Olivier Houchard109ba132020-02-14 13:23:45 +01003351 h2c->conn->mux->destroy(h2c);
Olivier Houchard351411f2018-12-27 17:20:54 +01003352 return;
3353 }
3354 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003355 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003356 if (eb_is_empty(&h2c->streams_by_id)) {
3357 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0)
3358 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
3359 return;
3360 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003361 /* Never ever allow to reuse a connection from a non-reuse backend */
3362 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3363 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003364 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003365 struct server *srv = objt_server(h2c->conn->target);
3366
3367 if (srv) {
3368 if (h2c->conn->flags & CO_FL_PRIVATE)
3369 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3370 else
3371 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3372 }
3373
3374 }
3375 }
3376 }
3377
Willy Tarreaue323f342018-03-28 13:51:45 +02003378 /* We don't want to close right now unless we're removing the
3379 * last stream, and either the connection is in error, or it
3380 * reached the ID already specified in a GOAWAY frame received
3381 * or sent (as seen by last_sid >= 0).
3382 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003383 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003384 /* no more stream will come, kill it now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003385 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003386 }
3387 else if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003388 if (h2c_may_expire(h2c))
3389 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3390 else
3391 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003392 task_queue(h2c->task);
Willy Tarreau60935142017-10-16 18:11:19 +02003393 }
Willy Tarreau62f52692017-10-08 23:01:42 +02003394}
3395
Willy Tarreau88bdba32019-05-13 18:17:53 +02003396/* Performs a synchronous or asynchronous shutr(). */
3397static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003398{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003399 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003400 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003401
Willy Tarreauf983d002019-05-14 10:40:21 +02003402 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003403 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003404
Willy Tarreau18059042019-01-31 19:12:48 +01003405 /* a connstream may require us to immediately kill the whole connection
3406 * for example because of a "tcp-request content reject" rule that is
3407 * normally used to limit abuse. In this case we schedule a goaway to
3408 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003409 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003410 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003411 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3412 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3413 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3414 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003415 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3416 /* Nothing was never sent for this stream, so reset with
3417 * REFUSED_STREAM error to let the client retry the
3418 * request.
3419 */
3420 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3421 }
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003422 else {
3423 /* a final response was already provided, we don't want this
3424 * stream anymore. This may happen when the server responds
3425 * before the end of an upload and closes quickly (redirect,
3426 * deny, ...)
3427 */
3428 h2s_error(h2s, H2_ERR_CANCEL);
3429 }
Willy Tarreau18059042019-01-31 19:12:48 +01003430
Willy Tarreau90c32322017-11-24 08:00:30 +01003431 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003432 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003433 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003434
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003435 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003436 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003437 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003438 done:
3439 h2s->flags &= ~H2_SF_WANT_SHUTR;
3440 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003441add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003442 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003443 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003444 if (h2s->flags & H2_SF_BLK_MFCTL) {
3445 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3446 h2s->send_wait = sw;
3447 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3448 h2s->send_wait = sw;
3449 LIST_ADDQ(&h2c->send_list, &h2s->list);
3450 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003451 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003452 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003453 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003454 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003455}
3456
Willy Tarreau88bdba32019-05-13 18:17:53 +02003457/* Performs a synchronous or asynchronous shutw(). */
3458static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003459{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003460 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003461 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003462
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003463 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003464 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003465
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003466 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003467 /* we can cleanly close using an empty data frame only after headers */
3468
3469 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3470 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003471 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003472
3473 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003474 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003475 else
3476 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003477 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003478 /* a connstream may require us to immediately kill the whole connection
3479 * for example because of a "tcp-request content reject" rule that is
3480 * normally used to limit abuse. In this case we schedule a goaway to
3481 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003482 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003483 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003484 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3485 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3486 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3487 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003488 else {
3489 /* Nothing was never sent for this stream, so reset with
3490 * REFUSED_STREAM error to let the client retry the
3491 * request.
3492 */
3493 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3494 }
Willy Tarreau18059042019-01-31 19:12:48 +01003495
Willy Tarreau90c32322017-11-24 08:00:30 +01003496 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003497 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003498 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003499
Willy Tarreau00dd0782018-03-01 16:31:34 +01003500 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003501 }
3502
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003503 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003504 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003505 done:
3506 h2s->flags &= ~H2_SF_WANT_SHUTW;
3507 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003508
3509 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003510 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003511 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003512 if (h2s->flags & H2_SF_BLK_MFCTL) {
3513 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3514 h2s->send_wait = sw;
3515 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3516 h2s->send_wait = sw;
3517 LIST_ADDQ(&h2c->send_list, &h2s->list);
3518 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003519 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003520 /* let the handler know we want to shutw */
3521 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003522 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003523}
3524
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003525/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003526 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3527 * and prevented the last frame from being emitted.
3528 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003529static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3530{
3531 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003532 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003533
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003534 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003535 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003536 h2_do_shutw(h2s);
3537
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003538 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003539 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003540
Willy Tarreau88bdba32019-05-13 18:17:53 +02003541 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003542 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003543 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01003544
Willy Tarreau88bdba32019-05-13 18:17:53 +02003545 if (!h2s->cs) {
3546 h2s_destroy(h2s);
3547 if (h2c_is_dead(h2c))
3548 h2_release(h2c);
3549 }
Olivier Houchard7a977432019-03-21 15:47:13 +01003550 }
3551
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003552 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02003553}
3554
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003555/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003556static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3557{
3558 struct h2s *h2s = cs->ctx;
3559
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003560 if (cs->flags & CS_FL_KILL_CONN)
3561 h2s->flags |= H2_SF_KILL_CONN;
3562
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003563 if (!mode)
3564 return;
3565
3566 h2_do_shutr(h2s);
3567}
3568
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003569/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003570static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3571{
3572 struct h2s *h2s = cs->ctx;
3573
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003574 if (cs->flags & CS_FL_KILL_CONN)
3575 h2s->flags |= H2_SF_KILL_CONN;
3576
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003577 h2_do_shutw(h2s);
3578}
3579
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003580/* Decode the payload of a HEADERS frame and produce the equivalent HTTP/1 or
Willy Tarreau86277d42019-01-02 15:36:11 +01003581 * HTX request or response depending on the connection's side. Returns a
3582 * positive value on success, a negative value on failure, or 0 if it couldn't
3583 * proceed. May report connection errors in h2c->errcode if the frame is
3584 * non-decodable and the connection unrecoverable. In absence of connection
3585 * error when a failure is reported, the caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01003586 *
3587 * The function may fold CONTINUATION frames into the initial HEADERS frame
3588 * by removing padding and next frame header, then moving the CONTINUATION
3589 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
3590 * leaving a hole between the main frame and the beginning of the next one.
3591 * The possibly remaining incomplete or next frame at the end may be moved
3592 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
3593 * HEADERS frames are unwrapped into a temporary buffer before decoding.
3594 *
3595 * A buffer at the beginning of processing may look like this :
3596 *
3597 * ,---.---------.-----.--------------.--------------.------.---.
3598 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
3599 * `---^---------^-----^--------------^--------------^------^---'
3600 * | | <-----> | |
3601 * area | dpl | wrap
3602 * |<--------------> |
3603 * | dfl |
3604 * |<-------------------------------------------------->|
3605 * head data
3606 *
3607 * Padding is automatically overwritten when folding, participating to the
3608 * hole size after dfl :
3609 *
3610 * ,---.------------------------.-----.--------------.------.---.
3611 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
3612 * `---^------------------------^-----^--------------^------^---'
3613 * | | <-----> | |
3614 * area | hole | wrap
3615 * |<-----------------------> |
3616 * | dfl |
3617 * |<-------------------------------------------------->|
3618 * head data
3619 *
3620 * Please note that the HEADERS frame is always deprived from its PADLEN byte
3621 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
3622 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003623 *
3624 * The <flags> field must point to either the stream's flags or to a copy of it
3625 * so that the function can update the following flags :
3626 * - H2_SF_DATA_CLEN when content-length is seen
3627 * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion
3628 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01003629 *
3630 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
3631 * decoding, in order to detect if we're dealing with a headers or a trailers
3632 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02003633 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003634static 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 +02003635{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003636 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02003637 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003638 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02003639 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003640 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003641 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01003642 int flen; // header frame len
3643 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01003644 int ret = 0;
3645 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02003646 int wrap;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003647 int try = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02003648
Willy Tarreauea18f862018-12-22 20:19:26 +01003649next_frame:
3650 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
3651 goto leave; // incomplete input frame
3652
3653 /* No END_HEADERS means there's one or more CONTINUATION frames. In
3654 * this case, we'll try to paste it immediately after the initial
3655 * HEADERS frame payload and kill any possible padding. The initial
3656 * frame's length will be increased to represent the concatenation
3657 * of the two frames. The next frame is read from position <tlen>
3658 * and written at position <flen> (minus padding if some is present).
3659 */
3660 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
3661 struct h2_fh hdr;
3662 int clen; // CONTINUATION frame's payload length
3663
3664 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
3665 /* no more data, the buffer may be full, either due to
3666 * too large a frame or because of too large a hole that
3667 * we're going to compact at the end.
3668 */
3669 goto leave;
3670 }
3671
3672 if (hdr.ft != H2_FT_CONTINUATION) {
3673 /* RFC7540#6.10: frame of unexpected type */
3674 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3675 goto fail;
3676 }
3677
3678 if (hdr.sid != h2c->dsi) {
3679 /* RFC7540#6.10: frame of different stream */
3680 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3681 goto fail;
3682 }
3683
3684 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
3685 /* RFC7540#4.2: invalid frame length */
3686 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3687 goto fail;
3688 }
3689
3690 /* detect when we must stop aggragating frames */
3691 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
3692
3693 /* Take as much as we can of the CONTINUATION frame's payload */
3694 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
3695 if (clen > hdr.len)
3696 clen = hdr.len;
3697
3698 /* Move the frame's payload over the padding, hole and frame
3699 * header. At least one of hole or dpl is null (see diagrams
3700 * above). The hole moves after the new aggragated frame.
3701 */
3702 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
3703 h2c->dfl += clen - h2c->dpl;
3704 hole += h2c->dpl + 9;
3705 h2c->dpl = 0;
3706 goto next_frame;
3707 }
3708
3709 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01003710
Willy Tarreau13278b42017-10-13 19:23:14 +02003711 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003712 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02003713 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02003714 copy = alloc_trash_chunk();
3715 if (!copy) {
3716 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
3717 goto fail;
3718 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003719 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
3720 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
3721 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02003722 }
3723
Willy Tarreau13278b42017-10-13 19:23:14 +02003724 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
3725 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003726 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003727 /* RFC7540#5.3.1 : stream dep may not depend on itself */
3728 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02003729 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003730 }
3731
Willy Tarreaua01f45e2018-12-31 07:41:24 +01003732 if (flen < 5) {
3733 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3734 goto fail;
3735 }
3736
Willy Tarreau13278b42017-10-13 19:23:14 +02003737 hdrs += 5; // stream dep = 4, weight = 1
3738 flen -= 5;
3739 }
3740
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003741 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau937f7602018-02-26 15:22:17 +01003742 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01003743 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003744 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003745
Willy Tarreau937f7602018-02-26 15:22:17 +01003746 /* we can't retry a failed decompression operation so we must be very
3747 * careful not to take any risks. In practice the output buffer is
3748 * always empty except maybe for trailers, in which case we simply have
3749 * to wait for the upper layer to finish consuming what is available.
3750 */
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003751
3752 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003753 htx = htx_from_buf(rxbuf);
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003754 if (!htx_is_empty(htx)) {
3755 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003756 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003757 }
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003758 } else {
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003759 if (b_data(rxbuf)) {
3760 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003761 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003762 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003763
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003764 rxbuf->head = 0;
3765 try = b_size(rxbuf);
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003766 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003767
Willy Tarreau25919232019-01-03 14:48:18 +01003768 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003769 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
3770 sizeof(list)/sizeof(list[0]), tmp);
3771 if (outlen < 0) {
3772 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
3773 goto fail;
3774 }
3775
Willy Tarreau25919232019-01-03 14:48:18 +01003776 /* The PACK decompressor was updated, let's update the input buffer and
3777 * the parser's state to commit these changes and allow us to later
3778 * fail solely on the stream if needed.
3779 */
3780 b_del(&h2c->dbuf, h2c->dfl + hole);
3781 h2c->dfl = hole = 0;
3782 h2c->st0 = H2_CS_FRAME_H;
3783
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003784 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01003785 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003786
Willy Tarreau88d138e2019-01-02 19:38:14 +01003787 if (*flags & H2_SF_HEADERS_RCVD)
3788 goto trailers;
3789
3790 /* This is the first HEADERS frame so it's a headers block */
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003791 if (htx) {
3792 /* HTX mode */
3793 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003794 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003795 else
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003796 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003797 } else {
3798 /* HTTP/1 mode */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003799 outlen = h2_make_h1_request(list, b_tail(rxbuf), try, &msgf, body_len);
Willy Tarreau83195932019-01-03 10:26:23 +01003800 if (outlen > 0)
3801 b_add(rxbuf, outlen);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003802 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003803
3804 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01003805 /* too large headers? this is a stream error only */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003806 goto fail;
3807 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003808
Willy Tarreau174b06a2018-04-25 18:13:58 +02003809 if (msgf & H2_MSGF_BODY) {
3810 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003811 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003812 *flags |= H2_SF_DATA_CLEN;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003813 if (htx)
3814 htx->extra = *body_len;
3815 }
Olivier Houchard50d660c2018-12-08 00:18:31 +01003816 else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003817 *flags |= H2_SF_DATA_CHNK;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003818 }
3819
Willy Tarreau88d138e2019-01-02 19:38:14 +01003820 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01003821 /* indicate that a HEADERS frame was received for this stream, except
3822 * for 1xx responses. For 1xx responses, another HEADERS frame is
3823 * expected.
3824 */
3825 if (!(msgf & H2_MSGF_RSP_1XX))
3826 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003827
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02003828 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01003829 /* Mark the end of message, either using EOM in HTX or with the
3830 * trailing CRLF after the end of trailers. Note that DATA_CHNK
Willy Tarreau2135f912019-05-07 11:17:32 +02003831 * is not set during headers with END_STREAM. For HTX trailers,
3832 * we must not leave an HTX trailers block not followed by an
3833 * EOM block, the two must be atomic. Thus if we fail to emit
3834 * the EOM block we must remove the TLR block we've just added.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003835 */
3836 if (htx) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02003837 if (!htx_add_endof(htx, HTX_BLK_EOM))
Willy Tarreau88d138e2019-01-02 19:38:14 +01003838 goto fail;
3839 }
3840 else if (*flags & H2_SF_DATA_CHNK) {
3841 if (!b_putblk(rxbuf, "\r\n", 2))
3842 goto fail;
3843 }
3844 }
Willy Tarreau937f7602018-02-26 15:22:17 +01003845
Willy Tarreau86277d42019-01-02 15:36:11 +01003846 /* success */
3847 ret = 1;
3848
Willy Tarreau68dd9852017-07-03 14:44:26 +02003849 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01003850 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01003851 * move the remaining data over it.
3852 */
3853 if (hole) {
3854 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
3855 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
3856 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
3857 b_sub(&h2c->dbuf, hole);
3858 }
3859
Willy Tarreau97215ca2019-04-29 10:20:21 +02003860 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01003861 /* too large frames */
3862 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01003863 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01003864 }
3865
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003866 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003867 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02003868 free_trash_chunk(copy);
Willy Tarreau86277d42019-01-02 15:36:11 +01003869 return ret;
3870
Willy Tarreau68dd9852017-07-03 14:44:26 +02003871 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01003872 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02003873 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003874
3875 trailers:
3876 /* This is the last HEADERS frame hence a trailer */
3877
3878 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
3879 /* It's a trailer but it's missing ES flag */
3880 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3881 goto fail;
3882 }
3883
Christopher Faulet54b5e212019-06-04 10:08:28 +02003884 /* Trailers terminate a DATA sequence. In HTX we always handle them. In
3885 * legacy, when using chunks, we have to emit the 0 CRLF marker first
3886 * and then handle the trailers. For other modes, the trailers are
3887 * silently dropped.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003888 */
3889 if (htx) {
Willy Tarreau5255f282019-01-03 18:41:05 +01003890 if (h2_make_htx_trailers(list, htx) <= 0)
3891 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003892 }
3893 else if (*flags & H2_SF_DATA_CHNK) {
3894 /* Legacy mode with chunked encoding : we must finalize the
3895 * data block message emit the trailing CRLF */
3896 if (!b_putblk(rxbuf, "0\r\n", 3))
3897 goto fail;
Willy Tarreaue2b05cc2019-01-03 16:18:34 +01003898
3899 outlen = h2_make_h1_trailers(list, b_tail(rxbuf), try);
3900 if (outlen > 0)
3901 b_add(rxbuf, outlen);
3902 else
3903 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003904 }
3905
3906 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02003907}
3908
Willy Tarreau454f9052017-10-26 19:40:35 +02003909/* Transfer the payload of a DATA frame to the HTTP/1 side. When content-length
3910 * or a tunnel is used, the contents are copied as-is. When chunked encoding is
3911 * in use, a new chunk is emitted for each frame. This is supposed to fit
3912 * because the smallest chunk takes 1 byte for the size, 2 for CRLF, X for the
3913 * data, 2 for the extra CRLF, so that's 5+X, while on the H2 side the smallest
3914 * frame will be 9+X bytes based on the same buffer size. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003915 * parser state is automatically updated. Returns > 0 if it could completely
3916 * send the current frame, 0 if it couldn't complete, in which case
3917 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
3918 * DATA frame can return 0 as a valid result). Stream errors are reported in
3919 * h2s->errcode and connection errors in h2c->errcode. The caller must already
3920 * have checked the frame header and ensured that the frame was complete or the
3921 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02003922 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01003923static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003924{
3925 struct h2c *h2c = h2s->h2c;
3926 int block1, block2;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003927 unsigned int flen = 0;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003928 unsigned int chklen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003929 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003930 struct buffer *csbuf;
Willy Tarreau454f9052017-10-26 19:40:35 +02003931
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003932 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003933
Olivier Houchard638b7992018-08-16 15:41:52 +02003934 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003935 if (!csbuf) {
3936 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003937 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003938 }
3939
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003940try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003941 flen = h2c->dfl - h2c->dpl;
Olivier Houchard2f308832018-12-19 15:53:53 +01003942 if (h2c->proxy->options2 & PR_O2_USE_HTX)
3943 htx = htx_from_buf(csbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003944 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01003945 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003946
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003947 if (flen > b_data(&h2c->dbuf)) {
3948 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003949 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01003950 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003951 }
3952
Willy Tarreaua9b77962019-01-31 07:23:00 +01003953 if (htx) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003954 unsigned int sent;
3955
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003956 block1 = htx_free_data_space(htx);
3957 if (!block1) {
3958 h2c->flags |= H2_CF_DEM_SFULL;
3959 goto fail;
3960 }
3961 if (flen > block1)
3962 flen = block1;
3963
3964 /* here, flen is the max we can copy into the output buffer */
3965 block1 = b_contig_data(&h2c->dbuf, 0);
3966 if (flen > block1)
3967 flen = block1;
3968
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003969 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003970
Willy Tarreaub6563f42019-06-15 11:34:41 +02003971 b_del(&h2c->dbuf, sent);
3972 h2c->dfl -= sent;
3973 h2c->rcvd_c += sent;
3974 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau1915ca22019-01-24 11:49:37 +01003975
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003976 if (h2s->flags & H2_SF_DATA_CLEN) {
Willy Tarreaub6563f42019-06-15 11:34:41 +02003977 h2s->body_len -= sent;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003978 htx->extra = h2s->body_len;
3979 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003980
3981 if (sent < flen) {
3982 h2c->flags |= H2_CF_DEM_SFULL;
3983 goto fail;
3984 }
3985
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003986 goto try_again;
3987 }
Willy Tarreau455d5682019-05-24 19:42:18 +02003988 else if (unlikely(b_space_wraps(csbuf) &&
3989 flen + chklen <= b_room(csbuf) &&
3990 b_data(csbuf) <= MAX_DATA_REALIGN)) {
3991 /* it doesn't fit in a single block and the buffer is fragmented, if there are
3992 * not too many data in the buffer, let's defragment it and try
3993 * again.
Willy Tarreaud755ea62018-02-26 15:44:54 +01003994 */
3995 b_slow_realign(csbuf, trash.area, 0);
Willy Tarreau454f9052017-10-26 19:40:35 +02003996 }
3997
Willy Tarreaueba10f22018-04-25 20:44:22 +02003998 /* chunked-encoding requires more room */
3999 if (h2s->flags & H2_SF_DATA_CHNK) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004000 chklen = MIN(flen, b_room(csbuf));
Willy Tarreaueba10f22018-04-25 20:44:22 +02004001 chklen = (chklen < 16) ? 1 : (chklen < 256) ? 2 :
4002 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
4003 (chklen < 1048576) ? 4 : 8;
4004 chklen += 4; // CRLF, CRLF
4005 }
4006
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004007 /* does it fit in output buffer or should we wait ? */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004008 if (flen + chklen > b_room(csbuf)) {
4009 if (chklen >= b_room(csbuf)) {
4010 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004011 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004012 }
4013 flen = b_room(csbuf) - chklen;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004014 }
4015
4016 if (h2s->flags & H2_SF_DATA_CHNK) {
4017 /* emit the chunk size */
4018 unsigned int chksz = flen;
4019 char str[10];
4020 char *beg;
4021
4022 beg = str + sizeof(str);
4023 *--beg = '\n';
4024 *--beg = '\r';
4025 do {
4026 *--beg = hextab[chksz & 0xF];
4027 } while (chksz >>= 4);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004028 b_putblk(csbuf, beg, str + sizeof(str) - beg);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004029 }
4030
Willy Tarreau454f9052017-10-26 19:40:35 +02004031 /* Block1 is the length of the first block before the buffer wraps,
4032 * block2 is the optional second block to reach the end of the frame.
4033 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004034 block1 = b_contig_data(&h2c->dbuf, 0);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004035 if (block1 > flen)
4036 block1 = flen;
Willy Tarreau454f9052017-10-26 19:40:35 +02004037 block2 = flen - block1;
4038
4039 if (block1)
Willy Tarreaud755ea62018-02-26 15:44:54 +01004040 b_putblk(csbuf, b_head(&h2c->dbuf), block1);
Willy Tarreau454f9052017-10-26 19:40:35 +02004041
4042 if (block2)
Willy Tarreaud755ea62018-02-26 15:44:54 +01004043 b_putblk(csbuf, b_peek(&h2c->dbuf, block1), block2);
Willy Tarreau454f9052017-10-26 19:40:35 +02004044
Willy Tarreaueba10f22018-04-25 20:44:22 +02004045 if (h2s->flags & H2_SF_DATA_CHNK) {
4046 /* emit the CRLF */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004047 b_putblk(csbuf, "\r\n", 2);
Willy Tarreaueba10f22018-04-25 20:44:22 +02004048 }
4049
Willy Tarreau454f9052017-10-26 19:40:35 +02004050 /* now mark the input data as consumed (will be deleted from the buffer
4051 * by the caller when seeing FRAME_A after sending the window update).
4052 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004053 b_del(&h2c->dbuf, flen);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004054 h2c->dfl -= flen;
4055 h2c->rcvd_c += flen;
4056 h2c->rcvd_s += flen; // warning, this can also affect the closed streams!
4057
Willy Tarreau1915ca22019-01-24 11:49:37 +01004058 if (h2s->flags & H2_SF_DATA_CLEN)
4059 h2s->body_len -= flen;
4060
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004061 if (h2c->dfl > h2c->dpl) {
4062 /* more data available, transfer stalled on stream full */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004063 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004064 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004065 }
4066
Willy Tarreau4a28da12018-01-04 14:41:00 +01004067 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004068 /* here we're done with the frame, all the payload (except padding) was
4069 * transferred.
4070 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004071
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004072 if (h2c->dff & H2_F_DATA_END_STREAM) {
4073 if (htx) {
4074 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4075 h2c->flags |= H2_CF_DEM_SFULL;
4076 goto fail;
4077 }
Willy Tarreaud755ea62018-02-26 15:44:54 +01004078 }
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004079 else if (h2s->flags & H2_SF_DATA_CHNK) {
4080 /* emit the trailing 0 CRLF CRLF */
4081 if (b_room(csbuf) < 5) {
4082 h2c->flags |= H2_CF_DEM_SFULL;
4083 goto fail;
4084 }
4085 chklen += 5;
4086 b_putblk(csbuf, "0\r\n\r\n", 5);
4087 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004088 }
4089
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004090 h2c->rcvd_c += h2c->dpl;
4091 h2c->rcvd_s += h2c->dpl;
4092 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004093 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004094 if (htx)
4095 htx_to_buf(htx, csbuf);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004096 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004097 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004098 if (htx)
4099 htx_to_buf(htx, csbuf);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004100 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004101}
4102
Willy Tarreau5dd17352018-06-14 13:33:30 +02004103/* Try to send a HEADERS frame matching HTTP/1 response present at offset <ofs>
4104 * and for <max> bytes in buffer <buf> for the H2 stream <h2s>. Returns the
4105 * number of bytes sent. The caller must check the stream's status to detect
4106 * any error which might have happened subsequently to a successful send.
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004107 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004108static 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 +02004109{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004110 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004111 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004112 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004113 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004114 struct buffer *mbuf;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004115 union h1_sl sl;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004116 int es_now = 0;
4117 int ret = 0;
4118 int hdr;
4119
4120 if (h2c_mux_busy(h2c, h2s)) {
4121 h2s->flags |= H2_SF_BLK_MBUSY;
4122 return 0;
4123 }
4124
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004125 /* First, try to parse the H1 response and index it into <list>.
4126 * NOTE! Since it comes from haproxy, we *know* that a response header
4127 * block does not wrap and we can safely read it this way without
4128 * having to realign the buffer.
4129 */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004130 ret = h1_headers_to_hdr_list(b_peek(buf, ofs), b_peek(buf, ofs) + max,
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004131 list, sizeof(list)/sizeof(list[0]), h1m, &sl);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004132 if (ret <= 0) {
Willy Tarreauf13ef962017-11-02 15:14:19 +01004133 /* incomplete or invalid response, this is abnormal coming from
4134 * haproxy and may only result in a bad errorfile or bad Lua code
4135 * so that won't be fixed, raise an error now.
4136 *
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004137 * FIXME: we should instead add the ability to only return a
4138 * 502 bad gateway. But in theory this is not supposed to
4139 * happen.
4140 */
4141 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4142 ret = 0;
4143 goto end;
4144 }
4145
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004146 h2s->status = sl.st.status;
Willy Tarreaudb72da02018-09-13 11:52:20 +02004147
4148 /* certain statuses have no body or an empty one, regardless of
4149 * what the headers say.
4150 */
4151 if (sl.st.status >= 100 && sl.st.status < 200) {
4152 h1m->flags &= ~(H1_MF_CLEN | H1_MF_CHNK);
4153 h1m->curr_len = h1m->body_len = 0;
4154 }
4155 else if (sl.st.status == 204 || sl.st.status == 304) {
4156 /* no contents, claim c-len is present and set to zero */
4157 h1m->flags &= ~H1_MF_CHNK;
4158 h1m->flags |= H1_MF_CLEN;
4159 h1m->curr_len = h1m->body_len = 0;
4160 }
4161
Willy Tarreaubcc45952019-05-26 10:05:50 +02004162 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004163 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004164 if (!h2_get_buf(h2c, mbuf)) {
4165 h2c->flags |= H2_CF_MUX_MALLOC;
4166 h2s->flags |= H2_SF_BLK_MROOM;
4167 return 0;
4168 }
4169
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004170 chunk_reset(&outbuf);
4171
4172 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004173 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4174 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004175 break;
4176 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004177 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004178 }
4179
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004180 if (outbuf.size < 9)
4181 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004182
4183 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004184 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4185 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4186 outbuf.data = 9;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004187
4188 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004189 if (unlikely(list[0].v.len != 3)) {
Willy Tarreaua87f2022017-11-09 11:23:00 +01004190 /* this is an unparsable response */
4191 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4192 ret = 0;
4193 goto end;
4194 }
Willy Tarreauaafdf582018-12-10 18:06:40 +01004195
4196 if (!hpack_encode_str_status(&outbuf, h2s->status, list[0].v)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004197 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004198 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004199 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004200 }
4201
4202 /* encode all headers, stop at empty name */
4203 for (hdr = 1; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaua76e4c22017-11-24 08:17:28 +01004204 /* these ones do not exist in H2 and must be dropped. */
4205 if (isteq(list[hdr].n, ist("connection")) ||
4206 isteq(list[hdr].n, ist("proxy-connection")) ||
4207 isteq(list[hdr].n, ist("keep-alive")) ||
4208 isteq(list[hdr].n, ist("upgrade")) ||
4209 isteq(list[hdr].n, ist("transfer-encoding")))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004210 continue;
4211
4212 if (isteq(list[hdr].n, ist("")))
4213 break; // end
4214
4215 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4216 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004217 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004218 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004219 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004220 }
4221 }
4222
4223 /* we may need to add END_STREAM */
Willy Tarreau927b88b2019-03-04 08:03:25 +01004224 if (((h1m->flags & H1_MF_CLEN) && !h1m->body_len) || !h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004225 es_now = 1;
4226
4227 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004228 h2_set_frame_size(outbuf.area, outbuf.data - 9);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004229
4230 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004231 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004232
4233 /* consume incoming H1 response */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004234 max -= ret;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004235
4236 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004237 b_add(mbuf, outbuf.data);
Willy Tarreau67434202017-11-06 20:20:51 +01004238 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004239
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004240 if (es_now) {
Willy Tarreau35a62702018-02-27 15:37:25 +01004241 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004242 ret += max;
Willy Tarreau35a62702018-02-27 15:37:25 +01004243
Willy Tarreau801250e2018-09-11 11:45:04 +02004244 h1m->state = H1_MSG_DONE;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004245 h2s->flags |= H2_SF_ES_SENT;
4246 if (h2s->st == H2_SS_OPEN)
4247 h2s->st = H2_SS_HLOC;
4248 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004249 h2s_close(h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004250 }
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004251 else if (h2s->status >= 100 && h2s->status < 200) {
Willy Tarreau87285592017-11-29 15:41:32 +01004252 /* we'll let the caller check if it has more headers to send */
Willy Tarreau7f437ff2018-09-11 13:51:19 +02004253 h1m_init_res(h1m);
Willy Tarreau9b8cd1f2018-09-12 09:24:38 +02004254 h1m->err_pos = -1; // don't care about errors on the response path
Willy Tarreaueb528db2018-09-12 09:54:00 +02004255 h2s->h1m.flags |= H1_MF_TOLOWER;
Willy Tarreau87285592017-11-29 15:41:32 +01004256 goto end;
Willy Tarreauc199faf2017-10-31 08:35:27 +01004257 }
Willy Tarreau001823c2018-09-12 17:25:32 +02004258
4259 /* now the h1m state is either H1_MSG_CHUNK_SIZE or H1_MSG_DATA */
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004260
4261 end:
Dirkjan Bussinkc26c72d2018-09-14 14:30:25 +02004262 //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 +02004263 return ret;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004264 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004265 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4266 goto retry;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004267 h1m_init_res(h1m);
4268 h1m->err_pos = -1; // don't care about errors on the response path
4269 h2c->flags |= H2_CF_MUX_MFULL;
4270 h2s->flags |= H2_SF_BLK_MROOM;
4271 ret = 0;
4272 goto end;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004273}
4274
Willy Tarreau5dd17352018-06-14 13:33:30 +02004275/* Try to send a DATA frame matching HTTP/1 response present at offset <ofs>
4276 * for up to <max> bytes in response buffer <buf>, for stream <h2s>. Returns
4277 * the number of bytes sent. The caller must check the stream's status to
4278 * detect any error which might have happened subsequently to a successful send.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004279 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004280static 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 +02004281{
4282 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004283 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004284 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004285 struct buffer *mbuf;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004286 int ret = 0;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02004287 size_t total = 0;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004288 int es_now = 0;
4289 int size = 0;
Willy Tarreau206ba832018-06-14 15:27:31 +02004290 const char *blk1, *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004291 size_t len1, len2;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004292
4293 if (h2c_mux_busy(h2c, h2s)) {
4294 h2s->flags |= H2_SF_BLK_MBUSY;
4295 goto end;
4296 }
4297
Willy Tarreaubcc45952019-05-26 10:05:50 +02004298 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004299 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004300 if (!h2_get_buf(h2c, mbuf)) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004301 h2c->flags |= H2_CF_MUX_MALLOC;
4302 h2s->flags |= H2_SF_BLK_MROOM;
4303 goto end;
4304 }
4305
4306 new_frame:
Willy Tarreau5dd17352018-06-14 13:33:30 +02004307 if (!max)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004308 goto end;
4309
4310 chunk_reset(&outbuf);
4311
4312 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004313 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4314 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004315 break;
4316 realign_again:
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004317 /* If there are pending data in the output buffer, and we have
4318 * less than 1/4 of the mbuf's size and everything fits, we'll
4319 * still perform a copy anyway. Otherwise we'll pretend the mbuf
4320 * is full and wait, to save some slow realign calls.
4321 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004322 if ((max + 9 > b_room(mbuf) || max >= b_size(mbuf) / 4)) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004323 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4324 goto retry;
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004325 h2c->flags |= H2_CF_MUX_MFULL;
4326 h2s->flags |= H2_SF_BLK_MROOM;
4327 goto end;
4328 }
4329
Willy Tarreaubcc45952019-05-26 10:05:50 +02004330 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004331 }
4332
4333 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004334 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4335 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004336 h2c->flags |= H2_CF_MUX_MFULL;
4337 h2s->flags |= H2_SF_BLK_MROOM;
4338 goto end;
4339 }
4340
4341 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004342 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4343 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4344 outbuf.data = 9;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004345
4346 switch (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
4347 case 0: /* no content length, read till SHUTW */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004348 size = max;
Willy Tarreau13e4e942017-12-14 10:55:21 +01004349 h1m->curr_len = size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004350 break;
4351 case H1_MF_CLEN: /* content-length: read only h2m->body_len */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004352 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004353 if ((long long)size > h1m->curr_len)
4354 size = h1m->curr_len;
4355 break;
4356 default: /* te:chunked : parse chunks */
Willy Tarreau801250e2018-09-11 11:45:04 +02004357 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Willy Tarreauc0973c62018-06-14 15:53:21 +02004358 ret = h1_skip_chunk_crlf(buf, ofs, ofs + max);
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02004359 if (ret <= 0) {
Christopher Faulet307f31e2020-08-05 14:37:13 +02004360 /* FIXME: bad contents or truncated response. how to proceed here when we're in H2 ?
4361 * It should not happen except if opposite connection was closed.
4362 * Note: check there is at least something to parse to be sure the chunk crlf
4363 * is truncated.
4364 */
4365 if (max) {
4366 h1m->err_pos = ofs + max + ret;
4367 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4368 }
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004369 goto end;
4370 }
Willy Tarreau5dd17352018-06-14 13:33:30 +02004371 max -= ret;
4372 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004373 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004374 h1m->state = H1_MSG_CHUNK_SIZE;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004375 }
4376
Willy Tarreau801250e2018-09-11 11:45:04 +02004377 if (h1m->state == H1_MSG_CHUNK_SIZE) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004378 unsigned int chunk;
Willy Tarreau84d6b7a2018-06-14 15:59:05 +02004379 ret = h1_parse_chunk_size(buf, ofs, ofs + max, &chunk);
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02004380 if (ret <= 0) {
Christopher Faulet307f31e2020-08-05 14:37:13 +02004381 /* FIXME: bad contents or truncated response. how to proceed here when we're in H2 ?
4382 * It should not happen except if opposite connection was closed.
4383 * Note: check there is at least something to parse to be sure the chunke size
4384 * is truncated.
4385 */
4386 if (max) {
4387 h1m->err_pos = ofs + max + ret;
4388 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4389 }
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004390 goto end;
4391 }
4392
4393 size = chunk;
4394 h1m->curr_len = chunk;
4395 h1m->body_len += chunk;
Willy Tarreau5dd17352018-06-14 13:33:30 +02004396 max -= ret;
4397 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004398 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004399 h1m->state = size ? H1_MSG_DATA : H1_MSG_TRAILERS;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004400 if (!size)
4401 goto send_empty;
4402 }
4403
4404 /* in MSG_DATA state, continue below */
4405 size = h1m->curr_len;
4406 break;
4407 }
4408
4409 /* we have in <size> the exact number of bytes we need to copy from
4410 * the H1 buffer. We need to check this against the connection's and
4411 * the stream's send windows, and to ensure that this fits in the max
4412 * frame size and in the buffer's available space minus 9 bytes (for
4413 * the frame header). The connection's flow control is applied last so
4414 * that we can use a separate list of streams which are immediately
4415 * unblocked on window opening. Note: we don't implement padding.
4416 */
4417
Willy Tarreau5dd17352018-06-14 13:33:30 +02004418 if (size > max)
4419 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004420
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004421 if (size > h2s_mws(h2s))
4422 size = h2s_mws(h2s);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004423
4424 if (size <= 0) {
4425 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004426 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02004427 LIST_DEL_INIT(&h2s->list);
Willy Tarreau55dc0842019-10-22 10:04:39 +02004428 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004429 goto end;
4430 }
4431
4432 if (h2c->mfs && size > h2c->mfs)
4433 size = h2c->mfs;
4434
4435 if (size + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02004436 /* It doesn't fit at once. If it at least fits once split and
4437 * the amount of data to move is low, let's defragment the
4438 * buffer now.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004439 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004440 if (b_space_wraps(mbuf) &&
4441 (size + 9 <= b_room(mbuf)) &&
4442 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004443 goto realign_again;
4444 size = outbuf.size - 9;
4445 }
4446
4447 if (size <= 0) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004448 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4449 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004450 h2c->flags |= H2_CF_MUX_MFULL;
4451 h2s->flags |= H2_SF_BLK_MROOM;
4452 goto end;
4453 }
4454
4455 if (size > h2c->mws)
4456 size = h2c->mws;
4457
4458 if (size <= 0) {
4459 h2s->flags |= H2_SF_BLK_MFCTL;
4460 goto end;
4461 }
4462
4463 /* copy whatever we can */
4464 blk1 = blk2 = NULL; // silence a maybe-uninitialized warning
Willy Tarreau5dd17352018-06-14 13:33:30 +02004465 ret = b_getblk_nc(buf, &blk1, &len1, &blk2, &len2, ofs, max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004466 if (ret == 1)
4467 len2 = 0;
4468
4469 if (!ret || len1 + len2 < size) {
4470 /* FIXME: must normally never happen */
4471 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4472 goto end;
4473 }
4474
4475 /* limit len1/len2 to size */
4476 if (len1 + len2 > size) {
4477 int sub = len1 + len2 - size;
4478
4479 if (len2 > sub)
4480 len2 -= sub;
4481 else {
4482 sub -= len2;
4483 len2 = 0;
4484 len1 -= sub;
4485 }
4486 }
4487
4488 /* now let's copy this this into the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004489 memcpy(outbuf.area + 9, blk1, len1);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004490 if (len2)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004491 memcpy(outbuf.area + 9 + len1, blk2, len2);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004492
4493 send_empty:
4494 /* we may need to add END_STREAM */
4495 /* FIXME: we should also detect shutdown(w) below, but how ? Maybe we
4496 * could rely on the MSG_MORE flag as a hint for this ?
Willy Tarreau00610962018-07-19 10:58:28 +02004497 *
4498 * FIXME: what we do here is not correct because we send end_stream
4499 * before knowing if we'll have to send a HEADERS frame for the
4500 * trailers. More importantly we're not consuming the trailing CRLF
4501 * after the end of trailers, so it will be left to the caller to
4502 * eat it. The right way to do it would be to measure trailers here
4503 * and to send ES only if there are no trailers.
4504 *
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004505 */
4506 if (((h1m->flags & H1_MF_CLEN) && !(h1m->curr_len - size)) ||
Willy Tarreau801250e2018-09-11 11:45:04 +02004507 !h1m->curr_len || h1m->state >= H1_MSG_DONE)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004508 es_now = 1;
4509
4510 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004511 h2_set_frame_size(outbuf.area, size);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004512
4513 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004514 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004515
4516 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004517 b_add(mbuf, size + 9);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004518
4519 /* consume incoming H1 response */
4520 if (size > 0) {
Willy Tarreau5dd17352018-06-14 13:33:30 +02004521 max -= size;
4522 ofs += size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004523 total += size;
4524 h1m->curr_len -= size;
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004525 h2s->sws -= size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004526 h2c->mws -= size;
4527
4528 if (size && !h1m->curr_len && (h1m->flags & H1_MF_CHNK)) {
Willy Tarreau801250e2018-09-11 11:45:04 +02004529 h1m->state = H1_MSG_CHUNK_CRLF;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004530 goto new_frame;
4531 }
4532 }
4533
4534 if (es_now) {
4535 if (h2s->st == H2_SS_OPEN)
4536 h2s->st = H2_SS_HLOC;
4537 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004538 h2s_close(h2s);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004539
Willy Tarreau35a62702018-02-27 15:37:25 +01004540 if (!(h1m->flags & H1_MF_CHNK)) {
4541 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004542 total += max;
4543 ofs += max;
4544 max = 0;
Willy Tarreau35a62702018-02-27 15:37:25 +01004545
Willy Tarreau801250e2018-09-11 11:45:04 +02004546 h1m->state = H1_MSG_DONE;
Willy Tarreau35a62702018-02-27 15:37:25 +01004547 }
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004548
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004549 h2s->flags |= H2_SF_ES_SENT;
4550 }
4551
4552 end:
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004553 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 +02004554 return total;
4555}
4556
Willy Tarreau115e83b2018-12-01 19:17:53 +01004557/* Try to send a HEADERS frame matching HTX response present in HTX message
4558 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4559 * must check the stream's status to detect any error which might have happened
4560 * subsequently to a successful send. The htx blocks are automatically removed
4561 * from the message. The htx message is assumed to be valid since produced from
4562 * the internal code, hence it contains a start line, an optional series of
4563 * header blocks and an end of header, otherwise an invalid frame could be
4564 * emitted and the resulting htx message could be left in an inconsistent state.
4565 */
4566static size_t h2s_htx_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
4567{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004568 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004569 struct h2c *h2c = h2s->h2c;
4570 struct htx_blk *blk;
4571 struct htx_blk *blk_end;
4572 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004573 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004574 struct htx_sl *sl;
4575 enum htx_blk_type type;
4576 int es_now = 0;
4577 int ret = 0;
4578 int hdr;
4579 int idx;
4580
4581 if (h2c_mux_busy(h2c, h2s)) {
4582 h2s->flags |= H2_SF_BLK_MBUSY;
4583 return 0;
4584 }
4585
Willy Tarreau115e83b2018-12-01 19:17:53 +01004586 /* determine the first block which must not be deleted, blk_end may
4587 * be NULL if all blocks have to be deleted.
4588 */
4589 idx = htx_get_head(htx);
4590 blk_end = NULL;
4591 while (idx != -1) {
4592 type = htx_get_blk_type(htx_get_blk(htx, idx));
4593 idx = htx_get_next(htx, idx);
4594 if (type == HTX_BLK_EOH) {
4595 if (idx != -1)
4596 blk_end = htx_get_blk(htx, idx);
4597 break;
4598 }
4599 }
4600
4601 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004602 blk = htx_get_head_blk(htx);
Christopher Faulet43a686d2019-11-18 15:50:25 +01004603 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004604 ALREADY_CHECKED(blk);
4605 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004606 h2s->status = sl->info.res.status;
Willy Tarreauaafdf582018-12-10 18:06:40 +01004607 if (h2s->status < 100 || h2s->status > 999)
4608 goto fail;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004609
4610 /* and the rest of the headers, that we dump starting at header 0 */
4611 hdr = 0;
4612
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004613 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004614 while ((idx = htx_get_next(htx, idx)) != -1) {
4615 blk = htx_get_blk(htx, idx);
4616 type = htx_get_blk_type(blk);
4617
4618 if (type == HTX_BLK_UNUSED)
4619 continue;
4620
4621 if (type != HTX_BLK_HDR)
4622 break;
4623
4624 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4625 goto fail;
4626
4627 list[hdr].n = htx_get_blk_name(htx, blk);
4628 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004629 hdr++;
4630 }
4631
4632 /* marker for end of headers */
4633 list[hdr].n = ist("");
4634
4635 if (h2s->status == 204 || h2s->status == 304) {
4636 /* no contents, claim c-len is present and set to zero */
4637 es_now = 1;
4638 }
4639
Willy Tarreau9c218e72019-05-26 10:08:28 +02004640 mbuf = br_tail(h2c->mbuf);
4641 retry:
4642 if (!h2_get_buf(h2c, mbuf)) {
4643 h2c->flags |= H2_CF_MUX_MALLOC;
4644 h2s->flags |= H2_SF_BLK_MROOM;
4645 return 0;
4646 }
4647
Willy Tarreau115e83b2018-12-01 19:17:53 +01004648 chunk_reset(&outbuf);
4649
4650 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004651 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4652 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004653 break;
4654 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004655 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004656 }
4657
4658 if (outbuf.size < 9)
4659 goto full;
4660
4661 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4662 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4663 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4664 outbuf.data = 9;
4665
4666 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004667 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004668 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004669 goto realign_again;
4670 goto full;
4671 }
4672
4673 /* encode all headers, stop at empty name */
4674 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4675 /* these ones do not exist in H2 and must be dropped. */
4676 if (isteq(list[hdr].n, ist("connection")) ||
4677 isteq(list[hdr].n, ist("proxy-connection")) ||
4678 isteq(list[hdr].n, ist("keep-alive")) ||
4679 isteq(list[hdr].n, ist("upgrade")) ||
4680 isteq(list[hdr].n, ist("transfer-encoding")))
4681 continue;
4682
4683 if (isteq(list[hdr].n, ist("")))
4684 break; // end
4685
4686 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4687 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004688 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004689 goto realign_again;
4690 goto full;
4691 }
4692 }
4693
Christopher Faulet0b465482019-02-19 15:14:23 +01004694 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004695 * FIXME: we should also set it when we know for sure that the
4696 * content-length is zero as well as on 204/304
4697 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004698 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4699 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004700 es_now = 1;
4701
Willy Tarreau927b88b2019-03-04 08:03:25 +01004702 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004703 es_now = 1;
4704
4705 /* update the frame's size */
4706 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4707
4708 if (es_now)
4709 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4710
4711 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004712 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004713
4714 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4715 * 1xx responses, another HEADERS frame is expected.
4716 */
4717 if (h2s->status >= 200 || h2s->status == 101)
4718 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004719
Willy Tarreau115e83b2018-12-01 19:17:53 +01004720 if (es_now) {
4721 h2s->flags |= H2_SF_ES_SENT;
4722 if (h2s->st == H2_SS_OPEN)
4723 h2s->st = H2_SS_HLOC;
4724 else
4725 h2s_close(h2s);
4726 }
4727
4728 /* OK we could properly deliver the response */
4729
4730 /* remove all header blocks including the EOH and compute the
4731 * corresponding size.
4732 *
4733 * FIXME: We should remove everything when es_now is set.
4734 */
4735 ret = 0;
4736 idx = htx_get_head(htx);
4737 blk = htx_get_blk(htx, idx);
4738 while (blk != blk_end) {
4739 ret += htx_get_blksz(blk);
4740 blk = htx_remove_blk(htx, blk);
4741 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004742
Christopher Faulet316934d2019-05-15 14:22:48 +02004743 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4744 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004745 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004746 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004747 end:
4748 return ret;
4749 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004750 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4751 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004752 h2c->flags |= H2_CF_MUX_MFULL;
4753 h2s->flags |= H2_SF_BLK_MROOM;
4754 ret = 0;
4755 goto end;
4756 fail:
4757 /* unparsable HTX messages, too large ones to be produced in the local
4758 * list etc go here (unrecoverable errors).
4759 */
4760 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4761 ret = 0;
4762 goto end;
4763}
4764
Willy Tarreau80739692018-10-05 11:35:57 +02004765/* Try to send a HEADERS frame matching HTX request present in HTX message
4766 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4767 * must check the stream's status to detect any error which might have happened
4768 * subsequently to a successful send. The htx blocks are automatically removed
4769 * from the message. The htx message is assumed to be valid since produced from
4770 * the internal code, hence it contains a start line, an optional series of
4771 * header blocks and an end of header, otherwise an invalid frame could be
4772 * emitted and the resulting htx message could be left in an inconsistent state.
4773 */
4774static size_t h2s_htx_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
4775{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004776 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004777 struct h2c *h2c = h2s->h2c;
4778 struct htx_blk *blk;
4779 struct htx_blk *blk_end;
4780 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004781 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004782 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004783 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004784 enum htx_blk_type type;
4785 int es_now = 0;
4786 int ret = 0;
4787 int hdr;
4788 int idx;
4789
4790 if (h2c_mux_busy(h2c, h2s)) {
4791 h2s->flags |= H2_SF_BLK_MBUSY;
4792 return 0;
4793 }
4794
Willy Tarreau80739692018-10-05 11:35:57 +02004795 /* determine the first block which must not be deleted, blk_end may
4796 * be NULL if all blocks have to be deleted.
4797 */
4798 idx = htx_get_head(htx);
4799 blk_end = NULL;
4800 while (idx != -1) {
4801 type = htx_get_blk_type(htx_get_blk(htx, idx));
4802 idx = htx_get_next(htx, idx);
4803 if (type == HTX_BLK_EOH) {
4804 if (idx != -1)
4805 blk_end = htx_get_blk(htx, idx);
4806 break;
4807 }
4808 }
4809
4810 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004811 blk = htx_get_head_blk(htx);
Christopher Faulet43a686d2019-11-18 15:50:25 +01004812 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004813 ALREADY_CHECKED(blk);
4814 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004815 meth = htx_sl_req_meth(sl);
4816 path = htx_sl_req_uri(sl);
4817
4818 /* and the rest of the headers, that we dump starting at header 0 */
4819 hdr = 0;
4820
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004821 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004822 while ((idx = htx_get_next(htx, idx)) != -1) {
4823 blk = htx_get_blk(htx, idx);
4824 type = htx_get_blk_type(blk);
4825
4826 if (type == HTX_BLK_UNUSED)
4827 continue;
4828
4829 if (type != HTX_BLK_HDR)
4830 break;
4831
4832 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4833 goto fail;
4834
4835 list[hdr].n = htx_get_blk_name(htx, blk);
4836 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004837 hdr++;
4838 }
4839
4840 /* marker for end of headers */
4841 list[hdr].n = ist("");
4842
Willy Tarreau9c218e72019-05-26 10:08:28 +02004843 mbuf = br_tail(h2c->mbuf);
4844 retry:
4845 if (!h2_get_buf(h2c, mbuf)) {
4846 h2c->flags |= H2_CF_MUX_MALLOC;
4847 h2s->flags |= H2_SF_BLK_MROOM;
4848 return 0;
4849 }
4850
Willy Tarreau80739692018-10-05 11:35:57 +02004851 chunk_reset(&outbuf);
4852
4853 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004854 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4855 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004856 break;
4857 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004858 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004859 }
4860
4861 if (outbuf.size < 9)
4862 goto full;
4863
4864 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4865 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4866 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4867 outbuf.data = 9;
4868
4869 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004870 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004871 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004872 goto realign_again;
4873 goto full;
4874 }
4875
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004876 /* RFC7540 #8.3: the CONNECT method must have :
4877 * - :authority set to the URI part (host:port)
4878 * - :method set to CONNECT
4879 * - :scheme and :path omitted
4880 */
4881 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4882 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004883 struct ist scheme;
4884
4885 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4886 scheme = ist("http");
4887 else
4888 scheme = ist("https");
4889
4890 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004891 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004892 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004893 goto realign_again;
4894 goto full;
4895 }
Willy Tarreau80739692018-10-05 11:35:57 +02004896
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004897 /* encode the path, which necessarily is the second one */
4898 if (!hpack_encode_path(&outbuf, path)) {
4899 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004900 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004901 goto realign_again;
4902 goto full;
4903 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004904
4905 /* look for the Host header and place it in :authority */
4906 auth = ist2(NULL, 0);
4907 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4908 if (isteq(list[hdr].n, ist("")))
4909 break; // end
4910
4911 if (isteq(list[hdr].n, ist("host"))) {
4912 auth = list[hdr].v;
4913 break;
4914 }
4915 }
4916 }
4917 else {
4918 /* for CONNECT, :authority is taken from the path */
4919 auth = path;
4920 }
4921
4922 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4923 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004924 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004925 goto realign_again;
4926 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004927 }
4928
4929 /* encode all headers, stop at empty name */
4930 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004931 struct ist n = list[hdr].n;
4932 struct ist v = list[hdr].v;
4933
Willy Tarreau80739692018-10-05 11:35:57 +02004934 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004935 if (isteq(n, ist("connection")) ||
4936 isteq(n, ist("host")) ||
4937 isteq(n, ist("proxy-connection")) ||
4938 isteq(n, ist("keep-alive")) ||
4939 isteq(n, ist("upgrade")) ||
4940 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02004941 continue;
4942
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004943 if (isteq(n, ist("te"))) {
4944 /* "te" may only be sent with "trailers" if this value
4945 * is present, otherwise it must be deleted.
4946 */
4947 v = istist(v, ist("trailers"));
4948 if (!v.ptr || (v.len > 8 && v.ptr[8] != ','))
4949 continue;
4950 v = ist("trailers");
4951 }
4952
4953 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02004954 break; // end
4955
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004956 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02004957 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004958 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004959 goto realign_again;
4960 goto full;
4961 }
4962 }
4963
4964 /* we may need to add END_STREAM if we have no body :
4965 * - request already closed, or :
4966 * - no transfer-encoding, and :
4967 * - no content-length or content-length:0
4968 * Fixme: this doesn't take into account CONNECT requests.
4969 */
4970 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4971 es_now = 1;
4972
4973 if (sl->flags & HTX_SL_F_BODYLESS)
4974 es_now = 1;
4975
Willy Tarreau927b88b2019-03-04 08:03:25 +01004976 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004977 es_now = 1;
4978
4979 /* update the frame's size */
4980 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4981
4982 if (es_now)
4983 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4984
4985 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004986 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004987 h2s->flags |= H2_SF_HEADERS_SENT;
4988 h2s->st = H2_SS_OPEN;
4989
Willy Tarreau80739692018-10-05 11:35:57 +02004990 if (es_now) {
4991 // trim any possibly pending data (eg: inconsistent content-length)
4992 h2s->flags |= H2_SF_ES_SENT;
4993 h2s->st = H2_SS_HLOC;
4994 }
4995
4996 /* remove all header blocks including the EOH and compute the
4997 * corresponding size.
4998 *
4999 * FIXME: We should remove everything when es_now is set.
5000 */
5001 ret = 0;
5002 idx = htx_get_head(htx);
5003 blk = htx_get_blk(htx, idx);
5004 while (blk != blk_end) {
5005 ret += htx_get_blksz(blk);
5006 blk = htx_remove_blk(htx, blk);
5007 }
5008
Christopher Faulet316934d2019-05-15 14:22:48 +02005009 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5010 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02005011 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005012 }
Willy Tarreau80739692018-10-05 11:35:57 +02005013
5014 end:
5015 return ret;
5016 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005017 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5018 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005019 h2c->flags |= H2_CF_MUX_MFULL;
5020 h2s->flags |= H2_SF_BLK_MROOM;
5021 ret = 0;
5022 goto end;
5023 fail:
5024 /* unparsable HTX messages, too large ones to be produced in the local
5025 * list etc go here (unrecoverable errors).
5026 */
5027 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5028 ret = 0;
5029 goto end;
5030}
5031
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005032/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005033 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5034 * caller must check the stream's status to detect any error which might have
5035 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02005036 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005037 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01005038static size_t h2s_htx_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005039{
5040 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005041 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005042 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005043 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005044 size_t total = 0;
5045 int es_now = 0;
5046 int bsize; /* htx block size */
5047 int fsize; /* h2 frame size */
5048 struct htx_blk *blk;
5049 enum htx_blk_type type;
5050 int idx;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005051 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005052
5053 if (h2c_mux_busy(h2c, h2s)) {
5054 h2s->flags |= H2_SF_BLK_MBUSY;
5055 goto end;
5056 }
5057
Willy Tarreau98de12a2018-12-12 07:03:00 +01005058 htx = htx_from_buf(buf);
5059
Christopher Faulet54b5e212019-06-04 10:08:28 +02005060 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5061 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5062 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005063 */
5064
5065 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005066 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005067 goto end;
5068
5069 idx = htx_get_head(htx);
5070 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005071 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005072 bsize = htx_get_blksz(blk);
5073 fsize = bsize;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005074 trunc_out = 0;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005075
Christopher Faulet54b5e212019-06-04 10:08:28 +02005076 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005077 if (h2s->flags & H2_SF_ES_SENT) {
5078 /* ES already sent */
5079 htx_remove_blk(htx, blk);
5080 total++; // EOM counts as one byte
5081 count--;
5082 goto end;
5083 }
5084 }
5085 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005086 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005087
Willy Tarreau9c218e72019-05-26 10:08:28 +02005088 mbuf = br_tail(h2c->mbuf);
5089 retry:
5090 if (!h2_get_buf(h2c, mbuf)) {
5091 h2c->flags |= H2_CF_MUX_MALLOC;
5092 h2s->flags |= H2_SF_BLK_MROOM;
5093 goto end;
5094 }
5095
Willy Tarreau98de12a2018-12-12 07:03:00 +01005096 /* Perform some optimizations to reduce the number of buffer copies.
5097 * First, if the mux's buffer is empty and the htx area contains
5098 * exactly one data block of the same size as the requested count, and
5099 * this count fits within the frame size, the stream's window size, and
5100 * the connection's window size, then it's possible to simply swap the
5101 * caller's buffer with the mux's output buffer and adjust offsets and
5102 * length to match the entire DATA HTX block in the middle. In this
5103 * case we perform a true zero-copy operation from end-to-end. This is
5104 * the situation that happens all the time with large files. Second, if
5105 * this is not possible, but the mux's output buffer is empty, we still
5106 * have an opportunity to avoid the copy to the intermediary buffer, by
5107 * making the intermediary buffer's area point to the output buffer's
5108 * area. In this case we want to skip the HTX header to make sure that
5109 * copies remain aligned and that this operation remains possible all
5110 * the time. This goes for headers, data blocks and any data extracted
5111 * from the HTX blocks.
5112 */
5113 if (unlikely(fsize == count &&
5114 htx->used == 1 && type == HTX_BLK_DATA &&
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005115 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005116 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005117
Willy Tarreaubcc45952019-05-26 10:05:50 +02005118 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005119 /* Too bad there are data left there. We're willing to memcpy/memmove
5120 * up to 1/4 of the buffer, which means that it's OK to copy a large
5121 * frame into a buffer containing few data if it needs to be realigned,
5122 * and that it's also OK to copy few data without realigning. Otherwise
5123 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005124 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005125 if (fsize + 9 <= b_room(mbuf) &&
5126 (b_data(mbuf) <= b_size(mbuf) / 4 ||
5127 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf))))
Willy Tarreau98de12a2018-12-12 07:03:00 +01005128 goto copy;
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005129
Willy Tarreau9c218e72019-05-26 10:08:28 +02005130 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5131 goto retry;
5132
Willy Tarreau98de12a2018-12-12 07:03:00 +01005133 h2c->flags |= H2_CF_MUX_MFULL;
5134 h2s->flags |= H2_SF_BLK_MROOM;
5135 goto end;
5136 }
5137
5138 /* map an H2 frame to the HTX block so that we can put the
5139 * frame header there.
5140 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005141 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5142 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005143
5144 /* prepend an H2 DATA frame header just before the DATA block */
5145 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5146 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5147 h2_set_frame_size(outbuf.area, fsize);
5148
5149 /* update windows */
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005150 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005151 h2c->mws -= fsize;
5152
5153 /* and exchange with our old area */
5154 buf->area = old_area;
5155 buf->data = buf->head = 0;
5156 total += fsize;
5157 goto end;
5158 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005159
Willy Tarreau98de12a2018-12-12 07:03:00 +01005160 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005161 /* for DATA and EOM we'll have to emit a frame, even if empty */
5162
5163 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005164 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5165 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005166 break;
5167 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005168 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005169 }
5170
5171 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005172 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5173 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005174 h2c->flags |= H2_CF_MUX_MFULL;
5175 h2s->flags |= H2_SF_BLK_MROOM;
5176 goto end;
5177 }
5178
5179 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5180 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5181 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5182 outbuf.data = 9;
5183
5184 /* we have in <fsize> the exact number of bytes we need to copy from
5185 * the HTX buffer. We need to check this against the connection's and
5186 * the stream's send windows, and to ensure that this fits in the max
5187 * frame size and in the buffer's available space minus 9 bytes (for
5188 * the frame header). The connection's flow control is applied last so
5189 * that we can use a separate list of streams which are immediately
5190 * unblocked on window opening. Note: we don't implement padding.
5191 */
5192
5193 /* EOM is presented with bsize==1 but would lead to the emission of an
5194 * empty frame, thus we force it to zero here.
5195 */
5196 if (type == HTX_BLK_EOM)
5197 bsize = fsize = 0;
5198
5199 if (!fsize)
5200 goto send_empty;
5201
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005202 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005203 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005204 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005205 LIST_DEL_INIT(&h2s->list);
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005206 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005207 goto end;
5208 }
5209
Willy Tarreauee573762018-12-04 15:25:57 +01005210 if (fsize > count)
5211 fsize = count;
5212
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005213 if (fsize > h2s_mws(h2s))
5214 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005215
5216 if (h2c->mfs && fsize > h2c->mfs)
5217 fsize = h2c->mfs; // >0
5218
5219 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005220 /* It doesn't fit at once. If it at least fits once split and
5221 * the amount of data to move is low, let's defragment the
5222 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005223 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005224 if (b_space_wraps(mbuf) &&
5225 (fsize + 9 <= b_room(mbuf)) &&
5226 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005227 goto realign_again;
5228 fsize = outbuf.size - 9;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005229 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005230
5231 if (fsize <= 0) {
5232 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005233 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5234 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005235 h2c->flags |= H2_CF_MUX_MFULL;
5236 h2s->flags |= H2_SF_BLK_MROOM;
5237 goto end;
5238 }
5239 }
5240
5241 if (h2c->mws <= 0) {
5242 h2s->flags |= H2_SF_BLK_MFCTL;
5243 goto end;
5244 }
5245
5246 if (fsize > h2c->mws)
5247 fsize = h2c->mws;
5248
5249 /* now let's copy this this into the output buffer */
5250 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005251 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005252 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005253 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005254
5255 send_empty:
5256 /* update the frame's size */
5257 h2_set_frame_size(outbuf.area, fsize);
5258
5259 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5260 * meeting EOM. We should optimize this later.
5261 */
5262 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005263 total++; // EOM counts as one byte
5264 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005265 es_now = 1;
5266 }
5267
5268 if (es_now)
5269 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5270
5271 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005272 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005273
5274 /* consume incoming HTX block, including EOM */
5275 total += fsize;
5276 if (fsize == bsize) {
5277 htx_remove_blk(htx, blk);
5278 if (fsize)
5279 goto new_frame;
5280 } else {
5281 /* we've truncated this block */
5282 htx_cut_data_blk(htx, blk, fsize);
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005283 if (trunc_out)
5284 goto new_frame;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005285 }
5286
5287 if (es_now) {
5288 if (h2s->st == H2_SS_OPEN)
5289 h2s->st = H2_SS_HLOC;
5290 else
5291 h2s_close(h2s);
5292
5293 h2s->flags |= H2_SF_ES_SENT;
5294 }
5295
5296 end:
5297 return total;
5298}
5299
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005300/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5301 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5302 * processed. The caller must check the stream's status to detect any error
5303 * which might have happened subsequently to a successful send. The htx blocks
5304 * are automatically removed from the message. The htx message is assumed to be
5305 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005306 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005307 * as a single frame. The ES flag is always set.
5308 */
5309static size_t h2s_htx_make_trailers(struct h2s *h2s, struct htx *htx)
5310{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005311 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005312 struct h2c *h2c = h2s->h2c;
5313 struct htx_blk *blk;
5314 struct htx_blk *blk_end;
5315 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005316 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005317 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005318 int ret = 0;
5319 int hdr;
5320 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005321
5322 if (h2c_mux_busy(h2c, h2s)) {
5323 h2s->flags |= H2_SF_BLK_MBUSY;
5324 goto end;
5325 }
5326
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005327 /* determine the first block which must not be deleted, blk_end may
5328 * be NULL if all blocks have to be deleted. also get trailers.
5329 */
5330 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005331 blk_end = NULL;
5332
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005333 hdr = 0;
5334 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005335 blk = htx_get_blk(htx, idx);
5336 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005337 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005338 if (type == HTX_BLK_UNUSED)
5339 continue;
5340
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005341 if (type == HTX_BLK_EOT) {
5342 if (idx != -1)
5343 blk_end = blk;
5344 break;
5345 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005346 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005347 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005348
5349 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
5350 goto fail;
5351
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005352 list[hdr].n = htx_get_blk_name(htx, blk);
5353 list[hdr].v = htx_get_blk_value(htx, blk);
5354 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005355 }
5356
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005357 /* marker for end of trailers */
5358 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005359
Willy Tarreau9c218e72019-05-26 10:08:28 +02005360 mbuf = br_tail(h2c->mbuf);
5361 retry:
5362 if (!h2_get_buf(h2c, mbuf)) {
5363 h2c->flags |= H2_CF_MUX_MALLOC;
5364 h2s->flags |= H2_SF_BLK_MROOM;
5365 goto end;
5366 }
5367
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005368 chunk_reset(&outbuf);
5369
5370 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005371 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5372 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005373 break;
5374 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005375 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005376 }
5377
5378 if (outbuf.size < 9)
5379 goto full;
5380
5381 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5382 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5383 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5384 outbuf.data = 9;
5385
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005386 /* encode all headers */
5387 for (idx = 0; idx < hdr; idx++) {
5388 /* these ones do not exist in H2 or must not appear in
5389 * trailers and must be dropped.
5390 */
5391 if (isteq(list[idx].n, ist("host")) ||
5392 isteq(list[idx].n, ist("content-length")) ||
5393 isteq(list[idx].n, ist("connection")) ||
5394 isteq(list[idx].n, ist("proxy-connection")) ||
5395 isteq(list[idx].n, ist("keep-alive")) ||
5396 isteq(list[idx].n, ist("upgrade")) ||
5397 isteq(list[idx].n, ist("te")) ||
5398 isteq(list[idx].n, ist("transfer-encoding")))
5399 continue;
5400
5401 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5402 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005403 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005404 goto realign_again;
5405 goto full;
5406 }
5407 }
5408
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005409 if (outbuf.data == 9) {
5410 /* here we have a problem, we have nothing to emit (either we
5411 * received an empty trailers block followed or we removed its
5412 * contents above). Because of this we can't send a HEADERS
5413 * frame, so we have to cheat and instead send an empty DATA
5414 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005415 */
5416 outbuf.area[3] = H2_FT_DATA;
5417 outbuf.area[4] = H2_F_DATA_END_STREAM;
5418 }
5419
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005420 /* update the frame's size */
5421 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5422
5423 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005424 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005425 h2s->flags |= H2_SF_ES_SENT;
5426
5427 if (h2s->st == H2_SS_OPEN)
5428 h2s->st = H2_SS_HLOC;
5429 else
5430 h2s_close(h2s);
5431
5432 /* OK we could properly deliver the response */
5433 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005434 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005435 ret = 0;
5436 idx = htx_get_head(htx);
5437 blk = htx_get_blk(htx, idx);
5438 while (blk != blk_end) {
5439 ret += htx_get_blksz(blk);
5440 blk = htx_remove_blk(htx, blk);
5441 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005442
5443 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5444 ret += htx_get_blksz(blk_end);
5445 htx_remove_blk(htx, blk_end);
5446 }
5447
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005448 end:
5449 return ret;
5450 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005451 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5452 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005453 h2c->flags |= H2_CF_MUX_MFULL;
5454 h2s->flags |= H2_SF_BLK_MROOM;
5455 ret = 0;
5456 goto end;
5457 fail:
5458 /* unparsable HTX messages, too large ones to be produced in the local
5459 * list etc go here (unrecoverable errors).
5460 */
5461 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5462 ret = 0;
5463 goto end;
5464}
5465
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005466/* Called from the upper layer, to subscribe to events, such as being able to send.
5467 * The <param> argument here is supposed to be a pointer to a wait_event struct
5468 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5469 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5470 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5471 * returns 0 except for the error above.
5472 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005473static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5474{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005475 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005476 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005477 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005478
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005479 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005480 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005481 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5482 sw->events |= SUB_RETRY_RECV;
5483 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005484 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005485 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005486 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +02005487 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005488 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5489 sw->events |= SUB_RETRY_SEND;
5490 h2s->send_wait = sw;
5491 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5492 !LIST_ADDED(&h2s->list)) {
5493 if (h2s->flags & H2_SF_BLK_MFCTL)
5494 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5495 else
5496 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005497 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005498 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005499 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005500 if (event_type != 0)
5501 return -1;
5502 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005503}
5504
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005505/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5506 * The <param> argument here is supposed to be a pointer to the same wait_event
5507 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5508 * It always returns zero.
5509 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005510static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5511{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005512 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005513 struct h2s *h2s = cs->ctx;
5514
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005515 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005516 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005517 BUG_ON(h2s->recv_wait != sw);
5518 sw->events &= ~SUB_RETRY_RECV;
5519 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005520 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005521 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005522 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005523 BUG_ON(h2s->send_wait != sw);
5524 LIST_DEL(&h2s->list);
5525 LIST_INIT(&h2s->list);
5526 sw->events &= ~SUB_RETRY_SEND;
5527 /* We were about to send, make sure it does not happen */
5528 if (LIST_ADDED(&h2s->sending_list) &&
5529 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02005530 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005531 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005532 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005533 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005534 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005535 return 0;
5536}
5537
5538
Olivier Houchard511efea2018-08-16 15:30:32 +02005539/* Called from the upper layer, to receive data */
5540static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5541{
Olivier Houchard638b7992018-08-16 15:41:52 +02005542 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005543 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005544 struct htx *h2s_htx = NULL;
5545 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005546 size_t ret = 0;
5547
5548 /* transfer possibly pending data to the upper layer */
Willy Tarreau86724e22018-12-01 23:19:43 +01005549 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau86724e22018-12-01 23:19:43 +01005550 h2s_htx = htx_from_buf(&h2s->rxbuf);
Olivier Houchard56b03482018-12-10 16:09:53 +01005551 if (htx_is_empty(h2s_htx)) {
Christopher Faulet37070b22019-02-14 15:12:14 +01005552 /* Here htx_to_buf() will set buffer data to 0 because
5553 * the HTX is empty.
5554 */
5555 htx_to_buf(h2s_htx, &h2s->rxbuf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005556 goto end;
Olivier Houchard56b03482018-12-10 16:09:53 +01005557 }
Willy Tarreau86724e22018-12-01 23:19:43 +01005558
Christopher Faulet156852b2019-05-16 11:29:13 +02005559 ret = h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005560 buf_htx = htx_from_buf(buf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005561
Christopher Faulet2f6edc82019-05-15 10:07:59 +02005562 /* <buf> is empty and the message is small enough, swap the
5563 * buffers. */
5564 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
5565 htx_to_buf(buf_htx, buf);
5566 htx_to_buf(h2s_htx, &h2s->rxbuf);
5567 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5568 goto end;
5569 }
5570
Christopher Faulet156852b2019-05-16 11:29:13 +02005571 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005572
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005573 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
Willy Tarreau7196dd62019-03-05 10:51:11 +01005574 buf_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005575 if (htx_is_empty(buf_htx))
5576 cs->flags |= CS_FL_EOI;
5577 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005578
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01005579 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005580 htx_to_buf(buf_htx, buf);
5581 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet156852b2019-05-16 11:29:13 +02005582 ret -= h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005583 }
5584 else {
5585 ret = b_xfer(buf, &h2s->rxbuf, count);
5586 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005587
Christopher Faulet37070b22019-02-14 15:12:14 +01005588 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005589 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005590 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005591 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005592 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005593 if (h2s->flags & H2_SF_ES_RCVD)
5594 cs->flags |= CS_FL_EOI;
Christopher Faulet11b10532020-10-08 15:38:41 +02005595 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005596 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005597 if (cs->flags & CS_FL_ERR_PENDING)
5598 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005599 if (b_size(&h2s->rxbuf)) {
5600 b_free(&h2s->rxbuf);
5601 offer_buffers(NULL, tasks_run_queue);
5602 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005603 }
5604
Willy Tarreau082f5592018-11-25 08:03:32 +01005605 if (ret && h2c->dsi == h2s->id) {
5606 /* demux is blocking on this stream's buffer */
5607 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005608 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005609 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005610
Olivier Houchard511efea2018-08-16 15:30:32 +02005611 return ret;
5612}
5613
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005614/* stops all senders of this connection for example when the mux buffer is full.
5615 * They are moved from the sending_list to either fctl_list or send_list.
5616 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005617static void h2_stop_senders(struct h2c *h2c)
5618{
5619 struct h2s *h2s, *h2s_back;
5620
Olivier Houchardd360ac62019-03-22 17:37:16 +01005621 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5622 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02005623 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005624 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005625 }
5626}
5627
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005628/* Called from the upper layer, to send data from buffer <buf> for no more than
5629 * <count> bytes. Returns the number of bytes effectively sent. Some status
5630 * flags may be updated on the conn_stream.
5631 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005632static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005633{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005634 struct h2s *h2s = cs->ctx;
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005635 size_t orig_count = count;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005636 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005637 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005638 struct htx *htx;
5639 struct htx_blk *blk;
5640 enum htx_blk_type btype;
5641 uint32_t bsize;
5642 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005643
Olivier Houchardd360ac62019-03-22 17:37:16 +01005644 /* If we were not just woken because we wanted to send but couldn't,
5645 * and there's somebody else that is waiting to send, do nothing,
5646 * we will subscribe later and be put at the end of the list
5647 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005648 if (!LIST_ADDED(&h2s->sending_list) &&
Olivier Houchardd360ac62019-03-22 17:37:16 +01005649 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list)))
5650 return 0;
Olivier Houchard998410a2019-04-15 19:23:37 +02005651 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005652
Olivier Houchard998410a2019-04-15 19:23:37 +02005653 /* We couldn't set it to NULL before, because we needed it in case
5654 * we had to cancel the tasklet
5655 */
5656 h2s->send_wait = NULL;
5657
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005658 if (h2s->h2c->st0 < H2_CS_FRAME_H)
5659 return 0;
5660
Willy Tarreau902df222019-10-31 15:48:18 +01005661 if (h2s->h2c->st0 >= H2_CS_ERROR) {
5662 cs->flags |= CS_FL_ERROR;
5663 return 0;
5664 }
5665
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005666 /* htx will be enough to decide if we're using HTX or legacy */
5667 htx = (h2s->h2c->proxy->options2 & PR_O2_USE_HTX) ? htx_from_buf(buf) : NULL;
5668
Willy Tarreau0bad0432018-06-14 16:54:01 +02005669 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005670 h2s->flags |= H2_SF_OUTGOING_DATA;
5671
Willy Tarreau751f2d02018-10-05 09:35:00 +02005672 if (h2s->id == 0) {
5673 int32_t id = h2c_get_next_sid(h2s->h2c);
5674
5675 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005676 cs->flags |= CS_FL_ERROR;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005677 return 0;
5678 }
5679
5680 eb32_delete(&h2s->by_id);
5681 h2s->by_id.key = h2s->id = id;
5682 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005683 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005684 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5685 }
5686
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005687 if (htx) {
Willy Tarreau2b778482019-05-06 15:00:22 +02005688 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
Willy Tarreauc14999b2018-12-06 14:09:09 +01005689 count && !htx_is_empty(htx)) {
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005690 idx = htx_get_head(htx);
5691 blk = htx_get_blk(htx, idx);
5692 btype = htx_get_blk_type(blk);
5693 bsize = htx_get_blksz(blk);
5694
5695 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005696 case HTX_BLK_REQ_SL:
5697 /* start-line before headers */
5698 ret = h2s_htx_bck_make_req_headers(h2s, htx);
5699 if (ret > 0) {
5700 total += ret;
5701 count -= ret;
5702 if (ret < bsize)
5703 goto done;
5704 }
5705 break;
5706
Willy Tarreau115e83b2018-12-01 19:17:53 +01005707 case HTX_BLK_RES_SL:
5708 /* start-line before headers */
5709 ret = h2s_htx_frt_make_resp_headers(h2s, htx);
5710 if (ret > 0) {
5711 total += ret;
5712 count -= ret;
5713 if (ret < bsize)
5714 goto done;
5715 }
5716 break;
5717
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005718 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005719 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005720 /* all these cause the emission of a DATA frame (possibly empty).
5721 * This EOM necessarily is one before trailers, as the EOM following
5722 * trailers would have been consumed by the trailers parser.
5723 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01005724 ret = h2s_htx_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005725 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005726 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005727 total += ret;
5728 count -= ret;
5729 if (ret < bsize)
5730 goto done;
5731 }
5732 break;
5733
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005734 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005735 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005736 /* This is the first trailers block, all the subsequent ones AND
5737 * the EOM will be swallowed by the parser.
5738 */
5739 ret = h2s_htx_make_trailers(h2s, htx);
5740 if (ret > 0) {
5741 total += ret;
5742 count -= ret;
5743 if (ret < bsize)
5744 goto done;
5745 }
5746 break;
5747
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005748 default:
5749 htx_remove_blk(htx, blk);
5750 total += bsize;
5751 count -= bsize;
5752 break;
5753 }
5754 }
5755 goto done;
5756 }
5757
5758 /* legacy transfer mode */
Willy Tarreaua40704a2018-09-11 13:52:04 +02005759 while (h2s->h1m.state < H1_MSG_DONE && count) {
Willy Tarreau001823c2018-09-12 17:25:32 +02005760 if (h2s->h1m.state <= H1_MSG_LAST_LF) {
Willy Tarreau80739692018-10-05 11:35:57 +02005761 if (h2s->h2c->flags & H2_CF_IS_BACK)
5762 ret = -1;
5763 else
5764 ret = h2s_frt_make_resp_headers(h2s, buf, total, count);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005765 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005766 else if (h2s->h1m.state < H1_MSG_TRAILERS) {
Willy Tarreau0bad0432018-06-14 16:54:01 +02005767 ret = h2s_frt_make_resp_data(h2s, buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005768 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005769 else if (h2s->h1m.state == H1_MSG_TRAILERS) {
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005770 /* consume the trailers if any (we don't forward them for now) */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005771 ret = h1_measure_trailers(buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005772
Willy Tarreau5dd17352018-06-14 13:33:30 +02005773 if (unlikely((int)ret <= 0)) {
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02005774 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005775 break;
5776 }
Christopher Faulet6ad7cd92020-07-23 14:50:36 +02005777
Willy Tarreau35a62702018-02-27 15:37:25 +01005778 // trim any possibly pending data (eg: extra CR-LF, ...)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005779 total += count;
5780 count = 0;
Willy Tarreaua40704a2018-09-11 13:52:04 +02005781 h2s->h1m.state = H1_MSG_DONE;
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005782 break;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02005783 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005784 else {
Willy Tarreauec988c72018-12-19 18:00:29 +01005785 cs_set_error(cs);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005786 break;
5787 }
Willy Tarreau0bad0432018-06-14 16:54:01 +02005788
5789 total += ret;
5790 count -= ret;
5791
Willy Tarreau2b778482019-05-06 15:00:22 +02005792 if (h2s->st >= H2_SS_HLOC)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005793 break;
5794
5795 if (h2s->flags & H2_SF_BLK_ANY)
5796 break;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005797 }
5798
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005799 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005800 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005801 /* trim any possibly pending data after we close (extra CR-LF,
5802 * unprocessed trailers, abnormal extra data, ...)
5803 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005804 total += count;
5805 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005806 }
5807
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005808 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005809 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreauec988c72018-12-19 18:00:29 +01005810 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005811 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005812 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005813 }
5814
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005815 if (htx) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005816 htx_to_buf(htx, buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005817 } else {
5818 b_del(buf, total);
5819 }
Olivier Houchardd846c262018-10-19 17:24:29 +02005820
5821 /* The mux is full, cancel the pending tasks */
5822 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
5823 (h2s->flags & H2_SF_BLK_MBUSY))
5824 h2_stop_senders(h2s->h2c);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005825
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005826 /* If we're running HTX, and we read the whole buffer, then pretend
5827 * we read exactly what the caller specified, as with HTX the caller
5828 * will always give the buffer size, instead of the amount of data
5829 * available.
5830 */
5831 if (htx && !b_data(buf))
5832 total = orig_count;
5833
Olivier Houchard7505f942018-08-21 18:10:44 +02005834 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005835 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005836 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005837
Olivier Houchard7505f942018-08-21 18:10:44 +02005838 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005839 /* If we're waiting for flow control, and we got a shutr on the
5840 * connection, we will never be unlocked, so add an error on
5841 * the conn_stream.
5842 */
5843 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5844 !b_data(&h2s->h2c->dbuf) &&
5845 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
5846 if (cs->flags & CS_FL_EOS)
5847 cs->flags |= CS_FL_ERROR;
5848 else
5849 cs->flags |= CS_FL_ERR_PENDING;
5850 }
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005851
5852 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL)) {
5853 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005854 LIST_DEL_INIT(&h2s->list);
5855 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005856 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005857}
5858
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005859/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005860static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005861{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005862 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005863 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005864 struct eb32_node *node;
5865 int fctl_cnt = 0;
5866 int send_cnt = 0;
5867 int tree_cnt = 0;
5868 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005869 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005870
5871 if (!h2c)
5872 return;
5873
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005874 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005875 fctl_cnt++;
5876
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005877 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005878 send_cnt++;
5879
Willy Tarreau3af37712018-12-18 14:34:41 +01005880 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005881 node = eb32_first(&h2c->streams_by_id);
5882 while (node) {
5883 h2s = container_of(node, struct h2s, by_id);
5884 tree_cnt++;
5885 if (!h2s->cs)
5886 orph_cnt++;
5887 node = eb32_next(node);
5888 }
5889
Willy Tarreau60f62682019-05-26 11:32:27 +02005890 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005891 tmbuf = br_tail(h2c->mbuf);
Willy Tarreau987c0632018-12-18 10:32:05 +01005892 chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
5893 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005894 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5895 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau616ac812018-07-24 14:12:42 +02005896 h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
5897 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005898 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005899 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5900 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5901 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005902 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5903 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5904 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005905 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5906 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005907
5908 if (h2s) {
5909 chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5910 h2s, h2s->id, h2s->flags,
5911 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5912 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5913 h2s->cs);
5914 if (h2s->cs)
5915 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5916 h2s->cs->flags, h2s->cs->data);
5917 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005918}
Willy Tarreau62f52692017-10-08 23:01:42 +02005919
5920/*******************************************************/
5921/* functions below are dedicated to the config parsers */
5922/*******************************************************/
5923
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005924/* config parser for global "tune.h2.header-table-size" */
5925static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5926 struct proxy *defpx, const char *file, int line,
5927 char **err)
5928{
5929 if (too_many_args(1, args, err, NULL))
5930 return -1;
5931
5932 h2_settings_header_table_size = atoi(args[1]);
5933 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5934 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5935 return -1;
5936 }
5937 return 0;
5938}
Willy Tarreau62f52692017-10-08 23:01:42 +02005939
Willy Tarreaue6baec02017-07-27 11:45:11 +02005940/* config parser for global "tune.h2.initial-window-size" */
5941static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5942 struct proxy *defpx, const char *file, int line,
5943 char **err)
5944{
5945 if (too_many_args(1, args, err, NULL))
5946 return -1;
5947
5948 h2_settings_initial_window_size = atoi(args[1]);
5949 if (h2_settings_initial_window_size < 0) {
5950 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5951 return -1;
5952 }
5953 return 0;
5954}
5955
Willy Tarreau5242ef82017-07-27 11:47:28 +02005956/* config parser for global "tune.h2.max-concurrent-streams" */
5957static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5958 struct proxy *defpx, const char *file, int line,
5959 char **err)
5960{
5961 if (too_many_args(1, args, err, NULL))
5962 return -1;
5963
5964 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005965 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005966 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5967 return -1;
5968 }
5969 return 0;
5970}
5971
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005972/* config parser for global "tune.h2.max-frame-size" */
5973static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5974 struct proxy *defpx, const char *file, int line,
5975 char **err)
5976{
5977 if (too_many_args(1, args, err, NULL))
5978 return -1;
5979
5980 h2_settings_max_frame_size = atoi(args[1]);
5981 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5982 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5983 return -1;
5984 }
5985 return 0;
5986}
5987
Willy Tarreau62f52692017-10-08 23:01:42 +02005988
5989/****************************************/
5990/* MUX initialization and instanciation */
5991/***************************************/
5992
5993/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005994static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005995 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005996 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005997 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005998 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02005999 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006000 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006001 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006002 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006003 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006004 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006005 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006006 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006007 .shutr = h2_shutr,
6008 .shutw = h2_shutw,
Olivier Houchard198d1292019-10-25 16:19:26 +02006009 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006010 .show_fd = h2_show_fd,
Willy Tarreau28f1cb92017-12-20 16:14:44 +01006011 .flags = MX_FL_CLEAN_ABRT,
Willy Tarreau62f52692017-10-08 23:01:42 +02006012 .name = "H2",
6013};
6014
Christopher Faulet32f61c02018-04-10 14:33:41 +02006015/* PROTO selection : this mux registers PROTO token "h2" */
6016static struct mux_proto_list mux_proto_h2 =
Willy Tarreauf8957272018-10-03 10:25:20 +02006017 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_FE, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006018
Willy Tarreau0108d902018-11-25 19:14:37 +01006019INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6020
Christopher Faulet9b579102019-04-11 22:52:25 +02006021
6022/* The mux operations */
6023static const struct mux_ops h2_htx_ops = {
6024 .init = h2_init,
6025 .wake = h2_wake,
6026 .snd_buf = h2_snd_buf,
6027 .rcv_buf = h2_rcv_buf,
6028 .subscribe = h2_subscribe,
6029 .unsubscribe = h2_unsubscribe,
6030 .attach = h2_attach,
6031 .get_first_cs = h2_get_first_cs,
6032 .detach = h2_detach,
6033 .destroy = h2_destroy,
6034 .avail_streams = h2_avail_streams,
6035 .used_streams = h2_used_streams,
6036 .shutr = h2_shutr,
6037 .shutw = h2_shutw,
Olivier Houchard198d1292019-10-25 16:19:26 +02006038 .ctl = h2_ctl,
Christopher Faulet9b579102019-04-11 22:52:25 +02006039 .show_fd = h2_show_fd,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02006040 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Christopher Faulet9b579102019-04-11 22:52:25 +02006041 .name = "H2",
6042};
6043
Willy Tarreauf8957272018-10-03 10:25:20 +02006044static struct mux_proto_list mux_proto_h2_htx =
Christopher Faulet9b579102019-04-11 22:52:25 +02006045 { .token = IST("h2"), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &h2_htx_ops };
Willy Tarreauf8957272018-10-03 10:25:20 +02006046
6047INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2_htx);
6048
Willy Tarreau62f52692017-10-08 23:01:42 +02006049/* config keyword parsers */
6050static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006051 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006052 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006053 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006054 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006055 { 0, NULL, NULL }
6056}};
6057
Willy Tarreau0108d902018-11-25 19:14:37 +01006058INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);