blob: 679a23f7e6fe8262000b0b658be77c7e2a3d8d5e [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 Tarreau97aaa672018-12-23 09:49:04 +010066#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
Willy Tarreau081d4722017-05-16 21:51:05 +020067
Willy Tarreau5ab6b572017-09-22 08:05:00 +020068/* H2 connection state, in h2c->st0 */
69enum h2_cs {
70 H2_CS_PREFACE, // init done, waiting for connection preface
71 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
72 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
73 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010074 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
75 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020076 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
77 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
78 H2_CS_ENTRIES // must be last
79} __attribute__((packed));
80
Willy Tarreau51330962019-05-26 09:38:07 +020081
Willy Tarreau9c218e72019-05-26 10:08:28 +020082/* 32 buffers: one for the ring's root, rest for the mbuf itself */
83#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020084
Willy Tarreau5ab6b572017-09-22 08:05:00 +020085/* H2 connection descriptor */
86struct h2c {
87 struct connection *conn;
88
89 enum h2_cs st0; /* mux state */
90 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
91
92 /* 16 bit hole here */
93 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010094 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020095 int32_t max_id; /* highest ID known on this connection, <0 before preface */
96 uint32_t rcvd_c; /* newly received data to ACK for the connection */
97 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
98
99 /* states for the demux direction */
100 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200101 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200102
103 int32_t dsi; /* demux stream ID (<0 = idle) */
104 int32_t dfl; /* demux frame length (if dsi >= 0) */
105 int8_t dft; /* demux frame type (if dsi >= 0) */
106 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100107 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
108 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200109 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
110
111 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200112 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200113 int32_t msi; /* mux stream ID (<0 = idle) */
114 int32_t mfl; /* mux frame length (if dsi >= 0) */
115 int8_t mft; /* mux frame type (if dsi >= 0) */
116 int8_t mff; /* mux frame flags (if dsi >= 0) */
117 /* 16 bit hole here */
118 int32_t miw; /* mux initial window size for all new streams */
119 int32_t mws; /* mux window size. Can be negative. */
120 int32_t mfs; /* mux's max frame size */
121
Willy Tarreauea392822017-10-31 10:02:25 +0100122 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100123 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100124 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200125 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100126 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100127 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200128 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100129 struct task *task; /* timeout management task */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200130 struct eb_root streams_by_id; /* all active streams by their ID */
131 struct list send_list; /* list of blocked streams requesting to send */
132 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreaubda92dd2019-10-02 10:49:59 +0200133 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Olivier Houchardd846c262018-10-19 17:24:29 +0200134 struct list sending_list; /* list of h2s scheduled to send data */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100135 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200136 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200137};
138
Willy Tarreau18312642017-10-11 07:57:07 +0200139/* H2 stream state, in h2s->st */
140enum h2_ss {
141 H2_SS_IDLE = 0, // idle
142 H2_SS_RLOC, // reserved(local)
143 H2_SS_RREM, // reserved(remote)
144 H2_SS_OPEN, // open
145 H2_SS_HREM, // half-closed(remote)
146 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200147 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200148 H2_SS_CLOSED, // closed
149 H2_SS_ENTRIES // must be last
150} __attribute__((packed));
151
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200152#define H2_SS_MASK(state) (1UL << (state))
153#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
154#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
155#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
156#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
157#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
158#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
159#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
160#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200161
Willy Tarreau18312642017-10-11 07:57:07 +0200162/* HTTP/2 stream flags (32 bit), in h2s->flags */
163#define H2_SF_NONE 0x00000000
164#define H2_SF_ES_RCVD 0x00000001
165#define H2_SF_ES_SENT 0x00000002
166
167#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
168#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
169
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200170/* stream flags indicating the reason the stream is blocked */
171#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreaubda92dd2019-10-02 10:49:59 +0200172#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
173#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
174#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200175#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
176
Willy Tarreau454f9052017-10-26 19:40:35 +0200177/* stream flags indicating how data is supposed to be sent */
178#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
179#define H2_SF_DATA_CHNK 0x00000200 // data sent using chunked-encoding
180
181/* step we're currently in when sending chunks. This is needed because we may
182 * have to transfer chunks as large as a full buffer so there's no room left
183 * for size nor crlf around.
184 */
185#define H2_SF_CHNK_SIZE 0x00000000 // trying to send chunk size
186#define H2_SF_CHNK_DATA 0x00000400 // trying to send chunk data
187#define H2_SF_CHNK_CRLF 0x00000800 // trying to send chunk crlf after data
188
189#define H2_SF_CHNK_MASK 0x00000C00 // trying to send chunk size
190
Willy Tarreau67434202017-11-06 20:20:51 +0100191#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100192#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100193
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100194#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
195
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200196#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
197#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200198#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200199
200
Willy Tarreau18312642017-10-11 07:57:07 +0200201/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
202 * it is being processed in the internal HTTP representation (H1 for now).
203 */
204struct h2s {
205 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100206 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200207 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200208 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200209 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200210 int32_t id; /* stream ID */
211 uint32_t flags; /* H2_SF_* */
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200212 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200213 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
214 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200215 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100216 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200217 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200218 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 +0100219 struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
220 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 +0200221 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100222 struct list sending_list; /* To be used when adding in h2c->sending_list */
Willy Tarreau18312642017-10-11 07:57:07 +0200223};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200224
Willy Tarreauc6405142017-09-21 20:23:50 +0200225/* descriptor for an h2 frame header */
226struct h2_fh {
227 uint32_t len; /* length, host order, 24 bits */
228 uint32_t sid; /* stream id, host order, 31 bits */
229 uint8_t ft; /* frame type */
230 uint8_t ff; /* frame flags */
231};
232
Willy Tarreau8ceae722018-11-26 11:58:30 +0100233/* the h2c connection pool */
234DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
235
236/* the h2s stream pool */
237DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
238
Willy Tarreaudc572362018-12-12 08:08:05 +0100239/* The default connection window size is 65535, it may only be enlarged using
240 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
241 * we'll pretend we already received the difference between the two to send
242 * an equivalent window update to enlarge it to 2G-1.
243 */
244#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
245
Willy Tarreau455d5682019-05-24 19:42:18 +0200246/* maximum amount of data we're OK with re-aligning for buffer optimizations */
247#define MAX_DATA_REALIGN 1024
248
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200249/* a few settings from the global section */
250static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200251static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100252static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100253static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200254
Willy Tarreau2a856182017-05-16 15:20:39 +0200255/* a dmumy closed stream */
256static const struct h2s *h2_closed_stream = &(const struct h2s){
257 .cs = NULL,
258 .h2c = NULL,
259 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100260 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100261 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200262 .id = 0,
263};
264
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100265/* a dmumy closed stream returning a PROTOCOL_ERROR error */
266static const struct h2s *h2_error_stream = &(const struct h2s){
267 .cs = NULL,
268 .h2c = NULL,
269 .st = H2_SS_CLOSED,
270 .errcode = H2_ERR_PROTOCOL_ERROR,
271 .flags = 0,
272 .id = 0,
273};
274
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100275/* a dmumy closed stream returning a REFUSED_STREAM error */
276static const struct h2s *h2_refused_stream = &(const struct h2s){
277 .cs = NULL,
278 .h2c = NULL,
279 .st = H2_SS_CLOSED,
280 .errcode = H2_ERR_REFUSED_STREAM,
281 .flags = 0,
282 .id = 0,
283};
284
Willy Tarreau2a856182017-05-16 15:20:39 +0200285/* and a dummy idle stream for use with any unannounced stream */
286static const struct h2s *h2_idle_stream = &(const struct h2s){
287 .cs = NULL,
288 .h2c = NULL,
289 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100290 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200291 .id = 0,
292};
293
Olivier Houchard9f6af332018-05-25 14:04:04 +0200294static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200295static int h2_send(struct h2c *h2c);
296static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200297static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200298static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100299static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100300static 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 +0100301static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200302static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100303static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100304static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200305
Willy Tarreau534d8f92019-10-01 10:12:00 +0200306/* returns true if the connection is allowed to expire, false otherwise. A
307 * connection may expire when:
308 * - it has no stream
309 * - it has data in the mux buffer
310 * - it has streams in the blocked list
311 * - it has streams in the fctl list
312 * - it has streams in the send list
313 * Otherwise it means some streams are waiting in the data layer and it should
314 * not expire.
315 */
316static inline int h2c_may_expire(const struct h2c *h2c)
317{
318 return eb_is_empty(&h2c->streams_by_id) ||
319 br_data(h2c->mbuf) ||
320 !LIST_ISEMPTY(&h2c->blocked_list) ||
321 !LIST_ISEMPTY(&h2c->fctl_list) ||
322 !LIST_ISEMPTY(&h2c->send_list) ||
323 !LIST_ISEMPTY(&h2c->sending_list);
324}
325
Olivier Houchard7a977432019-03-21 15:47:13 +0100326static __inline int
Willy Tarreau534d8f92019-10-01 10:12:00 +0200327h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100328{
329 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
330 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
331 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
332 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200333 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100334 (conn_xprt_read0_pending(h2c->conn) ||
335 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
336 return 1;
337
338 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100339}
340
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200341/*****************************************************/
342/* functions below are for dynamic buffer management */
343/*****************************************************/
344
Willy Tarreau315d8072017-12-10 22:17:57 +0100345/* indicates whether or not the we may call the h2_recv() function to attempt
346 * to receive data into the buffer and/or demux pending data. The condition is
347 * a bit complex due to some API limits for now. The rules are the following :
348 * - if an error or a shutdown was detected on the connection and the buffer
349 * is empty, we must not attempt to receive
350 * - if the demux buf failed to be allocated, we must not try to receive and
351 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100352 * - if no flag indicates a blocking condition, we may attempt to receive,
353 * regardless of whether the demux buffer is full or not, so that only
354 * de demux part decides whether or not to block. This is needed because
355 * the connection API indeed prevents us from re-enabling receipt that is
356 * already enabled in a polled state, so we must always immediately stop
357 * as soon as the demux can't proceed so as never to hit an end of read
358 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100359 * - otherwise must may not attempt
360 */
361static inline int h2_recv_allowed(const struct h2c *h2c)
362{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200363 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100364 (h2c->st0 >= H2_CS_ERROR ||
365 h2c->conn->flags & CO_FL_ERROR ||
366 conn_xprt_read0_pending(h2c->conn)))
367 return 0;
368
369 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100370 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100371 return 1;
372
373 return 0;
374}
375
Willy Tarreau47b515a2018-12-21 16:09:41 +0100376/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200377static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100378{
379 if (!h2_recv_allowed(h2c))
380 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200381 if ((!consider_buffer || !b_data(&h2c->dbuf))
382 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100383 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200384 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100385}
386
387
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100388/* returns true if the front connection has too many conn_streams attached */
389static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200390{
Willy Tarreaua8754662018-12-23 20:43:58 +0100391 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200392}
393
Willy Tarreau44e973f2018-03-01 17:49:30 +0100394/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
395 * flags are used to figure what buffer was requested. It returns 1 if the
396 * allocation succeeds, in which case the connection is woken up, or 0 if it's
397 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200398 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100399static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200400{
401 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100402 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200403
Willy Tarreau44e973f2018-03-01 17:49:30 +0100404 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200405 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200406 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200407 return 1;
408 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200409
Willy Tarreau51330962019-05-26 09:38:07 +0200410 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100411 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200412
413 if (h2c->flags & H2_CF_DEM_MROOM) {
414 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200415 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200416 }
Willy Tarreau14398122017-09-22 14:26:04 +0200417 return 1;
418 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100419
420 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
421 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200422 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100423 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200424 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100425 return 1;
426 }
427
Willy Tarreau14398122017-09-22 14:26:04 +0200428 return 0;
429}
430
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200431static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200432{
433 struct buffer *buf = NULL;
434
Willy Tarreauc234ae32019-05-13 17:56:11 +0200435 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100436 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
437 h2c->buf_wait.target = h2c;
438 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100439 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100440 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100441 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200442 __conn_xprt_stop_recv(h2c->conn);
443 }
444 return buf;
445}
446
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200447static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200448{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200449 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100450 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200451 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200452 }
453}
454
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200455static inline void h2_release_mbuf(struct h2c *h2c)
456{
457 struct buffer *buf;
458 unsigned int count = 0;
459
460 while (b_size(buf = br_head_pick(h2c->mbuf))) {
461 b_free(buf);
462 count++;
463 }
464 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200465 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200466}
467
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100468/* returns the number of allocatable outgoing streams for the connection taking
469 * the last_sid and the reserved ones into account.
470 */
471static inline int h2_streams_left(const struct h2c *h2c)
472{
473 int ret;
474
475 /* consider the number of outgoing streams we're allowed to create before
476 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
477 * nb_reserved is the number of streams which don't yet have an ID.
478 */
479 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
480 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
481 if (ret < 0)
482 ret = 0;
483 return ret;
484}
485
Willy Tarreau00f18a32019-01-26 12:19:01 +0100486/* returns the number of streams in use on a connection to figure if it's
487 * idle or not. We check nb_cs and not nb_streams as the caller will want
488 * to know if it was the last one after a detach().
489 */
490static int h2_used_streams(struct connection *conn)
491{
492 struct h2c *h2c = conn->ctx;
493
494 return h2c->nb_cs;
495}
496
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100497/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100498static int h2_avail_streams(struct connection *conn)
499{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100500 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100501 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100502 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100503
Willy Tarreau6afec462019-01-28 06:40:19 +0100504 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
505 * streams on the connection.
506 */
507 if (h2c->last_sid >= 0)
508 return 0;
509
Willy Tarreaud63b85d2019-10-31 15:10:03 +0100510 if (h2c->st0 >= H2_CS_ERROR)
511 return 0;
512
Willy Tarreau86949782019-01-31 10:42:05 +0100513 /* note: may be negative if a SETTINGS frame changes the limit */
514 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100515
516 /* we must also consider the limit imposed by stream IDs */
517 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100518 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100519 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100520 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
521 ret1 = MIN(ret1, ret2);
522 }
523 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100524}
525
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200526
Willy Tarreau62f52692017-10-08 23:01:42 +0200527/*****************************************************************/
528/* functions below are dedicated to the mux setup and management */
529/*****************************************************************/
530
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200531/* Initialize the mux once it's attached. For outgoing connections, the context
532 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200533 * connections from the fact that the context is still NULL (even during mux
534 * upgrades). <input> is always used as Input buffer and may contain data. It is
535 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200536 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200537static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
538 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200539{
540 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100541 struct task *t = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200542
Willy Tarreaubafbe012017-11-24 17:34:44 +0100543 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200544 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200545 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200546
Christopher Faulete9b70722019-04-08 10:46:02 +0200547 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200548 h2c->flags = H2_CF_IS_BACK;
549 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
550 if (tick_isset(prx->timeout.serverfin))
551 h2c->shut_timeout = prx->timeout.serverfin;
552 } else {
553 h2c->flags = H2_CF_NONE;
554 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
555 if (tick_isset(prx->timeout.clientfin))
556 h2c->shut_timeout = prx->timeout.clientfin;
557 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100558
Willy Tarreau0b37d652018-10-03 10:33:02 +0200559 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100560 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100561 if (tick_isset(h2c->timeout)) {
562 t = task_new(tid_bit);
563 if (!t)
564 goto fail;
565
566 h2c->task = t;
567 t->process = h2_timeout_task;
568 t->context = h2c;
569 t->expire = tick_add(now_ms, h2c->timeout);
570 }
Willy Tarreauea392822017-10-31 10:02:25 +0100571
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200572 h2c->wait_event.tasklet = tasklet_new();
573 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200574 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200575 h2c->wait_event.tasklet->process = h2_io_cb;
576 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100577 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200578
Willy Tarreau32218eb2017-09-22 08:07:25 +0200579 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
580 if (!h2c->ddht)
581 goto fail;
582
583 /* Initialise the context. */
584 h2c->st0 = H2_CS_PREFACE;
585 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100586 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200587 h2c->max_id = -1;
588 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100589 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200590 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100591 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200592 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100593 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100594 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200595
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200596 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200597 h2c->dsi = -1;
598 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100599
Willy Tarreau32218eb2017-09-22 08:07:25 +0200600 h2c->last_sid = -1;
601
Willy Tarreau51330962019-05-26 09:38:07 +0200602 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200603 h2c->miw = 65535; /* mux initial window size */
604 h2c->mws = 65535; /* mux window size */
605 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200606 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200607 LIST_INIT(&h2c->send_list);
608 LIST_INIT(&h2c->fctl_list);
Willy Tarreaubda92dd2019-10-02 10:49:59 +0200609 LIST_INIT(&h2c->blocked_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200610 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100611 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200612
Willy Tarreau3f133572017-10-31 19:21:06 +0100613 if (t)
614 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100615
Willy Tarreau01b44822018-10-03 14:26:37 +0200616 if (h2c->flags & H2_CF_IS_BACK) {
617 /* FIXME: this is temporary, for outgoing connections we need
618 * to immediately allocate a stream until the code is modified
619 * so that the caller calls ->attach(). For now the outgoing cs
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100620 * is stored as conn->ctx by the caller.
Willy Tarreau01b44822018-10-03 14:26:37 +0200621 */
622 struct h2s *h2s;
623
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100624 h2s = h2c_bck_stream_new(h2c, conn->ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200625 if (!h2s)
626 goto fail_stream;
627 }
628
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100629 conn->ctx = h2c;
Willy Tarreau01b44822018-10-03 14:26:37 +0200630
Willy Tarreau0f383582018-10-03 14:22:21 +0200631 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200632 h2c_restart_reading(h2c, 1);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200633 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200634 fail_stream:
635 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200636 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200637 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200638 if (h2c->wait_event.tasklet)
639 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100640 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200641 fail_no_h2c:
Willy Tarreau32218eb2017-09-22 08:07:25 +0200642 return -1;
643}
644
Willy Tarreau751f2d02018-10-05 09:35:00 +0200645/* returns the next allocatable outgoing stream ID for the H2 connection, or
646 * -1 if no more is allocatable.
647 */
648static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
649{
650 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100651
652 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200653 id = -1;
654 return id;
655}
656
Willy Tarreau2373acc2017-10-12 17:35:14 +0200657/* returns the stream associated with id <id> or NULL if not found */
658static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
659{
660 struct eb32_node *node;
661
Willy Tarreau751f2d02018-10-05 09:35:00 +0200662 if (id == 0)
663 return (struct h2s *)h2_closed_stream;
664
Willy Tarreau2a856182017-05-16 15:20:39 +0200665 if (id > h2c->max_id)
666 return (struct h2s *)h2_idle_stream;
667
Willy Tarreau2373acc2017-10-12 17:35:14 +0200668 node = eb32_lookup(&h2c->streams_by_id, id);
669 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200670 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200671
672 return container_of(node, struct h2s, by_id);
673}
674
Christopher Faulet73c12072019-04-08 11:23:22 +0200675/* release function. This one should be called to free all resources allocated
676 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200677 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200678static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200679{
Christopher Faulet61840e72019-04-15 09:33:32 +0200680 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200681
Willy Tarreau32218eb2017-09-22 08:07:25 +0200682 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200683 /* The connection must be aattached to this mux to be released */
684 if (h2c->conn && h2c->conn->ctx == h2c)
685 conn = h2c->conn;
686
Willy Tarreau32218eb2017-09-22 08:07:25 +0200687 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200688
Willy Tarreau186e96e2019-05-28 17:21:18 +0200689 if (LIST_ADDED(&h2c->buf_wait.list)) {
690 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
691 LIST_DEL(&h2c->buf_wait.list);
692 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
693 }
Willy Tarreau14398122017-09-22 14:26:04 +0200694
Willy Tarreau44e973f2018-03-01 17:49:30 +0100695 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200696 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100697
Willy Tarreauea392822017-10-31 10:02:25 +0100698 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200699 h2c->task->context = NULL;
700 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100701 h2c->task = NULL;
702 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200703 if (h2c->wait_event.tasklet)
704 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet0e012562019-09-18 11:07:20 +0200705 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100706 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet0e012562019-09-18 11:07:20 +0200707 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100708
Willy Tarreaubafbe012017-11-24 17:34:44 +0100709 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200710 }
711
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200712 if (conn) {
713 conn->mux = NULL;
714 conn->ctx = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200715
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200716 conn_stop_tracking(conn);
717 conn_full_close(conn);
718 if (conn->destroy_cb)
719 conn->destroy_cb(conn);
720 conn_free(conn);
721 }
Willy Tarreau62f52692017-10-08 23:01:42 +0200722}
723
724
Willy Tarreau71681172017-10-23 14:39:06 +0200725/******************************************************/
726/* functions below are for the H2 protocol processing */
727/******************************************************/
728
729/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100730static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200731{
732 return h2s ? h2s->id : 0;
733}
734
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200735/* returns the sum of the stream's own window size and the mux's initial
736 * window, which together form the stream's effective window size.
737 */
738static inline int h2s_mws(const struct h2s *h2s)
739{
740 return h2s->sws + h2s->h2c->miw;
741}
742
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200743/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100744static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200745{
746 if (h2c->msi < 0)
747 return 0;
748
749 if (h2c->msi == h2s_id(h2s))
750 return 0;
751
752 return 1;
753}
754
Willy Tarreau741d6df2017-10-17 08:00:59 +0200755/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +0100756static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +0200757{
758 h2c->errcode = err;
759 h2c->st0 = H2_CS_ERROR;
760}
761
Willy Tarreau175cebb2019-01-24 10:02:24 +0100762/* marks an error on the stream. It may also update an already closed stream
763 * (e.g. to report an error after an RST was received).
764 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100765static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +0200766{
Willy Tarreau175cebb2019-01-24 10:02:24 +0100767 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau2e43f082017-10-17 08:03:59 +0200768 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +0100769 if (h2s->st < H2_SS_ERROR)
770 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +0100771 if (h2s->cs)
772 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +0200773 }
774}
775
Willy Tarreau7e094452018-12-19 18:08:52 +0100776/* attempt to notify the data layer of recv availability */
777static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
778{
779 struct wait_event *sw;
780
781 if (h2s->recv_wait) {
782 sw = h2s->recv_wait;
783 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200784 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100785 h2s->recv_wait = NULL;
786 }
787}
788
789/* attempt to notify the data layer of send availability */
790static void __maybe_unused h2s_notify_send(struct h2s *h2s)
791{
792 struct wait_event *sw;
793
Willy Tarreauc234ae32019-05-13 17:56:11 +0200794 if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau7e094452018-12-19 18:08:52 +0100795 sw = h2s->send_wait;
796 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchardfd1e96d2019-03-25 14:04:25 +0100797 LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200798 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100799 }
800}
801
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100802/* alerts the data layer, trying to wake it up by all means, following
803 * this sequence :
804 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
805 * - if its subscribed to send, then it's woken up for send
806 * - if it was subscribed to neither, its ->wake() callback is called
807 * It is safe to call this function with a closed stream which doesn't have a
808 * conn_stream anymore.
809 */
810static void __maybe_unused h2s_alert(struct h2s *h2s)
811{
812 if (h2s->recv_wait || h2s->send_wait) {
813 h2s_notify_recv(h2s);
814 h2s_notify_send(h2s);
815 }
816 else if (h2s->cs && h2s->cs->data_cb->wake != NULL)
817 h2s->cs->data_cb->wake(h2s->cs);
818}
819
Willy Tarreaue4820742017-07-27 13:37:23 +0200820/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100821static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +0200822{
823 uint8_t *out = frame;
824
825 *out = len >> 16;
826 write_n16(out + 1, len);
827}
828
Willy Tarreau54c15062017-10-10 17:10:03 +0200829/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
830 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
831 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200832 * available in the buffer's input prior to calling this function. The buffer
833 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +0200834 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100835static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +0200836 const struct buffer *b, int o)
837{
Willy Tarreau591d4452018-06-15 17:21:00 +0200838 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 +0200839}
840
Willy Tarreau1f094672017-11-20 21:27:45 +0100841static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200842{
Willy Tarreau591d4452018-06-15 17:21:00 +0200843 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200844}
845
Willy Tarreau1f094672017-11-20 21:27:45 +0100846static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200847{
Willy Tarreau591d4452018-06-15 17:21:00 +0200848 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200849}
850
Willy Tarreau1f094672017-11-20 21:27:45 +0100851static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200852{
Willy Tarreau591d4452018-06-15 17:21:00 +0200853 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200854}
855
856
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100857/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
858 * The algorithm is not obvious. It turns out that H2 headers are neither
859 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
860 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +0200861 *
862 * b0 b1 b2 b3 b4 b5..b8
863 * +----------+---------+--------+----+----+----------------------+
864 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
865 * +----------+---------+--------+----+----+----------------------+
866 *
867 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
868 * we get the sid properly aligned and ordered, and 16 bits of len properly
869 * ordered as well. The type and flags can be extracted using bit shifts from
870 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200871 * Returns zero if some bytes are missing, otherwise non-zero on success. The
872 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +0200873 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100874static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200875{
876 uint64_t w;
877
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100878 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +0200879 return 0;
880
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100881 w = h2_get_n64(b, o + 1);
882 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +0200883 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
884 h->ff = w >> 32;
885 h->ft = w >> 40;
886 h->len += w >> 48;
887 return 1;
888}
889
890/* skip the next 9 bytes corresponding to the frame header possibly parsed by
891 * h2_peek_frame_hdr() above.
892 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100893static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +0200894{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200895 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +0200896}
897
898/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +0100899static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200900{
901 int ret;
902
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100903 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +0200904 if (ret > 0)
905 h2_skip_frame_hdr(b);
906 return ret;
907}
908
Willy Tarreau00dd0782018-03-01 16:31:34 +0100909/* marks stream <h2s> as CLOSED and decrement the number of active streams for
910 * its connection if the stream was not yet closed. Please use this exclusively
911 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100912 */
Willy Tarreau00dd0782018-03-01 16:31:34 +0100913static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100914{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100915 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100916 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100917 if (!h2s->id)
918 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +0100919 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +0100920 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
921 h2s_notify_recv(h2s);
922 }
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100923 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100924 h2s->st = H2_SS_CLOSED;
925}
926
Willy Tarreau71049cc2018-03-28 13:56:39 +0200927/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
928static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +0100929{
930 h2s_close(h2s);
931 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +0200932 if (b_size(&h2s->rxbuf)) {
933 b_free(&h2s->rxbuf);
934 offer_buffers(NULL, tasks_run_queue);
935 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200936 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100937 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200938 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100939 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -0800940 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200941 * reference left would be in the h2c send_list/fctl_list, and if
942 * we're in it, we're getting out anyway
943 */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100944 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc234ae32019-05-13 17:56:11 +0200945 if (LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau86eded62019-06-14 14:47:49 +0200946 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +0200947 LIST_DEL_INIT(&h2s->sending_list);
948 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200949 tasklet_free(h2s->wait_event.tasklet);
Willy Tarreau0a10de62018-03-01 16:27:53 +0100950 pool_free(pool_head_h2s, h2s);
951}
952
Willy Tarreaua8e49542018-10-03 18:53:55 +0200953/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
954 * stream tree. In case of error, nothing is added and NULL is returned. The
955 * causes of errors can be any failed memory allocation. The caller is
956 * responsible for checking if the connection may support an extra stream
957 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200958 */
Willy Tarreaua8e49542018-10-03 18:53:55 +0200959static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200960{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200961 struct h2s *h2s;
962
Willy Tarreaubafbe012017-11-24 17:34:44 +0100963 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200964 if (!h2s)
965 goto out;
966
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200967 h2s->wait_event.tasklet = tasklet_new();
968 if (!h2s->wait_event.tasklet) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200969 pool_free(pool_head_h2s, h2s);
970 goto out;
971 }
972 h2s->send_wait = NULL;
973 h2s->recv_wait = NULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200974 h2s->wait_event.tasklet->process = h2_deferred_shut;
975 h2s->wait_event.tasklet->context = h2s;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100976 h2s->wait_event.events = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200977 LIST_INIT(&h2s->list);
Olivier Houchardd360ac62019-03-22 17:37:16 +0100978 LIST_INIT(&h2s->sending_list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200979 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +0200980 h2s->cs = NULL;
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200981 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200982 h2s->flags = H2_SF_NONE;
983 h2s->errcode = H2_ERR_NO_ERROR;
984 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200985 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +0100986 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +0200987 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +0200988
989 if (h2c->flags & H2_CF_IS_BACK) {
990 h1m_init_req(&h2s->h1m);
991 h2s->h1m.err_pos = -1; // don't care about errors on the request path
992 h2s->h1m.flags |= H1_MF_TOLOWER;
993 } else {
994 h1m_init_res(&h2s->h1m);
995 h2s->h1m.err_pos = -1; // don't care about errors on the response path
996 h2s->h1m.flags |= H1_MF_TOLOWER;
997 }
998
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200999 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001000 if (id > 0)
1001 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001002 else
1003 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001004
1005 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001006 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001007 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001008
1009 return h2s;
1010
1011 out_free_h2s:
1012 pool_free(pool_head_h2s, h2s);
1013 out:
1014 return NULL;
1015}
1016
1017/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1018 * case of memory allocation error.
1019 */
1020static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1021{
1022 struct session *sess = h2c->conn->owner;
1023 struct conn_stream *cs;
1024 struct h2s *h2s;
1025
1026 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1027 goto out;
1028
1029 h2s = h2s_new(h2c, id);
1030 if (!h2s)
1031 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001032
1033 cs = cs_new(h2c->conn);
1034 if (!cs)
1035 goto out_close;
1036
Olivier Houchard746fb772018-12-15 19:42:00 +01001037 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001038 h2s->cs = cs;
1039 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001040 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001041
1042 if (stream_create_from_cs(cs) < 0)
1043 goto out_free_cs;
1044
Willy Tarreau590a0512018-09-05 11:56:48 +02001045 /* We want the accept date presented to the next stream to be the one
1046 * we have now, the handshake time to be null (since the next stream
1047 * is not delayed by a handshake), and the idle time to count since
1048 * right now.
1049 */
1050 sess->accept_date = date;
1051 sess->tv_accept = now;
1052 sess->t_handshake = 0;
1053
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001054 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001055 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001056 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001057 return h2s;
1058
1059 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001060 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001061 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001062 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001063 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001064 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001065 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001066 sess_log(sess);
1067 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001068}
1069
Willy Tarreau751f2d02018-10-05 09:35:00 +02001070/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1071 * and returns it, or NULL in case of memory allocation error or if the highest
1072 * possible stream ID was reached.
1073 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001074static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001075{
1076 struct h2s *h2s = NULL;
1077
Willy Tarreau86949782019-01-31 10:42:05 +01001078 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001079 goto out;
1080
Willy Tarreaua80dca82019-01-24 17:08:28 +01001081 if (h2_streams_left(h2c) < 1)
1082 goto out;
1083
Willy Tarreau751f2d02018-10-05 09:35:00 +02001084 /* Defer choosing the ID until we send the first message to create the stream */
1085 h2s = h2s_new(h2c, 0);
1086 if (!h2s)
1087 goto out;
1088
1089 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001090 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001091 cs->ctx = h2s;
1092 h2c->nb_cs++;
1093
Willy Tarreau751f2d02018-10-05 09:35:00 +02001094 out:
1095 return h2s;
1096}
1097
Willy Tarreaube5b7152017-09-25 16:25:39 +02001098/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1099 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1100 * the various settings codes.
1101 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001102static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001103{
1104 struct buffer *res;
1105 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001106 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001107 int mfs;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001108 int ret;
1109
1110 if (h2c_mux_busy(h2c, NULL)) {
1111 h2c->flags |= H2_CF_DEM_MBUSY;
1112 return 0;
1113 }
1114
Willy Tarreaube5b7152017-09-25 16:25:39 +02001115 chunk_init(&buf, buf_data, sizeof(buf_data));
1116 chunk_memcpy(&buf,
1117 "\x00\x00\x00" /* length : 0 for now */
1118 "\x04\x00" /* type : 4 (settings), flags : 0 */
1119 "\x00\x00\x00\x00", /* stream ID : 0 */
1120 9);
1121
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001122 if (h2c->flags & H2_CF_IS_BACK) {
1123 /* send settings_enable_push=0 */
1124 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1125 }
1126
Willy Tarreaube5b7152017-09-25 16:25:39 +02001127 if (h2_settings_header_table_size != 4096) {
1128 char str[6] = "\x00\x01"; /* header_table_size */
1129
1130 write_n32(str + 2, h2_settings_header_table_size);
1131 chunk_memcat(&buf, str, 6);
1132 }
1133
1134 if (h2_settings_initial_window_size != 65535) {
1135 char str[6] = "\x00\x04"; /* initial_window_size */
1136
1137 write_n32(str + 2, h2_settings_initial_window_size);
1138 chunk_memcat(&buf, str, 6);
1139 }
1140
1141 if (h2_settings_max_concurrent_streams != 0) {
1142 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1143
1144 /* Note: 0 means "unlimited" for haproxy's config but not for
1145 * the protocol, so never send this value!
1146 */
1147 write_n32(str + 2, h2_settings_max_concurrent_streams);
1148 chunk_memcat(&buf, str, 6);
1149 }
1150
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001151 mfs = h2_settings_max_frame_size;
1152 if (mfs > global.tune.bufsize)
1153 mfs = global.tune.bufsize;
1154
1155 if (!mfs)
1156 mfs = global.tune.bufsize;
1157
1158 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001159 char str[6] = "\x00\x05"; /* max_frame_size */
1160
1161 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1162 * match bufsize - rewrite size, but at the moment it seems
1163 * that clients don't take care of it.
1164 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001165 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001166 chunk_memcat(&buf, str, 6);
1167 }
1168
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001169 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001170
1171 res = br_tail(h2c->mbuf);
1172 retry:
1173 if (!h2_get_buf(h2c, res)) {
1174 h2c->flags |= H2_CF_MUX_MALLOC;
1175 h2c->flags |= H2_CF_DEM_MROOM;
1176 return 0;
1177 }
1178
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001179 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001180 if (unlikely(ret <= 0)) {
1181 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001182 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1183 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001184 h2c->flags |= H2_CF_MUX_MFULL;
1185 h2c->flags |= H2_CF_DEM_MROOM;
1186 return 0;
1187 }
1188 else {
1189 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1190 return 0;
1191 }
1192 }
1193 return ret;
1194}
1195
Willy Tarreau52eed752017-09-22 15:05:09 +02001196/* Try to receive a connection preface, then upon success try to send our
1197 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1198 * missing data. It may return an error in h2c.
1199 */
1200static int h2c_frt_recv_preface(struct h2c *h2c)
1201{
1202 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001203 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001204
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001205 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001206
1207 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001208 if (ret1 < 0)
1209 sess_log(h2c->conn->owner);
1210
Willy Tarreau52eed752017-09-22 15:05:09 +02001211 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1212 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1213 return 0;
1214 }
1215
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001216 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001217 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001218 b_del(&h2c->dbuf, ret1);
Willy Tarreau52eed752017-09-22 15:05:09 +02001219
Willy Tarreaube5b7152017-09-25 16:25:39 +02001220 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001221}
1222
Willy Tarreau01b44822018-10-03 14:26:37 +02001223/* Try to send a connection preface, then upon success try to send our
1224 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1225 * missing data. It may return an error in h2c.
1226 */
1227static int h2c_bck_send_preface(struct h2c *h2c)
1228{
1229 struct buffer *res;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001230 int ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001231
1232 if (h2c_mux_busy(h2c, NULL)) {
1233 h2c->flags |= H2_CF_DEM_MBUSY;
1234 return 0;
1235 }
1236
Willy Tarreaubcc45952019-05-26 10:05:50 +02001237 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001238 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001239 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001240 h2c->flags |= H2_CF_MUX_MALLOC;
1241 h2c->flags |= H2_CF_DEM_MROOM;
1242 return 0;
1243 }
1244
1245 if (!b_data(res)) {
1246 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001247 ret = b_istput(res, ist(H2_CONN_PREFACE));
1248 if (unlikely(ret <= 0)) {
1249 if (!ret) {
1250 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1251 goto retry;
1252 h2c->flags |= H2_CF_MUX_MFULL;
1253 h2c->flags |= H2_CF_DEM_MROOM;
1254 return 0;
1255 }
1256 else {
1257 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1258 return 0;
1259 }
1260 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001261 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001262 return h2c_send_settings(h2c);
1263}
1264
Willy Tarreau081d4722017-05-16 21:51:05 +02001265/* try to send a GOAWAY frame on the connection to report an error or a graceful
1266 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1267 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1268 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1269 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1270 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1271 * on unrecoverable failure. It will not attempt to send one again in this last
1272 * case so that it is safe to use h2c_error() to report such errors.
1273 */
1274static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1275{
1276 struct buffer *res;
1277 char str[17];
1278 int ret;
1279
1280 if (h2c->flags & H2_CF_GOAWAY_FAILED)
1281 return 1; // claim that it worked
1282
1283 if (h2c_mux_busy(h2c, h2s)) {
1284 if (h2s)
1285 h2s->flags |= H2_SF_BLK_MBUSY;
1286 else
1287 h2c->flags |= H2_CF_DEM_MBUSY;
1288 return 0;
1289 }
1290
Willy Tarreau9c218e72019-05-26 10:08:28 +02001291 /* len: 8, type: 7, flags: none, sid: 0 */
1292 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1293
1294 if (h2c->last_sid < 0)
1295 h2c->last_sid = h2c->max_id;
1296
1297 write_n32(str + 9, h2c->last_sid);
1298 write_n32(str + 13, h2c->errcode);
1299
Willy Tarreaubcc45952019-05-26 10:05:50 +02001300 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001301 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001302 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001303 h2c->flags |= H2_CF_MUX_MALLOC;
1304 if (h2s)
1305 h2s->flags |= H2_SF_BLK_MROOM;
1306 else
1307 h2c->flags |= H2_CF_DEM_MROOM;
1308 return 0;
1309 }
1310
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001311 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001312 if (unlikely(ret <= 0)) {
1313 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001314 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1315 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001316 h2c->flags |= H2_CF_MUX_MFULL;
1317 if (h2s)
1318 h2s->flags |= H2_SF_BLK_MROOM;
1319 else
1320 h2c->flags |= H2_CF_DEM_MROOM;
1321 return 0;
1322 }
1323 else {
1324 /* we cannot report this error using GOAWAY, so we mark
1325 * it and claim a success.
1326 */
1327 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1328 h2c->flags |= H2_CF_GOAWAY_FAILED;
1329 return 1;
1330 }
1331 }
1332 h2c->flags |= H2_CF_GOAWAY_SENT;
1333 return ret;
1334}
1335
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001336/* Try to send an RST_STREAM frame on the connection for the indicated stream
1337 * during mux operations. This stream must be valid and cannot be closed
1338 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1339 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1340 * not yet.
1341 *
1342 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1343 * to write the message, it subscribes the stream to future notifications.
1344 */
1345static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1346{
1347 struct buffer *res;
1348 char str[13];
1349 int ret;
1350
1351 if (!h2s || h2s->st == H2_SS_CLOSED)
1352 return 1;
1353
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001354 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1355 * RST_STREAM in response to a RST_STREAM frame.
1356 */
Willy Tarreaubf9a20b2019-08-06 10:01:40 +02001357 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001358 ret = 1;
1359 goto ignore;
1360 }
1361
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001362 if (h2c_mux_busy(h2c, h2s)) {
1363 h2s->flags |= H2_SF_BLK_MBUSY;
1364 return 0;
1365 }
1366
Willy Tarreau9c218e72019-05-26 10:08:28 +02001367 /* len: 4, type: 3, flags: none */
1368 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1369 write_n32(str + 5, h2s->id);
1370 write_n32(str + 9, h2s->errcode);
1371
Willy Tarreaubcc45952019-05-26 10:05:50 +02001372 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001373 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001374 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001375 h2c->flags |= H2_CF_MUX_MALLOC;
1376 h2s->flags |= H2_SF_BLK_MROOM;
1377 return 0;
1378 }
1379
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001380 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001381 if (unlikely(ret <= 0)) {
1382 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001383 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1384 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001385 h2c->flags |= H2_CF_MUX_MFULL;
1386 h2s->flags |= H2_SF_BLK_MROOM;
1387 return 0;
1388 }
1389 else {
1390 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1391 return 0;
1392 }
1393 }
1394
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001395 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001396 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001397 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001398 return ret;
1399}
1400
1401/* Try to send an RST_STREAM frame on the connection for the stream being
1402 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001403 * error code, even if the stream is one of the dummy ones, and will update
1404 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001405 *
1406 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1407 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001408 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001409 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001410 */
1411static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1412{
1413 struct buffer *res;
1414 char str[13];
1415 int ret;
1416
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001417 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1418 * RST_STREAM in response to a RST_STREAM frame.
1419 */
1420 if (h2c->dft == H2_FT_RST_STREAM) {
1421 ret = 1;
1422 goto ignore;
1423 }
1424
Willy Tarreau27a84c92017-10-17 08:10:17 +02001425 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001426 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001427 return 0;
1428 }
1429
Willy Tarreau9c218e72019-05-26 10:08:28 +02001430 /* len: 4, type: 3, flags: none */
1431 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1432
1433 write_n32(str + 5, h2c->dsi);
1434 write_n32(str + 9, h2s->errcode);
1435
Willy Tarreaubcc45952019-05-26 10:05:50 +02001436 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001437 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001438 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001439 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001440 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001441 return 0;
1442 }
1443
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001444 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001445 if (unlikely(ret <= 0)) {
1446 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001447 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1448 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001449 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001450 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001451 return 0;
1452 }
1453 else {
1454 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1455 return 0;
1456 }
1457 }
1458
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001459 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001460 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001461 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001462 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001463 }
1464
Willy Tarreau27a84c92017-10-17 08:10:17 +02001465 return ret;
1466}
1467
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001468/* try to send an empty DATA frame with the ES flag set to notify about the
1469 * end of stream and match a shutdown(write). If an ES was already sent as
1470 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1471 * on success or zero if nothing was done. In case of lack of room to write the
1472 * message, it subscribes the requesting stream to future notifications.
1473 */
1474static int h2_send_empty_data_es(struct h2s *h2s)
1475{
1476 struct h2c *h2c = h2s->h2c;
1477 struct buffer *res;
1478 char str[9];
1479 int ret;
1480
Willy Tarreau721c9742017-11-07 11:05:42 +01001481 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED)
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001482 return 1;
1483
1484 if (h2c_mux_busy(h2c, h2s)) {
1485 h2s->flags |= H2_SF_BLK_MBUSY;
1486 return 0;
1487 }
1488
Willy Tarreau9c218e72019-05-26 10:08:28 +02001489 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1490 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1491 write_n32(str + 5, h2s->id);
1492
Willy Tarreaubcc45952019-05-26 10:05:50 +02001493 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001494 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001495 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001496 h2c->flags |= H2_CF_MUX_MALLOC;
1497 h2s->flags |= H2_SF_BLK_MROOM;
1498 return 0;
1499 }
1500
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001501 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001502 if (likely(ret > 0)) {
1503 h2s->flags |= H2_SF_ES_SENT;
1504 }
1505 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001506 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1507 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001508 h2c->flags |= H2_CF_MUX_MFULL;
1509 h2s->flags |= H2_SF_BLK_MROOM;
1510 return 0;
1511 }
1512 else {
1513 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1514 return 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001515 }
1516 return ret;
1517}
1518
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001519/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001520 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001521 * is automatically updated accordingly. If the stream is orphaned, it is
1522 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001523 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001524static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001525{
1526 if (!h2s->cs) {
1527 /* this stream was already orphaned */
1528 h2s_destroy(h2s);
1529 return;
1530 }
1531
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001532 if (conn_xprt_read0_pending(h2s->h2c->conn)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001533 if (h2s->st == H2_SS_OPEN)
1534 h2s->st = H2_SS_HREM;
1535 else if (h2s->st == H2_SS_HLOC)
1536 h2s_close(h2s);
1537 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001538
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001539 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1540 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1541 h2s->cs->flags |= CS_FL_ERR_PENDING;
1542 if (h2s->cs->flags & CS_FL_EOS)
1543 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001544
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001545 if (h2s->st < H2_SS_ERROR)
1546 h2s->st = H2_SS_ERROR;
1547 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001548
1549 h2s_alert(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001550}
1551
1552/* wake the streams attached to the connection, whose id is greater than <last>
1553 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001554 */
Willy Tarreau23482912019-05-07 15:23:14 +02001555static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001556{
1557 struct eb32_node *node;
1558 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001559
Christopher Fauletf02ca002019-03-07 16:21:34 +01001560 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001561 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1562 while (node) {
1563 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001564 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001565 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001566 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001567
Christopher Fauletf02ca002019-03-07 16:21:34 +01001568 /* Wake all streams with unassigned ID (ID == 0) */
1569 node = eb32_lookup(&h2c->streams_by_id, 0);
1570 while (node) {
1571 h2s = container_of(node, struct h2s, by_id);
1572 if (h2s->id > 0)
1573 break;
1574 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001575 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001576 }
1577}
1578
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001579/* Wake up all blocked streams whose window size has become positive after the
1580 * mux's initial window was adjusted. This should be done after having processed
1581 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001582 */
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001583static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001584{
1585 struct h2s *h2s;
1586 struct eb32_node *node;
1587
Willy Tarreau3421aba2017-07-27 15:41:03 +02001588 node = eb32_first(&h2c->streams_by_id);
1589 while (node) {
1590 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001591 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001592 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreaubda92dd2019-10-02 10:49:59 +02001593 LIST_DEL_INIT(&h2s->list);
1594 if (h2s->send_wait)
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001595 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001596 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001597 node = eb32_next(node);
1598 }
1599}
1600
1601/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1602 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001603 * return an error in h2c. The caller must have already verified frame length
1604 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001605 */
1606static int h2c_handle_settings(struct h2c *h2c)
1607{
1608 unsigned int offset;
1609 int error;
1610
1611 if (h2c->dff & H2_F_SETTINGS_ACK) {
1612 if (h2c->dfl) {
1613 error = H2_ERR_FRAME_SIZE_ERROR;
1614 goto fail;
1615 }
1616 return 1;
1617 }
1618
Willy Tarreau3421aba2017-07-27 15:41:03 +02001619 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001620 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001621 return 0;
1622
1623 /* parse the frame */
1624 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001625 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
1626 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001627
1628 switch (type) {
1629 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
1630 /* we need to update all existing streams with the
1631 * difference from the previous iws.
1632 */
1633 if (arg < 0) { // RFC7540#6.5.2
1634 error = H2_ERR_FLOW_CONTROL_ERROR;
1635 goto fail;
1636 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001637 h2c->miw = arg;
1638 break;
1639 case H2_SETTINGS_MAX_FRAME_SIZE:
1640 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
1641 error = H2_ERR_PROTOCOL_ERROR;
1642 goto fail;
1643 }
1644 h2c->mfs = arg;
1645 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01001646 case H2_SETTINGS_ENABLE_PUSH:
1647 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
1648 error = H2_ERR_PROTOCOL_ERROR;
1649 goto fail;
1650 }
1651 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001652 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
1653 if (h2c->flags & H2_CF_IS_BACK) {
1654 /* the limit is only for the backend; for the frontend it is our limit */
1655 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
1656 arg = h2_settings_max_concurrent_streams;
1657 h2c->streams_limit = arg;
1658 }
1659 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001660 }
1661 }
1662
1663 /* need to ACK this frame now */
1664 h2c->st0 = H2_CS_FRAME_A;
1665 return 1;
1666 fail:
Willy Tarreau21178a52019-10-23 11:06:35 +02001667 if (!(h2c->flags & H2_CF_IS_BACK))
1668 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001669 h2c_error(h2c, error);
1670 return 0;
1671}
1672
1673/* try to send an ACK for a settings frame on the connection. Returns > 0 on
1674 * success or one of the h2_status values.
1675 */
1676static int h2c_ack_settings(struct h2c *h2c)
1677{
1678 struct buffer *res;
1679 char str[9];
1680 int ret = -1;
1681
1682 if (h2c_mux_busy(h2c, NULL)) {
1683 h2c->flags |= H2_CF_DEM_MBUSY;
1684 return 0;
1685 }
1686
Willy Tarreau9c218e72019-05-26 10:08:28 +02001687 memcpy(str,
1688 "\x00\x00\x00" /* length : 0 (no data) */
1689 "\x04" "\x01" /* type : 4, flags : ACK */
1690 "\x00\x00\x00\x00" /* stream ID */, 9);
1691
Willy Tarreaubcc45952019-05-26 10:05:50 +02001692 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001693 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001694 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02001695 h2c->flags |= H2_CF_MUX_MALLOC;
1696 h2c->flags |= H2_CF_DEM_MROOM;
1697 return 0;
1698 }
1699
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001700 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02001701 if (unlikely(ret <= 0)) {
1702 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001703 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1704 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001705 h2c->flags |= H2_CF_MUX_MFULL;
1706 h2c->flags |= H2_CF_DEM_MROOM;
1707 return 0;
1708 }
1709 else {
1710 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1711 return 0;
1712 }
1713 }
1714 return ret;
1715}
1716
Willy Tarreaucf68c782017-10-10 17:11:41 +02001717/* processes a PING frame and schedules an ACK if needed. The caller must pass
1718 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01001719 * missing data. The caller must have already verified frame length
1720 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02001721 */
1722static int h2c_handle_ping(struct h2c *h2c)
1723{
Willy Tarreaucf68c782017-10-10 17:11:41 +02001724 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01001725 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02001726 h2c->st0 = H2_CS_FRAME_A;
1727 return 1;
1728}
1729
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001730/* Try to send a window update for stream id <sid> and value <increment>.
1731 * Returns > 0 on success or zero on missing room or failure. It may return an
1732 * error in h2c.
1733 */
1734static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
1735{
1736 struct buffer *res;
1737 char str[13];
1738 int ret = -1;
1739
1740 if (h2c_mux_busy(h2c, NULL)) {
1741 h2c->flags |= H2_CF_DEM_MBUSY;
1742 return 0;
1743 }
1744
Willy Tarreau9c218e72019-05-26 10:08:28 +02001745 /* length: 4, type: 8, flags: none */
1746 memcpy(str, "\x00\x00\x04\x08\x00", 5);
1747 write_n32(str + 5, sid);
1748 write_n32(str + 9, increment);
1749
Willy Tarreaubcc45952019-05-26 10:05:50 +02001750 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001751 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001752 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001753 h2c->flags |= H2_CF_MUX_MALLOC;
1754 h2c->flags |= H2_CF_DEM_MROOM;
1755 return 0;
1756 }
1757
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001758 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001759 if (unlikely(ret <= 0)) {
1760 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001761 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1762 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001763 h2c->flags |= H2_CF_MUX_MFULL;
1764 h2c->flags |= H2_CF_DEM_MROOM;
1765 return 0;
1766 }
1767 else {
1768 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1769 return 0;
1770 }
1771 }
1772 return ret;
1773}
1774
1775/* try to send pending window update for the connection. It's safe to call it
1776 * with no pending updates. Returns > 0 on success or zero on missing room or
1777 * failure. It may return an error in h2c.
1778 */
1779static int h2c_send_conn_wu(struct h2c *h2c)
1780{
1781 int ret = 1;
1782
1783 if (h2c->rcvd_c <= 0)
1784 return 1;
1785
Willy Tarreau97aaa672018-12-23 09:49:04 +01001786 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
1787 /* increase the advertised connection window to 2G on
1788 * first update.
1789 */
1790 h2c->flags |= H2_CF_WINDOW_OPENED;
1791 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
1792 }
1793
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001794 /* send WU for the connection */
1795 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
1796 if (ret > 0)
1797 h2c->rcvd_c = 0;
1798
1799 return ret;
1800}
1801
1802/* try to send pending window update for the current dmux stream. It's safe to
1803 * call it with no pending updates. Returns > 0 on success or zero on missing
1804 * room or failure. It may return an error in h2c.
1805 */
1806static int h2c_send_strm_wu(struct h2c *h2c)
1807{
1808 int ret = 1;
1809
1810 if (h2c->rcvd_s <= 0)
1811 return 1;
1812
1813 /* send WU for the stream */
1814 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
1815 if (ret > 0)
1816 h2c->rcvd_s = 0;
1817
1818 return ret;
1819}
1820
Willy Tarreaucf68c782017-10-10 17:11:41 +02001821/* try to send an ACK for a ping frame on the connection. Returns > 0 on
1822 * success, 0 on missing data or one of the h2_status values.
1823 */
1824static int h2c_ack_ping(struct h2c *h2c)
1825{
1826 struct buffer *res;
1827 char str[17];
1828 int ret = -1;
1829
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001830 if (b_data(&h2c->dbuf) < 8)
Willy Tarreaucf68c782017-10-10 17:11:41 +02001831 return 0;
1832
1833 if (h2c_mux_busy(h2c, NULL)) {
1834 h2c->flags |= H2_CF_DEM_MBUSY;
1835 return 0;
1836 }
1837
Willy Tarreaucf68c782017-10-10 17:11:41 +02001838 memcpy(str,
1839 "\x00\x00\x08" /* length : 8 (same payload) */
1840 "\x06" "\x01" /* type : 6, flags : ACK */
1841 "\x00\x00\x00\x00" /* stream ID */, 9);
1842
1843 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001844 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02001845
Willy Tarreau9c218e72019-05-26 10:08:28 +02001846 res = br_tail(h2c->mbuf);
1847 retry:
1848 if (!h2_get_buf(h2c, res)) {
1849 h2c->flags |= H2_CF_MUX_MALLOC;
1850 h2c->flags |= H2_CF_DEM_MROOM;
1851 return 0;
1852 }
1853
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001854 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02001855 if (unlikely(ret <= 0)) {
1856 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001857 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1858 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02001859 h2c->flags |= H2_CF_MUX_MFULL;
1860 h2c->flags |= H2_CF_DEM_MROOM;
1861 return 0;
1862 }
1863 else {
1864 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1865 return 0;
1866 }
1867 }
1868 return ret;
1869}
1870
Willy Tarreau26f95952017-07-27 17:18:30 +02001871/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
1872 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01001873 * h2c or h2s. The caller must have already verified frame length and stream ID
1874 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02001875 */
1876static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
1877{
1878 int32_t inc;
1879 int error;
1880
Willy Tarreau26f95952017-07-27 17:18:30 +02001881 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001882 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau26f95952017-07-27 17:18:30 +02001883 return 0;
1884
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001885 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02001886
1887 if (h2c->dsi != 0) {
1888 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02001889
1890 /* it's not an error to receive WU on a closed stream */
1891 if (h2s->st == H2_SS_CLOSED)
1892 return 1;
1893
1894 if (!inc) {
1895 error = H2_ERR_PROTOCOL_ERROR;
1896 goto strm_err;
1897 }
1898
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001899 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001900 error = H2_ERR_FLOW_CONTROL_ERROR;
1901 goto strm_err;
1902 }
1903
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001904 h2s->sws += inc;
1905 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001906 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreaubda92dd2019-10-02 10:49:59 +02001907 LIST_DEL_INIT(&h2s->list);
1908 if (h2s->send_wait)
Olivier Houcharddddfe312018-10-10 18:51:00 +02001909 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02001910 }
1911 }
1912 else {
1913 /* connection window update */
1914 if (!inc) {
1915 error = H2_ERR_PROTOCOL_ERROR;
1916 goto conn_err;
1917 }
1918
1919 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
1920 error = H2_ERR_FLOW_CONTROL_ERROR;
1921 goto conn_err;
1922 }
1923
1924 h2c->mws += inc;
1925 }
1926
1927 return 1;
1928
1929 conn_err:
1930 h2c_error(h2c, error);
1931 return 0;
1932
1933 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01001934 h2s_error(h2s, error);
1935 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau26f95952017-07-27 17:18:30 +02001936 return 0;
1937}
1938
Willy Tarreaue96b0922017-10-30 00:28:29 +01001939/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01001940 * the last ID. Returns > 0 on success or zero on missing data. The caller must
1941 * have already verified frame length and stream ID validity. Described in
1942 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01001943 */
1944static int h2c_handle_goaway(struct h2c *h2c)
1945{
Willy Tarreaue96b0922017-10-30 00:28:29 +01001946 int last;
1947
Willy Tarreaue96b0922017-10-30 00:28:29 +01001948 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001949 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaue96b0922017-10-30 00:28:29 +01001950 return 0;
1951
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001952 last = h2_get_n32(&h2c->dbuf, 0);
1953 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01001954 if (h2c->last_sid < 0)
1955 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02001956 h2_wake_some_streams(h2c, last);
Willy Tarreaue96b0922017-10-30 00:28:29 +01001957 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01001958}
1959
Willy Tarreau92153fc2017-12-03 19:46:19 +01001960/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01001961 * invalid. Returns > 0 on success or zero on missing data. It may return an
1962 * error in h2c. The caller must have already verified frame length and stream
1963 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01001964 */
1965static int h2c_handle_priority(struct h2c *h2c)
1966{
Willy Tarreau92153fc2017-12-03 19:46:19 +01001967 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001968 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau92153fc2017-12-03 19:46:19 +01001969 return 0;
1970
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001971 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01001972 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01001973 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1974 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001975 }
1976 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001977}
1978
Willy Tarreaucd234e92017-08-18 10:59:39 +02001979/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01001980 * Returns > 0 on success or zero on missing data. The caller must have already
1981 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02001982 */
1983static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
1984{
Willy Tarreaucd234e92017-08-18 10:59:39 +02001985 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001986 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaucd234e92017-08-18 10:59:39 +02001987 return 0;
1988
1989 /* late RST, already handled */
1990 if (h2s->st == H2_SS_CLOSED)
1991 return 1;
1992
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001993 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01001994 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001995
1996 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01001997 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01001998 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001999 }
2000
2001 h2s->flags |= H2_SF_RST_RCVD;
2002 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002003}
2004
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002005/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2006 * It may return an error in h2c or h2s. The caller must consider that the
2007 * return value is the new h2s in case one was allocated (most common case).
2008 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002009 * errors here are reported as connection errors since it's impossible to
2010 * recover from such errors after the compression context has been altered.
2011 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002012static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002013{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002014 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002015 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002016 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002017 int error;
2018
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002019 if (!b_size(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002020 return NULL; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002021
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002022 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002023 return NULL; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002024
2025 /* now either the frame is complete or the buffer is complete */
2026 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002027 /* The stream exists/existed, this must be a trailers frame */
2028 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002029 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2030 /* unrecoverable error ? */
2031 if (h2c->st0 >= H2_CS_ERROR)
2032 goto out;
2033
2034 if (error == 0)
2035 goto out; // missing data
2036
2037 if (error < 0) {
2038 /* Failed to decode this frame (e.g. too large request)
2039 * but the HPACK decompressor is still synchronized.
2040 */
2041 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2042 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002043 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002044 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002045 goto done;
2046 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002047 /* the connection was already killed by an RST, let's consume
2048 * the data and send another RST.
2049 */
2050 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2051 h2s = (struct h2s*)h2_error_stream;
2052 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002053 }
2054 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2055 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2056 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002057 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002058 goto conn_err;
2059 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002060 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2061 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002062
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002063 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002064
Willy Tarreau25919232019-01-03 14:48:18 +01002065 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002066 if (h2c->st0 >= H2_CS_ERROR)
2067 goto out;
2068
Willy Tarreau25919232019-01-03 14:48:18 +01002069 if (error <= 0) {
2070 if (error == 0)
2071 goto out; // missing data
2072
2073 /* Failed to decode this stream (e.g. too large request)
2074 * but the HPACK decompressor is still synchronized.
2075 */
2076 h2s = (struct h2s*)h2_error_stream;
2077 goto send_rst;
2078 }
2079
Willy Tarreau22de8d32018-09-05 19:55:58 +02002080 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002081 * positively from h2c_frt_stream_new(), the stream will report the error,
2082 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002083 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002084 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002085 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002086 h2s = (struct h2s*)h2_refused_stream;
2087 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002088 }
2089
2090 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002091 h2s->rxbuf = rxbuf;
2092 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002093 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002094
Willy Tarreau88d138e2019-01-02 19:38:14 +01002095 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002096 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002097 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002098
2099 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002100 if (h2s->st == H2_SS_OPEN)
2101 h2s->st = H2_SS_HREM;
2102 else
2103 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002104 }
2105
Willy Tarreau3a429f02019-01-03 11:41:50 +01002106 /* update the max stream ID if the request is being processed */
2107 if (h2s->id > h2c->max_id)
2108 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002109
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002110 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002111
2112 conn_err:
2113 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002114 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002115
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002116 out:
2117 h2_release_buf(h2c, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002118 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002119
2120 send_rst:
2121 /* make the demux send an RST for the current stream. We may only
2122 * do this if we're certain that the HEADERS frame was properly
2123 * decompressed so that the HPACK decoder is still kept up to date.
2124 */
2125 h2_release_buf(h2c, &rxbuf);
2126 h2c->st0 = H2_CS_FRAME_E;
2127 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002128}
2129
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002130/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2131 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2132 * errors here are reported as connection errors since it's impossible to
2133 * recover from such errors after the compression context has been altered.
2134 */
2135static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2136{
Christopher Faulet96b88f22019-09-23 15:28:20 +02002137 struct buffer rxbuf = BUF_NULL;
2138 unsigned long long body_len = 0;
2139 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002140 int error;
2141
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002142 if (!b_size(&h2c->dbuf))
2143 return NULL; // empty buffer
2144
2145 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
2146 return NULL; // incomplete frame
2147
Christopher Faulet96b88f22019-09-23 15:28:20 +02002148 if (h2s->st != H2_SS_CLOSED) {
2149 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2150 }
2151 else {
2152 /* the connection was already killed by an RST, let's consume
2153 * the data and send another RST.
2154 */
2155 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Faulet03427052019-09-26 16:19:13 +02002156 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet96b88f22019-09-23 15:28:20 +02002157 h2c->st0 = H2_CS_FRAME_E;
2158 goto send_rst;
2159 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002160
Willy Tarreau25919232019-01-03 14:48:18 +01002161 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002162 if (h2c->st0 >= H2_CS_ERROR)
2163 return NULL;
2164
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002165 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2166 /* RFC7540#5.1 */
2167 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2168 h2c->st0 = H2_CS_FRAME_E;
2169 return NULL;
2170 }
2171
Willy Tarreau25919232019-01-03 14:48:18 +01002172 if (error <= 0) {
2173 if (error == 0)
2174 return NULL; // missing data
2175
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002176 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002177 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002178 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau25919232019-01-03 14:48:18 +01002179 return NULL;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002180 }
2181
Christopher Fauletfa922f02019-05-07 10:55:17 +02002182 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002183 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002184
Willy Tarreau927b88b2019-03-04 08:03:25 +01002185 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002186 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002187 else if (h2s->flags & H2_SF_ES_RCVD) {
2188 if (h2s->st == H2_SS_OPEN)
2189 h2s->st = H2_SS_HREM;
2190 else if (h2s->st == H2_SS_HLOC)
2191 h2s_close(h2s);
2192 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002193
2194 return h2s;
Christopher Faulet96b88f22019-09-23 15:28:20 +02002195
2196 send_rst:
2197 /* make the demux send an RST for the current stream. We may only
2198 * do this if we're certain that the HEADERS frame was properly
2199 * decompressed so that the HPACK decoder is still kept up to date.
2200 */
2201 h2_release_buf(h2c, &rxbuf);
2202 h2c->st0 = H2_CS_FRAME_E;
2203 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002204}
2205
Willy Tarreau454f9052017-10-26 19:40:35 +02002206/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2207 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2208 */
2209static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2210{
2211 int error;
2212
2213 /* note that empty DATA frames are perfectly valid and sometimes used
2214 * to signal an end of stream (with the ES flag).
2215 */
2216
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002217 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau454f9052017-10-26 19:40:35 +02002218 return 0; // empty buffer
2219
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002220 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau454f9052017-10-26 19:40:35 +02002221 return 0; // incomplete frame
2222
2223 /* now either the frame is complete or the buffer is complete */
2224
Willy Tarreau454f9052017-10-26 19:40:35 +02002225 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2226 /* RFC7540#6.1 */
2227 error = H2_ERR_STREAM_CLOSED;
2228 goto strm_err;
2229 }
2230
Christopher Faulet4fb65f42019-06-19 09:25:58 +02002231 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002232 /* RFC7540#8.1.2 */
2233 error = H2_ERR_PROTOCOL_ERROR;
2234 goto strm_err;
2235 }
2236
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002237 if (!h2_frt_transfer_data(h2s))
2238 return 0;
2239
Willy Tarreau454f9052017-10-26 19:40:35 +02002240 /* call the upper layers to process the frame, then let the upper layer
2241 * notify the stream about any change.
2242 */
2243 if (!h2s->cs) {
Willy Tarreauc1a29652019-08-06 10:11:02 +02002244 /* The upper layer has already closed, this may happen on
2245 * 4xx/redirects during POST, or when receiving a response
2246 * from an H2 server after the client has aborted.
2247 */
2248 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002249 goto strm_err;
2250 }
2251
Willy Tarreau8f650c32017-11-21 19:36:21 +01002252 if (h2c->st0 >= H2_CS_ERROR)
2253 return 0;
2254
Willy Tarreau721c9742017-11-07 11:05:42 +01002255 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002256 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002257 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002258 }
2259
2260 /* check for completion : the callee will change this to FRAME_A or
2261 * FRAME_H once done.
2262 */
2263 if (h2c->st0 == H2_CS_FRAME_P)
2264 return 0;
2265
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002266 /* last frame */
2267 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002268 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002269 if (h2s->st == H2_SS_OPEN)
2270 h2s->st = H2_SS_HREM;
2271 else
2272 h2s_close(h2s);
2273
Willy Tarreau1915ca22019-01-24 11:49:37 +01002274 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2275 /* RFC7540#8.1.2 */
2276 error = H2_ERR_PROTOCOL_ERROR;
2277 goto strm_err;
2278 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002279 }
2280
Willy Tarreau454f9052017-10-26 19:40:35 +02002281 return 1;
2282
Willy Tarreau454f9052017-10-26 19:40:35 +02002283 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002284 h2s_error(h2s, error);
2285 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002286 return 0;
2287}
2288
Willy Tarreaubc933932017-10-09 16:21:43 +02002289/* process Rx frames to be demultiplexed */
2290static void h2_process_demux(struct h2c *h2c)
2291{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002292 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002293 struct h2_fh hdr;
2294 unsigned int padlen = 0;
Willy Tarreau5a9c8752019-08-02 07:52:08 +02002295 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002296
Willy Tarreau081d4722017-05-16 21:51:05 +02002297 if (h2c->st0 >= H2_CS_ERROR)
2298 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002299
2300 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2301 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau01b44822018-10-03 14:26:37 +02002302 if (h2c->flags & H2_CF_IS_BACK)
2303 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002304 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2305 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002306 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau52eed752017-09-22 15:05:09 +02002307 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002308 sess_log(h2c->conn->owner);
2309 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002310 goto fail;
2311 }
2312
2313 h2c->max_id = 0;
2314 h2c->st0 = H2_CS_SETTINGS1;
2315 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002316
2317 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002318 /* ensure that what is pending is a valid SETTINGS frame
2319 * without an ACK.
2320 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002321 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002322 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002323 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002324 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau21178a52019-10-23 11:06:35 +02002325 if (!(h2c->flags & H2_CF_IS_BACK))
2326 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002327 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002328 goto fail;
2329 }
2330
2331 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2332 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2333 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2334 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau21178a52019-10-23 11:06:35 +02002335 if (!(h2c->flags & H2_CF_IS_BACK))
2336 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002337 goto fail;
2338 }
2339
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002340 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002341 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2342 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2343 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau21178a52019-10-23 11:06:35 +02002344 if (!(h2c->flags & H2_CF_IS_BACK))
2345 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002346 goto fail;
2347 }
2348
Willy Tarreau3bf69182018-12-21 15:34:50 +01002349 /* that's OK, switch to FRAME_P to process it. This is
2350 * a SETTINGS frame whose header has already been
2351 * deleted above.
2352 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002353 padlen = 0;
2354 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002355 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002356 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002357
2358 /* process as many incoming frames as possible below */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002359 while (b_data(&h2c->dbuf)) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002360 int ret = 0;
2361
2362 if (h2c->st0 >= H2_CS_ERROR)
2363 break;
2364
2365 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreauab3ebbc2019-08-06 15:49:51 +02002366 h2c->rcvd_s = 0;
2367
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002368 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002369 break;
2370
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002371 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002372 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002373 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02002374 /* only log if no other stream can report the error */
2375 sess_log(h2c->conn->owner);
2376 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002377 break;
2378 }
2379
Christopher Faulet3d574a52019-06-18 12:22:38 +02002380 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002381 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2382 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2383 * we read the pad length and drop it from the remaining
2384 * payload (one byte + the 9 remaining ones = 10 total
2385 * removed), so we have a frame payload starting after the
2386 * pad len. Flow controlled frames (DATA) also count the
2387 * padlen in the flow control, so it must be adjusted.
2388 */
2389 if (hdr.len < 1) {
2390 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002391 if (!(h2c->flags & H2_CF_IS_BACK))
2392 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01002393 goto fail;
2394 }
2395 hdr.len--;
2396
2397 if (b_data(&h2c->dbuf) < 10)
2398 break; // missing padlen
2399
2400 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
2401
2402 if (padlen > hdr.len) {
2403 /* RFC7540#6.1 : pad length = length of
2404 * frame payload or greater => error.
2405 */
2406 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002407 if (!(h2c->flags & H2_CF_IS_BACK))
2408 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01002409 goto fail;
2410 }
2411
2412 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
2413 h2c->rcvd_c++;
2414 h2c->rcvd_s++;
2415 }
2416 b_del(&h2c->dbuf, 1);
2417 }
2418 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002419
2420 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002421 h2c->dfl = hdr.len;
2422 h2c->dsi = hdr.sid;
2423 h2c->dft = hdr.ft;
2424 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002425 h2c->dpl = padlen;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002426 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002427
2428 /* check for minimum basic frame format validity */
2429 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
2430 if (ret != H2_ERR_NO_ERROR) {
2431 h2c_error(h2c, ret);
Willy Tarreau21178a52019-10-23 11:06:35 +02002432 if (!(h2c->flags & H2_CF_IS_BACK))
2433 sess_log(h2c->conn->owner);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002434 goto fail;
2435 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002436 }
2437
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002438 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
2439 * H2_CS_FRAME_P indicates an incomplete previous operation
2440 * (most often the first attempt) and requires some validity
2441 * checks for the frame and the current state. The two other
2442 * ones are set after completion (or abortion) and must skip
2443 * validity checks.
2444 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002445 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
2446
Willy Tarreau567beb82018-12-18 16:52:44 +01002447 if (tmp_h2s != h2s && h2s && h2s->cs &&
2448 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002449 conn_xprt_read0_pending(h2c->conn) ||
2450 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002451 (h2s->flags & H2_SF_ES_RCVD) ||
2452 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002453 /* we may have to signal the upper layers */
2454 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002455 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002456 }
2457 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002458
Willy Tarreaud7901432017-12-29 11:34:40 +01002459 if (h2c->st0 == H2_CS_FRAME_E)
2460 goto strm_err;
2461
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002462 if (h2c->st0 == H2_CS_FRAME_A)
2463 goto valid_frame_type;
2464
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002465 if (h2s->st == H2_SS_IDLE &&
2466 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2467 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2468 * this state MUST be treated as a connection error
2469 */
2470 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002471 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02002472 /* only log if no other stream can report the error */
2473 sess_log(h2c->conn->owner);
2474 }
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002475 break;
2476 }
2477
Willy Tarreau85ee6e82019-11-24 14:57:53 +01002478 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2479 /* only PUSH_PROMISE would be permitted here */
2480 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2481 break;
2482 }
2483
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002484 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2485 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2486 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002487 * this state MUST be treated as a stream error.
2488 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2489 * PUSH_PROMISE/CONTINUATION cause connection errors.
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002490 */
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002491 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2492 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2493 else
2494 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002495 goto strm_err;
2496 }
2497
Willy Tarreauab837502017-12-27 15:07:30 +01002498 /* Below the management of frames received in closed state is a
2499 * bit hackish because the spec makes strong differences between
2500 * streams closed by receiving RST, sending RST, and seeing ES
2501 * in both directions. In addition to this, the creation of a
2502 * new stream reusing the identifier of a closed one will be
2503 * detected here. Given that we cannot keep track of all closed
2504 * streams forever, we consider that unknown closed streams were
2505 * closed on RST received, which allows us to respond with an
2506 * RST without breaking the connection (eg: to abort a transfer).
2507 * Some frames have to be silently ignored as well.
2508 */
2509 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
Willy Tarreau3ad5d312019-01-29 18:33:26 +01002510 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreauab837502017-12-27 15:07:30 +01002511 /* #5.1.1: The identifier of a newly
2512 * established stream MUST be numerically
2513 * greater than all streams that the initiating
2514 * endpoint has opened or reserved. This
2515 * governs streams that are opened using a
2516 * HEADERS frame and streams that are reserved
2517 * using PUSH_PROMISE. An endpoint that
2518 * receives an unexpected stream identifier
2519 * MUST respond with a connection error.
2520 */
2521 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2522 goto strm_err;
2523 }
2524
Willy Tarreaueb5be9d2019-09-26 08:47:15 +02002525 if (h2s->flags & H2_SF_RST_RCVD &&
2526 !(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 +01002527 /* RFC7540#5.1:closed: an endpoint that
2528 * receives any frame other than PRIORITY after
2529 * receiving a RST_STREAM MUST treat that as a
2530 * stream error of type STREAM_CLOSED.
2531 *
2532 * Note that old streams fall into this category
2533 * and will lead to an RST being sent.
Willy Tarreau8d9ac3e2019-01-30 16:58:30 +01002534 *
2535 * However, we cannot generalize this to all frame types. Those
2536 * carrying compression state must still be processed before
2537 * being dropped or we'll desynchronize the decoder. This can
2538 * happen with request trailers received after sending an
2539 * RST_STREAM, or with header/trailers responses received after
2540 * sending RST_STREAM (aborted stream).
Willy Tarreaueb5be9d2019-09-26 08:47:15 +02002541 *
2542 * In addition, since our CLOSED streams always carry the
2543 * RST_RCVD bit, we don't want to accidently catch valid
2544 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreauab837502017-12-27 15:07:30 +01002545 */
2546 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2547 h2c->st0 = H2_CS_FRAME_E;
2548 goto strm_err;
2549 }
2550
2551 /* RFC7540#5.1:closed: if this state is reached as a
2552 * result of sending a RST_STREAM frame, the peer that
2553 * receives the RST_STREAM might have already sent
2554 * frames on the stream that cannot be withdrawn. An
2555 * endpoint MUST ignore frames that it receives on
2556 * closed streams after it has sent a RST_STREAM
2557 * frame. An endpoint MAY choose to limit the period
2558 * over which it ignores frames and treat frames that
2559 * arrive after this time as being in error.
2560 */
Willy Tarreau24ff1f82019-01-30 19:20:09 +01002561 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
Willy Tarreauab837502017-12-27 15:07:30 +01002562 /* RFC7540#5.1:closed: any frame other than
2563 * PRIO/WU/RST in this state MUST be treated as
2564 * a connection error
2565 */
2566 if (h2c->dft != H2_FT_RST_STREAM &&
2567 h2c->dft != H2_FT_PRIORITY &&
2568 h2c->dft != H2_FT_WINDOW_UPDATE) {
2569 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2570 goto strm_err;
2571 }
2572 }
2573 }
2574
Willy Tarreauc0da1962017-10-30 18:38:00 +01002575#if 0
2576 // problem below: it is not possible to completely ignore such
2577 // streams as we need to maintain the compression state as well
2578 // and for this we need to completely process these frames (eg:
2579 // HEADERS frames) as well as counting DATA frames to emit
2580 // proper WINDOW UPDATES and ensure the connection doesn't stall.
2581 // This is a typical case of layer violation where the
2582 // transported contents are critical to the connection's
2583 // validity and must be ignored at the same time :-(
2584
2585 /* graceful shutdown, ignore streams whose ID is higher than
2586 * the one advertised in GOAWAY. RFC7540#6.8.
2587 */
2588 if (unlikely(h2c->last_sid >= 0) && h2c->dsi > h2c->last_sid) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002589 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2590 b_del(&h2c->dbuf, ret);
Willy Tarreauc0da1962017-10-30 18:38:00 +01002591 h2c->dfl -= ret;
2592 ret = h2c->dfl == 0;
2593 goto strm_err;
2594 }
2595#endif
2596
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002597 valid_frame_type:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002598 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002599 case H2_FT_SETTINGS:
2600 if (h2c->st0 == H2_CS_FRAME_P)
2601 ret = h2c_handle_settings(h2c);
2602
2603 if (h2c->st0 == H2_CS_FRAME_A)
2604 ret = h2c_ack_settings(h2c);
2605 break;
2606
Willy Tarreaucf68c782017-10-10 17:11:41 +02002607 case H2_FT_PING:
2608 if (h2c->st0 == H2_CS_FRAME_P)
2609 ret = h2c_handle_ping(h2c);
2610
2611 if (h2c->st0 == H2_CS_FRAME_A)
2612 ret = h2c_ack_ping(h2c);
2613 break;
2614
Willy Tarreau26f95952017-07-27 17:18:30 +02002615 case H2_FT_WINDOW_UPDATE:
2616 if (h2c->st0 == H2_CS_FRAME_P)
2617 ret = h2c_handle_window_update(h2c, h2s);
2618 break;
2619
Willy Tarreau61290ec2017-10-17 08:19:21 +02002620 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01002621 /* RFC7540#6.10: CONTINUATION may only be preceeded by
2622 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
2623 * frames' parsers consume all following CONTINUATION
2624 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02002625 */
Willy Tarreauea18f862018-12-22 20:19:26 +01002626 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau21178a52019-10-23 11:06:35 +02002627 if (!(h2c->flags & H2_CF_IS_BACK))
2628 sess_log(h2c->conn->owner);
Willy Tarreauea18f862018-12-22 20:19:26 +01002629 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02002630
Willy Tarreau13278b42017-10-13 19:23:14 +02002631 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002632 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002633 if (h2c->flags & H2_CF_IS_BACK)
2634 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
2635 else
2636 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002637 if (tmp_h2s) {
2638 h2s = tmp_h2s;
2639 ret = 1;
2640 }
2641 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002642 break;
2643
Willy Tarreau454f9052017-10-26 19:40:35 +02002644 case H2_FT_DATA:
2645 if (h2c->st0 == H2_CS_FRAME_P)
2646 ret = h2c_frt_handle_data(h2c, h2s);
2647
2648 if (h2c->st0 == H2_CS_FRAME_A)
2649 ret = h2c_send_strm_wu(h2c);
2650 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002651
Willy Tarreau92153fc2017-12-03 19:46:19 +01002652 case H2_FT_PRIORITY:
2653 if (h2c->st0 == H2_CS_FRAME_P)
2654 ret = h2c_handle_priority(h2c);
2655 break;
2656
Willy Tarreaucd234e92017-08-18 10:59:39 +02002657 case H2_FT_RST_STREAM:
2658 if (h2c->st0 == H2_CS_FRAME_P)
2659 ret = h2c_handle_rst_stream(h2c, h2s);
2660 break;
2661
Willy Tarreaue96b0922017-10-30 00:28:29 +01002662 case H2_FT_GOAWAY:
2663 if (h2c->st0 == H2_CS_FRAME_P)
2664 ret = h2c_handle_goaway(h2c);
2665 break;
2666
Willy Tarreau1c661982017-10-30 13:52:01 +01002667 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02002668 default:
2669 /* drop frames that we ignore. They may be larger than
2670 * the buffer so we drain all of their contents until
2671 * we reach the end.
2672 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002673 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2674 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002675 h2c->dfl -= ret;
2676 ret = h2c->dfl == 0;
2677 }
2678
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002679 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01002680 /* We may have to send an RST if not done yet */
2681 if (h2s->st == H2_SS_ERROR)
2682 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002683
Willy Tarreaua20a5192017-12-27 11:02:06 +01002684 if (h2c->st0 == H2_CS_FRAME_E)
2685 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002686
Willy Tarreau7e98c052017-10-10 15:56:59 +02002687 /* error or missing data condition met above ? */
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002688 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02002689 break;
2690
2691 if (h2c->st0 != H2_CS_FRAME_H) {
Christopher Faulete12a26f2019-09-26 16:38:28 +02002692 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2693 b_del(&h2c->dbuf, ret);
2694 h2c->dfl -= ret;
2695 if (!h2c->dfl)
2696 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002697 }
2698 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002699
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002700 if (h2c->rcvd_c > 0 &&
2701 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM)))
2702 h2c_send_conn_wu(h2c);
2703
Willy Tarreau52eed752017-09-22 15:05:09 +02002704 fail:
2705 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01002706 if (h2s && h2s->cs &&
2707 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002708 conn_xprt_read0_pending(h2c->conn) ||
2709 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002710 (h2s->flags & H2_SF_ES_RCVD) ||
2711 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002712 /* we may have to signal the upper layers */
2713 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002714 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002715 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002716
Willy Tarreau5a9c8752019-08-02 07:52:08 +02002717 if (old_iw != h2c->miw)
2718 h2c_unblock_sfctl(h2c);
2719
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02002720 h2c_restart_reading(h2c, 0);
Willy Tarreaubc933932017-10-09 16:21:43 +02002721}
2722
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002723/* resume each h2s eligible for sending in list head <head> */
2724static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
2725{
2726 struct h2s *h2s, *h2s_back;
2727
2728 list_for_each_entry_safe(h2s, h2s_back, head, list) {
2729 if (h2c->mws <= 0 ||
2730 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
2731 h2c->st0 >= H2_CS_ERROR)
2732 break;
2733
2734 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreaud4e72e22020-01-10 18:20:15 +01002735
2736 if (LIST_ADDED(&h2s->sending_list))
2737 continue;
2738
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002739 /* For some reason, the upper layer failed to subscribe again,
2740 * so remove it from the send_list
2741 */
2742 if (!h2s->send_wait) {
2743 LIST_DEL_INIT(&h2s->list);
2744 continue;
2745 }
2746
2747 h2s->send_wait->events &= ~SUB_RETRY_SEND;
2748 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
2749 tasklet_wakeup(h2s->send_wait->tasklet);
2750 }
2751}
2752
Willy Tarreaubc933932017-10-09 16:21:43 +02002753/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
2754 * the end.
2755 */
2756static int h2_process_mux(struct h2c *h2c)
2757{
Willy Tarreau01b44822018-10-03 14:26:37 +02002758 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2759 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
2760 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
2761 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau21178a52019-10-23 11:06:35 +02002762 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02002763 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02002764 goto fail;
2765 }
2766 h2c->st0 = H2_CS_SETTINGS1;
2767 }
2768 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01002769 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau01b44822018-10-03 14:26:37 +02002770 return 1;
2771 }
2772
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002773 /* start by sending possibly pending window updates */
Willy Tarreau9c497c22019-08-06 15:39:32 +02002774 if (h2c->rcvd_s > 0 &&
2775 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2776 h2c_send_strm_wu(h2c) < 0)
2777 goto fail;
2778
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002779 if (h2c->rcvd_c > 0 &&
2780 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2781 h2c_send_conn_wu(h2c) < 0)
2782 goto fail;
2783
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002784 /* First we always process the flow control list because the streams
2785 * waiting there were already elected for immediate emission but were
2786 * blocked just on this.
2787 */
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002788 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
2789 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002790
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002791 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01002792 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02002793 if (h2c->st0 == H2_CS_ERROR) {
2794 if (h2c->max_id >= 0) {
2795 h2c_send_goaway_error(h2c, NULL);
2796 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
2797 return 0;
2798 }
2799
2800 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
2801 }
2802 return 1;
2803 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002804 return (1);
Willy Tarreaubc933932017-10-09 16:21:43 +02002805}
2806
Willy Tarreau62f52692017-10-08 23:01:42 +02002807
Willy Tarreau479998a2018-11-18 06:30:59 +01002808/* Attempt to read data, and subscribe if none available.
2809 * The function returns 1 if data has been received, otherwise zero.
2810 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002811static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002812{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002813 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002814 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002815 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02002816 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002817
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002818 if (h2c->wait_event.events & SUB_RETRY_RECV)
Olivier Houchard81a15af2018-10-19 17:26:49 +02002819 return (b_data(&h2c->dbuf));
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002820
Willy Tarreau315d8072017-12-10 22:17:57 +01002821 if (!h2_recv_allowed(h2c))
Olivier Houchard81a15af2018-10-19 17:26:49 +02002822 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002823
Willy Tarreau44e973f2018-03-01 17:49:30 +01002824 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002825 if (!buf) {
2826 h2c->flags |= H2_CF_DEM_DALLOC;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002827 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002828 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002829
Olivier Houchard7505f942018-08-21 18:10:44 +02002830 do {
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002831 b_realign_if_empty(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01002832 if (!b_data(buf) && (h2c->proxy->options2 & PR_O2_USE_HTX)) {
2833 /* HTX in use : try to pre-align the buffer like the
2834 * rxbufs will be to optimize memory copies. We'll make
2835 * sure that the frame header lands at the end of the
2836 * HTX block to alias it upon recv. We cannot use the
2837 * head because rcv_buf() will realign the buffer if
2838 * it's empty. Thus we cheat and pretend we already
2839 * have a few bytes there.
2840 */
2841 max = buf_room_for_htx_data(buf) + 9;
Willy Tarreauc0960d12018-12-14 10:59:15 +01002842 buf->head = sizeof(struct htx) - 9;
Willy Tarreau2a59e872018-12-12 08:23:47 +01002843 }
2844 else
2845 max = b_room(buf);
2846
Olivier Houchard7505f942018-08-21 18:10:44 +02002847 if (max)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002848 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0);
Olivier Houchard7505f942018-08-21 18:10:44 +02002849 else
2850 ret = 0;
2851 } while (ret > 0);
Willy Tarreaua2af5122017-10-09 11:56:46 +02002852
Willy Tarreaua8fcdac2019-08-02 07:48:47 +02002853 if (max && !ret && h2_recv_allowed(h2c))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002854 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Olivier Houchard81a15af2018-10-19 17:26:49 +02002855
Olivier Houcharda1411e62018-08-17 18:42:48 +02002856 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01002857 h2_release_buf(h2c, &h2c->dbuf);
Olivier Houchard46677732018-11-29 17:06:17 +01002858 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002859 }
2860
Willy Tarreaub7b5fe12018-06-18 13:33:09 +02002861 if (b_data(buf) == buf->size)
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002862 h2c->flags |= H2_CF_DEM_DFULL;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002863 return 1;
Willy Tarreau62f52692017-10-08 23:01:42 +02002864}
2865
Willy Tarreau479998a2018-11-18 06:30:59 +01002866/* Try to send data if possible.
2867 * The function returns 1 if data have been sent, otherwise zero.
2868 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002869static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002870{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002871 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02002872 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002873 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002874
2875 if (conn->flags & CO_FL_ERROR)
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01002876 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002877
Olivier Houchard7505f942018-08-21 18:10:44 +02002878
Willy Tarreaua2af5122017-10-09 11:56:46 +02002879 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
2880 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002881 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002882 }
2883
Willy Tarreaubc933932017-10-09 16:21:43 +02002884 /* This loop is quite simple : it tries to fill as much as it can from
2885 * pending streams into the existing buffer until it's reportedly full
2886 * or the end of send requests is reached. Then it tries to send this
2887 * buffer's contents out, marks it not full if at least one byte could
2888 * be sent, and tries again.
2889 *
2890 * The snd_buf() function normally takes a "flags" argument which may
2891 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
2892 * data immediately comes and CO_SFL_STREAMER to indicate that the
2893 * connection is streaming lots of data (used to increase TLS record
2894 * size at the expense of latency). The former can be sent any time
2895 * there's a buffer full flag, as it indicates at least one stream
2896 * attempted to send and failed so there are pending data. An
2897 * alternative would be to set it as long as there's an active stream
2898 * but that would be problematic for ACKs until we have an absolute
2899 * guarantee that all waiters have at least one byte to send. The
2900 * latter should possibly not be set for now.
2901 */
2902
2903 done = 0;
2904 while (!done) {
2905 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002906 unsigned int released = 0;
2907 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02002908
2909 /* fill as much as we can into the current buffer */
2910 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
2911 done = h2_process_mux(h2c);
2912
Olivier Houchard2b094432019-01-29 18:28:36 +01002913 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002914 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01002915
Willy Tarreaubc933932017-10-09 16:21:43 +02002916 if (conn->flags & CO_FL_ERROR)
2917 break;
2918
2919 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
2920 flags |= CO_SFL_MSG_MORE;
2921
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002922 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
2923 if (b_data(buf)) {
2924 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002925 if (!ret) {
2926 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002927 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002928 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002929 sent = 1;
2930 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002931 if (b_data(buf)) {
2932 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002933 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002934 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002935 }
2936 b_free(buf);
2937 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02002938 }
Willy Tarreaubc933932017-10-09 16:21:43 +02002939
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002940 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02002941 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002942
Willy Tarreaubc933932017-10-09 16:21:43 +02002943 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet07423082019-10-24 10:31:01 +02002944 if (sent)
2945 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02002946 }
2947
Willy Tarreaua2af5122017-10-09 11:56:46 +02002948 if (conn->flags & CO_FL_SOCK_WR_SH) {
2949 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02002950 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002951 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002952 /* We're not full anymore, so we can wake any task that are waiting
2953 * for us.
2954 */
Willy Tarreaufa9a0402020-01-10 17:01:29 +01002955 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
2956 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchard998410a2019-04-15 19:23:37 +02002957
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002958 /* We're done, no more to send */
Willy Tarreau662fafc2019-05-26 09:43:07 +02002959 if (!br_data(h2c->mbuf))
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002960 return sent;
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002961schedule:
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002962 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002963 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002964
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002965 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002966}
2967
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002968/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002969static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
2970{
2971 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02002972 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002973
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002974 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02002975 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002976 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02002977 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01002978 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02002979 h2_process(h2c);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002980 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002981}
Willy Tarreaua2af5122017-10-09 11:56:46 +02002982
Willy Tarreau62f52692017-10-08 23:01:42 +02002983/* callback called on any event by the connection handler.
2984 * It applies changes and returns zero, or < 0 if it wants immediate
2985 * destruction of the connection (which normally doesn not happen in h2).
2986 */
Olivier Houchard7505f942018-08-21 18:10:44 +02002987static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002988{
Olivier Houchard7505f942018-08-21 18:10:44 +02002989 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002990
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002991 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01002992 h2_process_demux(h2c);
2993
2994 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002995 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01002996
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002997 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01002998 h2c->flags &= ~H2_CF_DEM_DFULL;
2999 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003000 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003001
Willy Tarreau0b37d652018-10-03 10:33:02 +02003002 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003003 /* frontend is stopping, reload likely in progress, let's try
3004 * to announce a graceful shutdown if not yet done. We don't
3005 * care if it fails, it will be tried again later.
3006 */
3007 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3008 if (h2c->last_sid < 0)
3009 h2c->last_sid = (1U << 31) - 1;
3010 h2c_send_goaway_error(h2c, NULL);
3011 }
3012 }
3013
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003014 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003015 * If we received early data, and the handshake is done, wake
3016 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003017 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003018 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3019 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3020 struct eb32_node *node;
3021 struct h2s *h2s;
3022
3023 h2c->flags |= H2_CF_WAIT_FOR_HS;
3024 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3025
3026 while (node) {
3027 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003028 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003029 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003030 node = eb32_next(node);
3031 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003032 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003033
Willy Tarreau26bd7612017-10-09 16:47:04 +02003034 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003035 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3036 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3037 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003038 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003039
3040 if (eb_is_empty(&h2c->streams_by_id)) {
3041 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003042 h2_release(h2c);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003043 return -1;
3044 }
Willy Tarreauab66e152019-10-31 15:36:30 +01003045
3046 /* connections in error must be removed from the idle lists */
3047 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3048 LIST_DEL_LOCKED(&conn->list);
3049 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3050 }
3051 else if (h2c->st0 == H2_CS_ERROR) {
3052 /* connections in error must be removed from the idle lists */
3053 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3054 LIST_DEL_LOCKED(&conn->list);
3055 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003056 }
3057
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003058 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003059 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003060
Olivier Houchard53216e72018-10-10 15:46:36 +02003061 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3062 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3063 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003064 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003065 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3066 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003067 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003068
Willy Tarreau3f133572017-10-31 19:21:06 +01003069 if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003070 if (h2c_may_expire(h2c))
3071 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3072 else
3073 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003074 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003075 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003076
Olivier Houchard7505f942018-08-21 18:10:44 +02003077 h2_send(h2c);
Willy Tarreau62f52692017-10-08 23:01:42 +02003078 return 0;
3079}
3080
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003081/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003082static int h2_wake(struct connection *conn)
3083{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003084 struct h2c *h2c = conn->ctx;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003085
3086 return (h2_process(h2c));
3087}
3088
Willy Tarreauea392822017-10-31 10:02:25 +01003089/* Connection timeout management. The principle is that if there's no receipt
3090 * nor sending for a certain amount of time, the connection is closed. If the
3091 * MUX buffer still has lying data or is not allocatable, the connection is
3092 * immediately killed. If it's allocatable and empty, we attempt to send a
3093 * GOAWAY frame.
3094 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003095static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003096{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003097 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003098 int expired = tick_is_expired(t->expire, now_ms);
3099
Willy Tarreau0975f112018-03-29 15:22:59 +02003100 if (!expired && h2c)
Willy Tarreauea392822017-10-31 10:02:25 +01003101 return t;
3102
Willy Tarreau534d8f92019-10-01 10:12:00 +02003103 if (h2c && !h2c_may_expire(h2c)) {
3104 /* we do still have streams but all of them are idle, waiting
3105 * for the data layer, so we must not enforce the timeout here.
3106 */
3107 t->expire = TICK_ETERNITY;
3108 return t;
3109 }
3110
Olivier Houchard3f795f72019-04-17 22:51:06 +02003111 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003112
3113 if (!h2c) {
3114 /* resources were already deleted */
3115 return NULL;
3116 }
3117
3118 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003119 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003120 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003121
Willy Tarreau662fafc2019-05-26 09:43:07 +02003122 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003123 /* don't even try to send a GOAWAY, the buffer is stuck */
3124 h2c->flags |= H2_CF_GOAWAY_FAILED;
3125 }
3126
3127 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003128 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003129 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3130 h2c->flags |= H2_CF_GOAWAY_FAILED;
3131
Willy Tarreau662fafc2019-05-26 09:43:07 +02003132 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003133 unsigned int released = 0;
3134 struct buffer *buf;
3135
3136 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3137 if (b_data(buf)) {
3138 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3139 if (!ret)
3140 break;
3141 b_del(buf, ret);
3142 if (b_data(buf))
3143 break;
3144 b_free(buf);
3145 released++;
3146 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003147 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003148
3149 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003150 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003151 }
Willy Tarreauea392822017-10-31 10:02:25 +01003152
Willy Tarreauab66e152019-10-31 15:36:30 +01003153 /* in any case this connection must not be considered idle anymore */
3154 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3155 LIST_DEL_LOCKED(&h2c->conn->list);
3156 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3157
Willy Tarreau0975f112018-03-29 15:22:59 +02003158 /* either we can release everything now or it will be done later once
3159 * the last stream closes.
3160 */
3161 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003162 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003163
Willy Tarreauea392822017-10-31 10:02:25 +01003164 return NULL;
3165}
3166
3167
Willy Tarreau62f52692017-10-08 23:01:42 +02003168/*******************************************/
3169/* functions below are used by the streams */
3170/*******************************************/
3171
3172/*
3173 * Attach a new stream to a connection
3174 * (Used for outgoing connections)
3175 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003176static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003177{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003178 struct conn_stream *cs;
3179 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003180 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003181
3182 cs = cs_new(conn);
3183 if (!cs)
3184 return NULL;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003185 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003186 if (!h2s) {
3187 cs_free(cs);
3188 return NULL;
3189 }
3190 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003191}
3192
Willy Tarreaufafd3982018-11-18 21:29:20 +01003193/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3194 * We have to scan because we may have some orphan streams. It might be
3195 * beneficial to scan backwards from the end to reduce the likeliness to find
3196 * orphans.
3197 */
3198static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3199{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003200 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003201 struct h2s *h2s;
3202 struct eb32_node *node;
3203
3204 node = eb32_first(&h2c->streams_by_id);
3205 while (node) {
3206 h2s = container_of(node, struct h2s, by_id);
3207 if (h2s->cs)
3208 return h2s->cs;
3209 node = eb32_next(node);
3210 }
3211 return NULL;
3212}
3213
Olivier Houchard198d1292019-10-25 16:19:26 +02003214static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3215{
3216 int ret = 0;
3217 struct h2c *h2c = conn->ctx;
3218
3219 switch (mux_ctl) {
3220 case MUX_STATUS:
3221 /* Only consider the mux to be ready if we're done with
3222 * the preface and settings, and we had no error.
3223 */
3224 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
3225 ret |= MUX_STATUS_READY;
3226 return ret;
3227 default:
3228 return -1;
3229 }
3230}
3231
Willy Tarreau62f52692017-10-08 23:01:42 +02003232/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003233 * Destroy the mux and the associated connection, if it is no longer used
3234 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003235static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003236{
Christopher Faulet73c12072019-04-08 11:23:22 +02003237 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003238
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003239 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003240 h2_release(h2c);
Olivier Houchard060ed432018-11-06 16:32:42 +01003241}
3242
3243/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003244 * Detach the stream from the connection and possibly release the connection.
3245 */
3246static void h2_detach(struct conn_stream *cs)
3247{
Willy Tarreau60935142017-10-16 18:11:19 +02003248 struct h2s *h2s = cs->ctx;
3249 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003250 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003251
3252 cs->ctx = NULL;
3253 if (!h2s)
3254 return;
3255
Olivier Houchard998410a2019-04-15 19:23:37 +02003256 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003257 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003258 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003259 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003260 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003261 /*
3262 * At this point, the stream_interface is supposed to have called
3263 * h2_unsubscribe(), so the only way there's still a
3264 * subscription that came from the stream_interface (as we
3265 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3266 * without the stream_interface involved) is that we subscribed
3267 * for sending, we woke the tasklet up and removed the
3268 * SUB_RETRY_SEND flag, so the stream_interface would not
3269 * know it has to unsubscribe for send, but the tasklet hasn't
3270 * run yet. Make sure to handle that by explicitely setting
3271 * send_wait to NULL, as nothing else will do it for us.
3272 */
3273 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003274 }
3275
Olivier Houchardf502aca2018-12-14 19:42:40 +01003276 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003277 h2c = h2s->h2c;
3278 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003279 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003280 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3281 !h2_frt_has_too_many_cs(h2c)) {
3282 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003283 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003284 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003285 }
Willy Tarreau60935142017-10-16 18:11:19 +02003286
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003287 /* this stream may be blocked waiting for some data to leave (possibly
3288 * an ES or RST frame), so orphan it in this case.
3289 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003290 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003291 (h2c->st0 < H2_CS_ERROR) &&
Olivier Houchard16ff2612019-03-21 15:48:46 +01003292 (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 +01003293 return;
3294
Willy Tarreau45f752e2017-10-30 15:44:59 +01003295 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3296 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3297 /* unblock the connection if it was blocked on this
3298 * stream.
3299 */
3300 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3301 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003302 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003303 }
3304
Willy Tarreau71049cc2018-03-28 13:56:39 +02003305 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003306
Olivier Houchard8a786902018-12-15 16:05:40 +01003307 if (h2c->flags & H2_CF_IS_BACK &&
3308 (h2c->proxy->options2 & PR_O2_USE_HTX)) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003309 if (!(h2c->conn->flags &
3310 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3311 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003312 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003313 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3314 h2c->conn->owner = NULL;
3315 if (eb_is_empty(&h2c->streams_by_id)) {
3316 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3317 /* The server doesn't want it, let's kill the connection right away */
Olivier Houchard109ba132020-02-14 13:23:45 +01003318 h2c->conn->mux->destroy(h2c);
Olivier Houchard351411f2018-12-27 17:20:54 +01003319 return;
3320 }
3321 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003322 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003323 if (eb_is_empty(&h2c->streams_by_id)) {
3324 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0)
3325 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
3326 return;
3327 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003328 /* Never ever allow to reuse a connection from a non-reuse backend */
3329 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3330 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003331 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003332 struct server *srv = objt_server(h2c->conn->target);
3333
3334 if (srv) {
3335 if (h2c->conn->flags & CO_FL_PRIVATE)
3336 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3337 else
3338 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3339 }
3340
3341 }
3342 }
3343 }
3344
Willy Tarreaue323f342018-03-28 13:51:45 +02003345 /* We don't want to close right now unless we're removing the
3346 * last stream, and either the connection is in error, or it
3347 * reached the ID already specified in a GOAWAY frame received
3348 * or sent (as seen by last_sid >= 0).
3349 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003350 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003351 /* no more stream will come, kill it now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003352 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003353 }
3354 else if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003355 if (h2c_may_expire(h2c))
3356 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3357 else
3358 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003359 task_queue(h2c->task);
Willy Tarreau60935142017-10-16 18:11:19 +02003360 }
Willy Tarreau62f52692017-10-08 23:01:42 +02003361}
3362
Willy Tarreau88bdba32019-05-13 18:17:53 +02003363/* Performs a synchronous or asynchronous shutr(). */
3364static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003365{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003366 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003367 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003368
Willy Tarreauf983d002019-05-14 10:40:21 +02003369 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003370 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003371
Willy Tarreau18059042019-01-31 19:12:48 +01003372 /* a connstream may require us to immediately kill the whole connection
3373 * for example because of a "tcp-request content reject" rule that is
3374 * normally used to limit abuse. In this case we schedule a goaway to
3375 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003376 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003377 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003378 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3379 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3380 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3381 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003382 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3383 /* Nothing was never sent for this stream, so reset with
3384 * REFUSED_STREAM error to let the client retry the
3385 * request.
3386 */
3387 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3388 }
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003389 else {
3390 /* a final response was already provided, we don't want this
3391 * stream anymore. This may happen when the server responds
3392 * before the end of an upload and closes quickly (redirect,
3393 * deny, ...)
3394 */
3395 h2s_error(h2s, H2_ERR_CANCEL);
3396 }
Willy Tarreau18059042019-01-31 19:12:48 +01003397
Willy Tarreau90c32322017-11-24 08:00:30 +01003398 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003399 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003400 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003401
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003402 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003403 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003404 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003405 done:
3406 h2s->flags &= ~H2_SF_WANT_SHUTR;
3407 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003408add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003409 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003410 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003411 if (h2s->flags & H2_SF_BLK_MFCTL) {
3412 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3413 h2s->send_wait = sw;
3414 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3415 h2s->send_wait = sw;
3416 LIST_ADDQ(&h2c->send_list, &h2s->list);
3417 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003418 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003419 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003420 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003421 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003422}
3423
Willy Tarreau88bdba32019-05-13 18:17:53 +02003424/* Performs a synchronous or asynchronous shutw(). */
3425static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003426{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003427 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003428 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003429
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003430 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003431 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003432
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003433 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003434 /* we can cleanly close using an empty data frame only after headers */
3435
3436 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3437 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003438 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003439
3440 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003441 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003442 else
3443 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003444 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003445 /* a connstream may require us to immediately kill the whole connection
3446 * for example because of a "tcp-request content reject" rule that is
3447 * normally used to limit abuse. In this case we schedule a goaway to
3448 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003449 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003450 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003451 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3452 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3453 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3454 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003455 else {
3456 /* Nothing was never sent for this stream, so reset with
3457 * REFUSED_STREAM error to let the client retry the
3458 * request.
3459 */
3460 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3461 }
Willy Tarreau18059042019-01-31 19:12:48 +01003462
Willy Tarreau90c32322017-11-24 08:00:30 +01003463 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003464 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003465 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003466
Willy Tarreau00dd0782018-03-01 16:31:34 +01003467 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003468 }
3469
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003470 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003471 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003472 done:
3473 h2s->flags &= ~H2_SF_WANT_SHUTW;
3474 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003475
3476 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003477 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003478 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003479 if (h2s->flags & H2_SF_BLK_MFCTL) {
3480 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3481 h2s->send_wait = sw;
3482 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3483 h2s->send_wait = sw;
3484 LIST_ADDQ(&h2c->send_list, &h2s->list);
3485 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003486 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003487 /* let the handler know we want to shutw */
3488 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003489 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003490}
3491
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003492/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003493 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3494 * and prevented the last frame from being emitted.
3495 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003496static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3497{
3498 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003499 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003500
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003501 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003502 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003503 h2_do_shutw(h2s);
3504
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003505 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003506 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003507
Willy Tarreau88bdba32019-05-13 18:17:53 +02003508 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003509 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003510 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01003511
Willy Tarreau88bdba32019-05-13 18:17:53 +02003512 if (!h2s->cs) {
3513 h2s_destroy(h2s);
3514 if (h2c_is_dead(h2c))
3515 h2_release(h2c);
3516 }
Olivier Houchard7a977432019-03-21 15:47:13 +01003517 }
3518
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003519 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02003520}
3521
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003522/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003523static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3524{
3525 struct h2s *h2s = cs->ctx;
3526
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003527 if (cs->flags & CS_FL_KILL_CONN)
3528 h2s->flags |= H2_SF_KILL_CONN;
3529
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003530 if (!mode)
3531 return;
3532
3533 h2_do_shutr(h2s);
3534}
3535
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003536/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003537static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3538{
3539 struct h2s *h2s = cs->ctx;
3540
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003541 if (cs->flags & CS_FL_KILL_CONN)
3542 h2s->flags |= H2_SF_KILL_CONN;
3543
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003544 h2_do_shutw(h2s);
3545}
3546
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003547/* Decode the payload of a HEADERS frame and produce the equivalent HTTP/1 or
Willy Tarreau86277d42019-01-02 15:36:11 +01003548 * HTX request or response depending on the connection's side. Returns a
3549 * positive value on success, a negative value on failure, or 0 if it couldn't
3550 * proceed. May report connection errors in h2c->errcode if the frame is
3551 * non-decodable and the connection unrecoverable. In absence of connection
3552 * error when a failure is reported, the caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01003553 *
3554 * The function may fold CONTINUATION frames into the initial HEADERS frame
3555 * by removing padding and next frame header, then moving the CONTINUATION
3556 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
3557 * leaving a hole between the main frame and the beginning of the next one.
3558 * The possibly remaining incomplete or next frame at the end may be moved
3559 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
3560 * HEADERS frames are unwrapped into a temporary buffer before decoding.
3561 *
3562 * A buffer at the beginning of processing may look like this :
3563 *
3564 * ,---.---------.-----.--------------.--------------.------.---.
3565 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
3566 * `---^---------^-----^--------------^--------------^------^---'
3567 * | | <-----> | |
3568 * area | dpl | wrap
3569 * |<--------------> |
3570 * | dfl |
3571 * |<-------------------------------------------------->|
3572 * head data
3573 *
3574 * Padding is automatically overwritten when folding, participating to the
3575 * hole size after dfl :
3576 *
3577 * ,---.------------------------.-----.--------------.------.---.
3578 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
3579 * `---^------------------------^-----^--------------^------^---'
3580 * | | <-----> | |
3581 * area | hole | wrap
3582 * |<-----------------------> |
3583 * | dfl |
3584 * |<-------------------------------------------------->|
3585 * head data
3586 *
3587 * Please note that the HEADERS frame is always deprived from its PADLEN byte
3588 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
3589 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003590 *
3591 * The <flags> field must point to either the stream's flags or to a copy of it
3592 * so that the function can update the following flags :
3593 * - H2_SF_DATA_CLEN when content-length is seen
3594 * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion
3595 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01003596 *
3597 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
3598 * decoding, in order to detect if we're dealing with a headers or a trailers
3599 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02003600 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003601static 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 +02003602{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003603 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02003604 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003605 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02003606 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003607 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003608 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01003609 int flen; // header frame len
3610 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01003611 int ret = 0;
3612 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02003613 int wrap;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003614 int try = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02003615
Willy Tarreauea18f862018-12-22 20:19:26 +01003616next_frame:
3617 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
3618 goto leave; // incomplete input frame
3619
3620 /* No END_HEADERS means there's one or more CONTINUATION frames. In
3621 * this case, we'll try to paste it immediately after the initial
3622 * HEADERS frame payload and kill any possible padding. The initial
3623 * frame's length will be increased to represent the concatenation
3624 * of the two frames. The next frame is read from position <tlen>
3625 * and written at position <flen> (minus padding if some is present).
3626 */
3627 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
3628 struct h2_fh hdr;
3629 int clen; // CONTINUATION frame's payload length
3630
3631 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
3632 /* no more data, the buffer may be full, either due to
3633 * too large a frame or because of too large a hole that
3634 * we're going to compact at the end.
3635 */
3636 goto leave;
3637 }
3638
3639 if (hdr.ft != H2_FT_CONTINUATION) {
3640 /* RFC7540#6.10: frame of unexpected type */
3641 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3642 goto fail;
3643 }
3644
3645 if (hdr.sid != h2c->dsi) {
3646 /* RFC7540#6.10: frame of different stream */
3647 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3648 goto fail;
3649 }
3650
3651 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
3652 /* RFC7540#4.2: invalid frame length */
3653 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3654 goto fail;
3655 }
3656
3657 /* detect when we must stop aggragating frames */
3658 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
3659
3660 /* Take as much as we can of the CONTINUATION frame's payload */
3661 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
3662 if (clen > hdr.len)
3663 clen = hdr.len;
3664
3665 /* Move the frame's payload over the padding, hole and frame
3666 * header. At least one of hole or dpl is null (see diagrams
3667 * above). The hole moves after the new aggragated frame.
3668 */
3669 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
3670 h2c->dfl += clen - h2c->dpl;
3671 hole += h2c->dpl + 9;
3672 h2c->dpl = 0;
3673 goto next_frame;
3674 }
3675
3676 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01003677
Willy Tarreau13278b42017-10-13 19:23:14 +02003678 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003679 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02003680 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02003681 copy = alloc_trash_chunk();
3682 if (!copy) {
3683 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
3684 goto fail;
3685 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003686 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
3687 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
3688 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02003689 }
3690
Willy Tarreau13278b42017-10-13 19:23:14 +02003691 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
3692 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003693 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003694 /* RFC7540#5.3.1 : stream dep may not depend on itself */
3695 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02003696 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003697 }
3698
Willy Tarreaua01f45e2018-12-31 07:41:24 +01003699 if (flen < 5) {
3700 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3701 goto fail;
3702 }
3703
Willy Tarreau13278b42017-10-13 19:23:14 +02003704 hdrs += 5; // stream dep = 4, weight = 1
3705 flen -= 5;
3706 }
3707
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003708 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau937f7602018-02-26 15:22:17 +01003709 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01003710 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003711 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003712
Willy Tarreau937f7602018-02-26 15:22:17 +01003713 /* we can't retry a failed decompression operation so we must be very
3714 * careful not to take any risks. In practice the output buffer is
3715 * always empty except maybe for trailers, in which case we simply have
3716 * to wait for the upper layer to finish consuming what is available.
3717 */
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003718
3719 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003720 htx = htx_from_buf(rxbuf);
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003721 if (!htx_is_empty(htx)) {
3722 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003723 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003724 }
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003725 } else {
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003726 if (b_data(rxbuf)) {
3727 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003728 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003729 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003730
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003731 rxbuf->head = 0;
3732 try = b_size(rxbuf);
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003733 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003734
Willy Tarreau25919232019-01-03 14:48:18 +01003735 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003736 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
3737 sizeof(list)/sizeof(list[0]), tmp);
3738 if (outlen < 0) {
3739 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
3740 goto fail;
3741 }
3742
Willy Tarreau25919232019-01-03 14:48:18 +01003743 /* The PACK decompressor was updated, let's update the input buffer and
3744 * the parser's state to commit these changes and allow us to later
3745 * fail solely on the stream if needed.
3746 */
3747 b_del(&h2c->dbuf, h2c->dfl + hole);
3748 h2c->dfl = hole = 0;
3749 h2c->st0 = H2_CS_FRAME_H;
3750
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003751 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01003752 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003753
Willy Tarreau88d138e2019-01-02 19:38:14 +01003754 if (*flags & H2_SF_HEADERS_RCVD)
3755 goto trailers;
3756
3757 /* This is the first HEADERS frame so it's a headers block */
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003758 if (htx) {
3759 /* HTX mode */
3760 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003761 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003762 else
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003763 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003764 } else {
3765 /* HTTP/1 mode */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003766 outlen = h2_make_h1_request(list, b_tail(rxbuf), try, &msgf, body_len);
Willy Tarreau83195932019-01-03 10:26:23 +01003767 if (outlen > 0)
3768 b_add(rxbuf, outlen);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003769 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003770
3771 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01003772 /* too large headers? this is a stream error only */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003773 goto fail;
3774 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003775
Willy Tarreau174b06a2018-04-25 18:13:58 +02003776 if (msgf & H2_MSGF_BODY) {
3777 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003778 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003779 *flags |= H2_SF_DATA_CLEN;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003780 if (htx)
3781 htx->extra = *body_len;
3782 }
Olivier Houchard50d660c2018-12-08 00:18:31 +01003783 else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003784 *flags |= H2_SF_DATA_CHNK;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003785 }
3786
Willy Tarreau88d138e2019-01-02 19:38:14 +01003787 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01003788 /* indicate that a HEADERS frame was received for this stream, except
3789 * for 1xx responses. For 1xx responses, another HEADERS frame is
3790 * expected.
3791 */
3792 if (!(msgf & H2_MSGF_RSP_1XX))
3793 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003794
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02003795 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01003796 /* Mark the end of message, either using EOM in HTX or with the
3797 * trailing CRLF after the end of trailers. Note that DATA_CHNK
Willy Tarreau2135f912019-05-07 11:17:32 +02003798 * is not set during headers with END_STREAM. For HTX trailers,
3799 * we must not leave an HTX trailers block not followed by an
3800 * EOM block, the two must be atomic. Thus if we fail to emit
3801 * the EOM block we must remove the TLR block we've just added.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003802 */
3803 if (htx) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02003804 if (!htx_add_endof(htx, HTX_BLK_EOM))
Willy Tarreau88d138e2019-01-02 19:38:14 +01003805 goto fail;
3806 }
3807 else if (*flags & H2_SF_DATA_CHNK) {
3808 if (!b_putblk(rxbuf, "\r\n", 2))
3809 goto fail;
3810 }
3811 }
Willy Tarreau937f7602018-02-26 15:22:17 +01003812
Willy Tarreau86277d42019-01-02 15:36:11 +01003813 /* success */
3814 ret = 1;
3815
Willy Tarreau68dd9852017-07-03 14:44:26 +02003816 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01003817 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01003818 * move the remaining data over it.
3819 */
3820 if (hole) {
3821 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
3822 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
3823 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
3824 b_sub(&h2c->dbuf, hole);
3825 }
3826
Willy Tarreau97215ca2019-04-29 10:20:21 +02003827 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01003828 /* too large frames */
3829 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01003830 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01003831 }
3832
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003833 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003834 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02003835 free_trash_chunk(copy);
Willy Tarreau86277d42019-01-02 15:36:11 +01003836 return ret;
3837
Willy Tarreau68dd9852017-07-03 14:44:26 +02003838 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01003839 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02003840 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003841
3842 trailers:
3843 /* This is the last HEADERS frame hence a trailer */
3844
3845 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
3846 /* It's a trailer but it's missing ES flag */
3847 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3848 goto fail;
3849 }
3850
Christopher Faulet54b5e212019-06-04 10:08:28 +02003851 /* Trailers terminate a DATA sequence. In HTX we always handle them. In
3852 * legacy, when using chunks, we have to emit the 0 CRLF marker first
3853 * and then handle the trailers. For other modes, the trailers are
3854 * silently dropped.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003855 */
3856 if (htx) {
Willy Tarreau5255f282019-01-03 18:41:05 +01003857 if (h2_make_htx_trailers(list, htx) <= 0)
3858 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003859 }
3860 else if (*flags & H2_SF_DATA_CHNK) {
3861 /* Legacy mode with chunked encoding : we must finalize the
3862 * data block message emit the trailing CRLF */
3863 if (!b_putblk(rxbuf, "0\r\n", 3))
3864 goto fail;
Willy Tarreaue2b05cc2019-01-03 16:18:34 +01003865
3866 outlen = h2_make_h1_trailers(list, b_tail(rxbuf), try);
3867 if (outlen > 0)
3868 b_add(rxbuf, outlen);
3869 else
3870 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003871 }
3872
3873 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02003874}
3875
Willy Tarreau454f9052017-10-26 19:40:35 +02003876/* Transfer the payload of a DATA frame to the HTTP/1 side. When content-length
3877 * or a tunnel is used, the contents are copied as-is. When chunked encoding is
3878 * in use, a new chunk is emitted for each frame. This is supposed to fit
3879 * because the smallest chunk takes 1 byte for the size, 2 for CRLF, X for the
3880 * data, 2 for the extra CRLF, so that's 5+X, while on the H2 side the smallest
3881 * frame will be 9+X bytes based on the same buffer size. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003882 * parser state is automatically updated. Returns > 0 if it could completely
3883 * send the current frame, 0 if it couldn't complete, in which case
3884 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
3885 * DATA frame can return 0 as a valid result). Stream errors are reported in
3886 * h2s->errcode and connection errors in h2c->errcode. The caller must already
3887 * have checked the frame header and ensured that the frame was complete or the
3888 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02003889 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01003890static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003891{
3892 struct h2c *h2c = h2s->h2c;
3893 int block1, block2;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003894 unsigned int flen = 0;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003895 unsigned int chklen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003896 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003897 struct buffer *csbuf;
Willy Tarreau454f9052017-10-26 19:40:35 +02003898
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003899 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003900
Olivier Houchard638b7992018-08-16 15:41:52 +02003901 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003902 if (!csbuf) {
3903 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003904 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003905 }
3906
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003907try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003908 flen = h2c->dfl - h2c->dpl;
Olivier Houchard2f308832018-12-19 15:53:53 +01003909 if (h2c->proxy->options2 & PR_O2_USE_HTX)
3910 htx = htx_from_buf(csbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003911 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01003912 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003913
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003914 if (flen > b_data(&h2c->dbuf)) {
3915 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003916 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01003917 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003918 }
3919
Willy Tarreaua9b77962019-01-31 07:23:00 +01003920 if (htx) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003921 unsigned int sent;
3922
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003923 block1 = htx_free_data_space(htx);
3924 if (!block1) {
3925 h2c->flags |= H2_CF_DEM_SFULL;
3926 goto fail;
3927 }
3928 if (flen > block1)
3929 flen = block1;
3930
3931 /* here, flen is the max we can copy into the output buffer */
3932 block1 = b_contig_data(&h2c->dbuf, 0);
3933 if (flen > block1)
3934 flen = block1;
3935
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003936 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003937
Willy Tarreaub6563f42019-06-15 11:34:41 +02003938 b_del(&h2c->dbuf, sent);
3939 h2c->dfl -= sent;
3940 h2c->rcvd_c += sent;
3941 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau1915ca22019-01-24 11:49:37 +01003942
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003943 if (h2s->flags & H2_SF_DATA_CLEN) {
Willy Tarreaub6563f42019-06-15 11:34:41 +02003944 h2s->body_len -= sent;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003945 htx->extra = h2s->body_len;
3946 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003947
3948 if (sent < flen) {
3949 h2c->flags |= H2_CF_DEM_SFULL;
3950 goto fail;
3951 }
3952
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003953 goto try_again;
3954 }
Willy Tarreau455d5682019-05-24 19:42:18 +02003955 else if (unlikely(b_space_wraps(csbuf) &&
3956 flen + chklen <= b_room(csbuf) &&
3957 b_data(csbuf) <= MAX_DATA_REALIGN)) {
3958 /* it doesn't fit in a single block and the buffer is fragmented, if there are
3959 * not too many data in the buffer, let's defragment it and try
3960 * again.
Willy Tarreaud755ea62018-02-26 15:44:54 +01003961 */
3962 b_slow_realign(csbuf, trash.area, 0);
Willy Tarreau454f9052017-10-26 19:40:35 +02003963 }
3964
Willy Tarreaueba10f22018-04-25 20:44:22 +02003965 /* chunked-encoding requires more room */
3966 if (h2s->flags & H2_SF_DATA_CHNK) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01003967 chklen = MIN(flen, b_room(csbuf));
Willy Tarreaueba10f22018-04-25 20:44:22 +02003968 chklen = (chklen < 16) ? 1 : (chklen < 256) ? 2 :
3969 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
3970 (chklen < 1048576) ? 4 : 8;
3971 chklen += 4; // CRLF, CRLF
3972 }
3973
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003974 /* does it fit in output buffer or should we wait ? */
Willy Tarreaud755ea62018-02-26 15:44:54 +01003975 if (flen + chklen > b_room(csbuf)) {
3976 if (chklen >= b_room(csbuf)) {
3977 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003978 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003979 }
3980 flen = b_room(csbuf) - chklen;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003981 }
3982
3983 if (h2s->flags & H2_SF_DATA_CHNK) {
3984 /* emit the chunk size */
3985 unsigned int chksz = flen;
3986 char str[10];
3987 char *beg;
3988
3989 beg = str + sizeof(str);
3990 *--beg = '\n';
3991 *--beg = '\r';
3992 do {
3993 *--beg = hextab[chksz & 0xF];
3994 } while (chksz >>= 4);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003995 b_putblk(csbuf, beg, str + sizeof(str) - beg);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003996 }
3997
Willy Tarreau454f9052017-10-26 19:40:35 +02003998 /* Block1 is the length of the first block before the buffer wraps,
3999 * block2 is the optional second block to reach the end of the frame.
4000 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004001 block1 = b_contig_data(&h2c->dbuf, 0);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004002 if (block1 > flen)
4003 block1 = flen;
Willy Tarreau454f9052017-10-26 19:40:35 +02004004 block2 = flen - block1;
4005
4006 if (block1)
Willy Tarreaud755ea62018-02-26 15:44:54 +01004007 b_putblk(csbuf, b_head(&h2c->dbuf), block1);
Willy Tarreau454f9052017-10-26 19:40:35 +02004008
4009 if (block2)
Willy Tarreaud755ea62018-02-26 15:44:54 +01004010 b_putblk(csbuf, b_peek(&h2c->dbuf, block1), block2);
Willy Tarreau454f9052017-10-26 19:40:35 +02004011
Willy Tarreaueba10f22018-04-25 20:44:22 +02004012 if (h2s->flags & H2_SF_DATA_CHNK) {
4013 /* emit the CRLF */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004014 b_putblk(csbuf, "\r\n", 2);
Willy Tarreaueba10f22018-04-25 20:44:22 +02004015 }
4016
Willy Tarreau454f9052017-10-26 19:40:35 +02004017 /* now mark the input data as consumed (will be deleted from the buffer
4018 * by the caller when seeing FRAME_A after sending the window update).
4019 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004020 b_del(&h2c->dbuf, flen);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004021 h2c->dfl -= flen;
4022 h2c->rcvd_c += flen;
4023 h2c->rcvd_s += flen; // warning, this can also affect the closed streams!
4024
Willy Tarreau1915ca22019-01-24 11:49:37 +01004025 if (h2s->flags & H2_SF_DATA_CLEN)
4026 h2s->body_len -= flen;
4027
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004028 if (h2c->dfl > h2c->dpl) {
4029 /* more data available, transfer stalled on stream full */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004030 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004031 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004032 }
4033
Willy Tarreau4a28da12018-01-04 14:41:00 +01004034 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004035 /* here we're done with the frame, all the payload (except padding) was
4036 * transferred.
4037 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004038
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004039 if (h2c->dff & H2_F_DATA_END_STREAM) {
4040 if (htx) {
4041 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4042 h2c->flags |= H2_CF_DEM_SFULL;
4043 goto fail;
4044 }
Willy Tarreaud755ea62018-02-26 15:44:54 +01004045 }
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004046 else if (h2s->flags & H2_SF_DATA_CHNK) {
4047 /* emit the trailing 0 CRLF CRLF */
4048 if (b_room(csbuf) < 5) {
4049 h2c->flags |= H2_CF_DEM_SFULL;
4050 goto fail;
4051 }
4052 chklen += 5;
4053 b_putblk(csbuf, "0\r\n\r\n", 5);
4054 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004055 }
4056
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004057 h2c->rcvd_c += h2c->dpl;
4058 h2c->rcvd_s += h2c->dpl;
4059 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004060 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004061 if (htx)
4062 htx_to_buf(htx, csbuf);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004063 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004064 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004065 if (htx)
4066 htx_to_buf(htx, csbuf);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004067 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004068}
4069
Willy Tarreau5dd17352018-06-14 13:33:30 +02004070/* Try to send a HEADERS frame matching HTTP/1 response present at offset <ofs>
4071 * and for <max> bytes in buffer <buf> for the H2 stream <h2s>. Returns the
4072 * number of bytes sent. The caller must check the stream's status to detect
4073 * any error which might have happened subsequently to a successful send.
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004074 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004075static 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 +02004076{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004077 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004078 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004079 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004080 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004081 struct buffer *mbuf;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004082 union h1_sl sl;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004083 int es_now = 0;
4084 int ret = 0;
4085 int hdr;
4086
4087 if (h2c_mux_busy(h2c, h2s)) {
4088 h2s->flags |= H2_SF_BLK_MBUSY;
4089 return 0;
4090 }
4091
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004092 /* First, try to parse the H1 response and index it into <list>.
4093 * NOTE! Since it comes from haproxy, we *know* that a response header
4094 * block does not wrap and we can safely read it this way without
4095 * having to realign the buffer.
4096 */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004097 ret = h1_headers_to_hdr_list(b_peek(buf, ofs), b_peek(buf, ofs) + max,
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004098 list, sizeof(list)/sizeof(list[0]), h1m, &sl);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004099 if (ret <= 0) {
Willy Tarreauf13ef962017-11-02 15:14:19 +01004100 /* incomplete or invalid response, this is abnormal coming from
4101 * haproxy and may only result in a bad errorfile or bad Lua code
4102 * so that won't be fixed, raise an error now.
4103 *
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004104 * FIXME: we should instead add the ability to only return a
4105 * 502 bad gateway. But in theory this is not supposed to
4106 * happen.
4107 */
4108 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4109 ret = 0;
4110 goto end;
4111 }
4112
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004113 h2s->status = sl.st.status;
Willy Tarreaudb72da02018-09-13 11:52:20 +02004114
4115 /* certain statuses have no body or an empty one, regardless of
4116 * what the headers say.
4117 */
4118 if (sl.st.status >= 100 && sl.st.status < 200) {
4119 h1m->flags &= ~(H1_MF_CLEN | H1_MF_CHNK);
4120 h1m->curr_len = h1m->body_len = 0;
4121 }
4122 else if (sl.st.status == 204 || sl.st.status == 304) {
4123 /* no contents, claim c-len is present and set to zero */
4124 h1m->flags &= ~H1_MF_CHNK;
4125 h1m->flags |= H1_MF_CLEN;
4126 h1m->curr_len = h1m->body_len = 0;
4127 }
4128
Willy Tarreaubcc45952019-05-26 10:05:50 +02004129 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004130 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004131 if (!h2_get_buf(h2c, mbuf)) {
4132 h2c->flags |= H2_CF_MUX_MALLOC;
4133 h2s->flags |= H2_SF_BLK_MROOM;
4134 return 0;
4135 }
4136
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004137 chunk_reset(&outbuf);
4138
4139 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004140 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4141 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004142 break;
4143 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004144 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004145 }
4146
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004147 if (outbuf.size < 9)
4148 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004149
4150 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004151 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4152 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4153 outbuf.data = 9;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004154
4155 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004156 if (unlikely(list[0].v.len != 3)) {
Willy Tarreaua87f2022017-11-09 11:23:00 +01004157 /* this is an unparsable response */
4158 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4159 ret = 0;
4160 goto end;
4161 }
Willy Tarreauaafdf582018-12-10 18:06:40 +01004162
4163 if (!hpack_encode_str_status(&outbuf, h2s->status, list[0].v)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004164 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004165 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004166 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004167 }
4168
4169 /* encode all headers, stop at empty name */
4170 for (hdr = 1; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaua76e4c22017-11-24 08:17:28 +01004171 /* these ones do not exist in H2 and must be dropped. */
4172 if (isteq(list[hdr].n, ist("connection")) ||
4173 isteq(list[hdr].n, ist("proxy-connection")) ||
4174 isteq(list[hdr].n, ist("keep-alive")) ||
4175 isteq(list[hdr].n, ist("upgrade")) ||
4176 isteq(list[hdr].n, ist("transfer-encoding")))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004177 continue;
4178
4179 if (isteq(list[hdr].n, ist("")))
4180 break; // end
4181
4182 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4183 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004184 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004185 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004186 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004187 }
4188 }
4189
4190 /* we may need to add END_STREAM */
Willy Tarreau927b88b2019-03-04 08:03:25 +01004191 if (((h1m->flags & H1_MF_CLEN) && !h1m->body_len) || !h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004192 es_now = 1;
4193
4194 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004195 h2_set_frame_size(outbuf.area, outbuf.data - 9);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004196
4197 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004198 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004199
4200 /* consume incoming H1 response */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004201 max -= ret;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004202
4203 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004204 b_add(mbuf, outbuf.data);
Willy Tarreau67434202017-11-06 20:20:51 +01004205 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004206
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004207 if (es_now) {
Willy Tarreau35a62702018-02-27 15:37:25 +01004208 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004209 ret += max;
Willy Tarreau35a62702018-02-27 15:37:25 +01004210
Willy Tarreau801250e2018-09-11 11:45:04 +02004211 h1m->state = H1_MSG_DONE;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004212 h2s->flags |= H2_SF_ES_SENT;
4213 if (h2s->st == H2_SS_OPEN)
4214 h2s->st = H2_SS_HLOC;
4215 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004216 h2s_close(h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004217 }
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004218 else if (h2s->status >= 100 && h2s->status < 200) {
Willy Tarreau87285592017-11-29 15:41:32 +01004219 /* we'll let the caller check if it has more headers to send */
Willy Tarreau7f437ff2018-09-11 13:51:19 +02004220 h1m_init_res(h1m);
Willy Tarreau9b8cd1f2018-09-12 09:24:38 +02004221 h1m->err_pos = -1; // don't care about errors on the response path
Willy Tarreaueb528db2018-09-12 09:54:00 +02004222 h2s->h1m.flags |= H1_MF_TOLOWER;
Willy Tarreau87285592017-11-29 15:41:32 +01004223 goto end;
Willy Tarreauc199faf2017-10-31 08:35:27 +01004224 }
Willy Tarreau001823c2018-09-12 17:25:32 +02004225
4226 /* now the h1m state is either H1_MSG_CHUNK_SIZE or H1_MSG_DATA */
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004227
4228 end:
Dirkjan Bussinkc26c72d2018-09-14 14:30:25 +02004229 //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 +02004230 return ret;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004231 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004232 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4233 goto retry;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004234 h1m_init_res(h1m);
4235 h1m->err_pos = -1; // don't care about errors on the response path
4236 h2c->flags |= H2_CF_MUX_MFULL;
4237 h2s->flags |= H2_SF_BLK_MROOM;
4238 ret = 0;
4239 goto end;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004240}
4241
Willy Tarreau5dd17352018-06-14 13:33:30 +02004242/* Try to send a DATA frame matching HTTP/1 response present at offset <ofs>
4243 * for up to <max> bytes in response buffer <buf>, for stream <h2s>. Returns
4244 * the number of bytes sent. The caller must check the stream's status to
4245 * detect any error which might have happened subsequently to a successful send.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004246 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004247static 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 +02004248{
4249 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004250 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004251 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004252 struct buffer *mbuf;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004253 int ret = 0;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02004254 size_t total = 0;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004255 int es_now = 0;
4256 int size = 0;
Willy Tarreau206ba832018-06-14 15:27:31 +02004257 const char *blk1, *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004258 size_t len1, len2;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004259
4260 if (h2c_mux_busy(h2c, h2s)) {
4261 h2s->flags |= H2_SF_BLK_MBUSY;
4262 goto end;
4263 }
4264
Willy Tarreaubcc45952019-05-26 10:05:50 +02004265 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004266 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004267 if (!h2_get_buf(h2c, mbuf)) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004268 h2c->flags |= H2_CF_MUX_MALLOC;
4269 h2s->flags |= H2_SF_BLK_MROOM;
4270 goto end;
4271 }
4272
4273 new_frame:
Willy Tarreau5dd17352018-06-14 13:33:30 +02004274 if (!max)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004275 goto end;
4276
4277 chunk_reset(&outbuf);
4278
4279 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004280 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4281 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004282 break;
4283 realign_again:
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004284 /* If there are pending data in the output buffer, and we have
4285 * less than 1/4 of the mbuf's size and everything fits, we'll
4286 * still perform a copy anyway. Otherwise we'll pretend the mbuf
4287 * is full and wait, to save some slow realign calls.
4288 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004289 if ((max + 9 > b_room(mbuf) || max >= b_size(mbuf) / 4)) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004290 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4291 goto retry;
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004292 h2c->flags |= H2_CF_MUX_MFULL;
4293 h2s->flags |= H2_SF_BLK_MROOM;
4294 goto end;
4295 }
4296
Willy Tarreaubcc45952019-05-26 10:05:50 +02004297 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004298 }
4299
4300 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004301 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4302 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004303 h2c->flags |= H2_CF_MUX_MFULL;
4304 h2s->flags |= H2_SF_BLK_MROOM;
4305 goto end;
4306 }
4307
4308 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004309 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4310 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4311 outbuf.data = 9;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004312
4313 switch (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
4314 case 0: /* no content length, read till SHUTW */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004315 size = max;
Willy Tarreau13e4e942017-12-14 10:55:21 +01004316 h1m->curr_len = size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004317 break;
4318 case H1_MF_CLEN: /* content-length: read only h2m->body_len */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004319 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004320 if ((long long)size > h1m->curr_len)
4321 size = h1m->curr_len;
4322 break;
4323 default: /* te:chunked : parse chunks */
Willy Tarreau801250e2018-09-11 11:45:04 +02004324 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Willy Tarreauc0973c62018-06-14 15:53:21 +02004325 ret = h1_skip_chunk_crlf(buf, ofs, ofs + max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004326 if (!ret)
4327 goto end;
4328
4329 if (ret < 0) {
4330 /* FIXME: bad contents. how to proceed here when we're in H2 ? */
Willy Tarreau25173a72018-09-12 09:05:16 +02004331 h1m->err_pos = ofs + max + ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004332 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4333 goto end;
4334 }
Willy Tarreau5dd17352018-06-14 13:33:30 +02004335 max -= ret;
4336 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004337 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004338 h1m->state = H1_MSG_CHUNK_SIZE;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004339 }
4340
Willy Tarreau801250e2018-09-11 11:45:04 +02004341 if (h1m->state == H1_MSG_CHUNK_SIZE) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004342 unsigned int chunk;
Willy Tarreau84d6b7a2018-06-14 15:59:05 +02004343 ret = h1_parse_chunk_size(buf, ofs, ofs + max, &chunk);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004344 if (!ret)
4345 goto end;
4346
4347 if (ret < 0) {
4348 /* FIXME: bad contents. how to proceed here when we're in H2 ? */
Willy Tarreau25173a72018-09-12 09:05:16 +02004349 h1m->err_pos = ofs + max + ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004350 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4351 goto end;
4352 }
4353
4354 size = chunk;
4355 h1m->curr_len = chunk;
4356 h1m->body_len += chunk;
Willy Tarreau5dd17352018-06-14 13:33:30 +02004357 max -= ret;
4358 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004359 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004360 h1m->state = size ? H1_MSG_DATA : H1_MSG_TRAILERS;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004361 if (!size)
4362 goto send_empty;
4363 }
4364
4365 /* in MSG_DATA state, continue below */
4366 size = h1m->curr_len;
4367 break;
4368 }
4369
4370 /* we have in <size> the exact number of bytes we need to copy from
4371 * the H1 buffer. We need to check this against the connection's and
4372 * the stream's send windows, and to ensure that this fits in the max
4373 * frame size and in the buffer's available space minus 9 bytes (for
4374 * the frame header). The connection's flow control is applied last so
4375 * that we can use a separate list of streams which are immediately
4376 * unblocked on window opening. Note: we don't implement padding.
4377 */
4378
Willy Tarreau5dd17352018-06-14 13:33:30 +02004379 if (size > max)
4380 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004381
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004382 if (size > h2s_mws(h2s))
4383 size = h2s_mws(h2s);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004384
4385 if (size <= 0) {
4386 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004387 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02004388 LIST_DEL_INIT(&h2s->list);
Willy Tarreau55dc0842019-10-22 10:04:39 +02004389 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004390 goto end;
4391 }
4392
4393 if (h2c->mfs && size > h2c->mfs)
4394 size = h2c->mfs;
4395
4396 if (size + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02004397 /* It doesn't fit at once. If it at least fits once split and
4398 * the amount of data to move is low, let's defragment the
4399 * buffer now.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004400 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004401 if (b_space_wraps(mbuf) &&
4402 (size + 9 <= b_room(mbuf)) &&
4403 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004404 goto realign_again;
4405 size = outbuf.size - 9;
4406 }
4407
4408 if (size <= 0) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004409 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4410 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004411 h2c->flags |= H2_CF_MUX_MFULL;
4412 h2s->flags |= H2_SF_BLK_MROOM;
4413 goto end;
4414 }
4415
4416 if (size > h2c->mws)
4417 size = h2c->mws;
4418
4419 if (size <= 0) {
4420 h2s->flags |= H2_SF_BLK_MFCTL;
4421 goto end;
4422 }
4423
4424 /* copy whatever we can */
4425 blk1 = blk2 = NULL; // silence a maybe-uninitialized warning
Willy Tarreau5dd17352018-06-14 13:33:30 +02004426 ret = b_getblk_nc(buf, &blk1, &len1, &blk2, &len2, ofs, max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004427 if (ret == 1)
4428 len2 = 0;
4429
4430 if (!ret || len1 + len2 < size) {
4431 /* FIXME: must normally never happen */
4432 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4433 goto end;
4434 }
4435
4436 /* limit len1/len2 to size */
4437 if (len1 + len2 > size) {
4438 int sub = len1 + len2 - size;
4439
4440 if (len2 > sub)
4441 len2 -= sub;
4442 else {
4443 sub -= len2;
4444 len2 = 0;
4445 len1 -= sub;
4446 }
4447 }
4448
4449 /* now let's copy this this into the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004450 memcpy(outbuf.area + 9, blk1, len1);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004451 if (len2)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004452 memcpy(outbuf.area + 9 + len1, blk2, len2);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004453
4454 send_empty:
4455 /* we may need to add END_STREAM */
4456 /* FIXME: we should also detect shutdown(w) below, but how ? Maybe we
4457 * could rely on the MSG_MORE flag as a hint for this ?
Willy Tarreau00610962018-07-19 10:58:28 +02004458 *
4459 * FIXME: what we do here is not correct because we send end_stream
4460 * before knowing if we'll have to send a HEADERS frame for the
4461 * trailers. More importantly we're not consuming the trailing CRLF
4462 * after the end of trailers, so it will be left to the caller to
4463 * eat it. The right way to do it would be to measure trailers here
4464 * and to send ES only if there are no trailers.
4465 *
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004466 */
4467 if (((h1m->flags & H1_MF_CLEN) && !(h1m->curr_len - size)) ||
Willy Tarreau801250e2018-09-11 11:45:04 +02004468 !h1m->curr_len || h1m->state >= H1_MSG_DONE)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004469 es_now = 1;
4470
4471 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004472 h2_set_frame_size(outbuf.area, size);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004473
4474 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004475 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004476
4477 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004478 b_add(mbuf, size + 9);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004479
4480 /* consume incoming H1 response */
4481 if (size > 0) {
Willy Tarreau5dd17352018-06-14 13:33:30 +02004482 max -= size;
4483 ofs += size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004484 total += size;
4485 h1m->curr_len -= size;
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004486 h2s->sws -= size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004487 h2c->mws -= size;
4488
4489 if (size && !h1m->curr_len && (h1m->flags & H1_MF_CHNK)) {
Willy Tarreau801250e2018-09-11 11:45:04 +02004490 h1m->state = H1_MSG_CHUNK_CRLF;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004491 goto new_frame;
4492 }
4493 }
4494
4495 if (es_now) {
4496 if (h2s->st == H2_SS_OPEN)
4497 h2s->st = H2_SS_HLOC;
4498 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004499 h2s_close(h2s);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004500
Willy Tarreau35a62702018-02-27 15:37:25 +01004501 if (!(h1m->flags & H1_MF_CHNK)) {
4502 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004503 total += max;
4504 ofs += max;
4505 max = 0;
Willy Tarreau35a62702018-02-27 15:37:25 +01004506
Willy Tarreau801250e2018-09-11 11:45:04 +02004507 h1m->state = H1_MSG_DONE;
Willy Tarreau35a62702018-02-27 15:37:25 +01004508 }
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004509
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004510 h2s->flags |= H2_SF_ES_SENT;
4511 }
4512
4513 end:
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004514 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 +02004515 return total;
4516}
4517
Willy Tarreau115e83b2018-12-01 19:17:53 +01004518/* Try to send a HEADERS frame matching HTX response present in HTX message
4519 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4520 * must check the stream's status to detect any error which might have happened
4521 * subsequently to a successful send. The htx blocks are automatically removed
4522 * from the message. The htx message is assumed to be valid since produced from
4523 * the internal code, hence it contains a start line, an optional series of
4524 * header blocks and an end of header, otherwise an invalid frame could be
4525 * emitted and the resulting htx message could be left in an inconsistent state.
4526 */
4527static size_t h2s_htx_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
4528{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004529 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004530 struct h2c *h2c = h2s->h2c;
4531 struct htx_blk *blk;
4532 struct htx_blk *blk_end;
4533 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004534 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004535 struct htx_sl *sl;
4536 enum htx_blk_type type;
4537 int es_now = 0;
4538 int ret = 0;
4539 int hdr;
4540 int idx;
4541
4542 if (h2c_mux_busy(h2c, h2s)) {
4543 h2s->flags |= H2_SF_BLK_MBUSY;
4544 return 0;
4545 }
4546
Willy Tarreau115e83b2018-12-01 19:17:53 +01004547 /* determine the first block which must not be deleted, blk_end may
4548 * be NULL if all blocks have to be deleted.
4549 */
4550 idx = htx_get_head(htx);
4551 blk_end = NULL;
4552 while (idx != -1) {
4553 type = htx_get_blk_type(htx_get_blk(htx, idx));
4554 idx = htx_get_next(htx, idx);
4555 if (type == HTX_BLK_EOH) {
4556 if (idx != -1)
4557 blk_end = htx_get_blk(htx, idx);
4558 break;
4559 }
4560 }
4561
4562 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004563 blk = htx_get_head_blk(htx);
Christopher Faulet43a686d2019-11-18 15:50:25 +01004564 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004565 ALREADY_CHECKED(blk);
4566 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004567 h2s->status = sl->info.res.status;
Willy Tarreauaafdf582018-12-10 18:06:40 +01004568 if (h2s->status < 100 || h2s->status > 999)
4569 goto fail;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004570
4571 /* and the rest of the headers, that we dump starting at header 0 */
4572 hdr = 0;
4573
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004574 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004575 while ((idx = htx_get_next(htx, idx)) != -1) {
4576 blk = htx_get_blk(htx, idx);
4577 type = htx_get_blk_type(blk);
4578
4579 if (type == HTX_BLK_UNUSED)
4580 continue;
4581
4582 if (type != HTX_BLK_HDR)
4583 break;
4584
4585 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4586 goto fail;
4587
4588 list[hdr].n = htx_get_blk_name(htx, blk);
4589 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004590 hdr++;
4591 }
4592
4593 /* marker for end of headers */
4594 list[hdr].n = ist("");
4595
4596 if (h2s->status == 204 || h2s->status == 304) {
4597 /* no contents, claim c-len is present and set to zero */
4598 es_now = 1;
4599 }
4600
Willy Tarreau9c218e72019-05-26 10:08:28 +02004601 mbuf = br_tail(h2c->mbuf);
4602 retry:
4603 if (!h2_get_buf(h2c, mbuf)) {
4604 h2c->flags |= H2_CF_MUX_MALLOC;
4605 h2s->flags |= H2_SF_BLK_MROOM;
4606 return 0;
4607 }
4608
Willy Tarreau115e83b2018-12-01 19:17:53 +01004609 chunk_reset(&outbuf);
4610
4611 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004612 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4613 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004614 break;
4615 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004616 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004617 }
4618
4619 if (outbuf.size < 9)
4620 goto full;
4621
4622 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4623 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4624 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4625 outbuf.data = 9;
4626
4627 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004628 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004629 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004630 goto realign_again;
4631 goto full;
4632 }
4633
4634 /* encode all headers, stop at empty name */
4635 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4636 /* these ones do not exist in H2 and must be dropped. */
4637 if (isteq(list[hdr].n, ist("connection")) ||
4638 isteq(list[hdr].n, ist("proxy-connection")) ||
4639 isteq(list[hdr].n, ist("keep-alive")) ||
4640 isteq(list[hdr].n, ist("upgrade")) ||
4641 isteq(list[hdr].n, ist("transfer-encoding")))
4642 continue;
4643
4644 if (isteq(list[hdr].n, ist("")))
4645 break; // end
4646
4647 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4648 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004649 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004650 goto realign_again;
4651 goto full;
4652 }
4653 }
4654
Christopher Faulet0b465482019-02-19 15:14:23 +01004655 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004656 * FIXME: we should also set it when we know for sure that the
4657 * content-length is zero as well as on 204/304
4658 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004659 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4660 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004661 es_now = 1;
4662
Willy Tarreau927b88b2019-03-04 08:03:25 +01004663 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004664 es_now = 1;
4665
4666 /* update the frame's size */
4667 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4668
4669 if (es_now)
4670 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4671
4672 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004673 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004674
4675 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4676 * 1xx responses, another HEADERS frame is expected.
4677 */
4678 if (h2s->status >= 200 || h2s->status == 101)
4679 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004680
Willy Tarreau115e83b2018-12-01 19:17:53 +01004681 if (es_now) {
4682 h2s->flags |= H2_SF_ES_SENT;
4683 if (h2s->st == H2_SS_OPEN)
4684 h2s->st = H2_SS_HLOC;
4685 else
4686 h2s_close(h2s);
4687 }
4688
4689 /* OK we could properly deliver the response */
4690
4691 /* remove all header blocks including the EOH and compute the
4692 * corresponding size.
4693 *
4694 * FIXME: We should remove everything when es_now is set.
4695 */
4696 ret = 0;
4697 idx = htx_get_head(htx);
4698 blk = htx_get_blk(htx, idx);
4699 while (blk != blk_end) {
4700 ret += htx_get_blksz(blk);
4701 blk = htx_remove_blk(htx, blk);
4702 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004703
Christopher Faulet316934d2019-05-15 14:22:48 +02004704 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4705 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004706 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004707 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004708 end:
4709 return ret;
4710 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004711 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4712 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004713 h2c->flags |= H2_CF_MUX_MFULL;
4714 h2s->flags |= H2_SF_BLK_MROOM;
4715 ret = 0;
4716 goto end;
4717 fail:
4718 /* unparsable HTX messages, too large ones to be produced in the local
4719 * list etc go here (unrecoverable errors).
4720 */
4721 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4722 ret = 0;
4723 goto end;
4724}
4725
Willy Tarreau80739692018-10-05 11:35:57 +02004726/* Try to send a HEADERS frame matching HTX request present in HTX message
4727 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4728 * must check the stream's status to detect any error which might have happened
4729 * subsequently to a successful send. The htx blocks are automatically removed
4730 * from the message. The htx message is assumed to be valid since produced from
4731 * the internal code, hence it contains a start line, an optional series of
4732 * header blocks and an end of header, otherwise an invalid frame could be
4733 * emitted and the resulting htx message could be left in an inconsistent state.
4734 */
4735static size_t h2s_htx_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
4736{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004737 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004738 struct h2c *h2c = h2s->h2c;
4739 struct htx_blk *blk;
4740 struct htx_blk *blk_end;
4741 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004742 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004743 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004744 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004745 enum htx_blk_type type;
4746 int es_now = 0;
4747 int ret = 0;
4748 int hdr;
4749 int idx;
4750
4751 if (h2c_mux_busy(h2c, h2s)) {
4752 h2s->flags |= H2_SF_BLK_MBUSY;
4753 return 0;
4754 }
4755
Willy Tarreau80739692018-10-05 11:35:57 +02004756 /* determine the first block which must not be deleted, blk_end may
4757 * be NULL if all blocks have to be deleted.
4758 */
4759 idx = htx_get_head(htx);
4760 blk_end = NULL;
4761 while (idx != -1) {
4762 type = htx_get_blk_type(htx_get_blk(htx, idx));
4763 idx = htx_get_next(htx, idx);
4764 if (type == HTX_BLK_EOH) {
4765 if (idx != -1)
4766 blk_end = htx_get_blk(htx, idx);
4767 break;
4768 }
4769 }
4770
4771 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004772 blk = htx_get_head_blk(htx);
Christopher Faulet43a686d2019-11-18 15:50:25 +01004773 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004774 ALREADY_CHECKED(blk);
4775 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004776 meth = htx_sl_req_meth(sl);
4777 path = htx_sl_req_uri(sl);
4778
4779 /* and the rest of the headers, that we dump starting at header 0 */
4780 hdr = 0;
4781
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004782 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004783 while ((idx = htx_get_next(htx, idx)) != -1) {
4784 blk = htx_get_blk(htx, idx);
4785 type = htx_get_blk_type(blk);
4786
4787 if (type == HTX_BLK_UNUSED)
4788 continue;
4789
4790 if (type != HTX_BLK_HDR)
4791 break;
4792
4793 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4794 goto fail;
4795
4796 list[hdr].n = htx_get_blk_name(htx, blk);
4797 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004798 hdr++;
4799 }
4800
4801 /* marker for end of headers */
4802 list[hdr].n = ist("");
4803
Willy Tarreau9c218e72019-05-26 10:08:28 +02004804 mbuf = br_tail(h2c->mbuf);
4805 retry:
4806 if (!h2_get_buf(h2c, mbuf)) {
4807 h2c->flags |= H2_CF_MUX_MALLOC;
4808 h2s->flags |= H2_SF_BLK_MROOM;
4809 return 0;
4810 }
4811
Willy Tarreau80739692018-10-05 11:35:57 +02004812 chunk_reset(&outbuf);
4813
4814 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004815 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4816 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004817 break;
4818 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004819 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004820 }
4821
4822 if (outbuf.size < 9)
4823 goto full;
4824
4825 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4826 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4827 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4828 outbuf.data = 9;
4829
4830 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004831 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004832 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004833 goto realign_again;
4834 goto full;
4835 }
4836
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004837 /* RFC7540 #8.3: the CONNECT method must have :
4838 * - :authority set to the URI part (host:port)
4839 * - :method set to CONNECT
4840 * - :scheme and :path omitted
4841 */
4842 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4843 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004844 struct ist scheme;
4845
4846 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4847 scheme = ist("http");
4848 else
4849 scheme = ist("https");
4850
4851 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004852 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004853 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004854 goto realign_again;
4855 goto full;
4856 }
Willy Tarreau80739692018-10-05 11:35:57 +02004857
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004858 /* encode the path, which necessarily is the second one */
4859 if (!hpack_encode_path(&outbuf, path)) {
4860 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004861 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004862 goto realign_again;
4863 goto full;
4864 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004865
4866 /* look for the Host header and place it in :authority */
4867 auth = ist2(NULL, 0);
4868 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4869 if (isteq(list[hdr].n, ist("")))
4870 break; // end
4871
4872 if (isteq(list[hdr].n, ist("host"))) {
4873 auth = list[hdr].v;
4874 break;
4875 }
4876 }
4877 }
4878 else {
4879 /* for CONNECT, :authority is taken from the path */
4880 auth = path;
4881 }
4882
4883 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4884 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004885 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004886 goto realign_again;
4887 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004888 }
4889
4890 /* encode all headers, stop at empty name */
4891 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004892 struct ist n = list[hdr].n;
4893 struct ist v = list[hdr].v;
4894
Willy Tarreau80739692018-10-05 11:35:57 +02004895 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004896 if (isteq(n, ist("connection")) ||
4897 isteq(n, ist("host")) ||
4898 isteq(n, ist("proxy-connection")) ||
4899 isteq(n, ist("keep-alive")) ||
4900 isteq(n, ist("upgrade")) ||
4901 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02004902 continue;
4903
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004904 if (isteq(n, ist("te"))) {
4905 /* "te" may only be sent with "trailers" if this value
4906 * is present, otherwise it must be deleted.
4907 */
4908 v = istist(v, ist("trailers"));
4909 if (!v.ptr || (v.len > 8 && v.ptr[8] != ','))
4910 continue;
4911 v = ist("trailers");
4912 }
4913
4914 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02004915 break; // end
4916
Willy Tarreau4928b6b2020-01-24 09:07:53 +01004917 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02004918 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004919 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004920 goto realign_again;
4921 goto full;
4922 }
4923 }
4924
4925 /* we may need to add END_STREAM if we have no body :
4926 * - request already closed, or :
4927 * - no transfer-encoding, and :
4928 * - no content-length or content-length:0
4929 * Fixme: this doesn't take into account CONNECT requests.
4930 */
4931 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4932 es_now = 1;
4933
4934 if (sl->flags & HTX_SL_F_BODYLESS)
4935 es_now = 1;
4936
Willy Tarreau927b88b2019-03-04 08:03:25 +01004937 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004938 es_now = 1;
4939
4940 /* update the frame's size */
4941 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4942
4943 if (es_now)
4944 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4945
4946 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004947 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004948 h2s->flags |= H2_SF_HEADERS_SENT;
4949 h2s->st = H2_SS_OPEN;
4950
Willy Tarreau80739692018-10-05 11:35:57 +02004951 if (es_now) {
4952 // trim any possibly pending data (eg: inconsistent content-length)
4953 h2s->flags |= H2_SF_ES_SENT;
4954 h2s->st = H2_SS_HLOC;
4955 }
4956
4957 /* remove all header blocks including the EOH and compute the
4958 * corresponding size.
4959 *
4960 * FIXME: We should remove everything when es_now is set.
4961 */
4962 ret = 0;
4963 idx = htx_get_head(htx);
4964 blk = htx_get_blk(htx, idx);
4965 while (blk != blk_end) {
4966 ret += htx_get_blksz(blk);
4967 blk = htx_remove_blk(htx, blk);
4968 }
4969
Christopher Faulet316934d2019-05-15 14:22:48 +02004970 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4971 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02004972 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004973 }
Willy Tarreau80739692018-10-05 11:35:57 +02004974
4975 end:
4976 return ret;
4977 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004978 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4979 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02004980 h2c->flags |= H2_CF_MUX_MFULL;
4981 h2s->flags |= H2_SF_BLK_MROOM;
4982 ret = 0;
4983 goto end;
4984 fail:
4985 /* unparsable HTX messages, too large ones to be produced in the local
4986 * list etc go here (unrecoverable errors).
4987 */
4988 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4989 ret = 0;
4990 goto end;
4991}
4992
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004993/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01004994 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
4995 * caller must check the stream's status to detect any error which might have
4996 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02004997 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004998 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01004999static size_t h2s_htx_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005000{
5001 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005002 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005003 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005004 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005005 size_t total = 0;
5006 int es_now = 0;
5007 int bsize; /* htx block size */
5008 int fsize; /* h2 frame size */
5009 struct htx_blk *blk;
5010 enum htx_blk_type type;
5011 int idx;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005012 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005013
5014 if (h2c_mux_busy(h2c, h2s)) {
5015 h2s->flags |= H2_SF_BLK_MBUSY;
5016 goto end;
5017 }
5018
Willy Tarreau98de12a2018-12-12 07:03:00 +01005019 htx = htx_from_buf(buf);
5020
Christopher Faulet54b5e212019-06-04 10:08:28 +02005021 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5022 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5023 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005024 */
5025
5026 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005027 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005028 goto end;
5029
5030 idx = htx_get_head(htx);
5031 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005032 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005033 bsize = htx_get_blksz(blk);
5034 fsize = bsize;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005035 trunc_out = 0;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005036
Christopher Faulet54b5e212019-06-04 10:08:28 +02005037 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005038 if (h2s->flags & H2_SF_ES_SENT) {
5039 /* ES already sent */
5040 htx_remove_blk(htx, blk);
5041 total++; // EOM counts as one byte
5042 count--;
5043 goto end;
5044 }
5045 }
5046 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005047 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005048
Willy Tarreau9c218e72019-05-26 10:08:28 +02005049 mbuf = br_tail(h2c->mbuf);
5050 retry:
5051 if (!h2_get_buf(h2c, mbuf)) {
5052 h2c->flags |= H2_CF_MUX_MALLOC;
5053 h2s->flags |= H2_SF_BLK_MROOM;
5054 goto end;
5055 }
5056
Willy Tarreau98de12a2018-12-12 07:03:00 +01005057 /* Perform some optimizations to reduce the number of buffer copies.
5058 * First, if the mux's buffer is empty and the htx area contains
5059 * exactly one data block of the same size as the requested count, and
5060 * this count fits within the frame size, the stream's window size, and
5061 * the connection's window size, then it's possible to simply swap the
5062 * caller's buffer with the mux's output buffer and adjust offsets and
5063 * length to match the entire DATA HTX block in the middle. In this
5064 * case we perform a true zero-copy operation from end-to-end. This is
5065 * the situation that happens all the time with large files. Second, if
5066 * this is not possible, but the mux's output buffer is empty, we still
5067 * have an opportunity to avoid the copy to the intermediary buffer, by
5068 * making the intermediary buffer's area point to the output buffer's
5069 * area. In this case we want to skip the HTX header to make sure that
5070 * copies remain aligned and that this operation remains possible all
5071 * the time. This goes for headers, data blocks and any data extracted
5072 * from the HTX blocks.
5073 */
5074 if (unlikely(fsize == count &&
5075 htx->used == 1 && type == HTX_BLK_DATA &&
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005076 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005077 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005078
Willy Tarreaubcc45952019-05-26 10:05:50 +02005079 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005080 /* Too bad there are data left there. We're willing to memcpy/memmove
5081 * up to 1/4 of the buffer, which means that it's OK to copy a large
5082 * frame into a buffer containing few data if it needs to be realigned,
5083 * and that it's also OK to copy few data without realigning. Otherwise
5084 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005085 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005086 if (fsize + 9 <= b_room(mbuf) &&
5087 (b_data(mbuf) <= b_size(mbuf) / 4 ||
5088 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf))))
Willy Tarreau98de12a2018-12-12 07:03:00 +01005089 goto copy;
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005090
Willy Tarreau9c218e72019-05-26 10:08:28 +02005091 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5092 goto retry;
5093
Willy Tarreau98de12a2018-12-12 07:03:00 +01005094 h2c->flags |= H2_CF_MUX_MFULL;
5095 h2s->flags |= H2_SF_BLK_MROOM;
5096 goto end;
5097 }
5098
5099 /* map an H2 frame to the HTX block so that we can put the
5100 * frame header there.
5101 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005102 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5103 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005104
5105 /* prepend an H2 DATA frame header just before the DATA block */
5106 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5107 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5108 h2_set_frame_size(outbuf.area, fsize);
5109
5110 /* update windows */
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005111 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005112 h2c->mws -= fsize;
5113
5114 /* and exchange with our old area */
5115 buf->area = old_area;
5116 buf->data = buf->head = 0;
5117 total += fsize;
5118 goto end;
5119 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005120
Willy Tarreau98de12a2018-12-12 07:03:00 +01005121 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005122 /* for DATA and EOM we'll have to emit a frame, even if empty */
5123
5124 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005125 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5126 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005127 break;
5128 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005129 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005130 }
5131
5132 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005133 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5134 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005135 h2c->flags |= H2_CF_MUX_MFULL;
5136 h2s->flags |= H2_SF_BLK_MROOM;
5137 goto end;
5138 }
5139
5140 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5141 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5142 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5143 outbuf.data = 9;
5144
5145 /* we have in <fsize> the exact number of bytes we need to copy from
5146 * the HTX buffer. We need to check this against the connection's and
5147 * the stream's send windows, and to ensure that this fits in the max
5148 * frame size and in the buffer's available space minus 9 bytes (for
5149 * the frame header). The connection's flow control is applied last so
5150 * that we can use a separate list of streams which are immediately
5151 * unblocked on window opening. Note: we don't implement padding.
5152 */
5153
5154 /* EOM is presented with bsize==1 but would lead to the emission of an
5155 * empty frame, thus we force it to zero here.
5156 */
5157 if (type == HTX_BLK_EOM)
5158 bsize = fsize = 0;
5159
5160 if (!fsize)
5161 goto send_empty;
5162
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005163 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005164 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005165 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005166 LIST_DEL_INIT(&h2s->list);
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005167 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005168 goto end;
5169 }
5170
Willy Tarreauee573762018-12-04 15:25:57 +01005171 if (fsize > count)
5172 fsize = count;
5173
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005174 if (fsize > h2s_mws(h2s))
5175 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005176
5177 if (h2c->mfs && fsize > h2c->mfs)
5178 fsize = h2c->mfs; // >0
5179
5180 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005181 /* It doesn't fit at once. If it at least fits once split and
5182 * the amount of data to move is low, let's defragment the
5183 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005184 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005185 if (b_space_wraps(mbuf) &&
5186 (fsize + 9 <= b_room(mbuf)) &&
5187 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005188 goto realign_again;
5189 fsize = outbuf.size - 9;
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005190 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005191
5192 if (fsize <= 0) {
5193 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005194 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5195 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005196 h2c->flags |= H2_CF_MUX_MFULL;
5197 h2s->flags |= H2_SF_BLK_MROOM;
5198 goto end;
5199 }
5200 }
5201
5202 if (h2c->mws <= 0) {
5203 h2s->flags |= H2_SF_BLK_MFCTL;
5204 goto end;
5205 }
5206
5207 if (fsize > h2c->mws)
5208 fsize = h2c->mws;
5209
5210 /* now let's copy this this into the output buffer */
5211 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005212 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005213 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005214 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005215
5216 send_empty:
5217 /* update the frame's size */
5218 h2_set_frame_size(outbuf.area, fsize);
5219
5220 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5221 * meeting EOM. We should optimize this later.
5222 */
5223 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005224 total++; // EOM counts as one byte
5225 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005226 es_now = 1;
5227 }
5228
5229 if (es_now)
5230 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5231
5232 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005233 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005234
5235 /* consume incoming HTX block, including EOM */
5236 total += fsize;
5237 if (fsize == bsize) {
5238 htx_remove_blk(htx, blk);
5239 if (fsize)
5240 goto new_frame;
5241 } else {
5242 /* we've truncated this block */
5243 htx_cut_data_blk(htx, blk, fsize);
Willy Tarreau5fc1cfa2020-01-14 11:42:59 +01005244 if (trunc_out)
5245 goto new_frame;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005246 }
5247
5248 if (es_now) {
5249 if (h2s->st == H2_SS_OPEN)
5250 h2s->st = H2_SS_HLOC;
5251 else
5252 h2s_close(h2s);
5253
5254 h2s->flags |= H2_SF_ES_SENT;
5255 }
5256
5257 end:
5258 return total;
5259}
5260
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005261/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5262 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5263 * processed. The caller must check the stream's status to detect any error
5264 * which might have happened subsequently to a successful send. The htx blocks
5265 * are automatically removed from the message. The htx message is assumed to be
5266 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005267 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005268 * as a single frame. The ES flag is always set.
5269 */
5270static size_t h2s_htx_make_trailers(struct h2s *h2s, struct htx *htx)
5271{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005272 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005273 struct h2c *h2c = h2s->h2c;
5274 struct htx_blk *blk;
5275 struct htx_blk *blk_end;
5276 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005277 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005278 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005279 int ret = 0;
5280 int hdr;
5281 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005282
5283 if (h2c_mux_busy(h2c, h2s)) {
5284 h2s->flags |= H2_SF_BLK_MBUSY;
5285 goto end;
5286 }
5287
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005288 /* determine the first block which must not be deleted, blk_end may
5289 * be NULL if all blocks have to be deleted. also get trailers.
5290 */
5291 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005292 blk_end = NULL;
5293
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005294 hdr = 0;
5295 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005296 blk = htx_get_blk(htx, idx);
5297 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005298 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005299 if (type == HTX_BLK_UNUSED)
5300 continue;
5301
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005302 if (type == HTX_BLK_EOT) {
5303 if (idx != -1)
5304 blk_end = blk;
5305 break;
5306 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005307 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005308 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005309
5310 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
5311 goto fail;
5312
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005313 list[hdr].n = htx_get_blk_name(htx, blk);
5314 list[hdr].v = htx_get_blk_value(htx, blk);
5315 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005316 }
5317
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005318 /* marker for end of trailers */
5319 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005320
Willy Tarreau9c218e72019-05-26 10:08:28 +02005321 mbuf = br_tail(h2c->mbuf);
5322 retry:
5323 if (!h2_get_buf(h2c, mbuf)) {
5324 h2c->flags |= H2_CF_MUX_MALLOC;
5325 h2s->flags |= H2_SF_BLK_MROOM;
5326 goto end;
5327 }
5328
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005329 chunk_reset(&outbuf);
5330
5331 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005332 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5333 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005334 break;
5335 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005336 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005337 }
5338
5339 if (outbuf.size < 9)
5340 goto full;
5341
5342 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5343 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5344 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5345 outbuf.data = 9;
5346
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005347 /* encode all headers */
5348 for (idx = 0; idx < hdr; idx++) {
5349 /* these ones do not exist in H2 or must not appear in
5350 * trailers and must be dropped.
5351 */
5352 if (isteq(list[idx].n, ist("host")) ||
5353 isteq(list[idx].n, ist("content-length")) ||
5354 isteq(list[idx].n, ist("connection")) ||
5355 isteq(list[idx].n, ist("proxy-connection")) ||
5356 isteq(list[idx].n, ist("keep-alive")) ||
5357 isteq(list[idx].n, ist("upgrade")) ||
5358 isteq(list[idx].n, ist("te")) ||
5359 isteq(list[idx].n, ist("transfer-encoding")))
5360 continue;
5361
5362 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5363 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005364 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005365 goto realign_again;
5366 goto full;
5367 }
5368 }
5369
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005370 if (outbuf.data == 9) {
5371 /* here we have a problem, we have nothing to emit (either we
5372 * received an empty trailers block followed or we removed its
5373 * contents above). Because of this we can't send a HEADERS
5374 * frame, so we have to cheat and instead send an empty DATA
5375 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005376 */
5377 outbuf.area[3] = H2_FT_DATA;
5378 outbuf.area[4] = H2_F_DATA_END_STREAM;
5379 }
5380
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005381 /* update the frame's size */
5382 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5383
5384 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005385 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005386 h2s->flags |= H2_SF_ES_SENT;
5387
5388 if (h2s->st == H2_SS_OPEN)
5389 h2s->st = H2_SS_HLOC;
5390 else
5391 h2s_close(h2s);
5392
5393 /* OK we could properly deliver the response */
5394 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005395 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005396 ret = 0;
5397 idx = htx_get_head(htx);
5398 blk = htx_get_blk(htx, idx);
5399 while (blk != blk_end) {
5400 ret += htx_get_blksz(blk);
5401 blk = htx_remove_blk(htx, blk);
5402 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005403
5404 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5405 ret += htx_get_blksz(blk_end);
5406 htx_remove_blk(htx, blk_end);
5407 }
5408
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005409 end:
5410 return ret;
5411 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005412 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5413 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005414 h2c->flags |= H2_CF_MUX_MFULL;
5415 h2s->flags |= H2_SF_BLK_MROOM;
5416 ret = 0;
5417 goto end;
5418 fail:
5419 /* unparsable HTX messages, too large ones to be produced in the local
5420 * list etc go here (unrecoverable errors).
5421 */
5422 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5423 ret = 0;
5424 goto end;
5425}
5426
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005427/* Called from the upper layer, to subscribe to events, such as being able to send.
5428 * The <param> argument here is supposed to be a pointer to a wait_event struct
5429 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5430 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5431 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5432 * returns 0 except for the error above.
5433 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005434static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5435{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005436 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005437 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005438 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005439
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005440 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005441 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005442 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5443 sw->events |= SUB_RETRY_RECV;
5444 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005445 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005446 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005447 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +02005448 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005449 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5450 sw->events |= SUB_RETRY_SEND;
5451 h2s->send_wait = sw;
5452 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5453 !LIST_ADDED(&h2s->list)) {
5454 if (h2s->flags & H2_SF_BLK_MFCTL)
5455 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5456 else
5457 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005458 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005459 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005460 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005461 if (event_type != 0)
5462 return -1;
5463 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005464}
5465
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005466/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5467 * The <param> argument here is supposed to be a pointer to the same wait_event
5468 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5469 * It always returns zero.
5470 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005471static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5472{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005473 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005474 struct h2s *h2s = cs->ctx;
5475
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005476 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005477 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005478 BUG_ON(h2s->recv_wait != sw);
5479 sw->events &= ~SUB_RETRY_RECV;
5480 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005481 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005482 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005483 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005484 BUG_ON(h2s->send_wait != sw);
5485 LIST_DEL(&h2s->list);
5486 LIST_INIT(&h2s->list);
5487 sw->events &= ~SUB_RETRY_SEND;
5488 /* We were about to send, make sure it does not happen */
5489 if (LIST_ADDED(&h2s->sending_list) &&
5490 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02005491 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005492 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005493 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005494 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005495 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005496 return 0;
5497}
5498
5499
Olivier Houchard511efea2018-08-16 15:30:32 +02005500/* Called from the upper layer, to receive data */
5501static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5502{
Olivier Houchard638b7992018-08-16 15:41:52 +02005503 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005504 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005505 struct htx *h2s_htx = NULL;
5506 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005507 size_t ret = 0;
5508
5509 /* transfer possibly pending data to the upper layer */
Willy Tarreau86724e22018-12-01 23:19:43 +01005510 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau86724e22018-12-01 23:19:43 +01005511 h2s_htx = htx_from_buf(&h2s->rxbuf);
Olivier Houchard56b03482018-12-10 16:09:53 +01005512 if (htx_is_empty(h2s_htx)) {
Christopher Faulet37070b22019-02-14 15:12:14 +01005513 /* Here htx_to_buf() will set buffer data to 0 because
5514 * the HTX is empty.
5515 */
5516 htx_to_buf(h2s_htx, &h2s->rxbuf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005517 goto end;
Olivier Houchard56b03482018-12-10 16:09:53 +01005518 }
Willy Tarreau86724e22018-12-01 23:19:43 +01005519
Christopher Faulet156852b2019-05-16 11:29:13 +02005520 ret = h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005521 buf_htx = htx_from_buf(buf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005522
Christopher Faulet2f6edc82019-05-15 10:07:59 +02005523 /* <buf> is empty and the message is small enough, swap the
5524 * buffers. */
5525 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
5526 htx_to_buf(buf_htx, buf);
5527 htx_to_buf(h2s_htx, &h2s->rxbuf);
5528 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5529 goto end;
5530 }
5531
Christopher Faulet156852b2019-05-16 11:29:13 +02005532 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005533
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005534 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
Willy Tarreau7196dd62019-03-05 10:51:11 +01005535 buf_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005536 if (htx_is_empty(buf_htx))
5537 cs->flags |= CS_FL_EOI;
5538 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005539
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01005540 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005541 htx_to_buf(buf_htx, buf);
5542 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet156852b2019-05-16 11:29:13 +02005543 ret -= h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005544 }
5545 else {
5546 ret = b_xfer(buf, &h2s->rxbuf, count);
5547 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005548
Christopher Faulet37070b22019-02-14 15:12:14 +01005549 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005550 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005551 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005552 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005553 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005554 if (h2s->flags & H2_SF_ES_RCVD)
5555 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02005556 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005557 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005558 if (cs->flags & CS_FL_ERR_PENDING)
5559 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005560 if (b_size(&h2s->rxbuf)) {
5561 b_free(&h2s->rxbuf);
5562 offer_buffers(NULL, tasks_run_queue);
5563 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005564 }
5565
Willy Tarreau082f5592018-11-25 08:03:32 +01005566 if (ret && h2c->dsi == h2s->id) {
5567 /* demux is blocking on this stream's buffer */
5568 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005569 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005570 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005571
Olivier Houchard511efea2018-08-16 15:30:32 +02005572 return ret;
5573}
5574
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005575/* stops all senders of this connection for example when the mux buffer is full.
5576 * They are moved from the sending_list to either fctl_list or send_list.
5577 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005578static void h2_stop_senders(struct h2c *h2c)
5579{
5580 struct h2s *h2s, *h2s_back;
5581
Olivier Houchardd360ac62019-03-22 17:37:16 +01005582 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5583 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02005584 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005585 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005586 }
5587}
5588
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005589/* Called from the upper layer, to send data from buffer <buf> for no more than
5590 * <count> bytes. Returns the number of bytes effectively sent. Some status
5591 * flags may be updated on the conn_stream.
5592 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005593static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005594{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005595 struct h2s *h2s = cs->ctx;
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005596 size_t orig_count = count;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005597 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005598 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005599 struct htx *htx;
5600 struct htx_blk *blk;
5601 enum htx_blk_type btype;
5602 uint32_t bsize;
5603 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005604
Olivier Houchardd360ac62019-03-22 17:37:16 +01005605 /* If we were not just woken because we wanted to send but couldn't,
5606 * and there's somebody else that is waiting to send, do nothing,
5607 * we will subscribe later and be put at the end of the list
5608 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005609 if (!LIST_ADDED(&h2s->sending_list) &&
Olivier Houchardd360ac62019-03-22 17:37:16 +01005610 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list)))
5611 return 0;
Olivier Houchard998410a2019-04-15 19:23:37 +02005612 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005613
Olivier Houchard998410a2019-04-15 19:23:37 +02005614 /* We couldn't set it to NULL before, because we needed it in case
5615 * we had to cancel the tasklet
5616 */
5617 h2s->send_wait = NULL;
5618
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005619 if (h2s->h2c->st0 < H2_CS_FRAME_H)
5620 return 0;
5621
Willy Tarreau902df222019-10-31 15:48:18 +01005622 if (h2s->h2c->st0 >= H2_CS_ERROR) {
5623 cs->flags |= CS_FL_ERROR;
5624 return 0;
5625 }
5626
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005627 /* htx will be enough to decide if we're using HTX or legacy */
5628 htx = (h2s->h2c->proxy->options2 & PR_O2_USE_HTX) ? htx_from_buf(buf) : NULL;
5629
Willy Tarreau0bad0432018-06-14 16:54:01 +02005630 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005631 h2s->flags |= H2_SF_OUTGOING_DATA;
5632
Willy Tarreau751f2d02018-10-05 09:35:00 +02005633 if (h2s->id == 0) {
5634 int32_t id = h2c_get_next_sid(h2s->h2c);
5635
5636 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005637 cs->flags |= CS_FL_ERROR;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005638 return 0;
5639 }
5640
5641 eb32_delete(&h2s->by_id);
5642 h2s->by_id.key = h2s->id = id;
5643 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005644 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005645 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5646 }
5647
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005648 if (htx) {
Willy Tarreau2b778482019-05-06 15:00:22 +02005649 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
Willy Tarreauc14999b2018-12-06 14:09:09 +01005650 count && !htx_is_empty(htx)) {
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005651 idx = htx_get_head(htx);
5652 blk = htx_get_blk(htx, idx);
5653 btype = htx_get_blk_type(blk);
5654 bsize = htx_get_blksz(blk);
5655
5656 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005657 case HTX_BLK_REQ_SL:
5658 /* start-line before headers */
5659 ret = h2s_htx_bck_make_req_headers(h2s, htx);
5660 if (ret > 0) {
5661 total += ret;
5662 count -= ret;
5663 if (ret < bsize)
5664 goto done;
5665 }
5666 break;
5667
Willy Tarreau115e83b2018-12-01 19:17:53 +01005668 case HTX_BLK_RES_SL:
5669 /* start-line before headers */
5670 ret = h2s_htx_frt_make_resp_headers(h2s, htx);
5671 if (ret > 0) {
5672 total += ret;
5673 count -= ret;
5674 if (ret < bsize)
5675 goto done;
5676 }
5677 break;
5678
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005679 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005680 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005681 /* all these cause the emission of a DATA frame (possibly empty).
5682 * This EOM necessarily is one before trailers, as the EOM following
5683 * trailers would have been consumed by the trailers parser.
5684 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01005685 ret = h2s_htx_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005686 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005687 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005688 total += ret;
5689 count -= ret;
5690 if (ret < bsize)
5691 goto done;
5692 }
5693 break;
5694
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005695 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005696 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005697 /* This is the first trailers block, all the subsequent ones AND
5698 * the EOM will be swallowed by the parser.
5699 */
5700 ret = h2s_htx_make_trailers(h2s, htx);
5701 if (ret > 0) {
5702 total += ret;
5703 count -= ret;
5704 if (ret < bsize)
5705 goto done;
5706 }
5707 break;
5708
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005709 default:
5710 htx_remove_blk(htx, blk);
5711 total += bsize;
5712 count -= bsize;
5713 break;
5714 }
5715 }
5716 goto done;
5717 }
5718
5719 /* legacy transfer mode */
Willy Tarreaua40704a2018-09-11 13:52:04 +02005720 while (h2s->h1m.state < H1_MSG_DONE && count) {
Willy Tarreau001823c2018-09-12 17:25:32 +02005721 if (h2s->h1m.state <= H1_MSG_LAST_LF) {
Willy Tarreau80739692018-10-05 11:35:57 +02005722 if (h2s->h2c->flags & H2_CF_IS_BACK)
5723 ret = -1;
5724 else
5725 ret = h2s_frt_make_resp_headers(h2s, buf, total, count);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005726 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005727 else if (h2s->h1m.state < H1_MSG_TRAILERS) {
Willy Tarreau0bad0432018-06-14 16:54:01 +02005728 ret = h2s_frt_make_resp_data(h2s, buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005729 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005730 else if (h2s->h1m.state == H1_MSG_TRAILERS) {
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005731 /* consume the trailers if any (we don't forward them for now) */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005732 ret = h1_measure_trailers(buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005733
Willy Tarreau5dd17352018-06-14 13:33:30 +02005734 if (unlikely((int)ret <= 0)) {
5735 if ((int)ret < 0)
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005736 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5737 break;
5738 }
Willy Tarreau35a62702018-02-27 15:37:25 +01005739 // trim any possibly pending data (eg: extra CR-LF, ...)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005740 total += count;
5741 count = 0;
Willy Tarreaua40704a2018-09-11 13:52:04 +02005742 h2s->h1m.state = H1_MSG_DONE;
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005743 break;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02005744 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005745 else {
Willy Tarreauec988c72018-12-19 18:00:29 +01005746 cs_set_error(cs);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005747 break;
5748 }
Willy Tarreau0bad0432018-06-14 16:54:01 +02005749
5750 total += ret;
5751 count -= ret;
5752
Willy Tarreau2b778482019-05-06 15:00:22 +02005753 if (h2s->st >= H2_SS_HLOC)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005754 break;
5755
5756 if (h2s->flags & H2_SF_BLK_ANY)
5757 break;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005758 }
5759
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005760 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005761 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005762 /* trim any possibly pending data after we close (extra CR-LF,
5763 * unprocessed trailers, abnormal extra data, ...)
5764 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005765 total += count;
5766 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005767 }
5768
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005769 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005770 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreauec988c72018-12-19 18:00:29 +01005771 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005772 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005773 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005774 }
5775
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005776 if (htx) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005777 htx_to_buf(htx, buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005778 } else {
5779 b_del(buf, total);
5780 }
Olivier Houchardd846c262018-10-19 17:24:29 +02005781
5782 /* The mux is full, cancel the pending tasks */
5783 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
5784 (h2s->flags & H2_SF_BLK_MBUSY))
5785 h2_stop_senders(h2s->h2c);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005786
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005787 /* If we're running HTX, and we read the whole buffer, then pretend
5788 * we read exactly what the caller specified, as with HTX the caller
5789 * will always give the buffer size, instead of the amount of data
5790 * available.
5791 */
5792 if (htx && !b_data(buf))
5793 total = orig_count;
5794
Olivier Houchard7505f942018-08-21 18:10:44 +02005795 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005796 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005797 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005798
Olivier Houchard7505f942018-08-21 18:10:44 +02005799 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005800 /* If we're waiting for flow control, and we got a shutr on the
5801 * connection, we will never be unlocked, so add an error on
5802 * the conn_stream.
5803 */
5804 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5805 !b_data(&h2s->h2c->dbuf) &&
5806 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
5807 if (cs->flags & CS_FL_EOS)
5808 cs->flags |= CS_FL_ERROR;
5809 else
5810 cs->flags |= CS_FL_ERR_PENDING;
5811 }
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005812
5813 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL)) {
5814 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005815 LIST_DEL_INIT(&h2s->list);
5816 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005817 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005818}
5819
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005820/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005821static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005822{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005823 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005824 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005825 struct eb32_node *node;
5826 int fctl_cnt = 0;
5827 int send_cnt = 0;
5828 int tree_cnt = 0;
5829 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005830 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005831
5832 if (!h2c)
5833 return;
5834
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005835 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005836 fctl_cnt++;
5837
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005838 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005839 send_cnt++;
5840
Willy Tarreau3af37712018-12-18 14:34:41 +01005841 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005842 node = eb32_first(&h2c->streams_by_id);
5843 while (node) {
5844 h2s = container_of(node, struct h2s, by_id);
5845 tree_cnt++;
5846 if (!h2s->cs)
5847 orph_cnt++;
5848 node = eb32_next(node);
5849 }
5850
Willy Tarreau60f62682019-05-26 11:32:27 +02005851 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005852 tmbuf = br_tail(h2c->mbuf);
Willy Tarreau987c0632018-12-18 10:32:05 +01005853 chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
5854 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005855 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5856 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau616ac812018-07-24 14:12:42 +02005857 h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
5858 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005859 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005860 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5861 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5862 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005863 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5864 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5865 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005866 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5867 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005868
5869 if (h2s) {
5870 chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5871 h2s, h2s->id, h2s->flags,
5872 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5873 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5874 h2s->cs);
5875 if (h2s->cs)
5876 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5877 h2s->cs->flags, h2s->cs->data);
5878 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005879}
Willy Tarreau62f52692017-10-08 23:01:42 +02005880
5881/*******************************************************/
5882/* functions below are dedicated to the config parsers */
5883/*******************************************************/
5884
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005885/* config parser for global "tune.h2.header-table-size" */
5886static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5887 struct proxy *defpx, const char *file, int line,
5888 char **err)
5889{
5890 if (too_many_args(1, args, err, NULL))
5891 return -1;
5892
5893 h2_settings_header_table_size = atoi(args[1]);
5894 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5895 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5896 return -1;
5897 }
5898 return 0;
5899}
Willy Tarreau62f52692017-10-08 23:01:42 +02005900
Willy Tarreaue6baec02017-07-27 11:45:11 +02005901/* config parser for global "tune.h2.initial-window-size" */
5902static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5903 struct proxy *defpx, const char *file, int line,
5904 char **err)
5905{
5906 if (too_many_args(1, args, err, NULL))
5907 return -1;
5908
5909 h2_settings_initial_window_size = atoi(args[1]);
5910 if (h2_settings_initial_window_size < 0) {
5911 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5912 return -1;
5913 }
5914 return 0;
5915}
5916
Willy Tarreau5242ef82017-07-27 11:47:28 +02005917/* config parser for global "tune.h2.max-concurrent-streams" */
5918static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5919 struct proxy *defpx, const char *file, int line,
5920 char **err)
5921{
5922 if (too_many_args(1, args, err, NULL))
5923 return -1;
5924
5925 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005926 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005927 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5928 return -1;
5929 }
5930 return 0;
5931}
5932
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005933/* config parser for global "tune.h2.max-frame-size" */
5934static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5935 struct proxy *defpx, const char *file, int line,
5936 char **err)
5937{
5938 if (too_many_args(1, args, err, NULL))
5939 return -1;
5940
5941 h2_settings_max_frame_size = atoi(args[1]);
5942 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5943 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5944 return -1;
5945 }
5946 return 0;
5947}
5948
Willy Tarreau62f52692017-10-08 23:01:42 +02005949
5950/****************************************/
5951/* MUX initialization and instanciation */
5952/***************************************/
5953
5954/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005955static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005956 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005957 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005958 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005959 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02005960 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005961 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02005962 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01005963 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02005964 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01005965 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01005966 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01005967 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02005968 .shutr = h2_shutr,
5969 .shutw = h2_shutw,
Olivier Houchard198d1292019-10-25 16:19:26 +02005970 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005971 .show_fd = h2_show_fd,
Willy Tarreau28f1cb92017-12-20 16:14:44 +01005972 .flags = MX_FL_CLEAN_ABRT,
Willy Tarreau62f52692017-10-08 23:01:42 +02005973 .name = "H2",
5974};
5975
Christopher Faulet32f61c02018-04-10 14:33:41 +02005976/* PROTO selection : this mux registers PROTO token "h2" */
5977static struct mux_proto_list mux_proto_h2 =
Willy Tarreauf8957272018-10-03 10:25:20 +02005978 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_FE, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02005979
Willy Tarreau0108d902018-11-25 19:14:37 +01005980INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
5981
Christopher Faulet9b579102019-04-11 22:52:25 +02005982
5983/* The mux operations */
5984static const struct mux_ops h2_htx_ops = {
5985 .init = h2_init,
5986 .wake = h2_wake,
5987 .snd_buf = h2_snd_buf,
5988 .rcv_buf = h2_rcv_buf,
5989 .subscribe = h2_subscribe,
5990 .unsubscribe = h2_unsubscribe,
5991 .attach = h2_attach,
5992 .get_first_cs = h2_get_first_cs,
5993 .detach = h2_detach,
5994 .destroy = h2_destroy,
5995 .avail_streams = h2_avail_streams,
5996 .used_streams = h2_used_streams,
5997 .shutr = h2_shutr,
5998 .shutw = h2_shutw,
Olivier Houchard198d1292019-10-25 16:19:26 +02005999 .ctl = h2_ctl,
Christopher Faulet9b579102019-04-11 22:52:25 +02006000 .show_fd = h2_show_fd,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02006001 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Christopher Faulet9b579102019-04-11 22:52:25 +02006002 .name = "H2",
6003};
6004
Willy Tarreauf8957272018-10-03 10:25:20 +02006005static struct mux_proto_list mux_proto_h2_htx =
Christopher Faulet9b579102019-04-11 22:52:25 +02006006 { .token = IST("h2"), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &h2_htx_ops };
Willy Tarreauf8957272018-10-03 10:25:20 +02006007
6008INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2_htx);
6009
Willy Tarreau62f52692017-10-08 23:01:42 +02006010/* config keyword parsers */
6011static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006012 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006013 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006014 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006015 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006016 { 0, NULL, NULL }
6017}};
6018
Willy Tarreau0108d902018-11-25 19:14:37 +01006019INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);