blob: 3ec4dff136f9b47b54e4d5061381468e45321b28 [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 Tarreau86949782019-01-31 10:42:05 +0100510 /* note: may be negative if a SETTINGS frame changes the limit */
511 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100512
513 /* we must also consider the limit imposed by stream IDs */
514 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100515 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100516 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100517 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
518 ret1 = MIN(ret1, ret2);
519 }
520 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100521}
522
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200523
Willy Tarreau62f52692017-10-08 23:01:42 +0200524/*****************************************************************/
525/* functions below are dedicated to the mux setup and management */
526/*****************************************************************/
527
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200528/* Initialize the mux once it's attached. For outgoing connections, the context
529 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200530 * connections from the fact that the context is still NULL (even during mux
531 * upgrades). <input> is always used as Input buffer and may contain data. It is
532 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200533 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200534static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
535 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200536{
537 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100538 struct task *t = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200539
Willy Tarreaubafbe012017-11-24 17:34:44 +0100540 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200541 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200542 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200543
Christopher Faulete9b70722019-04-08 10:46:02 +0200544 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200545 h2c->flags = H2_CF_IS_BACK;
546 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
547 if (tick_isset(prx->timeout.serverfin))
548 h2c->shut_timeout = prx->timeout.serverfin;
549 } else {
550 h2c->flags = H2_CF_NONE;
551 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
552 if (tick_isset(prx->timeout.clientfin))
553 h2c->shut_timeout = prx->timeout.clientfin;
554 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100555
Willy Tarreau0b37d652018-10-03 10:33:02 +0200556 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100557 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100558 if (tick_isset(h2c->timeout)) {
559 t = task_new(tid_bit);
560 if (!t)
561 goto fail;
562
563 h2c->task = t;
564 t->process = h2_timeout_task;
565 t->context = h2c;
566 t->expire = tick_add(now_ms, h2c->timeout);
567 }
Willy Tarreauea392822017-10-31 10:02:25 +0100568
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200569 h2c->wait_event.tasklet = tasklet_new();
570 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200571 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200572 h2c->wait_event.tasklet->process = h2_io_cb;
573 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100574 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200575
Willy Tarreau32218eb2017-09-22 08:07:25 +0200576 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
577 if (!h2c->ddht)
578 goto fail;
579
580 /* Initialise the context. */
581 h2c->st0 = H2_CS_PREFACE;
582 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100583 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200584 h2c->max_id = -1;
585 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100586 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200587 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100588 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200589 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100590 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100591 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200592
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200593 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200594 h2c->dsi = -1;
595 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100596
Willy Tarreau32218eb2017-09-22 08:07:25 +0200597 h2c->last_sid = -1;
598
Willy Tarreau51330962019-05-26 09:38:07 +0200599 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200600 h2c->miw = 65535; /* mux initial window size */
601 h2c->mws = 65535; /* mux window size */
602 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200603 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200604 LIST_INIT(&h2c->send_list);
605 LIST_INIT(&h2c->fctl_list);
Willy Tarreaubda92dd2019-10-02 10:49:59 +0200606 LIST_INIT(&h2c->blocked_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200607 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100608 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200609
Willy Tarreau3f133572017-10-31 19:21:06 +0100610 if (t)
611 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100612
Willy Tarreau01b44822018-10-03 14:26:37 +0200613 if (h2c->flags & H2_CF_IS_BACK) {
614 /* FIXME: this is temporary, for outgoing connections we need
615 * to immediately allocate a stream until the code is modified
616 * so that the caller calls ->attach(). For now the outgoing cs
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100617 * is stored as conn->ctx by the caller.
Willy Tarreau01b44822018-10-03 14:26:37 +0200618 */
619 struct h2s *h2s;
620
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100621 h2s = h2c_bck_stream_new(h2c, conn->ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200622 if (!h2s)
623 goto fail_stream;
624 }
625
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100626 conn->ctx = h2c;
Willy Tarreau01b44822018-10-03 14:26:37 +0200627
Willy Tarreau0f383582018-10-03 14:22:21 +0200628 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200629 h2c_restart_reading(h2c, 1);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200630 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200631 fail_stream:
632 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200633 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200634 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200635 if (h2c->wait_event.tasklet)
636 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100637 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200638 fail_no_h2c:
Willy Tarreau32218eb2017-09-22 08:07:25 +0200639 return -1;
640}
641
Willy Tarreau751f2d02018-10-05 09:35:00 +0200642/* returns the next allocatable outgoing stream ID for the H2 connection, or
643 * -1 if no more is allocatable.
644 */
645static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
646{
647 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100648
649 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200650 id = -1;
651 return id;
652}
653
Willy Tarreau2373acc2017-10-12 17:35:14 +0200654/* returns the stream associated with id <id> or NULL if not found */
655static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
656{
657 struct eb32_node *node;
658
Willy Tarreau751f2d02018-10-05 09:35:00 +0200659 if (id == 0)
660 return (struct h2s *)h2_closed_stream;
661
Willy Tarreau2a856182017-05-16 15:20:39 +0200662 if (id > h2c->max_id)
663 return (struct h2s *)h2_idle_stream;
664
Willy Tarreau2373acc2017-10-12 17:35:14 +0200665 node = eb32_lookup(&h2c->streams_by_id, id);
666 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200667 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200668
669 return container_of(node, struct h2s, by_id);
670}
671
Christopher Faulet73c12072019-04-08 11:23:22 +0200672/* release function. This one should be called to free all resources allocated
673 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200674 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200675static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200676{
Christopher Faulet61840e72019-04-15 09:33:32 +0200677 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200678
Willy Tarreau32218eb2017-09-22 08:07:25 +0200679 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200680 /* The connection must be aattached to this mux to be released */
681 if (h2c->conn && h2c->conn->ctx == h2c)
682 conn = h2c->conn;
683
Willy Tarreau32218eb2017-09-22 08:07:25 +0200684 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200685
Willy Tarreau186e96e2019-05-28 17:21:18 +0200686 if (LIST_ADDED(&h2c->buf_wait.list)) {
687 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
688 LIST_DEL(&h2c->buf_wait.list);
689 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
690 }
Willy Tarreau14398122017-09-22 14:26:04 +0200691
Willy Tarreau44e973f2018-03-01 17:49:30 +0100692 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200693 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100694
Willy Tarreauea392822017-10-31 10:02:25 +0100695 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200696 h2c->task->context = NULL;
697 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100698 h2c->task = NULL;
699 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200700 if (h2c->wait_event.tasklet)
701 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet0e012562019-09-18 11:07:20 +0200702 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100703 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet0e012562019-09-18 11:07:20 +0200704 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100705
Willy Tarreaubafbe012017-11-24 17:34:44 +0100706 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200707 }
708
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200709 if (conn) {
710 conn->mux = NULL;
711 conn->ctx = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200712
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200713 conn_stop_tracking(conn);
714 conn_full_close(conn);
715 if (conn->destroy_cb)
716 conn->destroy_cb(conn);
717 conn_free(conn);
718 }
Willy Tarreau62f52692017-10-08 23:01:42 +0200719}
720
721
Willy Tarreau71681172017-10-23 14:39:06 +0200722/******************************************************/
723/* functions below are for the H2 protocol processing */
724/******************************************************/
725
726/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100727static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200728{
729 return h2s ? h2s->id : 0;
730}
731
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200732/* returns the sum of the stream's own window size and the mux's initial
733 * window, which together form the stream's effective window size.
734 */
735static inline int h2s_mws(const struct h2s *h2s)
736{
737 return h2s->sws + h2s->h2c->miw;
738}
739
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200740/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100741static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200742{
743 if (h2c->msi < 0)
744 return 0;
745
746 if (h2c->msi == h2s_id(h2s))
747 return 0;
748
749 return 1;
750}
751
Willy Tarreau741d6df2017-10-17 08:00:59 +0200752/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +0100753static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +0200754{
755 h2c->errcode = err;
756 h2c->st0 = H2_CS_ERROR;
757}
758
Willy Tarreau175cebb2019-01-24 10:02:24 +0100759/* marks an error on the stream. It may also update an already closed stream
760 * (e.g. to report an error after an RST was received).
761 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100762static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +0200763{
Willy Tarreau175cebb2019-01-24 10:02:24 +0100764 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau2e43f082017-10-17 08:03:59 +0200765 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +0100766 if (h2s->st < H2_SS_ERROR)
767 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +0100768 if (h2s->cs)
769 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +0200770 }
771}
772
Willy Tarreau7e094452018-12-19 18:08:52 +0100773/* attempt to notify the data layer of recv availability */
774static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
775{
776 struct wait_event *sw;
777
778 if (h2s->recv_wait) {
779 sw = h2s->recv_wait;
780 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200781 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100782 h2s->recv_wait = NULL;
783 }
784}
785
786/* attempt to notify the data layer of send availability */
787static void __maybe_unused h2s_notify_send(struct h2s *h2s)
788{
789 struct wait_event *sw;
790
Willy Tarreauc234ae32019-05-13 17:56:11 +0200791 if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau7e094452018-12-19 18:08:52 +0100792 sw = h2s->send_wait;
793 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchardfd1e96d2019-03-25 14:04:25 +0100794 LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200795 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100796 }
797}
798
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100799/* alerts the data layer, trying to wake it up by all means, following
800 * this sequence :
801 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
802 * - if its subscribed to send, then it's woken up for send
803 * - if it was subscribed to neither, its ->wake() callback is called
804 * It is safe to call this function with a closed stream which doesn't have a
805 * conn_stream anymore.
806 */
807static void __maybe_unused h2s_alert(struct h2s *h2s)
808{
809 if (h2s->recv_wait || h2s->send_wait) {
810 h2s_notify_recv(h2s);
811 h2s_notify_send(h2s);
812 }
813 else if (h2s->cs && h2s->cs->data_cb->wake != NULL)
814 h2s->cs->data_cb->wake(h2s->cs);
815}
816
Willy Tarreaue4820742017-07-27 13:37:23 +0200817/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100818static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +0200819{
820 uint8_t *out = frame;
821
822 *out = len >> 16;
823 write_n16(out + 1, len);
824}
825
Willy Tarreau54c15062017-10-10 17:10:03 +0200826/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
827 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
828 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200829 * available in the buffer's input prior to calling this function. The buffer
830 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +0200831 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100832static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +0200833 const struct buffer *b, int o)
834{
Willy Tarreau591d4452018-06-15 17:21:00 +0200835 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 +0200836}
837
Willy Tarreau1f094672017-11-20 21:27:45 +0100838static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200839{
Willy Tarreau591d4452018-06-15 17:21:00 +0200840 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200841}
842
Willy Tarreau1f094672017-11-20 21:27:45 +0100843static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200844{
Willy Tarreau591d4452018-06-15 17:21:00 +0200845 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200846}
847
Willy Tarreau1f094672017-11-20 21:27:45 +0100848static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200849{
Willy Tarreau591d4452018-06-15 17:21:00 +0200850 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200851}
852
853
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100854/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
855 * The algorithm is not obvious. It turns out that H2 headers are neither
856 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
857 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +0200858 *
859 * b0 b1 b2 b3 b4 b5..b8
860 * +----------+---------+--------+----+----+----------------------+
861 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
862 * +----------+---------+--------+----+----+----------------------+
863 *
864 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
865 * we get the sid properly aligned and ordered, and 16 bits of len properly
866 * ordered as well. The type and flags can be extracted using bit shifts from
867 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200868 * Returns zero if some bytes are missing, otherwise non-zero on success. The
869 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +0200870 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100871static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200872{
873 uint64_t w;
874
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100875 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +0200876 return 0;
877
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100878 w = h2_get_n64(b, o + 1);
879 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +0200880 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
881 h->ff = w >> 32;
882 h->ft = w >> 40;
883 h->len += w >> 48;
884 return 1;
885}
886
887/* skip the next 9 bytes corresponding to the frame header possibly parsed by
888 * h2_peek_frame_hdr() above.
889 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100890static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +0200891{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200892 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +0200893}
894
895/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +0100896static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200897{
898 int ret;
899
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100900 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +0200901 if (ret > 0)
902 h2_skip_frame_hdr(b);
903 return ret;
904}
905
Willy Tarreau00dd0782018-03-01 16:31:34 +0100906/* marks stream <h2s> as CLOSED and decrement the number of active streams for
907 * its connection if the stream was not yet closed. Please use this exclusively
908 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100909 */
Willy Tarreau00dd0782018-03-01 16:31:34 +0100910static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100911{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100912 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100913 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100914 if (!h2s->id)
915 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +0100916 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +0100917 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
918 h2s_notify_recv(h2s);
919 }
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100920 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100921 h2s->st = H2_SS_CLOSED;
922}
923
Willy Tarreau71049cc2018-03-28 13:56:39 +0200924/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
925static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +0100926{
927 h2s_close(h2s);
928 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +0200929 if (b_size(&h2s->rxbuf)) {
930 b_free(&h2s->rxbuf);
931 offer_buffers(NULL, tasks_run_queue);
932 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200933 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100934 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200935 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100936 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -0800937 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200938 * reference left would be in the h2c send_list/fctl_list, and if
939 * we're in it, we're getting out anyway
940 */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100941 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc234ae32019-05-13 17:56:11 +0200942 if (LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau86eded62019-06-14 14:47:49 +0200943 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +0200944 LIST_DEL_INIT(&h2s->sending_list);
945 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200946 tasklet_free(h2s->wait_event.tasklet);
Willy Tarreau0a10de62018-03-01 16:27:53 +0100947 pool_free(pool_head_h2s, h2s);
948}
949
Willy Tarreaua8e49542018-10-03 18:53:55 +0200950/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
951 * stream tree. In case of error, nothing is added and NULL is returned. The
952 * causes of errors can be any failed memory allocation. The caller is
953 * responsible for checking if the connection may support an extra stream
954 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200955 */
Willy Tarreaua8e49542018-10-03 18:53:55 +0200956static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200957{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200958 struct h2s *h2s;
959
Willy Tarreaubafbe012017-11-24 17:34:44 +0100960 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200961 if (!h2s)
962 goto out;
963
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200964 h2s->wait_event.tasklet = tasklet_new();
965 if (!h2s->wait_event.tasklet) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200966 pool_free(pool_head_h2s, h2s);
967 goto out;
968 }
969 h2s->send_wait = NULL;
970 h2s->recv_wait = NULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200971 h2s->wait_event.tasklet->process = h2_deferred_shut;
972 h2s->wait_event.tasklet->context = h2s;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100973 h2s->wait_event.events = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200974 LIST_INIT(&h2s->list);
Olivier Houchardd360ac62019-03-22 17:37:16 +0100975 LIST_INIT(&h2s->sending_list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200976 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +0200977 h2s->cs = NULL;
Willy Tarreau5a9c8752019-08-02 07:52:08 +0200978 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200979 h2s->flags = H2_SF_NONE;
980 h2s->errcode = H2_ERR_NO_ERROR;
981 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200982 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +0100983 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +0200984 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +0200985
986 if (h2c->flags & H2_CF_IS_BACK) {
987 h1m_init_req(&h2s->h1m);
988 h2s->h1m.err_pos = -1; // don't care about errors on the request path
989 h2s->h1m.flags |= H1_MF_TOLOWER;
990 } else {
991 h1m_init_res(&h2s->h1m);
992 h2s->h1m.err_pos = -1; // don't care about errors on the response path
993 h2s->h1m.flags |= H1_MF_TOLOWER;
994 }
995
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200996 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +0200997 if (id > 0)
998 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100999 else
1000 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001001
1002 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001003 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001004 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001005
1006 return h2s;
1007
1008 out_free_h2s:
1009 pool_free(pool_head_h2s, h2s);
1010 out:
1011 return NULL;
1012}
1013
1014/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1015 * case of memory allocation error.
1016 */
1017static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1018{
1019 struct session *sess = h2c->conn->owner;
1020 struct conn_stream *cs;
1021 struct h2s *h2s;
1022
1023 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1024 goto out;
1025
1026 h2s = h2s_new(h2c, id);
1027 if (!h2s)
1028 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001029
1030 cs = cs_new(h2c->conn);
1031 if (!cs)
1032 goto out_close;
1033
Olivier Houchard746fb772018-12-15 19:42:00 +01001034 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001035 h2s->cs = cs;
1036 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001037 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001038
1039 if (stream_create_from_cs(cs) < 0)
1040 goto out_free_cs;
1041
Willy Tarreau590a0512018-09-05 11:56:48 +02001042 /* We want the accept date presented to the next stream to be the one
1043 * we have now, the handshake time to be null (since the next stream
1044 * is not delayed by a handshake), and the idle time to count since
1045 * right now.
1046 */
1047 sess->accept_date = date;
1048 sess->tv_accept = now;
1049 sess->t_handshake = 0;
1050
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001051 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001052 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001053 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001054 return h2s;
1055
1056 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001057 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001058 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001059 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001060 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001061 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001062 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001063 sess_log(sess);
1064 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001065}
1066
Willy Tarreau751f2d02018-10-05 09:35:00 +02001067/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1068 * and returns it, or NULL in case of memory allocation error or if the highest
1069 * possible stream ID was reached.
1070 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001071static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001072{
1073 struct h2s *h2s = NULL;
1074
Willy Tarreau86949782019-01-31 10:42:05 +01001075 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001076 goto out;
1077
Willy Tarreaua80dca82019-01-24 17:08:28 +01001078 if (h2_streams_left(h2c) < 1)
1079 goto out;
1080
Willy Tarreau751f2d02018-10-05 09:35:00 +02001081 /* Defer choosing the ID until we send the first message to create the stream */
1082 h2s = h2s_new(h2c, 0);
1083 if (!h2s)
1084 goto out;
1085
1086 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001087 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001088 cs->ctx = h2s;
1089 h2c->nb_cs++;
1090
Willy Tarreau751f2d02018-10-05 09:35:00 +02001091 out:
1092 return h2s;
1093}
1094
Willy Tarreaube5b7152017-09-25 16:25:39 +02001095/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1096 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1097 * the various settings codes.
1098 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001099static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001100{
1101 struct buffer *res;
1102 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001103 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001104 int mfs;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001105 int ret;
1106
1107 if (h2c_mux_busy(h2c, NULL)) {
1108 h2c->flags |= H2_CF_DEM_MBUSY;
1109 return 0;
1110 }
1111
Willy Tarreaube5b7152017-09-25 16:25:39 +02001112 chunk_init(&buf, buf_data, sizeof(buf_data));
1113 chunk_memcpy(&buf,
1114 "\x00\x00\x00" /* length : 0 for now */
1115 "\x04\x00" /* type : 4 (settings), flags : 0 */
1116 "\x00\x00\x00\x00", /* stream ID : 0 */
1117 9);
1118
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001119 if (h2c->flags & H2_CF_IS_BACK) {
1120 /* send settings_enable_push=0 */
1121 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1122 }
1123
Willy Tarreaube5b7152017-09-25 16:25:39 +02001124 if (h2_settings_header_table_size != 4096) {
1125 char str[6] = "\x00\x01"; /* header_table_size */
1126
1127 write_n32(str + 2, h2_settings_header_table_size);
1128 chunk_memcat(&buf, str, 6);
1129 }
1130
1131 if (h2_settings_initial_window_size != 65535) {
1132 char str[6] = "\x00\x04"; /* initial_window_size */
1133
1134 write_n32(str + 2, h2_settings_initial_window_size);
1135 chunk_memcat(&buf, str, 6);
1136 }
1137
1138 if (h2_settings_max_concurrent_streams != 0) {
1139 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1140
1141 /* Note: 0 means "unlimited" for haproxy's config but not for
1142 * the protocol, so never send this value!
1143 */
1144 write_n32(str + 2, h2_settings_max_concurrent_streams);
1145 chunk_memcat(&buf, str, 6);
1146 }
1147
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001148 mfs = h2_settings_max_frame_size;
1149 if (mfs > global.tune.bufsize)
1150 mfs = global.tune.bufsize;
1151
1152 if (!mfs)
1153 mfs = global.tune.bufsize;
1154
1155 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001156 char str[6] = "\x00\x05"; /* max_frame_size */
1157
1158 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1159 * match bufsize - rewrite size, but at the moment it seems
1160 * that clients don't take care of it.
1161 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001162 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001163 chunk_memcat(&buf, str, 6);
1164 }
1165
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001166 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001167
1168 res = br_tail(h2c->mbuf);
1169 retry:
1170 if (!h2_get_buf(h2c, res)) {
1171 h2c->flags |= H2_CF_MUX_MALLOC;
1172 h2c->flags |= H2_CF_DEM_MROOM;
1173 return 0;
1174 }
1175
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001176 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001177 if (unlikely(ret <= 0)) {
1178 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001179 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1180 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001181 h2c->flags |= H2_CF_MUX_MFULL;
1182 h2c->flags |= H2_CF_DEM_MROOM;
1183 return 0;
1184 }
1185 else {
1186 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1187 return 0;
1188 }
1189 }
1190 return ret;
1191}
1192
Willy Tarreau52eed752017-09-22 15:05:09 +02001193/* Try to receive a connection preface, then upon success try to send our
1194 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1195 * missing data. It may return an error in h2c.
1196 */
1197static int h2c_frt_recv_preface(struct h2c *h2c)
1198{
1199 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001200 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001201
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001202 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001203
1204 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001205 if (ret1 < 0)
1206 sess_log(h2c->conn->owner);
1207
Willy Tarreau52eed752017-09-22 15:05:09 +02001208 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1209 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1210 return 0;
1211 }
1212
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001213 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001214 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001215 b_del(&h2c->dbuf, ret1);
Willy Tarreau52eed752017-09-22 15:05:09 +02001216
Willy Tarreaube5b7152017-09-25 16:25:39 +02001217 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001218}
1219
Willy Tarreau01b44822018-10-03 14:26:37 +02001220/* Try to send a connection preface, then upon success try to send our
1221 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1222 * missing data. It may return an error in h2c.
1223 */
1224static int h2c_bck_send_preface(struct h2c *h2c)
1225{
1226 struct buffer *res;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001227 int ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001228
1229 if (h2c_mux_busy(h2c, NULL)) {
1230 h2c->flags |= H2_CF_DEM_MBUSY;
1231 return 0;
1232 }
1233
Willy Tarreaubcc45952019-05-26 10:05:50 +02001234 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001235 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001236 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001237 h2c->flags |= H2_CF_MUX_MALLOC;
1238 h2c->flags |= H2_CF_DEM_MROOM;
1239 return 0;
1240 }
1241
1242 if (!b_data(res)) {
1243 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001244 ret = b_istput(res, ist(H2_CONN_PREFACE));
1245 if (unlikely(ret <= 0)) {
1246 if (!ret) {
1247 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1248 goto retry;
1249 h2c->flags |= H2_CF_MUX_MFULL;
1250 h2c->flags |= H2_CF_DEM_MROOM;
1251 return 0;
1252 }
1253 else {
1254 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1255 return 0;
1256 }
1257 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001258 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001259 return h2c_send_settings(h2c);
1260}
1261
Willy Tarreau081d4722017-05-16 21:51:05 +02001262/* try to send a GOAWAY frame on the connection to report an error or a graceful
1263 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1264 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1265 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1266 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1267 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1268 * on unrecoverable failure. It will not attempt to send one again in this last
1269 * case so that it is safe to use h2c_error() to report such errors.
1270 */
1271static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1272{
1273 struct buffer *res;
1274 char str[17];
1275 int ret;
1276
1277 if (h2c->flags & H2_CF_GOAWAY_FAILED)
1278 return 1; // claim that it worked
1279
1280 if (h2c_mux_busy(h2c, h2s)) {
1281 if (h2s)
1282 h2s->flags |= H2_SF_BLK_MBUSY;
1283 else
1284 h2c->flags |= H2_CF_DEM_MBUSY;
1285 return 0;
1286 }
1287
Willy Tarreau9c218e72019-05-26 10:08:28 +02001288 /* len: 8, type: 7, flags: none, sid: 0 */
1289 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1290
1291 if (h2c->last_sid < 0)
1292 h2c->last_sid = h2c->max_id;
1293
1294 write_n32(str + 9, h2c->last_sid);
1295 write_n32(str + 13, h2c->errcode);
1296
Willy Tarreaubcc45952019-05-26 10:05:50 +02001297 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001298 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001299 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001300 h2c->flags |= H2_CF_MUX_MALLOC;
1301 if (h2s)
1302 h2s->flags |= H2_SF_BLK_MROOM;
1303 else
1304 h2c->flags |= H2_CF_DEM_MROOM;
1305 return 0;
1306 }
1307
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001308 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001309 if (unlikely(ret <= 0)) {
1310 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001311 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1312 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001313 h2c->flags |= H2_CF_MUX_MFULL;
1314 if (h2s)
1315 h2s->flags |= H2_SF_BLK_MROOM;
1316 else
1317 h2c->flags |= H2_CF_DEM_MROOM;
1318 return 0;
1319 }
1320 else {
1321 /* we cannot report this error using GOAWAY, so we mark
1322 * it and claim a success.
1323 */
1324 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1325 h2c->flags |= H2_CF_GOAWAY_FAILED;
1326 return 1;
1327 }
1328 }
1329 h2c->flags |= H2_CF_GOAWAY_SENT;
1330 return ret;
1331}
1332
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001333/* Try to send an RST_STREAM frame on the connection for the indicated stream
1334 * during mux operations. This stream must be valid and cannot be closed
1335 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1336 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1337 * not yet.
1338 *
1339 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1340 * to write the message, it subscribes the stream to future notifications.
1341 */
1342static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1343{
1344 struct buffer *res;
1345 char str[13];
1346 int ret;
1347
1348 if (!h2s || h2s->st == H2_SS_CLOSED)
1349 return 1;
1350
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001351 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1352 * RST_STREAM in response to a RST_STREAM frame.
1353 */
Willy Tarreaubf9a20b2019-08-06 10:01:40 +02001354 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001355 ret = 1;
1356 goto ignore;
1357 }
1358
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001359 if (h2c_mux_busy(h2c, h2s)) {
1360 h2s->flags |= H2_SF_BLK_MBUSY;
1361 return 0;
1362 }
1363
Willy Tarreau9c218e72019-05-26 10:08:28 +02001364 /* len: 4, type: 3, flags: none */
1365 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1366 write_n32(str + 5, h2s->id);
1367 write_n32(str + 9, h2s->errcode);
1368
Willy Tarreaubcc45952019-05-26 10:05:50 +02001369 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001370 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001371 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001372 h2c->flags |= H2_CF_MUX_MALLOC;
1373 h2s->flags |= H2_SF_BLK_MROOM;
1374 return 0;
1375 }
1376
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001377 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001378 if (unlikely(ret <= 0)) {
1379 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001380 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1381 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001382 h2c->flags |= H2_CF_MUX_MFULL;
1383 h2s->flags |= H2_SF_BLK_MROOM;
1384 return 0;
1385 }
1386 else {
1387 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1388 return 0;
1389 }
1390 }
1391
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001392 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001393 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001394 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001395 return ret;
1396}
1397
1398/* Try to send an RST_STREAM frame on the connection for the stream being
1399 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001400 * error code, even if the stream is one of the dummy ones, and will update
1401 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001402 *
1403 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1404 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001405 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001406 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001407 */
1408static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1409{
1410 struct buffer *res;
1411 char str[13];
1412 int ret;
1413
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001414 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1415 * RST_STREAM in response to a RST_STREAM frame.
1416 */
1417 if (h2c->dft == H2_FT_RST_STREAM) {
1418 ret = 1;
1419 goto ignore;
1420 }
1421
Willy Tarreau27a84c92017-10-17 08:10:17 +02001422 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001423 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001424 return 0;
1425 }
1426
Willy Tarreau9c218e72019-05-26 10:08:28 +02001427 /* len: 4, type: 3, flags: none */
1428 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1429
1430 write_n32(str + 5, h2c->dsi);
1431 write_n32(str + 9, h2s->errcode);
1432
Willy Tarreaubcc45952019-05-26 10:05:50 +02001433 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001434 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001435 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001436 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001437 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001438 return 0;
1439 }
1440
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001441 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001442 if (unlikely(ret <= 0)) {
1443 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001444 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1445 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001446 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001447 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001448 return 0;
1449 }
1450 else {
1451 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1452 return 0;
1453 }
1454 }
1455
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001456 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001457 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001458 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001459 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001460 }
1461
Willy Tarreau27a84c92017-10-17 08:10:17 +02001462 return ret;
1463}
1464
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001465/* try to send an empty DATA frame with the ES flag set to notify about the
1466 * end of stream and match a shutdown(write). If an ES was already sent as
1467 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1468 * on success or zero if nothing was done. In case of lack of room to write the
1469 * message, it subscribes the requesting stream to future notifications.
1470 */
1471static int h2_send_empty_data_es(struct h2s *h2s)
1472{
1473 struct h2c *h2c = h2s->h2c;
1474 struct buffer *res;
1475 char str[9];
1476 int ret;
1477
Willy Tarreau721c9742017-11-07 11:05:42 +01001478 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED)
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001479 return 1;
1480
1481 if (h2c_mux_busy(h2c, h2s)) {
1482 h2s->flags |= H2_SF_BLK_MBUSY;
1483 return 0;
1484 }
1485
Willy Tarreau9c218e72019-05-26 10:08:28 +02001486 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1487 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1488 write_n32(str + 5, h2s->id);
1489
Willy Tarreaubcc45952019-05-26 10:05:50 +02001490 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001491 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001492 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001493 h2c->flags |= H2_CF_MUX_MALLOC;
1494 h2s->flags |= H2_SF_BLK_MROOM;
1495 return 0;
1496 }
1497
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001498 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001499 if (likely(ret > 0)) {
1500 h2s->flags |= H2_SF_ES_SENT;
1501 }
1502 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001503 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1504 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001505 h2c->flags |= H2_CF_MUX_MFULL;
1506 h2s->flags |= H2_SF_BLK_MROOM;
1507 return 0;
1508 }
1509 else {
1510 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1511 return 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001512 }
1513 return ret;
1514}
1515
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001516/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001517 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001518 * is automatically updated accordingly. If the stream is orphaned, it is
1519 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001520 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001521static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001522{
1523 if (!h2s->cs) {
1524 /* this stream was already orphaned */
1525 h2s_destroy(h2s);
1526 return;
1527 }
1528
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001529 if (conn_xprt_read0_pending(h2s->h2c->conn)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001530 if (h2s->st == H2_SS_OPEN)
1531 h2s->st = H2_SS_HREM;
1532 else if (h2s->st == H2_SS_HLOC)
1533 h2s_close(h2s);
1534 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001535
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001536 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1537 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1538 h2s->cs->flags |= CS_FL_ERR_PENDING;
1539 if (h2s->cs->flags & CS_FL_EOS)
1540 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001541
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001542 if (h2s->st < H2_SS_ERROR)
1543 h2s->st = H2_SS_ERROR;
1544 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001545
1546 h2s_alert(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001547}
1548
1549/* wake the streams attached to the connection, whose id is greater than <last>
1550 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001551 */
Willy Tarreau23482912019-05-07 15:23:14 +02001552static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001553{
1554 struct eb32_node *node;
1555 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001556
Christopher Fauletf02ca002019-03-07 16:21:34 +01001557 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001558 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1559 while (node) {
1560 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001561 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001562 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001563 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001564
Christopher Fauletf02ca002019-03-07 16:21:34 +01001565 /* Wake all streams with unassigned ID (ID == 0) */
1566 node = eb32_lookup(&h2c->streams_by_id, 0);
1567 while (node) {
1568 h2s = container_of(node, struct h2s, by_id);
1569 if (h2s->id > 0)
1570 break;
1571 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001572 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001573 }
1574}
1575
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001576/* Wake up all blocked streams whose window size has become positive after the
1577 * mux's initial window was adjusted. This should be done after having processed
1578 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001579 */
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001580static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001581{
1582 struct h2s *h2s;
1583 struct eb32_node *node;
1584
Willy Tarreau3421aba2017-07-27 15:41:03 +02001585 node = eb32_first(&h2c->streams_by_id);
1586 while (node) {
1587 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001588 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001589 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreaubda92dd2019-10-02 10:49:59 +02001590 LIST_DEL_INIT(&h2s->list);
1591 if (h2s->send_wait)
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001592 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001593 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001594 node = eb32_next(node);
1595 }
1596}
1597
1598/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1599 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001600 * return an error in h2c. The caller must have already verified frame length
1601 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001602 */
1603static int h2c_handle_settings(struct h2c *h2c)
1604{
1605 unsigned int offset;
1606 int error;
1607
1608 if (h2c->dff & H2_F_SETTINGS_ACK) {
1609 if (h2c->dfl) {
1610 error = H2_ERR_FRAME_SIZE_ERROR;
1611 goto fail;
1612 }
1613 return 1;
1614 }
1615
Willy Tarreau3421aba2017-07-27 15:41:03 +02001616 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001617 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001618 return 0;
1619
1620 /* parse the frame */
1621 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001622 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
1623 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001624
1625 switch (type) {
1626 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
1627 /* we need to update all existing streams with the
1628 * difference from the previous iws.
1629 */
1630 if (arg < 0) { // RFC7540#6.5.2
1631 error = H2_ERR_FLOW_CONTROL_ERROR;
1632 goto fail;
1633 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001634 h2c->miw = arg;
1635 break;
1636 case H2_SETTINGS_MAX_FRAME_SIZE:
1637 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
1638 error = H2_ERR_PROTOCOL_ERROR;
1639 goto fail;
1640 }
1641 h2c->mfs = arg;
1642 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01001643 case H2_SETTINGS_ENABLE_PUSH:
1644 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
1645 error = H2_ERR_PROTOCOL_ERROR;
1646 goto fail;
1647 }
1648 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001649 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
1650 if (h2c->flags & H2_CF_IS_BACK) {
1651 /* the limit is only for the backend; for the frontend it is our limit */
1652 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
1653 arg = h2_settings_max_concurrent_streams;
1654 h2c->streams_limit = arg;
1655 }
1656 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001657 }
1658 }
1659
1660 /* need to ACK this frame now */
1661 h2c->st0 = H2_CS_FRAME_A;
1662 return 1;
1663 fail:
Willy Tarreau22de8d32018-09-05 19:55:58 +02001664 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001665 h2c_error(h2c, error);
1666 return 0;
1667}
1668
1669/* try to send an ACK for a settings frame on the connection. Returns > 0 on
1670 * success or one of the h2_status values.
1671 */
1672static int h2c_ack_settings(struct h2c *h2c)
1673{
1674 struct buffer *res;
1675 char str[9];
1676 int ret = -1;
1677
1678 if (h2c_mux_busy(h2c, NULL)) {
1679 h2c->flags |= H2_CF_DEM_MBUSY;
1680 return 0;
1681 }
1682
Willy Tarreau9c218e72019-05-26 10:08:28 +02001683 memcpy(str,
1684 "\x00\x00\x00" /* length : 0 (no data) */
1685 "\x04" "\x01" /* type : 4, flags : ACK */
1686 "\x00\x00\x00\x00" /* stream ID */, 9);
1687
Willy Tarreaubcc45952019-05-26 10:05:50 +02001688 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001689 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001690 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02001691 h2c->flags |= H2_CF_MUX_MALLOC;
1692 h2c->flags |= H2_CF_DEM_MROOM;
1693 return 0;
1694 }
1695
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001696 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02001697 if (unlikely(ret <= 0)) {
1698 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001699 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1700 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001701 h2c->flags |= H2_CF_MUX_MFULL;
1702 h2c->flags |= H2_CF_DEM_MROOM;
1703 return 0;
1704 }
1705 else {
1706 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1707 return 0;
1708 }
1709 }
1710 return ret;
1711}
1712
Willy Tarreaucf68c782017-10-10 17:11:41 +02001713/* processes a PING frame and schedules an ACK if needed. The caller must pass
1714 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01001715 * missing data. The caller must have already verified frame length
1716 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02001717 */
1718static int h2c_handle_ping(struct h2c *h2c)
1719{
Willy Tarreaucf68c782017-10-10 17:11:41 +02001720 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01001721 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02001722 h2c->st0 = H2_CS_FRAME_A;
1723 return 1;
1724}
1725
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001726/* Try to send a window update for stream id <sid> and value <increment>.
1727 * Returns > 0 on success or zero on missing room or failure. It may return an
1728 * error in h2c.
1729 */
1730static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
1731{
1732 struct buffer *res;
1733 char str[13];
1734 int ret = -1;
1735
1736 if (h2c_mux_busy(h2c, NULL)) {
1737 h2c->flags |= H2_CF_DEM_MBUSY;
1738 return 0;
1739 }
1740
Willy Tarreau9c218e72019-05-26 10:08:28 +02001741 /* length: 4, type: 8, flags: none */
1742 memcpy(str, "\x00\x00\x04\x08\x00", 5);
1743 write_n32(str + 5, sid);
1744 write_n32(str + 9, increment);
1745
Willy Tarreaubcc45952019-05-26 10:05:50 +02001746 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001747 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001748 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001749 h2c->flags |= H2_CF_MUX_MALLOC;
1750 h2c->flags |= H2_CF_DEM_MROOM;
1751 return 0;
1752 }
1753
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001754 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001755 if (unlikely(ret <= 0)) {
1756 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001757 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1758 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001759 h2c->flags |= H2_CF_MUX_MFULL;
1760 h2c->flags |= H2_CF_DEM_MROOM;
1761 return 0;
1762 }
1763 else {
1764 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1765 return 0;
1766 }
1767 }
1768 return ret;
1769}
1770
1771/* try to send pending window update for the connection. It's safe to call it
1772 * with no pending updates. Returns > 0 on success or zero on missing room or
1773 * failure. It may return an error in h2c.
1774 */
1775static int h2c_send_conn_wu(struct h2c *h2c)
1776{
1777 int ret = 1;
1778
1779 if (h2c->rcvd_c <= 0)
1780 return 1;
1781
Willy Tarreau97aaa672018-12-23 09:49:04 +01001782 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
1783 /* increase the advertised connection window to 2G on
1784 * first update.
1785 */
1786 h2c->flags |= H2_CF_WINDOW_OPENED;
1787 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
1788 }
1789
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001790 /* send WU for the connection */
1791 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
1792 if (ret > 0)
1793 h2c->rcvd_c = 0;
1794
1795 return ret;
1796}
1797
1798/* try to send pending window update for the current dmux stream. It's safe to
1799 * call it with no pending updates. Returns > 0 on success or zero on missing
1800 * room or failure. It may return an error in h2c.
1801 */
1802static int h2c_send_strm_wu(struct h2c *h2c)
1803{
1804 int ret = 1;
1805
1806 if (h2c->rcvd_s <= 0)
1807 return 1;
1808
1809 /* send WU for the stream */
1810 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
1811 if (ret > 0)
1812 h2c->rcvd_s = 0;
1813
1814 return ret;
1815}
1816
Willy Tarreaucf68c782017-10-10 17:11:41 +02001817/* try to send an ACK for a ping frame on the connection. Returns > 0 on
1818 * success, 0 on missing data or one of the h2_status values.
1819 */
1820static int h2c_ack_ping(struct h2c *h2c)
1821{
1822 struct buffer *res;
1823 char str[17];
1824 int ret = -1;
1825
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001826 if (b_data(&h2c->dbuf) < 8)
Willy Tarreaucf68c782017-10-10 17:11:41 +02001827 return 0;
1828
1829 if (h2c_mux_busy(h2c, NULL)) {
1830 h2c->flags |= H2_CF_DEM_MBUSY;
1831 return 0;
1832 }
1833
Willy Tarreaucf68c782017-10-10 17:11:41 +02001834 memcpy(str,
1835 "\x00\x00\x08" /* length : 8 (same payload) */
1836 "\x06" "\x01" /* type : 6, flags : ACK */
1837 "\x00\x00\x00\x00" /* stream ID */, 9);
1838
1839 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001840 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02001841
Willy Tarreau9c218e72019-05-26 10:08:28 +02001842 res = br_tail(h2c->mbuf);
1843 retry:
1844 if (!h2_get_buf(h2c, res)) {
1845 h2c->flags |= H2_CF_MUX_MALLOC;
1846 h2c->flags |= H2_CF_DEM_MROOM;
1847 return 0;
1848 }
1849
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001850 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02001851 if (unlikely(ret <= 0)) {
1852 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001853 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1854 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02001855 h2c->flags |= H2_CF_MUX_MFULL;
1856 h2c->flags |= H2_CF_DEM_MROOM;
1857 return 0;
1858 }
1859 else {
1860 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1861 return 0;
1862 }
1863 }
1864 return ret;
1865}
1866
Willy Tarreau26f95952017-07-27 17:18:30 +02001867/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
1868 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01001869 * h2c or h2s. The caller must have already verified frame length and stream ID
1870 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02001871 */
1872static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
1873{
1874 int32_t inc;
1875 int error;
1876
Willy Tarreau26f95952017-07-27 17:18:30 +02001877 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001878 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau26f95952017-07-27 17:18:30 +02001879 return 0;
1880
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001881 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02001882
1883 if (h2c->dsi != 0) {
1884 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02001885
1886 /* it's not an error to receive WU on a closed stream */
1887 if (h2s->st == H2_SS_CLOSED)
1888 return 1;
1889
1890 if (!inc) {
1891 error = H2_ERR_PROTOCOL_ERROR;
1892 goto strm_err;
1893 }
1894
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001895 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001896 error = H2_ERR_FLOW_CONTROL_ERROR;
1897 goto strm_err;
1898 }
1899
Willy Tarreau5a9c8752019-08-02 07:52:08 +02001900 h2s->sws += inc;
1901 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001902 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreaubda92dd2019-10-02 10:49:59 +02001903 LIST_DEL_INIT(&h2s->list);
1904 if (h2s->send_wait)
Olivier Houcharddddfe312018-10-10 18:51:00 +02001905 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02001906 }
1907 }
1908 else {
1909 /* connection window update */
1910 if (!inc) {
1911 error = H2_ERR_PROTOCOL_ERROR;
1912 goto conn_err;
1913 }
1914
1915 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
1916 error = H2_ERR_FLOW_CONTROL_ERROR;
1917 goto conn_err;
1918 }
1919
1920 h2c->mws += inc;
1921 }
1922
1923 return 1;
1924
1925 conn_err:
1926 h2c_error(h2c, error);
1927 return 0;
1928
1929 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01001930 h2s_error(h2s, error);
1931 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau26f95952017-07-27 17:18:30 +02001932 return 0;
1933}
1934
Willy Tarreaue96b0922017-10-30 00:28:29 +01001935/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01001936 * the last ID. Returns > 0 on success or zero on missing data. The caller must
1937 * have already verified frame length and stream ID validity. Described in
1938 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01001939 */
1940static int h2c_handle_goaway(struct h2c *h2c)
1941{
Willy Tarreaue96b0922017-10-30 00:28:29 +01001942 int last;
1943
Willy Tarreaue96b0922017-10-30 00:28:29 +01001944 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001945 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaue96b0922017-10-30 00:28:29 +01001946 return 0;
1947
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001948 last = h2_get_n32(&h2c->dbuf, 0);
1949 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01001950 if (h2c->last_sid < 0)
1951 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02001952 h2_wake_some_streams(h2c, last);
Willy Tarreaue96b0922017-10-30 00:28:29 +01001953 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01001954}
1955
Willy Tarreau92153fc2017-12-03 19:46:19 +01001956/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01001957 * invalid. Returns > 0 on success or zero on missing data. It may return an
1958 * error in h2c. The caller must have already verified frame length and stream
1959 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01001960 */
1961static int h2c_handle_priority(struct h2c *h2c)
1962{
Willy Tarreau92153fc2017-12-03 19:46:19 +01001963 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001964 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau92153fc2017-12-03 19:46:19 +01001965 return 0;
1966
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001967 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01001968 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01001969 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1970 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001971 }
1972 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001973}
1974
Willy Tarreaucd234e92017-08-18 10:59:39 +02001975/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01001976 * Returns > 0 on success or zero on missing data. The caller must have already
1977 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02001978 */
1979static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
1980{
Willy Tarreaucd234e92017-08-18 10:59:39 +02001981 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001982 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaucd234e92017-08-18 10:59:39 +02001983 return 0;
1984
1985 /* late RST, already handled */
1986 if (h2s->st == H2_SS_CLOSED)
1987 return 1;
1988
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001989 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01001990 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001991
1992 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01001993 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01001994 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001995 }
1996
1997 h2s->flags |= H2_SF_RST_RCVD;
1998 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02001999}
2000
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002001/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2002 * It may return an error in h2c or h2s. The caller must consider that the
2003 * return value is the new h2s in case one was allocated (most common case).
2004 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002005 * errors here are reported as connection errors since it's impossible to
2006 * recover from such errors after the compression context has been altered.
2007 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002008static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002009{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002010 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002011 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002012 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002013 int error;
2014
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002015 if (!b_size(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002016 return NULL; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002017
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002018 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002019 return NULL; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002020
2021 /* now either the frame is complete or the buffer is complete */
2022 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002023 /* The stream exists/existed, this must be a trailers frame */
2024 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002025 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2026 /* unrecoverable error ? */
2027 if (h2c->st0 >= H2_CS_ERROR)
2028 goto out;
2029
2030 if (error == 0)
2031 goto out; // missing data
2032
2033 if (error < 0) {
2034 /* Failed to decode this frame (e.g. too large request)
2035 * but the HPACK decompressor is still synchronized.
2036 */
2037 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2038 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002039 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002040 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002041 goto done;
2042 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002043 /* the connection was already killed by an RST, let's consume
2044 * the data and send another RST.
2045 */
2046 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2047 h2s = (struct h2s*)h2_error_stream;
2048 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002049 }
2050 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2051 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2052 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002053 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002054 goto conn_err;
2055 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002056 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2057 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002058
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002059 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002060
Willy Tarreau25919232019-01-03 14:48:18 +01002061 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002062 if (h2c->st0 >= H2_CS_ERROR)
2063 goto out;
2064
Willy Tarreau25919232019-01-03 14:48:18 +01002065 if (error <= 0) {
2066 if (error == 0)
2067 goto out; // missing data
2068
2069 /* Failed to decode this stream (e.g. too large request)
2070 * but the HPACK decompressor is still synchronized.
2071 */
2072 h2s = (struct h2s*)h2_error_stream;
2073 goto send_rst;
2074 }
2075
Willy Tarreau22de8d32018-09-05 19:55:58 +02002076 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002077 * positively from h2c_frt_stream_new(), the stream will report the error,
2078 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002079 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002080 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002081 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002082 h2s = (struct h2s*)h2_refused_stream;
2083 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002084 }
2085
2086 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002087 h2s->rxbuf = rxbuf;
2088 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002089 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002090
Willy Tarreau88d138e2019-01-02 19:38:14 +01002091 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002092 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002093 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002094
2095 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002096 if (h2s->st == H2_SS_OPEN)
2097 h2s->st = H2_SS_HREM;
2098 else
2099 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002100 }
2101
Willy Tarreau3a429f02019-01-03 11:41:50 +01002102 /* update the max stream ID if the request is being processed */
2103 if (h2s->id > h2c->max_id)
2104 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002105
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002106 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002107
2108 conn_err:
2109 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002110 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002111
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002112 out:
2113 h2_release_buf(h2c, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002114 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002115
2116 send_rst:
2117 /* make the demux send an RST for the current stream. We may only
2118 * do this if we're certain that the HEADERS frame was properly
2119 * decompressed so that the HPACK decoder is still kept up to date.
2120 */
2121 h2_release_buf(h2c, &rxbuf);
2122 h2c->st0 = H2_CS_FRAME_E;
2123 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002124}
2125
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002126/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2127 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2128 * errors here are reported as connection errors since it's impossible to
2129 * recover from such errors after the compression context has been altered.
2130 */
2131static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2132{
Christopher Faulet96b88f22019-09-23 15:28:20 +02002133 struct buffer rxbuf = BUF_NULL;
2134 unsigned long long body_len = 0;
2135 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002136 int error;
2137
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002138 if (!b_size(&h2c->dbuf))
2139 return NULL; // empty buffer
2140
2141 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
2142 return NULL; // incomplete frame
2143
Christopher Faulet96b88f22019-09-23 15:28:20 +02002144 if (h2s->st != H2_SS_CLOSED) {
2145 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2146 }
2147 else {
2148 /* the connection was already killed by an RST, let's consume
2149 * the data and send another RST.
2150 */
2151 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Faulet03427052019-09-26 16:19:13 +02002152 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet96b88f22019-09-23 15:28:20 +02002153 h2c->st0 = H2_CS_FRAME_E;
2154 goto send_rst;
2155 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002156
Willy Tarreau25919232019-01-03 14:48:18 +01002157 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002158 if (h2c->st0 >= H2_CS_ERROR)
2159 return NULL;
2160
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002161 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2162 /* RFC7540#5.1 */
2163 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2164 h2c->st0 = H2_CS_FRAME_E;
2165 return NULL;
2166 }
2167
Willy Tarreau25919232019-01-03 14:48:18 +01002168 if (error <= 0) {
2169 if (error == 0)
2170 return NULL; // missing data
2171
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002172 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002173 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002174 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau25919232019-01-03 14:48:18 +01002175 return NULL;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002176 }
2177
Christopher Fauletfa922f02019-05-07 10:55:17 +02002178 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002179 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002180
Willy Tarreau927b88b2019-03-04 08:03:25 +01002181 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002182 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002183 else if (h2s->flags & H2_SF_ES_RCVD) {
2184 if (h2s->st == H2_SS_OPEN)
2185 h2s->st = H2_SS_HREM;
2186 else if (h2s->st == H2_SS_HLOC)
2187 h2s_close(h2s);
2188 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002189
2190 return h2s;
Christopher Faulet96b88f22019-09-23 15:28:20 +02002191
2192 send_rst:
2193 /* make the demux send an RST for the current stream. We may only
2194 * do this if we're certain that the HEADERS frame was properly
2195 * decompressed so that the HPACK decoder is still kept up to date.
2196 */
2197 h2_release_buf(h2c, &rxbuf);
2198 h2c->st0 = H2_CS_FRAME_E;
2199 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002200}
2201
Willy Tarreau454f9052017-10-26 19:40:35 +02002202/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2203 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2204 */
2205static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2206{
2207 int error;
2208
2209 /* note that empty DATA frames are perfectly valid and sometimes used
2210 * to signal an end of stream (with the ES flag).
2211 */
2212
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002213 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau454f9052017-10-26 19:40:35 +02002214 return 0; // empty buffer
2215
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002216 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau454f9052017-10-26 19:40:35 +02002217 return 0; // incomplete frame
2218
2219 /* now either the frame is complete or the buffer is complete */
2220
Willy Tarreau454f9052017-10-26 19:40:35 +02002221 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2222 /* RFC7540#6.1 */
2223 error = H2_ERR_STREAM_CLOSED;
2224 goto strm_err;
2225 }
2226
Christopher Faulet4fb65f42019-06-19 09:25:58 +02002227 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002228 /* RFC7540#8.1.2 */
2229 error = H2_ERR_PROTOCOL_ERROR;
2230 goto strm_err;
2231 }
2232
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002233 if (!h2_frt_transfer_data(h2s))
2234 return 0;
2235
Willy Tarreau454f9052017-10-26 19:40:35 +02002236 /* call the upper layers to process the frame, then let the upper layer
2237 * notify the stream about any change.
2238 */
2239 if (!h2s->cs) {
Willy Tarreauc1a29652019-08-06 10:11:02 +02002240 /* The upper layer has already closed, this may happen on
2241 * 4xx/redirects during POST, or when receiving a response
2242 * from an H2 server after the client has aborted.
2243 */
2244 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002245 goto strm_err;
2246 }
2247
Willy Tarreau8f650c32017-11-21 19:36:21 +01002248 if (h2c->st0 >= H2_CS_ERROR)
2249 return 0;
2250
Willy Tarreau721c9742017-11-07 11:05:42 +01002251 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002252 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002253 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002254 }
2255
2256 /* check for completion : the callee will change this to FRAME_A or
2257 * FRAME_H once done.
2258 */
2259 if (h2c->st0 == H2_CS_FRAME_P)
2260 return 0;
2261
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002262 /* last frame */
2263 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002264 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002265 if (h2s->st == H2_SS_OPEN)
2266 h2s->st = H2_SS_HREM;
2267 else
2268 h2s_close(h2s);
2269
Willy Tarreau1915ca22019-01-24 11:49:37 +01002270 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2271 /* RFC7540#8.1.2 */
2272 error = H2_ERR_PROTOCOL_ERROR;
2273 goto strm_err;
2274 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002275 }
2276
Willy Tarreau454f9052017-10-26 19:40:35 +02002277 return 1;
2278
Willy Tarreau454f9052017-10-26 19:40:35 +02002279 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002280 h2s_error(h2s, error);
2281 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002282 return 0;
2283}
2284
Willy Tarreaubc933932017-10-09 16:21:43 +02002285/* process Rx frames to be demultiplexed */
2286static void h2_process_demux(struct h2c *h2c)
2287{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002288 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002289 struct h2_fh hdr;
2290 unsigned int padlen = 0;
Willy Tarreau5a9c8752019-08-02 07:52:08 +02002291 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002292
Willy Tarreau081d4722017-05-16 21:51:05 +02002293 if (h2c->st0 >= H2_CS_ERROR)
2294 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002295
2296 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2297 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau01b44822018-10-03 14:26:37 +02002298 if (h2c->flags & H2_CF_IS_BACK)
2299 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002300 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2301 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002302 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau52eed752017-09-22 15:05:09 +02002303 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002304 sess_log(h2c->conn->owner);
2305 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002306 goto fail;
2307 }
2308
2309 h2c->max_id = 0;
2310 h2c->st0 = H2_CS_SETTINGS1;
2311 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002312
2313 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002314 /* ensure that what is pending is a valid SETTINGS frame
2315 * without an ACK.
2316 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002317 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002318 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002319 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002320 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002321 sess_log(h2c->conn->owner);
2322 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002323 goto fail;
2324 }
2325
2326 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2327 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2328 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2329 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002330 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002331 goto fail;
2332 }
2333
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002334 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002335 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2336 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2337 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002338 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002339 goto fail;
2340 }
2341
Willy Tarreau3bf69182018-12-21 15:34:50 +01002342 /* that's OK, switch to FRAME_P to process it. This is
2343 * a SETTINGS frame whose header has already been
2344 * deleted above.
2345 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002346 padlen = 0;
2347 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002348 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002349 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002350
2351 /* process as many incoming frames as possible below */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002352 while (b_data(&h2c->dbuf)) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002353 int ret = 0;
2354
2355 if (h2c->st0 >= H2_CS_ERROR)
2356 break;
2357
2358 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreauab3ebbc2019-08-06 15:49:51 +02002359 h2c->rcvd_s = 0;
2360
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002361 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002362 break;
2363
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002364 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002365 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002366 if (!h2c->nb_streams) {
2367 /* only log if no other stream can report the error */
2368 sess_log(h2c->conn->owner);
2369 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002370 break;
2371 }
2372
Christopher Faulet3d574a52019-06-18 12:22:38 +02002373 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002374 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2375 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2376 * we read the pad length and drop it from the remaining
2377 * payload (one byte + the 9 remaining ones = 10 total
2378 * removed), so we have a frame payload starting after the
2379 * pad len. Flow controlled frames (DATA) also count the
2380 * padlen in the flow control, so it must be adjusted.
2381 */
2382 if (hdr.len < 1) {
2383 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2384 sess_log(h2c->conn->owner);
2385 goto fail;
2386 }
2387 hdr.len--;
2388
2389 if (b_data(&h2c->dbuf) < 10)
2390 break; // missing padlen
2391
2392 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
2393
2394 if (padlen > hdr.len) {
2395 /* RFC7540#6.1 : pad length = length of
2396 * frame payload or greater => error.
2397 */
2398 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2399 sess_log(h2c->conn->owner);
2400 goto fail;
2401 }
2402
2403 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
2404 h2c->rcvd_c++;
2405 h2c->rcvd_s++;
2406 }
2407 b_del(&h2c->dbuf, 1);
2408 }
2409 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002410
2411 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002412 h2c->dfl = hdr.len;
2413 h2c->dsi = hdr.sid;
2414 h2c->dft = hdr.ft;
2415 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002416 h2c->dpl = padlen;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002417 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002418
2419 /* check for minimum basic frame format validity */
2420 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
2421 if (ret != H2_ERR_NO_ERROR) {
2422 h2c_error(h2c, ret);
2423 sess_log(h2c->conn->owner);
2424 goto fail;
2425 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002426 }
2427
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002428 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
2429 * H2_CS_FRAME_P indicates an incomplete previous operation
2430 * (most often the first attempt) and requires some validity
2431 * checks for the frame and the current state. The two other
2432 * ones are set after completion (or abortion) and must skip
2433 * validity checks.
2434 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002435 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
2436
Willy Tarreau567beb82018-12-18 16:52:44 +01002437 if (tmp_h2s != h2s && h2s && h2s->cs &&
2438 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002439 conn_xprt_read0_pending(h2c->conn) ||
2440 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002441 (h2s->flags & H2_SF_ES_RCVD) ||
2442 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002443 /* we may have to signal the upper layers */
2444 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002445 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002446 }
2447 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002448
Willy Tarreaud7901432017-12-29 11:34:40 +01002449 if (h2c->st0 == H2_CS_FRAME_E)
2450 goto strm_err;
2451
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002452 if (h2c->st0 == H2_CS_FRAME_A)
2453 goto valid_frame_type;
2454
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002455 if (h2s->st == H2_SS_IDLE &&
2456 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2457 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2458 * this state MUST be treated as a connection error
2459 */
2460 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002461 if (!h2c->nb_streams) {
2462 /* only log if no other stream can report the error */
2463 sess_log(h2c->conn->owner);
2464 }
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002465 break;
2466 }
2467
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002468 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2469 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2470 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002471 * this state MUST be treated as a stream error.
2472 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2473 * PUSH_PROMISE/CONTINUATION cause connection errors.
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002474 */
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002475 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2476 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2477 else
2478 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002479 goto strm_err;
2480 }
2481
Willy Tarreauab837502017-12-27 15:07:30 +01002482 /* Below the management of frames received in closed state is a
2483 * bit hackish because the spec makes strong differences between
2484 * streams closed by receiving RST, sending RST, and seeing ES
2485 * in both directions. In addition to this, the creation of a
2486 * new stream reusing the identifier of a closed one will be
2487 * detected here. Given that we cannot keep track of all closed
2488 * streams forever, we consider that unknown closed streams were
2489 * closed on RST received, which allows us to respond with an
2490 * RST without breaking the connection (eg: to abort a transfer).
2491 * Some frames have to be silently ignored as well.
2492 */
2493 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
Willy Tarreau3ad5d312019-01-29 18:33:26 +01002494 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreauab837502017-12-27 15:07:30 +01002495 /* #5.1.1: The identifier of a newly
2496 * established stream MUST be numerically
2497 * greater than all streams that the initiating
2498 * endpoint has opened or reserved. This
2499 * governs streams that are opened using a
2500 * HEADERS frame and streams that are reserved
2501 * using PUSH_PROMISE. An endpoint that
2502 * receives an unexpected stream identifier
2503 * MUST respond with a connection error.
2504 */
2505 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2506 goto strm_err;
2507 }
2508
Willy Tarreaueb5be9d2019-09-26 08:47:15 +02002509 if (h2s->flags & H2_SF_RST_RCVD &&
2510 !(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 +01002511 /* RFC7540#5.1:closed: an endpoint that
2512 * receives any frame other than PRIORITY after
2513 * receiving a RST_STREAM MUST treat that as a
2514 * stream error of type STREAM_CLOSED.
2515 *
2516 * Note that old streams fall into this category
2517 * and will lead to an RST being sent.
Willy Tarreau8d9ac3e2019-01-30 16:58:30 +01002518 *
2519 * However, we cannot generalize this to all frame types. Those
2520 * carrying compression state must still be processed before
2521 * being dropped or we'll desynchronize the decoder. This can
2522 * happen with request trailers received after sending an
2523 * RST_STREAM, or with header/trailers responses received after
2524 * sending RST_STREAM (aborted stream).
Willy Tarreaueb5be9d2019-09-26 08:47:15 +02002525 *
2526 * In addition, since our CLOSED streams always carry the
2527 * RST_RCVD bit, we don't want to accidently catch valid
2528 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreauab837502017-12-27 15:07:30 +01002529 */
2530 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2531 h2c->st0 = H2_CS_FRAME_E;
2532 goto strm_err;
2533 }
2534
2535 /* RFC7540#5.1:closed: if this state is reached as a
2536 * result of sending a RST_STREAM frame, the peer that
2537 * receives the RST_STREAM might have already sent
2538 * frames on the stream that cannot be withdrawn. An
2539 * endpoint MUST ignore frames that it receives on
2540 * closed streams after it has sent a RST_STREAM
2541 * frame. An endpoint MAY choose to limit the period
2542 * over which it ignores frames and treat frames that
2543 * arrive after this time as being in error.
2544 */
Willy Tarreau24ff1f82019-01-30 19:20:09 +01002545 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
Willy Tarreauab837502017-12-27 15:07:30 +01002546 /* RFC7540#5.1:closed: any frame other than
2547 * PRIO/WU/RST in this state MUST be treated as
2548 * a connection error
2549 */
2550 if (h2c->dft != H2_FT_RST_STREAM &&
2551 h2c->dft != H2_FT_PRIORITY &&
2552 h2c->dft != H2_FT_WINDOW_UPDATE) {
2553 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2554 goto strm_err;
2555 }
2556 }
2557 }
2558
Willy Tarreauc0da1962017-10-30 18:38:00 +01002559#if 0
2560 // problem below: it is not possible to completely ignore such
2561 // streams as we need to maintain the compression state as well
2562 // and for this we need to completely process these frames (eg:
2563 // HEADERS frames) as well as counting DATA frames to emit
2564 // proper WINDOW UPDATES and ensure the connection doesn't stall.
2565 // This is a typical case of layer violation where the
2566 // transported contents are critical to the connection's
2567 // validity and must be ignored at the same time :-(
2568
2569 /* graceful shutdown, ignore streams whose ID is higher than
2570 * the one advertised in GOAWAY. RFC7540#6.8.
2571 */
2572 if (unlikely(h2c->last_sid >= 0) && h2c->dsi > h2c->last_sid) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002573 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2574 b_del(&h2c->dbuf, ret);
Willy Tarreauc0da1962017-10-30 18:38:00 +01002575 h2c->dfl -= ret;
2576 ret = h2c->dfl == 0;
2577 goto strm_err;
2578 }
2579#endif
2580
Willy Tarreaubde2f0a2019-08-06 15:21:45 +02002581 valid_frame_type:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002582 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002583 case H2_FT_SETTINGS:
2584 if (h2c->st0 == H2_CS_FRAME_P)
2585 ret = h2c_handle_settings(h2c);
2586
2587 if (h2c->st0 == H2_CS_FRAME_A)
2588 ret = h2c_ack_settings(h2c);
2589 break;
2590
Willy Tarreaucf68c782017-10-10 17:11:41 +02002591 case H2_FT_PING:
2592 if (h2c->st0 == H2_CS_FRAME_P)
2593 ret = h2c_handle_ping(h2c);
2594
2595 if (h2c->st0 == H2_CS_FRAME_A)
2596 ret = h2c_ack_ping(h2c);
2597 break;
2598
Willy Tarreau26f95952017-07-27 17:18:30 +02002599 case H2_FT_WINDOW_UPDATE:
2600 if (h2c->st0 == H2_CS_FRAME_P)
2601 ret = h2c_handle_window_update(h2c, h2s);
2602 break;
2603
Willy Tarreau61290ec2017-10-17 08:19:21 +02002604 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01002605 /* RFC7540#6.10: CONTINUATION may only be preceeded by
2606 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
2607 * frames' parsers consume all following CONTINUATION
2608 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02002609 */
Willy Tarreauea18f862018-12-22 20:19:26 +01002610 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2611 sess_log(h2c->conn->owner);
2612 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02002613
Willy Tarreau13278b42017-10-13 19:23:14 +02002614 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002615 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002616 if (h2c->flags & H2_CF_IS_BACK)
2617 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
2618 else
2619 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002620 if (tmp_h2s) {
2621 h2s = tmp_h2s;
2622 ret = 1;
2623 }
2624 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002625 break;
2626
Willy Tarreau454f9052017-10-26 19:40:35 +02002627 case H2_FT_DATA:
2628 if (h2c->st0 == H2_CS_FRAME_P)
2629 ret = h2c_frt_handle_data(h2c, h2s);
2630
2631 if (h2c->st0 == H2_CS_FRAME_A)
2632 ret = h2c_send_strm_wu(h2c);
2633 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002634
Willy Tarreau92153fc2017-12-03 19:46:19 +01002635 case H2_FT_PRIORITY:
2636 if (h2c->st0 == H2_CS_FRAME_P)
2637 ret = h2c_handle_priority(h2c);
2638 break;
2639
Willy Tarreaucd234e92017-08-18 10:59:39 +02002640 case H2_FT_RST_STREAM:
2641 if (h2c->st0 == H2_CS_FRAME_P)
2642 ret = h2c_handle_rst_stream(h2c, h2s);
2643 break;
2644
Willy Tarreaue96b0922017-10-30 00:28:29 +01002645 case H2_FT_GOAWAY:
2646 if (h2c->st0 == H2_CS_FRAME_P)
2647 ret = h2c_handle_goaway(h2c);
2648 break;
2649
Willy Tarreau1c661982017-10-30 13:52:01 +01002650 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02002651 default:
2652 /* drop frames that we ignore. They may be larger than
2653 * the buffer so we drain all of their contents until
2654 * we reach the end.
2655 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002656 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2657 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002658 h2c->dfl -= ret;
2659 ret = h2c->dfl == 0;
2660 }
2661
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002662 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01002663 /* We may have to send an RST if not done yet */
2664 if (h2s->st == H2_SS_ERROR)
2665 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002666
Willy Tarreaua20a5192017-12-27 11:02:06 +01002667 if (h2c->st0 == H2_CS_FRAME_E)
2668 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002669
Willy Tarreau7e98c052017-10-10 15:56:59 +02002670 /* error or missing data condition met above ? */
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002671 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02002672 break;
2673
2674 if (h2c->st0 != H2_CS_FRAME_H) {
Christopher Faulete12a26f2019-09-26 16:38:28 +02002675 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2676 b_del(&h2c->dbuf, ret);
2677 h2c->dfl -= ret;
2678 if (!h2c->dfl)
2679 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002680 }
2681 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002682
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002683 if (h2c->rcvd_c > 0 &&
2684 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM)))
2685 h2c_send_conn_wu(h2c);
2686
Willy Tarreau52eed752017-09-22 15:05:09 +02002687 fail:
2688 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01002689 if (h2s && h2s->cs &&
2690 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002691 conn_xprt_read0_pending(h2c->conn) ||
2692 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002693 (h2s->flags & H2_SF_ES_RCVD) ||
2694 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002695 /* we may have to signal the upper layers */
2696 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002697 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002698 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002699
Willy Tarreau5a9c8752019-08-02 07:52:08 +02002700 if (old_iw != h2c->miw)
2701 h2c_unblock_sfctl(h2c);
2702
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02002703 h2c_restart_reading(h2c, 0);
Willy Tarreaubc933932017-10-09 16:21:43 +02002704}
2705
2706/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
2707 * the end.
2708 */
2709static int h2_process_mux(struct h2c *h2c)
2710{
Olivier Houchard998410a2019-04-15 19:23:37 +02002711 struct h2s *h2s, *h2s_back;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002712
Willy Tarreau01b44822018-10-03 14:26:37 +02002713 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2714 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
2715 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
2716 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2717 if (h2c->st0 == H2_CS_ERROR) {
2718 h2c->st0 = H2_CS_ERROR2;
2719 sess_log(h2c->conn->owner);
2720 }
2721 goto fail;
2722 }
2723 h2c->st0 = H2_CS_SETTINGS1;
2724 }
2725 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01002726 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau01b44822018-10-03 14:26:37 +02002727 return 1;
2728 }
2729
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002730 /* start by sending possibly pending window updates */
Willy Tarreau9c497c22019-08-06 15:39:32 +02002731 if (h2c->rcvd_s > 0 &&
2732 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2733 h2c_send_strm_wu(h2c) < 0)
2734 goto fail;
2735
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002736 if (h2c->rcvd_c > 0 &&
2737 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2738 h2c_send_conn_wu(h2c) < 0)
2739 goto fail;
2740
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002741 /* First we always process the flow control list because the streams
2742 * waiting there were already elected for immediate emission but were
2743 * blocked just on this.
2744 */
2745
Olivier Houchard998410a2019-04-15 19:23:37 +02002746 list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002747 if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY ||
2748 h2c->st0 >= H2_CS_ERROR)
2749 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002750
Willy Tarreauc234ae32019-05-13 17:56:11 +02002751 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002752 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002753
Olivier Houchardfa8aa862018-10-10 18:25:41 +02002754 h2s->flags &= ~H2_SF_BLK_ANY;
Olivier Houchard998410a2019-04-15 19:23:37 +02002755 /* For some reason, the upper layer failed to subsribe again,
2756 * so remove it from the send_list
2757 */
2758 if (!h2s->send_wait) {
2759 LIST_DEL_INIT(&h2s->list);
2760 continue;
2761 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002762 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01002763 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002764 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002765 }
2766
Olivier Houchard998410a2019-04-15 19:23:37 +02002767 list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002768 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
2769 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002770
Willy Tarreauc234ae32019-05-13 17:56:11 +02002771 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002772 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002773
Olivier Houchard998410a2019-04-15 19:23:37 +02002774 /* For some reason, the upper layer failed to subsribe again,
2775 * so remove it from the send_list
2776 */
2777 if (!h2s->send_wait) {
2778 LIST_DEL_INIT(&h2s->list);
2779 continue;
2780 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02002781 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002782 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01002783 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002784 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002785 }
2786
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002787 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01002788 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02002789 if (h2c->st0 == H2_CS_ERROR) {
2790 if (h2c->max_id >= 0) {
2791 h2c_send_goaway_error(h2c, NULL);
2792 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
2793 return 0;
2794 }
2795
2796 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
2797 }
2798 return 1;
2799 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002800 return (1);
Willy Tarreaubc933932017-10-09 16:21:43 +02002801}
2802
Willy Tarreau62f52692017-10-08 23:01:42 +02002803
Willy Tarreau479998a2018-11-18 06:30:59 +01002804/* Attempt to read data, and subscribe if none available.
2805 * The function returns 1 if data has been received, otherwise zero.
2806 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002807static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002808{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002809 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002810 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002811 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02002812 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002813
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002814 if (h2c->wait_event.events & SUB_RETRY_RECV)
Olivier Houchard81a15af2018-10-19 17:26:49 +02002815 return (b_data(&h2c->dbuf));
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002816
Willy Tarreau315d8072017-12-10 22:17:57 +01002817 if (!h2_recv_allowed(h2c))
Olivier Houchard81a15af2018-10-19 17:26:49 +02002818 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002819
Willy Tarreau44e973f2018-03-01 17:49:30 +01002820 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002821 if (!buf) {
2822 h2c->flags |= H2_CF_DEM_DALLOC;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002823 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002824 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002825
Olivier Houchard7505f942018-08-21 18:10:44 +02002826 do {
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002827 b_realign_if_empty(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01002828 if (!b_data(buf) && (h2c->proxy->options2 & PR_O2_USE_HTX)) {
2829 /* HTX in use : try to pre-align the buffer like the
2830 * rxbufs will be to optimize memory copies. We'll make
2831 * sure that the frame header lands at the end of the
2832 * HTX block to alias it upon recv. We cannot use the
2833 * head because rcv_buf() will realign the buffer if
2834 * it's empty. Thus we cheat and pretend we already
2835 * have a few bytes there.
2836 */
2837 max = buf_room_for_htx_data(buf) + 9;
Willy Tarreauc0960d12018-12-14 10:59:15 +01002838 buf->head = sizeof(struct htx) - 9;
Willy Tarreau2a59e872018-12-12 08:23:47 +01002839 }
2840 else
2841 max = b_room(buf);
2842
Olivier Houchard7505f942018-08-21 18:10:44 +02002843 if (max)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002844 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0);
Olivier Houchard7505f942018-08-21 18:10:44 +02002845 else
2846 ret = 0;
2847 } while (ret > 0);
Willy Tarreaua2af5122017-10-09 11:56:46 +02002848
Willy Tarreaua8fcdac2019-08-02 07:48:47 +02002849 if (max && !ret && h2_recv_allowed(h2c))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002850 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Olivier Houchard81a15af2018-10-19 17:26:49 +02002851
Olivier Houcharda1411e62018-08-17 18:42:48 +02002852 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01002853 h2_release_buf(h2c, &h2c->dbuf);
Olivier Houchard46677732018-11-29 17:06:17 +01002854 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002855 }
2856
Willy Tarreaub7b5fe12018-06-18 13:33:09 +02002857 if (b_data(buf) == buf->size)
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002858 h2c->flags |= H2_CF_DEM_DFULL;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002859 return 1;
Willy Tarreau62f52692017-10-08 23:01:42 +02002860}
2861
Willy Tarreau479998a2018-11-18 06:30:59 +01002862/* Try to send data if possible.
2863 * The function returns 1 if data have been sent, otherwise zero.
2864 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002865static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002866{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002867 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02002868 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002869 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002870
2871 if (conn->flags & CO_FL_ERROR)
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01002872 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002873
Olivier Houchard7505f942018-08-21 18:10:44 +02002874
Willy Tarreaua2af5122017-10-09 11:56:46 +02002875 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
2876 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002877 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002878 }
2879
Willy Tarreaubc933932017-10-09 16:21:43 +02002880 /* This loop is quite simple : it tries to fill as much as it can from
2881 * pending streams into the existing buffer until it's reportedly full
2882 * or the end of send requests is reached. Then it tries to send this
2883 * buffer's contents out, marks it not full if at least one byte could
2884 * be sent, and tries again.
2885 *
2886 * The snd_buf() function normally takes a "flags" argument which may
2887 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
2888 * data immediately comes and CO_SFL_STREAMER to indicate that the
2889 * connection is streaming lots of data (used to increase TLS record
2890 * size at the expense of latency). The former can be sent any time
2891 * there's a buffer full flag, as it indicates at least one stream
2892 * attempted to send and failed so there are pending data. An
2893 * alternative would be to set it as long as there's an active stream
2894 * but that would be problematic for ACKs until we have an absolute
2895 * guarantee that all waiters have at least one byte to send. The
2896 * latter should possibly not be set for now.
2897 */
2898
2899 done = 0;
2900 while (!done) {
2901 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002902 unsigned int released = 0;
2903 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02002904
2905 /* fill as much as we can into the current buffer */
2906 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
2907 done = h2_process_mux(h2c);
2908
Olivier Houchard2b094432019-01-29 18:28:36 +01002909 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002910 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01002911
Willy Tarreaubc933932017-10-09 16:21:43 +02002912 if (conn->flags & CO_FL_ERROR)
2913 break;
2914
2915 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
2916 flags |= CO_SFL_MSG_MORE;
2917
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002918 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
2919 if (b_data(buf)) {
2920 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002921 if (!ret) {
2922 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002923 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002924 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002925 sent = 1;
2926 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002927 if (b_data(buf)) {
2928 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002929 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002930 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002931 }
2932 b_free(buf);
2933 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02002934 }
Willy Tarreaubc933932017-10-09 16:21:43 +02002935
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002936 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02002937 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002938
Willy Tarreaubc933932017-10-09 16:21:43 +02002939 /* wrote at least one byte, the buffer is not full anymore */
2940 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
2941 }
2942
Willy Tarreaua2af5122017-10-09 11:56:46 +02002943 if (conn->flags & CO_FL_SOCK_WR_SH) {
2944 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02002945 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002946 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002947 /* We're not full anymore, so we can wake any task that are waiting
2948 * for us.
2949 */
Willy Tarreauc51d47c2019-09-25 07:57:31 +02002950 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01002951 struct h2s *h2s;
2952
2953 list_for_each_entry(h2s, &h2c->send_list, list) {
2954 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
2955 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002956
Willy Tarreauc234ae32019-05-13 17:56:11 +02002957 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002958 continue;
2959
Olivier Houchard998410a2019-04-15 19:23:37 +02002960 /* For some reason, the upper layer failed to subsribe again,
2961 * so remove it from the send_list
2962 */
2963 if (!h2s->send_wait) {
2964 LIST_DEL_INIT(&h2s->list);
2965 continue;
2966 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002967 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002968 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002969 tasklet_wakeup(h2s->send_wait->tasklet);
Olivier Houchardd360ac62019-03-22 17:37:16 +01002970 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02002971 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002972 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002973 /* We're done, no more to send */
Willy Tarreau662fafc2019-05-26 09:43:07 +02002974 if (!br_data(h2c->mbuf))
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002975 return sent;
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002976schedule:
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002977 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002978 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002979
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002980 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002981}
2982
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002983/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002984static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
2985{
2986 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02002987 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002988
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002989 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02002990 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002991 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02002992 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01002993 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02002994 h2_process(h2c);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002995 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002996}
Willy Tarreaua2af5122017-10-09 11:56:46 +02002997
Willy Tarreau62f52692017-10-08 23:01:42 +02002998/* callback called on any event by the connection handler.
2999 * It applies changes and returns zero, or < 0 if it wants immediate
3000 * destruction of the connection (which normally doesn not happen in h2).
3001 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003002static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003003{
Olivier Houchard7505f942018-08-21 18:10:44 +02003004 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003005
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003006 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003007 h2_process_demux(h2c);
3008
3009 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003010 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003011
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003012 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003013 h2c->flags &= ~H2_CF_DEM_DFULL;
3014 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003015 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003016
Willy Tarreau0b37d652018-10-03 10:33:02 +02003017 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003018 /* frontend is stopping, reload likely in progress, let's try
3019 * to announce a graceful shutdown if not yet done. We don't
3020 * care if it fails, it will be tried again later.
3021 */
3022 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3023 if (h2c->last_sid < 0)
3024 h2c->last_sid = (1U << 31) - 1;
3025 h2c_send_goaway_error(h2c, NULL);
3026 }
3027 }
3028
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003029 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003030 * If we received early data, and the handshake is done, wake
3031 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003032 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003033 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3034 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3035 struct eb32_node *node;
3036 struct h2s *h2s;
3037
3038 h2c->flags |= H2_CF_WAIT_FOR_HS;
3039 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3040
3041 while (node) {
3042 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003043 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003044 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003045 node = eb32_next(node);
3046 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003047 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003048
Willy Tarreau26bd7612017-10-09 16:47:04 +02003049 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003050 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3051 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3052 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003053 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003054
3055 if (eb_is_empty(&h2c->streams_by_id)) {
3056 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003057 h2_release(h2c);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003058 return -1;
3059 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003060 }
3061
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003062 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003063 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003064
Olivier Houchard53216e72018-10-10 15:46:36 +02003065 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3066 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3067 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003068 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003069 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3070 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003071 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003072
Willy Tarreau3f133572017-10-31 19:21:06 +01003073 if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003074 if (h2c_may_expire(h2c))
3075 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3076 else
3077 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003078 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003079 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003080
Olivier Houchard7505f942018-08-21 18:10:44 +02003081 h2_send(h2c);
Willy Tarreau62f52692017-10-08 23:01:42 +02003082 return 0;
3083}
3084
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003085/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003086static int h2_wake(struct connection *conn)
3087{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003088 struct h2c *h2c = conn->ctx;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003089
3090 return (h2_process(h2c));
3091}
3092
Willy Tarreauea392822017-10-31 10:02:25 +01003093/* Connection timeout management. The principle is that if there's no receipt
3094 * nor sending for a certain amount of time, the connection is closed. If the
3095 * MUX buffer still has lying data or is not allocatable, the connection is
3096 * immediately killed. If it's allocatable and empty, we attempt to send a
3097 * GOAWAY frame.
3098 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003099static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003100{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003101 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003102 int expired = tick_is_expired(t->expire, now_ms);
3103
Willy Tarreau0975f112018-03-29 15:22:59 +02003104 if (!expired && h2c)
Willy Tarreauea392822017-10-31 10:02:25 +01003105 return t;
3106
Willy Tarreau534d8f92019-10-01 10:12:00 +02003107 if (h2c && !h2c_may_expire(h2c)) {
3108 /* we do still have streams but all of them are idle, waiting
3109 * for the data layer, so we must not enforce the timeout here.
3110 */
3111 t->expire = TICK_ETERNITY;
3112 return t;
3113 }
3114
Olivier Houchard3f795f72019-04-17 22:51:06 +02003115 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003116
3117 if (!h2c) {
3118 /* resources were already deleted */
3119 return NULL;
3120 }
3121
3122 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003123 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003124 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003125
Willy Tarreau662fafc2019-05-26 09:43:07 +02003126 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003127 /* don't even try to send a GOAWAY, the buffer is stuck */
3128 h2c->flags |= H2_CF_GOAWAY_FAILED;
3129 }
3130
3131 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003132 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003133 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3134 h2c->flags |= H2_CF_GOAWAY_FAILED;
3135
Willy Tarreau662fafc2019-05-26 09:43:07 +02003136 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003137 unsigned int released = 0;
3138 struct buffer *buf;
3139
3140 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3141 if (b_data(buf)) {
3142 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3143 if (!ret)
3144 break;
3145 b_del(buf, ret);
3146 if (b_data(buf))
3147 break;
3148 b_free(buf);
3149 released++;
3150 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003151 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003152
3153 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003154 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003155 }
Willy Tarreauea392822017-10-31 10:02:25 +01003156
Willy Tarreau0975f112018-03-29 15:22:59 +02003157 /* either we can release everything now or it will be done later once
3158 * the last stream closes.
3159 */
3160 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003161 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003162
Willy Tarreauea392822017-10-31 10:02:25 +01003163 return NULL;
3164}
3165
3166
Willy Tarreau62f52692017-10-08 23:01:42 +02003167/*******************************************/
3168/* functions below are used by the streams */
3169/*******************************************/
3170
3171/*
3172 * Attach a new stream to a connection
3173 * (Used for outgoing connections)
3174 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003175static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003176{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003177 struct conn_stream *cs;
3178 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003179 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003180
3181 cs = cs_new(conn);
3182 if (!cs)
3183 return NULL;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003184 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003185 if (!h2s) {
3186 cs_free(cs);
3187 return NULL;
3188 }
3189 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003190}
3191
Willy Tarreaufafd3982018-11-18 21:29:20 +01003192/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3193 * We have to scan because we may have some orphan streams. It might be
3194 * beneficial to scan backwards from the end to reduce the likeliness to find
3195 * orphans.
3196 */
3197static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3198{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003199 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003200 struct h2s *h2s;
3201 struct eb32_node *node;
3202
3203 node = eb32_first(&h2c->streams_by_id);
3204 while (node) {
3205 h2s = container_of(node, struct h2s, by_id);
3206 if (h2s->cs)
3207 return h2s->cs;
3208 node = eb32_next(node);
3209 }
3210 return NULL;
3211}
3212
Willy Tarreau62f52692017-10-08 23:01:42 +02003213/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003214 * Destroy the mux and the associated connection, if it is no longer used
3215 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003216static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003217{
Christopher Faulet73c12072019-04-08 11:23:22 +02003218 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003219
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003220 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003221 h2_release(h2c);
Olivier Houchard060ed432018-11-06 16:32:42 +01003222}
3223
3224/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003225 * Detach the stream from the connection and possibly release the connection.
3226 */
3227static void h2_detach(struct conn_stream *cs)
3228{
Willy Tarreau60935142017-10-16 18:11:19 +02003229 struct h2s *h2s = cs->ctx;
3230 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003231 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003232
3233 cs->ctx = NULL;
3234 if (!h2s)
3235 return;
3236
Olivier Houchard998410a2019-04-15 19:23:37 +02003237 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003238 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003239 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003240 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003241 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003242 /*
3243 * At this point, the stream_interface is supposed to have called
3244 * h2_unsubscribe(), so the only way there's still a
3245 * subscription that came from the stream_interface (as we
3246 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3247 * without the stream_interface involved) is that we subscribed
3248 * for sending, we woke the tasklet up and removed the
3249 * SUB_RETRY_SEND flag, so the stream_interface would not
3250 * know it has to unsubscribe for send, but the tasklet hasn't
3251 * run yet. Make sure to handle that by explicitely setting
3252 * send_wait to NULL, as nothing else will do it for us.
3253 */
3254 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003255 }
3256
Olivier Houchardf502aca2018-12-14 19:42:40 +01003257 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003258 h2c = h2s->h2c;
3259 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003260 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003261 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3262 !h2_frt_has_too_many_cs(h2c)) {
3263 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003264 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003265 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003266 }
Willy Tarreau60935142017-10-16 18:11:19 +02003267
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003268 /* this stream may be blocked waiting for some data to leave (possibly
3269 * an ES or RST frame), so orphan it in this case.
3270 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003271 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003272 (h2c->st0 < H2_CS_ERROR) &&
Olivier Houchard16ff2612019-03-21 15:48:46 +01003273 (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 +01003274 return;
3275
Willy Tarreau45f752e2017-10-30 15:44:59 +01003276 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3277 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3278 /* unblock the connection if it was blocked on this
3279 * stream.
3280 */
3281 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3282 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003283 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003284 }
3285
Willy Tarreau71049cc2018-03-28 13:56:39 +02003286 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003287
Olivier Houchard8a786902018-12-15 16:05:40 +01003288 if (h2c->flags & H2_CF_IS_BACK &&
3289 (h2c->proxy->options2 & PR_O2_USE_HTX)) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003290 if (!(h2c->conn->flags &
3291 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3292 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003293 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003294 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3295 h2c->conn->owner = NULL;
3296 if (eb_is_empty(&h2c->streams_by_id)) {
3297 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3298 /* The server doesn't want it, let's kill the connection right away */
3299 h2c->conn->mux->destroy(h2c->conn);
3300 return;
3301 }
3302 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003303 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003304 if (eb_is_empty(&h2c->streams_by_id)) {
3305 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0)
3306 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
3307 return;
3308 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003309 /* Never ever allow to reuse a connection from a non-reuse backend */
3310 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3311 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003312 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003313 struct server *srv = objt_server(h2c->conn->target);
3314
3315 if (srv) {
3316 if (h2c->conn->flags & CO_FL_PRIVATE)
3317 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3318 else
3319 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3320 }
3321
3322 }
3323 }
3324 }
3325
Willy Tarreaue323f342018-03-28 13:51:45 +02003326 /* We don't want to close right now unless we're removing the
3327 * last stream, and either the connection is in error, or it
3328 * reached the ID already specified in a GOAWAY frame received
3329 * or sent (as seen by last_sid >= 0).
3330 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003331 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003332 /* no more stream will come, kill it now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003333 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003334 }
3335 else if (h2c->task) {
Willy Tarreau534d8f92019-10-01 10:12:00 +02003336 if (h2c_may_expire(h2c))
3337 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3338 else
3339 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003340 task_queue(h2c->task);
Willy Tarreau60935142017-10-16 18:11:19 +02003341 }
Willy Tarreau62f52692017-10-08 23:01:42 +02003342}
3343
Willy Tarreau88bdba32019-05-13 18:17:53 +02003344/* Performs a synchronous or asynchronous shutr(). */
3345static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003346{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003347 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003348 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003349
Willy Tarreauf983d002019-05-14 10:40:21 +02003350 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003351 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003352
Willy Tarreau18059042019-01-31 19:12:48 +01003353 /* a connstream may require us to immediately kill the whole connection
3354 * for example because of a "tcp-request content reject" rule that is
3355 * normally used to limit abuse. In this case we schedule a goaway to
3356 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003357 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003358 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003359 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3360 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3361 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3362 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003363 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3364 /* Nothing was never sent for this stream, so reset with
3365 * REFUSED_STREAM error to let the client retry the
3366 * request.
3367 */
3368 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3369 }
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003370 else {
3371 /* a final response was already provided, we don't want this
3372 * stream anymore. This may happen when the server responds
3373 * before the end of an upload and closes quickly (redirect,
3374 * deny, ...)
3375 */
3376 h2s_error(h2s, H2_ERR_CANCEL);
3377 }
Willy Tarreau18059042019-01-31 19:12:48 +01003378
Willy Tarreau90c32322017-11-24 08:00:30 +01003379 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003380 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003381 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003382
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003383 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003384 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003385 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003386 done:
3387 h2s->flags &= ~H2_SF_WANT_SHUTR;
3388 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003389add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003390 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003391 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003392 if (h2s->flags & H2_SF_BLK_MFCTL) {
3393 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3394 h2s->send_wait = sw;
3395 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3396 h2s->send_wait = sw;
3397 LIST_ADDQ(&h2c->send_list, &h2s->list);
3398 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003399 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003400 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003401 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003402 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003403}
3404
Willy Tarreau88bdba32019-05-13 18:17:53 +02003405/* Performs a synchronous or asynchronous shutw(). */
3406static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003407{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003408 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003409 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003410
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003411 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003412 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003413
Willy Tarreauebdb6a02019-08-06 10:30:58 +02003414 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003415 /* we can cleanly close using an empty data frame only after headers */
3416
3417 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3418 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003419 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003420
3421 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003422 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003423 else
3424 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003425 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003426 /* a connstream may require us to immediately kill the whole connection
3427 * for example because of a "tcp-request content reject" rule that is
3428 * normally used to limit abuse. In this case we schedule a goaway to
3429 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003430 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003431 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003432 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3433 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3434 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3435 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003436 else {
3437 /* Nothing was never sent for this stream, so reset with
3438 * REFUSED_STREAM error to let the client retry the
3439 * request.
3440 */
3441 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3442 }
Willy Tarreau18059042019-01-31 19:12:48 +01003443
Willy Tarreau90c32322017-11-24 08:00:30 +01003444 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003445 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003446 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003447
Willy Tarreau00dd0782018-03-01 16:31:34 +01003448 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003449 }
3450
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003451 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003452 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003453 done:
3454 h2s->flags &= ~H2_SF_WANT_SHUTW;
3455 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003456
3457 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003458 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003459 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003460 if (h2s->flags & H2_SF_BLK_MFCTL) {
3461 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3462 h2s->send_wait = sw;
3463 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3464 h2s->send_wait = sw;
3465 LIST_ADDQ(&h2c->send_list, &h2s->list);
3466 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003467 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003468 /* let the handler know we want to shutw */
3469 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003470 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003471}
3472
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003473/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003474 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3475 * and prevented the last frame from being emitted.
3476 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003477static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3478{
3479 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003480 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003481
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003482 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003483 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003484 h2_do_shutw(h2s);
3485
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003486 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003487 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003488
Willy Tarreau88bdba32019-05-13 18:17:53 +02003489 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003490 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003491 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01003492
Willy Tarreau88bdba32019-05-13 18:17:53 +02003493 if (!h2s->cs) {
3494 h2s_destroy(h2s);
3495 if (h2c_is_dead(h2c))
3496 h2_release(h2c);
3497 }
Olivier Houchard7a977432019-03-21 15:47:13 +01003498 }
3499
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003500 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02003501}
3502
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003503/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003504static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3505{
3506 struct h2s *h2s = cs->ctx;
3507
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003508 if (cs->flags & CS_FL_KILL_CONN)
3509 h2s->flags |= H2_SF_KILL_CONN;
3510
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003511 if (!mode)
3512 return;
3513
3514 h2_do_shutr(h2s);
3515}
3516
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003517/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003518static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3519{
3520 struct h2s *h2s = cs->ctx;
3521
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003522 if (cs->flags & CS_FL_KILL_CONN)
3523 h2s->flags |= H2_SF_KILL_CONN;
3524
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003525 h2_do_shutw(h2s);
3526}
3527
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003528/* Decode the payload of a HEADERS frame and produce the equivalent HTTP/1 or
Willy Tarreau86277d42019-01-02 15:36:11 +01003529 * HTX request or response depending on the connection's side. Returns a
3530 * positive value on success, a negative value on failure, or 0 if it couldn't
3531 * proceed. May report connection errors in h2c->errcode if the frame is
3532 * non-decodable and the connection unrecoverable. In absence of connection
3533 * error when a failure is reported, the caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01003534 *
3535 * The function may fold CONTINUATION frames into the initial HEADERS frame
3536 * by removing padding and next frame header, then moving the CONTINUATION
3537 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
3538 * leaving a hole between the main frame and the beginning of the next one.
3539 * The possibly remaining incomplete or next frame at the end may be moved
3540 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
3541 * HEADERS frames are unwrapped into a temporary buffer before decoding.
3542 *
3543 * A buffer at the beginning of processing may look like this :
3544 *
3545 * ,---.---------.-----.--------------.--------------.------.---.
3546 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
3547 * `---^---------^-----^--------------^--------------^------^---'
3548 * | | <-----> | |
3549 * area | dpl | wrap
3550 * |<--------------> |
3551 * | dfl |
3552 * |<-------------------------------------------------->|
3553 * head data
3554 *
3555 * Padding is automatically overwritten when folding, participating to the
3556 * hole size after dfl :
3557 *
3558 * ,---.------------------------.-----.--------------.------.---.
3559 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
3560 * `---^------------------------^-----^--------------^------^---'
3561 * | | <-----> | |
3562 * area | hole | wrap
3563 * |<-----------------------> |
3564 * | dfl |
3565 * |<-------------------------------------------------->|
3566 * head data
3567 *
3568 * Please note that the HEADERS frame is always deprived from its PADLEN byte
3569 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
3570 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003571 *
3572 * The <flags> field must point to either the stream's flags or to a copy of it
3573 * so that the function can update the following flags :
3574 * - H2_SF_DATA_CLEN when content-length is seen
3575 * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion
3576 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01003577 *
3578 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
3579 * decoding, in order to detect if we're dealing with a headers or a trailers
3580 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02003581 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003582static 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 +02003583{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003584 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02003585 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003586 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02003587 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003588 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003589 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01003590 int flen; // header frame len
3591 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01003592 int ret = 0;
3593 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02003594 int wrap;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003595 int try = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02003596
Willy Tarreauea18f862018-12-22 20:19:26 +01003597next_frame:
3598 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
3599 goto leave; // incomplete input frame
3600
3601 /* No END_HEADERS means there's one or more CONTINUATION frames. In
3602 * this case, we'll try to paste it immediately after the initial
3603 * HEADERS frame payload and kill any possible padding. The initial
3604 * frame's length will be increased to represent the concatenation
3605 * of the two frames. The next frame is read from position <tlen>
3606 * and written at position <flen> (minus padding if some is present).
3607 */
3608 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
3609 struct h2_fh hdr;
3610 int clen; // CONTINUATION frame's payload length
3611
3612 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
3613 /* no more data, the buffer may be full, either due to
3614 * too large a frame or because of too large a hole that
3615 * we're going to compact at the end.
3616 */
3617 goto leave;
3618 }
3619
3620 if (hdr.ft != H2_FT_CONTINUATION) {
3621 /* RFC7540#6.10: frame of unexpected type */
3622 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3623 goto fail;
3624 }
3625
3626 if (hdr.sid != h2c->dsi) {
3627 /* RFC7540#6.10: frame of different stream */
3628 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3629 goto fail;
3630 }
3631
3632 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
3633 /* RFC7540#4.2: invalid frame length */
3634 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3635 goto fail;
3636 }
3637
3638 /* detect when we must stop aggragating frames */
3639 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
3640
3641 /* Take as much as we can of the CONTINUATION frame's payload */
3642 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
3643 if (clen > hdr.len)
3644 clen = hdr.len;
3645
3646 /* Move the frame's payload over the padding, hole and frame
3647 * header. At least one of hole or dpl is null (see diagrams
3648 * above). The hole moves after the new aggragated frame.
3649 */
3650 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
3651 h2c->dfl += clen - h2c->dpl;
3652 hole += h2c->dpl + 9;
3653 h2c->dpl = 0;
3654 goto next_frame;
3655 }
3656
3657 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01003658
Willy Tarreau13278b42017-10-13 19:23:14 +02003659 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003660 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02003661 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02003662 copy = alloc_trash_chunk();
3663 if (!copy) {
3664 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
3665 goto fail;
3666 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003667 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
3668 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
3669 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02003670 }
3671
Willy Tarreau13278b42017-10-13 19:23:14 +02003672 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
3673 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003674 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003675 /* RFC7540#5.3.1 : stream dep may not depend on itself */
3676 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02003677 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003678 }
3679
Willy Tarreaua01f45e2018-12-31 07:41:24 +01003680 if (flen < 5) {
3681 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3682 goto fail;
3683 }
3684
Willy Tarreau13278b42017-10-13 19:23:14 +02003685 hdrs += 5; // stream dep = 4, weight = 1
3686 flen -= 5;
3687 }
3688
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003689 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau937f7602018-02-26 15:22:17 +01003690 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01003691 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003692 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003693
Willy Tarreau937f7602018-02-26 15:22:17 +01003694 /* we can't retry a failed decompression operation so we must be very
3695 * careful not to take any risks. In practice the output buffer is
3696 * always empty except maybe for trailers, in which case we simply have
3697 * to wait for the upper layer to finish consuming what is available.
3698 */
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003699
3700 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003701 htx = htx_from_buf(rxbuf);
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003702 if (!htx_is_empty(htx)) {
3703 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003704 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003705 }
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003706 } else {
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003707 if (b_data(rxbuf)) {
3708 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003709 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003710 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003711
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003712 rxbuf->head = 0;
3713 try = b_size(rxbuf);
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003714 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003715
Willy Tarreau25919232019-01-03 14:48:18 +01003716 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003717 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
3718 sizeof(list)/sizeof(list[0]), tmp);
3719 if (outlen < 0) {
3720 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
3721 goto fail;
3722 }
3723
Willy Tarreau25919232019-01-03 14:48:18 +01003724 /* The PACK decompressor was updated, let's update the input buffer and
3725 * the parser's state to commit these changes and allow us to later
3726 * fail solely on the stream if needed.
3727 */
3728 b_del(&h2c->dbuf, h2c->dfl + hole);
3729 h2c->dfl = hole = 0;
3730 h2c->st0 = H2_CS_FRAME_H;
3731
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003732 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01003733 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003734
Willy Tarreau88d138e2019-01-02 19:38:14 +01003735 if (*flags & H2_SF_HEADERS_RCVD)
3736 goto trailers;
3737
3738 /* This is the first HEADERS frame so it's a headers block */
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003739 if (htx) {
3740 /* HTX mode */
3741 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003742 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003743 else
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003744 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003745 } else {
3746 /* HTTP/1 mode */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003747 outlen = h2_make_h1_request(list, b_tail(rxbuf), try, &msgf, body_len);
Willy Tarreau83195932019-01-03 10:26:23 +01003748 if (outlen > 0)
3749 b_add(rxbuf, outlen);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003750 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003751
3752 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01003753 /* too large headers? this is a stream error only */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003754 goto fail;
3755 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003756
Willy Tarreau174b06a2018-04-25 18:13:58 +02003757 if (msgf & H2_MSGF_BODY) {
3758 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003759 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003760 *flags |= H2_SF_DATA_CLEN;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003761 if (htx)
3762 htx->extra = *body_len;
3763 }
Olivier Houchard50d660c2018-12-08 00:18:31 +01003764 else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003765 *flags |= H2_SF_DATA_CHNK;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003766 }
3767
Willy Tarreau88d138e2019-01-02 19:38:14 +01003768 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01003769 /* indicate that a HEADERS frame was received for this stream, except
3770 * for 1xx responses. For 1xx responses, another HEADERS frame is
3771 * expected.
3772 */
3773 if (!(msgf & H2_MSGF_RSP_1XX))
3774 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003775
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02003776 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01003777 /* Mark the end of message, either using EOM in HTX or with the
3778 * trailing CRLF after the end of trailers. Note that DATA_CHNK
Willy Tarreau2135f912019-05-07 11:17:32 +02003779 * is not set during headers with END_STREAM. For HTX trailers,
3780 * we must not leave an HTX trailers block not followed by an
3781 * EOM block, the two must be atomic. Thus if we fail to emit
3782 * the EOM block we must remove the TLR block we've just added.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003783 */
3784 if (htx) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02003785 if (!htx_add_endof(htx, HTX_BLK_EOM))
Willy Tarreau88d138e2019-01-02 19:38:14 +01003786 goto fail;
3787 }
3788 else if (*flags & H2_SF_DATA_CHNK) {
3789 if (!b_putblk(rxbuf, "\r\n", 2))
3790 goto fail;
3791 }
3792 }
Willy Tarreau937f7602018-02-26 15:22:17 +01003793
Willy Tarreau86277d42019-01-02 15:36:11 +01003794 /* success */
3795 ret = 1;
3796
Willy Tarreau68dd9852017-07-03 14:44:26 +02003797 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01003798 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01003799 * move the remaining data over it.
3800 */
3801 if (hole) {
3802 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
3803 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
3804 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
3805 b_sub(&h2c->dbuf, hole);
3806 }
3807
Willy Tarreau97215ca2019-04-29 10:20:21 +02003808 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01003809 /* too large frames */
3810 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01003811 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01003812 }
3813
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003814 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003815 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02003816 free_trash_chunk(copy);
Willy Tarreau86277d42019-01-02 15:36:11 +01003817 return ret;
3818
Willy Tarreau68dd9852017-07-03 14:44:26 +02003819 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01003820 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02003821 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003822
3823 trailers:
3824 /* This is the last HEADERS frame hence a trailer */
3825
3826 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
3827 /* It's a trailer but it's missing ES flag */
3828 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3829 goto fail;
3830 }
3831
Christopher Faulet54b5e212019-06-04 10:08:28 +02003832 /* Trailers terminate a DATA sequence. In HTX we always handle them. In
3833 * legacy, when using chunks, we have to emit the 0 CRLF marker first
3834 * and then handle the trailers. For other modes, the trailers are
3835 * silently dropped.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003836 */
3837 if (htx) {
Willy Tarreau5255f282019-01-03 18:41:05 +01003838 if (h2_make_htx_trailers(list, htx) <= 0)
3839 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003840 }
3841 else if (*flags & H2_SF_DATA_CHNK) {
3842 /* Legacy mode with chunked encoding : we must finalize the
3843 * data block message emit the trailing CRLF */
3844 if (!b_putblk(rxbuf, "0\r\n", 3))
3845 goto fail;
Willy Tarreaue2b05cc2019-01-03 16:18:34 +01003846
3847 outlen = h2_make_h1_trailers(list, b_tail(rxbuf), try);
3848 if (outlen > 0)
3849 b_add(rxbuf, outlen);
3850 else
3851 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003852 }
3853
3854 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02003855}
3856
Willy Tarreau454f9052017-10-26 19:40:35 +02003857/* Transfer the payload of a DATA frame to the HTTP/1 side. When content-length
3858 * or a tunnel is used, the contents are copied as-is. When chunked encoding is
3859 * in use, a new chunk is emitted for each frame. This is supposed to fit
3860 * because the smallest chunk takes 1 byte for the size, 2 for CRLF, X for the
3861 * data, 2 for the extra CRLF, so that's 5+X, while on the H2 side the smallest
3862 * frame will be 9+X bytes based on the same buffer size. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003863 * parser state is automatically updated. Returns > 0 if it could completely
3864 * send the current frame, 0 if it couldn't complete, in which case
3865 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
3866 * DATA frame can return 0 as a valid result). Stream errors are reported in
3867 * h2s->errcode and connection errors in h2c->errcode. The caller must already
3868 * have checked the frame header and ensured that the frame was complete or the
3869 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02003870 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01003871static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003872{
3873 struct h2c *h2c = h2s->h2c;
3874 int block1, block2;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003875 unsigned int flen = 0;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003876 unsigned int chklen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003877 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003878 struct buffer *csbuf;
Willy Tarreau454f9052017-10-26 19:40:35 +02003879
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003880 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003881
Olivier Houchard638b7992018-08-16 15:41:52 +02003882 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003883 if (!csbuf) {
3884 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003885 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003886 }
3887
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003888try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003889 flen = h2c->dfl - h2c->dpl;
Olivier Houchard2f308832018-12-19 15:53:53 +01003890 if (h2c->proxy->options2 & PR_O2_USE_HTX)
3891 htx = htx_from_buf(csbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003892 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01003893 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003894
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003895 if (flen > b_data(&h2c->dbuf)) {
3896 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003897 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01003898 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003899 }
3900
Willy Tarreaua9b77962019-01-31 07:23:00 +01003901 if (htx) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003902 unsigned int sent;
3903
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003904 block1 = htx_free_data_space(htx);
3905 if (!block1) {
3906 h2c->flags |= H2_CF_DEM_SFULL;
3907 goto fail;
3908 }
3909 if (flen > block1)
3910 flen = block1;
3911
3912 /* here, flen is the max we can copy into the output buffer */
3913 block1 = b_contig_data(&h2c->dbuf, 0);
3914 if (flen > block1)
3915 flen = block1;
3916
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003917 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003918
Willy Tarreaub6563f42019-06-15 11:34:41 +02003919 b_del(&h2c->dbuf, sent);
3920 h2c->dfl -= sent;
3921 h2c->rcvd_c += sent;
3922 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau1915ca22019-01-24 11:49:37 +01003923
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003924 if (h2s->flags & H2_SF_DATA_CLEN) {
Willy Tarreaub6563f42019-06-15 11:34:41 +02003925 h2s->body_len -= sent;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003926 htx->extra = h2s->body_len;
3927 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003928
3929 if (sent < flen) {
3930 h2c->flags |= H2_CF_DEM_SFULL;
3931 goto fail;
3932 }
3933
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003934 goto try_again;
3935 }
Willy Tarreau455d5682019-05-24 19:42:18 +02003936 else if (unlikely(b_space_wraps(csbuf) &&
3937 flen + chklen <= b_room(csbuf) &&
3938 b_data(csbuf) <= MAX_DATA_REALIGN)) {
3939 /* it doesn't fit in a single block and the buffer is fragmented, if there are
3940 * not too many data in the buffer, let's defragment it and try
3941 * again.
Willy Tarreaud755ea62018-02-26 15:44:54 +01003942 */
3943 b_slow_realign(csbuf, trash.area, 0);
Willy Tarreau454f9052017-10-26 19:40:35 +02003944 }
3945
Willy Tarreaueba10f22018-04-25 20:44:22 +02003946 /* chunked-encoding requires more room */
3947 if (h2s->flags & H2_SF_DATA_CHNK) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01003948 chklen = MIN(flen, b_room(csbuf));
Willy Tarreaueba10f22018-04-25 20:44:22 +02003949 chklen = (chklen < 16) ? 1 : (chklen < 256) ? 2 :
3950 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
3951 (chklen < 1048576) ? 4 : 8;
3952 chklen += 4; // CRLF, CRLF
3953 }
3954
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003955 /* does it fit in output buffer or should we wait ? */
Willy Tarreaud755ea62018-02-26 15:44:54 +01003956 if (flen + chklen > b_room(csbuf)) {
3957 if (chklen >= b_room(csbuf)) {
3958 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003959 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003960 }
3961 flen = b_room(csbuf) - chklen;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003962 }
3963
3964 if (h2s->flags & H2_SF_DATA_CHNK) {
3965 /* emit the chunk size */
3966 unsigned int chksz = flen;
3967 char str[10];
3968 char *beg;
3969
3970 beg = str + sizeof(str);
3971 *--beg = '\n';
3972 *--beg = '\r';
3973 do {
3974 *--beg = hextab[chksz & 0xF];
3975 } while (chksz >>= 4);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003976 b_putblk(csbuf, beg, str + sizeof(str) - beg);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003977 }
3978
Willy Tarreau454f9052017-10-26 19:40:35 +02003979 /* Block1 is the length of the first block before the buffer wraps,
3980 * block2 is the optional second block to reach the end of the frame.
3981 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003982 block1 = b_contig_data(&h2c->dbuf, 0);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003983 if (block1 > flen)
3984 block1 = flen;
Willy Tarreau454f9052017-10-26 19:40:35 +02003985 block2 = flen - block1;
3986
3987 if (block1)
Willy Tarreaud755ea62018-02-26 15:44:54 +01003988 b_putblk(csbuf, b_head(&h2c->dbuf), block1);
Willy Tarreau454f9052017-10-26 19:40:35 +02003989
3990 if (block2)
Willy Tarreaud755ea62018-02-26 15:44:54 +01003991 b_putblk(csbuf, b_peek(&h2c->dbuf, block1), block2);
Willy Tarreau454f9052017-10-26 19:40:35 +02003992
Willy Tarreaueba10f22018-04-25 20:44:22 +02003993 if (h2s->flags & H2_SF_DATA_CHNK) {
3994 /* emit the CRLF */
Willy Tarreaud755ea62018-02-26 15:44:54 +01003995 b_putblk(csbuf, "\r\n", 2);
Willy Tarreaueba10f22018-04-25 20:44:22 +02003996 }
3997
Willy Tarreau454f9052017-10-26 19:40:35 +02003998 /* now mark the input data as consumed (will be deleted from the buffer
3999 * by the caller when seeing FRAME_A after sending the window update).
4000 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004001 b_del(&h2c->dbuf, flen);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004002 h2c->dfl -= flen;
4003 h2c->rcvd_c += flen;
4004 h2c->rcvd_s += flen; // warning, this can also affect the closed streams!
4005
Willy Tarreau1915ca22019-01-24 11:49:37 +01004006 if (h2s->flags & H2_SF_DATA_CLEN)
4007 h2s->body_len -= flen;
4008
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004009 if (h2c->dfl > h2c->dpl) {
4010 /* more data available, transfer stalled on stream full */
Willy Tarreaud755ea62018-02-26 15:44:54 +01004011 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004012 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004013 }
4014
Willy Tarreau4a28da12018-01-04 14:41:00 +01004015 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004016 /* here we're done with the frame, all the payload (except padding) was
4017 * transferred.
4018 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004019
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004020 if (h2c->dff & H2_F_DATA_END_STREAM) {
4021 if (htx) {
4022 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4023 h2c->flags |= H2_CF_DEM_SFULL;
4024 goto fail;
4025 }
Willy Tarreaud755ea62018-02-26 15:44:54 +01004026 }
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004027 else if (h2s->flags & H2_SF_DATA_CHNK) {
4028 /* emit the trailing 0 CRLF CRLF */
4029 if (b_room(csbuf) < 5) {
4030 h2c->flags |= H2_CF_DEM_SFULL;
4031 goto fail;
4032 }
4033 chklen += 5;
4034 b_putblk(csbuf, "0\r\n\r\n", 5);
4035 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004036 }
4037
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004038 h2c->rcvd_c += h2c->dpl;
4039 h2c->rcvd_s += h2c->dpl;
4040 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004041 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004042 if (htx)
4043 htx_to_buf(htx, csbuf);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004044 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004045 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004046 if (htx)
4047 htx_to_buf(htx, csbuf);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004048 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004049}
4050
Willy Tarreau5dd17352018-06-14 13:33:30 +02004051/* Try to send a HEADERS frame matching HTTP/1 response present at offset <ofs>
4052 * and for <max> bytes in buffer <buf> for the H2 stream <h2s>. Returns the
4053 * number of bytes sent. The caller must check the stream's status to detect
4054 * any error which might have happened subsequently to a successful send.
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004055 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004056static 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 +02004057{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004058 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004059 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004060 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004061 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004062 struct buffer *mbuf;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004063 union h1_sl sl;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004064 int es_now = 0;
4065 int ret = 0;
4066 int hdr;
4067
4068 if (h2c_mux_busy(h2c, h2s)) {
4069 h2s->flags |= H2_SF_BLK_MBUSY;
4070 return 0;
4071 }
4072
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004073 /* First, try to parse the H1 response and index it into <list>.
4074 * NOTE! Since it comes from haproxy, we *know* that a response header
4075 * block does not wrap and we can safely read it this way without
4076 * having to realign the buffer.
4077 */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004078 ret = h1_headers_to_hdr_list(b_peek(buf, ofs), b_peek(buf, ofs) + max,
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004079 list, sizeof(list)/sizeof(list[0]), h1m, &sl);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004080 if (ret <= 0) {
Willy Tarreauf13ef962017-11-02 15:14:19 +01004081 /* incomplete or invalid response, this is abnormal coming from
4082 * haproxy and may only result in a bad errorfile or bad Lua code
4083 * so that won't be fixed, raise an error now.
4084 *
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004085 * FIXME: we should instead add the ability to only return a
4086 * 502 bad gateway. But in theory this is not supposed to
4087 * happen.
4088 */
4089 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4090 ret = 0;
4091 goto end;
4092 }
4093
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004094 h2s->status = sl.st.status;
Willy Tarreaudb72da02018-09-13 11:52:20 +02004095
4096 /* certain statuses have no body or an empty one, regardless of
4097 * what the headers say.
4098 */
4099 if (sl.st.status >= 100 && sl.st.status < 200) {
4100 h1m->flags &= ~(H1_MF_CLEN | H1_MF_CHNK);
4101 h1m->curr_len = h1m->body_len = 0;
4102 }
4103 else if (sl.st.status == 204 || sl.st.status == 304) {
4104 /* no contents, claim c-len is present and set to zero */
4105 h1m->flags &= ~H1_MF_CHNK;
4106 h1m->flags |= H1_MF_CLEN;
4107 h1m->curr_len = h1m->body_len = 0;
4108 }
4109
Willy Tarreaubcc45952019-05-26 10:05:50 +02004110 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004111 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004112 if (!h2_get_buf(h2c, mbuf)) {
4113 h2c->flags |= H2_CF_MUX_MALLOC;
4114 h2s->flags |= H2_SF_BLK_MROOM;
4115 return 0;
4116 }
4117
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004118 chunk_reset(&outbuf);
4119
4120 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004121 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4122 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004123 break;
4124 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004125 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004126 }
4127
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004128 if (outbuf.size < 9)
4129 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004130
4131 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004132 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4133 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4134 outbuf.data = 9;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004135
4136 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004137 if (unlikely(list[0].v.len != 3)) {
Willy Tarreaua87f2022017-11-09 11:23:00 +01004138 /* this is an unparsable response */
4139 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4140 ret = 0;
4141 goto end;
4142 }
Willy Tarreauaafdf582018-12-10 18:06:40 +01004143
4144 if (!hpack_encode_str_status(&outbuf, h2s->status, list[0].v)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004145 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004146 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004147 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004148 }
4149
4150 /* encode all headers, stop at empty name */
4151 for (hdr = 1; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaua76e4c22017-11-24 08:17:28 +01004152 /* these ones do not exist in H2 and must be dropped. */
4153 if (isteq(list[hdr].n, ist("connection")) ||
4154 isteq(list[hdr].n, ist("proxy-connection")) ||
4155 isteq(list[hdr].n, ist("keep-alive")) ||
4156 isteq(list[hdr].n, ist("upgrade")) ||
4157 isteq(list[hdr].n, ist("transfer-encoding")))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004158 continue;
4159
4160 if (isteq(list[hdr].n, ist("")))
4161 break; // end
4162
4163 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4164 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004165 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004166 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004167 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004168 }
4169 }
4170
4171 /* we may need to add END_STREAM */
Willy Tarreau927b88b2019-03-04 08:03:25 +01004172 if (((h1m->flags & H1_MF_CLEN) && !h1m->body_len) || !h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004173 es_now = 1;
4174
4175 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004176 h2_set_frame_size(outbuf.area, outbuf.data - 9);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004177
4178 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004179 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004180
4181 /* consume incoming H1 response */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004182 max -= ret;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004183
4184 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004185 b_add(mbuf, outbuf.data);
Willy Tarreau67434202017-11-06 20:20:51 +01004186 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004187
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004188 if (es_now) {
Willy Tarreau35a62702018-02-27 15:37:25 +01004189 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004190 ret += max;
Willy Tarreau35a62702018-02-27 15:37:25 +01004191
Willy Tarreau801250e2018-09-11 11:45:04 +02004192 h1m->state = H1_MSG_DONE;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004193 h2s->flags |= H2_SF_ES_SENT;
4194 if (h2s->st == H2_SS_OPEN)
4195 h2s->st = H2_SS_HLOC;
4196 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004197 h2s_close(h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004198 }
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004199 else if (h2s->status >= 100 && h2s->status < 200) {
Willy Tarreau87285592017-11-29 15:41:32 +01004200 /* we'll let the caller check if it has more headers to send */
Willy Tarreau7f437ff2018-09-11 13:51:19 +02004201 h1m_init_res(h1m);
Willy Tarreau9b8cd1f2018-09-12 09:24:38 +02004202 h1m->err_pos = -1; // don't care about errors on the response path
Willy Tarreaueb528db2018-09-12 09:54:00 +02004203 h2s->h1m.flags |= H1_MF_TOLOWER;
Willy Tarreau87285592017-11-29 15:41:32 +01004204 goto end;
Willy Tarreauc199faf2017-10-31 08:35:27 +01004205 }
Willy Tarreau001823c2018-09-12 17:25:32 +02004206
4207 /* now the h1m state is either H1_MSG_CHUNK_SIZE or H1_MSG_DATA */
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004208
4209 end:
Dirkjan Bussinkc26c72d2018-09-14 14:30:25 +02004210 //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 +02004211 return ret;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004212 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004213 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4214 goto retry;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004215 h1m_init_res(h1m);
4216 h1m->err_pos = -1; // don't care about errors on the response path
4217 h2c->flags |= H2_CF_MUX_MFULL;
4218 h2s->flags |= H2_SF_BLK_MROOM;
4219 ret = 0;
4220 goto end;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004221}
4222
Willy Tarreau5dd17352018-06-14 13:33:30 +02004223/* Try to send a DATA frame matching HTTP/1 response present at offset <ofs>
4224 * for up to <max> bytes in response buffer <buf>, for stream <h2s>. Returns
4225 * the number of bytes sent. The caller must check the stream's status to
4226 * detect any error which might have happened subsequently to a successful send.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004227 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004228static 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 +02004229{
4230 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004231 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004232 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004233 struct buffer *mbuf;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004234 int ret = 0;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02004235 size_t total = 0;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004236 int es_now = 0;
4237 int size = 0;
Willy Tarreau206ba832018-06-14 15:27:31 +02004238 const char *blk1, *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004239 size_t len1, len2;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004240
4241 if (h2c_mux_busy(h2c, h2s)) {
4242 h2s->flags |= H2_SF_BLK_MBUSY;
4243 goto end;
4244 }
4245
Willy Tarreaubcc45952019-05-26 10:05:50 +02004246 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004247 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004248 if (!h2_get_buf(h2c, mbuf)) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004249 h2c->flags |= H2_CF_MUX_MALLOC;
4250 h2s->flags |= H2_SF_BLK_MROOM;
4251 goto end;
4252 }
4253
4254 new_frame:
Willy Tarreau5dd17352018-06-14 13:33:30 +02004255 if (!max)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004256 goto end;
4257
4258 chunk_reset(&outbuf);
4259
4260 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004261 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4262 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004263 break;
4264 realign_again:
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004265 /* If there are pending data in the output buffer, and we have
4266 * less than 1/4 of the mbuf's size and everything fits, we'll
4267 * still perform a copy anyway. Otherwise we'll pretend the mbuf
4268 * is full and wait, to save some slow realign calls.
4269 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004270 if ((max + 9 > b_room(mbuf) || max >= b_size(mbuf) / 4)) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004271 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4272 goto retry;
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004273 h2c->flags |= H2_CF_MUX_MFULL;
4274 h2s->flags |= H2_SF_BLK_MROOM;
4275 goto end;
4276 }
4277
Willy Tarreaubcc45952019-05-26 10:05:50 +02004278 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004279 }
4280
4281 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004282 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4283 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004284 h2c->flags |= H2_CF_MUX_MFULL;
4285 h2s->flags |= H2_SF_BLK_MROOM;
4286 goto end;
4287 }
4288
4289 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004290 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4291 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4292 outbuf.data = 9;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004293
4294 switch (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
4295 case 0: /* no content length, read till SHUTW */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004296 size = max;
Willy Tarreau13e4e942017-12-14 10:55:21 +01004297 h1m->curr_len = size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004298 break;
4299 case H1_MF_CLEN: /* content-length: read only h2m->body_len */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004300 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004301 if ((long long)size > h1m->curr_len)
4302 size = h1m->curr_len;
4303 break;
4304 default: /* te:chunked : parse chunks */
Willy Tarreau801250e2018-09-11 11:45:04 +02004305 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Willy Tarreauc0973c62018-06-14 15:53:21 +02004306 ret = h1_skip_chunk_crlf(buf, ofs, ofs + max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004307 if (!ret)
4308 goto end;
4309
4310 if (ret < 0) {
4311 /* FIXME: bad contents. how to proceed here when we're in H2 ? */
Willy Tarreau25173a72018-09-12 09:05:16 +02004312 h1m->err_pos = ofs + max + ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004313 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4314 goto end;
4315 }
Willy Tarreau5dd17352018-06-14 13:33:30 +02004316 max -= ret;
4317 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004318 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004319 h1m->state = H1_MSG_CHUNK_SIZE;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004320 }
4321
Willy Tarreau801250e2018-09-11 11:45:04 +02004322 if (h1m->state == H1_MSG_CHUNK_SIZE) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004323 unsigned int chunk;
Willy Tarreau84d6b7a2018-06-14 15:59:05 +02004324 ret = h1_parse_chunk_size(buf, ofs, ofs + max, &chunk);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004325 if (!ret)
4326 goto end;
4327
4328 if (ret < 0) {
4329 /* FIXME: bad contents. how to proceed here when we're in H2 ? */
Willy Tarreau25173a72018-09-12 09:05:16 +02004330 h1m->err_pos = ofs + max + ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004331 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4332 goto end;
4333 }
4334
4335 size = chunk;
4336 h1m->curr_len = chunk;
4337 h1m->body_len += chunk;
Willy Tarreau5dd17352018-06-14 13:33:30 +02004338 max -= ret;
4339 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004340 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004341 h1m->state = size ? H1_MSG_DATA : H1_MSG_TRAILERS;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004342 if (!size)
4343 goto send_empty;
4344 }
4345
4346 /* in MSG_DATA state, continue below */
4347 size = h1m->curr_len;
4348 break;
4349 }
4350
4351 /* we have in <size> the exact number of bytes we need to copy from
4352 * the H1 buffer. We need to check this against the connection's and
4353 * the stream's send windows, and to ensure that this fits in the max
4354 * frame size and in the buffer's available space minus 9 bytes (for
4355 * the frame header). The connection's flow control is applied last so
4356 * that we can use a separate list of streams which are immediately
4357 * unblocked on window opening. Note: we don't implement padding.
4358 */
4359
Willy Tarreau5dd17352018-06-14 13:33:30 +02004360 if (size > max)
4361 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004362
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004363 if (size > h2s_mws(h2s))
4364 size = h2s_mws(h2s);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004365
4366 if (size <= 0) {
4367 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004368 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02004369 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004370 goto end;
4371 }
4372
4373 if (h2c->mfs && size > h2c->mfs)
4374 size = h2c->mfs;
4375
4376 if (size + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02004377 /* It doesn't fit at once. If it at least fits once split and
4378 * the amount of data to move is low, let's defragment the
4379 * buffer now.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004380 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004381 if (b_space_wraps(mbuf) &&
4382 (size + 9 <= b_room(mbuf)) &&
4383 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004384 goto realign_again;
4385 size = outbuf.size - 9;
4386 }
4387
4388 if (size <= 0) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004389 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4390 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004391 h2c->flags |= H2_CF_MUX_MFULL;
4392 h2s->flags |= H2_SF_BLK_MROOM;
4393 goto end;
4394 }
4395
4396 if (size > h2c->mws)
4397 size = h2c->mws;
4398
4399 if (size <= 0) {
4400 h2s->flags |= H2_SF_BLK_MFCTL;
4401 goto end;
4402 }
4403
4404 /* copy whatever we can */
4405 blk1 = blk2 = NULL; // silence a maybe-uninitialized warning
Willy Tarreau5dd17352018-06-14 13:33:30 +02004406 ret = b_getblk_nc(buf, &blk1, &len1, &blk2, &len2, ofs, max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004407 if (ret == 1)
4408 len2 = 0;
4409
4410 if (!ret || len1 + len2 < size) {
4411 /* FIXME: must normally never happen */
4412 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4413 goto end;
4414 }
4415
4416 /* limit len1/len2 to size */
4417 if (len1 + len2 > size) {
4418 int sub = len1 + len2 - size;
4419
4420 if (len2 > sub)
4421 len2 -= sub;
4422 else {
4423 sub -= len2;
4424 len2 = 0;
4425 len1 -= sub;
4426 }
4427 }
4428
4429 /* now let's copy this this into the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004430 memcpy(outbuf.area + 9, blk1, len1);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004431 if (len2)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004432 memcpy(outbuf.area + 9 + len1, blk2, len2);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004433
4434 send_empty:
4435 /* we may need to add END_STREAM */
4436 /* FIXME: we should also detect shutdown(w) below, but how ? Maybe we
4437 * could rely on the MSG_MORE flag as a hint for this ?
Willy Tarreau00610962018-07-19 10:58:28 +02004438 *
4439 * FIXME: what we do here is not correct because we send end_stream
4440 * before knowing if we'll have to send a HEADERS frame for the
4441 * trailers. More importantly we're not consuming the trailing CRLF
4442 * after the end of trailers, so it will be left to the caller to
4443 * eat it. The right way to do it would be to measure trailers here
4444 * and to send ES only if there are no trailers.
4445 *
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004446 */
4447 if (((h1m->flags & H1_MF_CLEN) && !(h1m->curr_len - size)) ||
Willy Tarreau801250e2018-09-11 11:45:04 +02004448 !h1m->curr_len || h1m->state >= H1_MSG_DONE)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004449 es_now = 1;
4450
4451 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004452 h2_set_frame_size(outbuf.area, size);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004453
4454 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004455 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004456
4457 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004458 b_add(mbuf, size + 9);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004459
4460 /* consume incoming H1 response */
4461 if (size > 0) {
Willy Tarreau5dd17352018-06-14 13:33:30 +02004462 max -= size;
4463 ofs += size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004464 total += size;
4465 h1m->curr_len -= size;
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004466 h2s->sws -= size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004467 h2c->mws -= size;
4468
4469 if (size && !h1m->curr_len && (h1m->flags & H1_MF_CHNK)) {
Willy Tarreau801250e2018-09-11 11:45:04 +02004470 h1m->state = H1_MSG_CHUNK_CRLF;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004471 goto new_frame;
4472 }
4473 }
4474
4475 if (es_now) {
4476 if (h2s->st == H2_SS_OPEN)
4477 h2s->st = H2_SS_HLOC;
4478 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004479 h2s_close(h2s);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004480
Willy Tarreau35a62702018-02-27 15:37:25 +01004481 if (!(h1m->flags & H1_MF_CHNK)) {
4482 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004483 total += max;
4484 ofs += max;
4485 max = 0;
Willy Tarreau35a62702018-02-27 15:37:25 +01004486
Willy Tarreau801250e2018-09-11 11:45:04 +02004487 h1m->state = H1_MSG_DONE;
Willy Tarreau35a62702018-02-27 15:37:25 +01004488 }
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004489
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004490 h2s->flags |= H2_SF_ES_SENT;
4491 }
4492
4493 end:
Willy Tarreau5a9c8752019-08-02 07:52:08 +02004494 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 +02004495 return total;
4496}
4497
Willy Tarreau115e83b2018-12-01 19:17:53 +01004498/* Try to send a HEADERS frame matching HTX response present in HTX message
4499 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4500 * must check the stream's status to detect any error which might have happened
4501 * subsequently to a successful send. The htx blocks are automatically removed
4502 * from the message. The htx message is assumed to be valid since produced from
4503 * the internal code, hence it contains a start line, an optional series of
4504 * header blocks and an end of header, otherwise an invalid frame could be
4505 * emitted and the resulting htx message could be left in an inconsistent state.
4506 */
4507static size_t h2s_htx_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
4508{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004509 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004510 struct h2c *h2c = h2s->h2c;
4511 struct htx_blk *blk;
4512 struct htx_blk *blk_end;
4513 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004514 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004515 struct htx_sl *sl;
4516 enum htx_blk_type type;
4517 int es_now = 0;
4518 int ret = 0;
4519 int hdr;
4520 int idx;
4521
4522 if (h2c_mux_busy(h2c, h2s)) {
4523 h2s->flags |= H2_SF_BLK_MBUSY;
4524 return 0;
4525 }
4526
Willy Tarreau115e83b2018-12-01 19:17:53 +01004527 /* determine the first block which must not be deleted, blk_end may
4528 * be NULL if all blocks have to be deleted.
4529 */
4530 idx = htx_get_head(htx);
4531 blk_end = NULL;
4532 while (idx != -1) {
4533 type = htx_get_blk_type(htx_get_blk(htx, idx));
4534 idx = htx_get_next(htx, idx);
4535 if (type == HTX_BLK_EOH) {
4536 if (idx != -1)
4537 blk_end = htx_get_blk(htx, idx);
4538 break;
4539 }
4540 }
4541
4542 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004543 blk = htx_get_head_blk(htx);
4544 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_RES_SL);
4545 ALREADY_CHECKED(blk);
4546 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004547 h2s->status = sl->info.res.status;
Willy Tarreauaafdf582018-12-10 18:06:40 +01004548 if (h2s->status < 100 || h2s->status > 999)
4549 goto fail;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004550
4551 /* and the rest of the headers, that we dump starting at header 0 */
4552 hdr = 0;
4553
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004554 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004555 while ((idx = htx_get_next(htx, idx)) != -1) {
4556 blk = htx_get_blk(htx, idx);
4557 type = htx_get_blk_type(blk);
4558
4559 if (type == HTX_BLK_UNUSED)
4560 continue;
4561
4562 if (type != HTX_BLK_HDR)
4563 break;
4564
4565 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4566 goto fail;
4567
4568 list[hdr].n = htx_get_blk_name(htx, blk);
4569 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004570 hdr++;
4571 }
4572
4573 /* marker for end of headers */
4574 list[hdr].n = ist("");
4575
4576 if (h2s->status == 204 || h2s->status == 304) {
4577 /* no contents, claim c-len is present and set to zero */
4578 es_now = 1;
4579 }
4580
Willy Tarreau9c218e72019-05-26 10:08:28 +02004581 mbuf = br_tail(h2c->mbuf);
4582 retry:
4583 if (!h2_get_buf(h2c, mbuf)) {
4584 h2c->flags |= H2_CF_MUX_MALLOC;
4585 h2s->flags |= H2_SF_BLK_MROOM;
4586 return 0;
4587 }
4588
Willy Tarreau115e83b2018-12-01 19:17:53 +01004589 chunk_reset(&outbuf);
4590
4591 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004592 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4593 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004594 break;
4595 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004596 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004597 }
4598
4599 if (outbuf.size < 9)
4600 goto full;
4601
4602 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4603 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4604 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4605 outbuf.data = 9;
4606
4607 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004608 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004609 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004610 goto realign_again;
4611 goto full;
4612 }
4613
4614 /* encode all headers, stop at empty name */
4615 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4616 /* these ones do not exist in H2 and must be dropped. */
4617 if (isteq(list[hdr].n, ist("connection")) ||
4618 isteq(list[hdr].n, ist("proxy-connection")) ||
4619 isteq(list[hdr].n, ist("keep-alive")) ||
4620 isteq(list[hdr].n, ist("upgrade")) ||
4621 isteq(list[hdr].n, ist("transfer-encoding")))
4622 continue;
4623
4624 if (isteq(list[hdr].n, ist("")))
4625 break; // end
4626
4627 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4628 /* output full */
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
Christopher Faulet0b465482019-02-19 15:14:23 +01004635 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004636 * FIXME: we should also set it when we know for sure that the
4637 * content-length is zero as well as on 204/304
4638 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004639 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4640 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004641 es_now = 1;
4642
Willy Tarreau927b88b2019-03-04 08:03:25 +01004643 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004644 es_now = 1;
4645
4646 /* update the frame's size */
4647 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4648
4649 if (es_now)
4650 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4651
4652 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004653 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004654
4655 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4656 * 1xx responses, another HEADERS frame is expected.
4657 */
4658 if (h2s->status >= 200 || h2s->status == 101)
4659 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004660
Willy Tarreau115e83b2018-12-01 19:17:53 +01004661 if (es_now) {
4662 h2s->flags |= H2_SF_ES_SENT;
4663 if (h2s->st == H2_SS_OPEN)
4664 h2s->st = H2_SS_HLOC;
4665 else
4666 h2s_close(h2s);
4667 }
4668
4669 /* OK we could properly deliver the response */
4670
4671 /* remove all header blocks including the EOH and compute the
4672 * corresponding size.
4673 *
4674 * FIXME: We should remove everything when es_now is set.
4675 */
4676 ret = 0;
4677 idx = htx_get_head(htx);
4678 blk = htx_get_blk(htx, idx);
4679 while (blk != blk_end) {
4680 ret += htx_get_blksz(blk);
4681 blk = htx_remove_blk(htx, blk);
4682 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004683
Christopher Faulet316934d2019-05-15 14:22:48 +02004684 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4685 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004686 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004687 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004688 end:
4689 return ret;
4690 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004691 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4692 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004693 h2c->flags |= H2_CF_MUX_MFULL;
4694 h2s->flags |= H2_SF_BLK_MROOM;
4695 ret = 0;
4696 goto end;
4697 fail:
4698 /* unparsable HTX messages, too large ones to be produced in the local
4699 * list etc go here (unrecoverable errors).
4700 */
4701 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4702 ret = 0;
4703 goto end;
4704}
4705
Willy Tarreau80739692018-10-05 11:35:57 +02004706/* Try to send a HEADERS frame matching HTX request present in HTX message
4707 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4708 * must check the stream's status to detect any error which might have happened
4709 * subsequently to a successful send. The htx blocks are automatically removed
4710 * from the message. The htx message is assumed to be valid since produced from
4711 * the internal code, hence it contains a start line, an optional series of
4712 * header blocks and an end of header, otherwise an invalid frame could be
4713 * emitted and the resulting htx message could be left in an inconsistent state.
4714 */
4715static size_t h2s_htx_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
4716{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004717 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004718 struct h2c *h2c = h2s->h2c;
4719 struct htx_blk *blk;
4720 struct htx_blk *blk_end;
4721 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004722 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004723 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004724 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004725 enum htx_blk_type type;
4726 int es_now = 0;
4727 int ret = 0;
4728 int hdr;
4729 int idx;
4730
4731 if (h2c_mux_busy(h2c, h2s)) {
4732 h2s->flags |= H2_SF_BLK_MBUSY;
4733 return 0;
4734 }
4735
Willy Tarreau80739692018-10-05 11:35:57 +02004736 /* determine the first block which must not be deleted, blk_end may
4737 * be NULL if all blocks have to be deleted.
4738 */
4739 idx = htx_get_head(htx);
4740 blk_end = NULL;
4741 while (idx != -1) {
4742 type = htx_get_blk_type(htx_get_blk(htx, idx));
4743 idx = htx_get_next(htx, idx);
4744 if (type == HTX_BLK_EOH) {
4745 if (idx != -1)
4746 blk_end = htx_get_blk(htx, idx);
4747 break;
4748 }
4749 }
4750
4751 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004752 blk = htx_get_head_blk(htx);
4753 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
4754 ALREADY_CHECKED(blk);
4755 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004756 meth = htx_sl_req_meth(sl);
4757 path = htx_sl_req_uri(sl);
4758
4759 /* and the rest of the headers, that we dump starting at header 0 */
4760 hdr = 0;
4761
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004762 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004763 while ((idx = htx_get_next(htx, idx)) != -1) {
4764 blk = htx_get_blk(htx, idx);
4765 type = htx_get_blk_type(blk);
4766
4767 if (type == HTX_BLK_UNUSED)
4768 continue;
4769
4770 if (type != HTX_BLK_HDR)
4771 break;
4772
4773 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4774 goto fail;
4775
4776 list[hdr].n = htx_get_blk_name(htx, blk);
4777 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004778 hdr++;
4779 }
4780
4781 /* marker for end of headers */
4782 list[hdr].n = ist("");
4783
Willy Tarreau9c218e72019-05-26 10:08:28 +02004784 mbuf = br_tail(h2c->mbuf);
4785 retry:
4786 if (!h2_get_buf(h2c, mbuf)) {
4787 h2c->flags |= H2_CF_MUX_MALLOC;
4788 h2s->flags |= H2_SF_BLK_MROOM;
4789 return 0;
4790 }
4791
Willy Tarreau80739692018-10-05 11:35:57 +02004792 chunk_reset(&outbuf);
4793
4794 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004795 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4796 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004797 break;
4798 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004799 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004800 }
4801
4802 if (outbuf.size < 9)
4803 goto full;
4804
4805 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4806 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4807 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4808 outbuf.data = 9;
4809
4810 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004811 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004812 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004813 goto realign_again;
4814 goto full;
4815 }
4816
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004817 /* RFC7540 #8.3: the CONNECT method must have :
4818 * - :authority set to the URI part (host:port)
4819 * - :method set to CONNECT
4820 * - :scheme and :path omitted
4821 */
4822 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4823 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004824 struct ist scheme;
4825
4826 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4827 scheme = ist("http");
4828 else
4829 scheme = ist("https");
4830
4831 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004832 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004833 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004834 goto realign_again;
4835 goto full;
4836 }
Willy Tarreau80739692018-10-05 11:35:57 +02004837
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004838 /* encode the path, which necessarily is the second one */
4839 if (!hpack_encode_path(&outbuf, path)) {
4840 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004841 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004842 goto realign_again;
4843 goto full;
4844 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004845
4846 /* look for the Host header and place it in :authority */
4847 auth = ist2(NULL, 0);
4848 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4849 if (isteq(list[hdr].n, ist("")))
4850 break; // end
4851
4852 if (isteq(list[hdr].n, ist("host"))) {
4853 auth = list[hdr].v;
4854 break;
4855 }
4856 }
4857 }
4858 else {
4859 /* for CONNECT, :authority is taken from the path */
4860 auth = path;
4861 }
4862
4863 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4864 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004865 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004866 goto realign_again;
4867 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004868 }
4869
4870 /* encode all headers, stop at empty name */
4871 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4872 /* these ones do not exist in H2 and must be dropped. */
4873 if (isteq(list[hdr].n, ist("connection")) ||
Willy Tarreau053c1572019-02-01 16:13:59 +01004874 isteq(list[hdr].n, ist("host")) ||
Willy Tarreau80739692018-10-05 11:35:57 +02004875 isteq(list[hdr].n, ist("proxy-connection")) ||
4876 isteq(list[hdr].n, ist("keep-alive")) ||
4877 isteq(list[hdr].n, ist("upgrade")) ||
4878 isteq(list[hdr].n, ist("transfer-encoding")))
4879 continue;
4880
4881 if (isteq(list[hdr].n, ist("")))
4882 break; // end
4883
4884 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4885 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004886 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004887 goto realign_again;
4888 goto full;
4889 }
4890 }
4891
4892 /* we may need to add END_STREAM if we have no body :
4893 * - request already closed, or :
4894 * - no transfer-encoding, and :
4895 * - no content-length or content-length:0
4896 * Fixme: this doesn't take into account CONNECT requests.
4897 */
4898 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4899 es_now = 1;
4900
4901 if (sl->flags & HTX_SL_F_BODYLESS)
4902 es_now = 1;
4903
Willy Tarreau927b88b2019-03-04 08:03:25 +01004904 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004905 es_now = 1;
4906
4907 /* update the frame's size */
4908 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4909
4910 if (es_now)
4911 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4912
4913 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004914 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004915 h2s->flags |= H2_SF_HEADERS_SENT;
4916 h2s->st = H2_SS_OPEN;
4917
Willy Tarreau80739692018-10-05 11:35:57 +02004918 if (es_now) {
4919 // trim any possibly pending data (eg: inconsistent content-length)
4920 h2s->flags |= H2_SF_ES_SENT;
4921 h2s->st = H2_SS_HLOC;
4922 }
4923
4924 /* remove all header blocks including the EOH and compute the
4925 * corresponding size.
4926 *
4927 * FIXME: We should remove everything when es_now is set.
4928 */
4929 ret = 0;
4930 idx = htx_get_head(htx);
4931 blk = htx_get_blk(htx, idx);
4932 while (blk != blk_end) {
4933 ret += htx_get_blksz(blk);
4934 blk = htx_remove_blk(htx, blk);
4935 }
4936
Christopher Faulet316934d2019-05-15 14:22:48 +02004937 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4938 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02004939 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004940 }
Willy Tarreau80739692018-10-05 11:35:57 +02004941
4942 end:
4943 return ret;
4944 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004945 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4946 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02004947 h2c->flags |= H2_CF_MUX_MFULL;
4948 h2s->flags |= H2_SF_BLK_MROOM;
4949 ret = 0;
4950 goto end;
4951 fail:
4952 /* unparsable HTX messages, too large ones to be produced in the local
4953 * list etc go here (unrecoverable errors).
4954 */
4955 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4956 ret = 0;
4957 goto end;
4958}
4959
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004960/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01004961 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
4962 * caller must check the stream's status to detect any error which might have
4963 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02004964 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004965 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01004966static size_t h2s_htx_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004967{
4968 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004969 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004970 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004971 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004972 size_t total = 0;
4973 int es_now = 0;
4974 int bsize; /* htx block size */
4975 int fsize; /* h2 frame size */
4976 struct htx_blk *blk;
4977 enum htx_blk_type type;
4978 int idx;
4979
4980 if (h2c_mux_busy(h2c, h2s)) {
4981 h2s->flags |= H2_SF_BLK_MBUSY;
4982 goto end;
4983 }
4984
Willy Tarreau98de12a2018-12-12 07:03:00 +01004985 htx = htx_from_buf(buf);
4986
Christopher Faulet54b5e212019-06-04 10:08:28 +02004987 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
4988 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
4989 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004990 */
4991
4992 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01004993 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004994 goto end;
4995
4996 idx = htx_get_head(htx);
4997 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02004998 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004999 bsize = htx_get_blksz(blk);
5000 fsize = bsize;
5001
Christopher Faulet54b5e212019-06-04 10:08:28 +02005002 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005003 if (h2s->flags & H2_SF_ES_SENT) {
5004 /* ES already sent */
5005 htx_remove_blk(htx, blk);
5006 total++; // EOM counts as one byte
5007 count--;
5008 goto end;
5009 }
5010 }
5011 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005012 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005013
Willy Tarreau9c218e72019-05-26 10:08:28 +02005014 mbuf = br_tail(h2c->mbuf);
5015 retry:
5016 if (!h2_get_buf(h2c, mbuf)) {
5017 h2c->flags |= H2_CF_MUX_MALLOC;
5018 h2s->flags |= H2_SF_BLK_MROOM;
5019 goto end;
5020 }
5021
Willy Tarreau98de12a2018-12-12 07:03:00 +01005022 /* Perform some optimizations to reduce the number of buffer copies.
5023 * First, if the mux's buffer is empty and the htx area contains
5024 * exactly one data block of the same size as the requested count, and
5025 * this count fits within the frame size, the stream's window size, and
5026 * the connection's window size, then it's possible to simply swap the
5027 * caller's buffer with the mux's output buffer and adjust offsets and
5028 * length to match the entire DATA HTX block in the middle. In this
5029 * case we perform a true zero-copy operation from end-to-end. This is
5030 * the situation that happens all the time with large files. Second, if
5031 * this is not possible, but the mux's output buffer is empty, we still
5032 * have an opportunity to avoid the copy to the intermediary buffer, by
5033 * making the intermediary buffer's area point to the output buffer's
5034 * area. In this case we want to skip the HTX header to make sure that
5035 * copies remain aligned and that this operation remains possible all
5036 * the time. This goes for headers, data blocks and any data extracted
5037 * from the HTX blocks.
5038 */
5039 if (unlikely(fsize == count &&
5040 htx->used == 1 && type == HTX_BLK_DATA &&
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005041 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005042 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005043
Willy Tarreaubcc45952019-05-26 10:05:50 +02005044 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005045 /* Too bad there are data left there. We're willing to memcpy/memmove
5046 * up to 1/4 of the buffer, which means that it's OK to copy a large
5047 * frame into a buffer containing few data if it needs to be realigned,
5048 * and that it's also OK to copy few data without realigning. Otherwise
5049 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005050 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005051 if (fsize + 9 <= b_room(mbuf) &&
5052 (b_data(mbuf) <= b_size(mbuf) / 4 ||
5053 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf))))
Willy Tarreau98de12a2018-12-12 07:03:00 +01005054 goto copy;
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005055
Willy Tarreau9c218e72019-05-26 10:08:28 +02005056 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5057 goto retry;
5058
Willy Tarreau98de12a2018-12-12 07:03:00 +01005059 h2c->flags |= H2_CF_MUX_MFULL;
5060 h2s->flags |= H2_SF_BLK_MROOM;
5061 goto end;
5062 }
5063
5064 /* map an H2 frame to the HTX block so that we can put the
5065 * frame header there.
5066 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005067 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5068 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005069
5070 /* prepend an H2 DATA frame header just before the DATA block */
5071 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5072 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5073 h2_set_frame_size(outbuf.area, fsize);
5074
5075 /* update windows */
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005076 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005077 h2c->mws -= fsize;
5078
5079 /* and exchange with our old area */
5080 buf->area = old_area;
5081 buf->data = buf->head = 0;
5082 total += fsize;
5083 goto end;
5084 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005085
Willy Tarreau98de12a2018-12-12 07:03:00 +01005086 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005087 /* for DATA and EOM we'll have to emit a frame, even if empty */
5088
5089 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005090 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5091 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005092 break;
5093 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005094 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005095 }
5096
5097 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005098 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5099 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005100 h2c->flags |= H2_CF_MUX_MFULL;
5101 h2s->flags |= H2_SF_BLK_MROOM;
5102 goto end;
5103 }
5104
5105 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5106 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5107 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5108 outbuf.data = 9;
5109
5110 /* we have in <fsize> the exact number of bytes we need to copy from
5111 * the HTX buffer. We need to check this against the connection's and
5112 * the stream's send windows, and to ensure that this fits in the max
5113 * frame size and in the buffer's available space minus 9 bytes (for
5114 * the frame header). The connection's flow control is applied last so
5115 * that we can use a separate list of streams which are immediately
5116 * unblocked on window opening. Note: we don't implement padding.
5117 */
5118
5119 /* EOM is presented with bsize==1 but would lead to the emission of an
5120 * empty frame, thus we force it to zero here.
5121 */
5122 if (type == HTX_BLK_EOM)
5123 bsize = fsize = 0;
5124
5125 if (!fsize)
5126 goto send_empty;
5127
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005128 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005129 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005130 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005131 LIST_DEL_INIT(&h2s->list);
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005132 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005133 goto end;
5134 }
5135
Willy Tarreauee573762018-12-04 15:25:57 +01005136 if (fsize > count)
5137 fsize = count;
5138
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005139 if (fsize > h2s_mws(h2s))
5140 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005141
5142 if (h2c->mfs && fsize > h2c->mfs)
5143 fsize = h2c->mfs; // >0
5144
5145 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005146 /* It doesn't fit at once. If it at least fits once split and
5147 * the amount of data to move is low, let's defragment the
5148 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005149 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005150 if (b_space_wraps(mbuf) &&
5151 (fsize + 9 <= b_room(mbuf)) &&
5152 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005153 goto realign_again;
5154 fsize = outbuf.size - 9;
5155
5156 if (fsize <= 0) {
5157 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005158 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5159 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005160 h2c->flags |= H2_CF_MUX_MFULL;
5161 h2s->flags |= H2_SF_BLK_MROOM;
5162 goto end;
5163 }
5164 }
5165
5166 if (h2c->mws <= 0) {
5167 h2s->flags |= H2_SF_BLK_MFCTL;
5168 goto end;
5169 }
5170
5171 if (fsize > h2c->mws)
5172 fsize = h2c->mws;
5173
5174 /* now let's copy this this into the output buffer */
5175 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau5a9c8752019-08-02 07:52:08 +02005176 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005177 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005178 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005179
5180 send_empty:
5181 /* update the frame's size */
5182 h2_set_frame_size(outbuf.area, fsize);
5183
5184 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5185 * meeting EOM. We should optimize this later.
5186 */
5187 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005188 total++; // EOM counts as one byte
5189 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005190 es_now = 1;
5191 }
5192
5193 if (es_now)
5194 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5195
5196 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005197 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005198
5199 /* consume incoming HTX block, including EOM */
5200 total += fsize;
5201 if (fsize == bsize) {
5202 htx_remove_blk(htx, blk);
5203 if (fsize)
5204 goto new_frame;
5205 } else {
5206 /* we've truncated this block */
5207 htx_cut_data_blk(htx, blk, fsize);
5208 }
5209
5210 if (es_now) {
5211 if (h2s->st == H2_SS_OPEN)
5212 h2s->st = H2_SS_HLOC;
5213 else
5214 h2s_close(h2s);
5215
5216 h2s->flags |= H2_SF_ES_SENT;
5217 }
5218
5219 end:
5220 return total;
5221}
5222
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005223/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5224 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5225 * processed. The caller must check the stream's status to detect any error
5226 * which might have happened subsequently to a successful send. The htx blocks
5227 * are automatically removed from the message. The htx message is assumed to be
5228 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005229 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005230 * as a single frame. The ES flag is always set.
5231 */
5232static size_t h2s_htx_make_trailers(struct h2s *h2s, struct htx *htx)
5233{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005234 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005235 struct h2c *h2c = h2s->h2c;
5236 struct htx_blk *blk;
5237 struct htx_blk *blk_end;
5238 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005239 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005240 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005241 int ret = 0;
5242 int hdr;
5243 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005244
5245 if (h2c_mux_busy(h2c, h2s)) {
5246 h2s->flags |= H2_SF_BLK_MBUSY;
5247 goto end;
5248 }
5249
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005250 /* determine the first block which must not be deleted, blk_end may
5251 * be NULL if all blocks have to be deleted. also get trailers.
5252 */
5253 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005254 blk_end = NULL;
5255
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005256 hdr = 0;
5257 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005258 blk = htx_get_blk(htx, idx);
5259 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005260 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005261 if (type == HTX_BLK_UNUSED)
5262 continue;
5263
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005264 if (type == HTX_BLK_EOT) {
5265 if (idx != -1)
5266 blk_end = blk;
5267 break;
5268 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005269 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005270 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005271
5272 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
5273 goto fail;
5274
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005275 list[hdr].n = htx_get_blk_name(htx, blk);
5276 list[hdr].v = htx_get_blk_value(htx, blk);
5277 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005278 }
5279
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005280 /* marker for end of trailers */
5281 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005282
Willy Tarreau9c218e72019-05-26 10:08:28 +02005283 mbuf = br_tail(h2c->mbuf);
5284 retry:
5285 if (!h2_get_buf(h2c, mbuf)) {
5286 h2c->flags |= H2_CF_MUX_MALLOC;
5287 h2s->flags |= H2_SF_BLK_MROOM;
5288 goto end;
5289 }
5290
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005291 chunk_reset(&outbuf);
5292
5293 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005294 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5295 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005296 break;
5297 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005298 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005299 }
5300
5301 if (outbuf.size < 9)
5302 goto full;
5303
5304 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5305 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5306 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5307 outbuf.data = 9;
5308
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005309 /* encode all headers */
5310 for (idx = 0; idx < hdr; idx++) {
5311 /* these ones do not exist in H2 or must not appear in
5312 * trailers and must be dropped.
5313 */
5314 if (isteq(list[idx].n, ist("host")) ||
5315 isteq(list[idx].n, ist("content-length")) ||
5316 isteq(list[idx].n, ist("connection")) ||
5317 isteq(list[idx].n, ist("proxy-connection")) ||
5318 isteq(list[idx].n, ist("keep-alive")) ||
5319 isteq(list[idx].n, ist("upgrade")) ||
5320 isteq(list[idx].n, ist("te")) ||
5321 isteq(list[idx].n, ist("transfer-encoding")))
5322 continue;
5323
5324 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5325 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005326 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005327 goto realign_again;
5328 goto full;
5329 }
5330 }
5331
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005332 if (outbuf.data == 9) {
5333 /* here we have a problem, we have nothing to emit (either we
5334 * received an empty trailers block followed or we removed its
5335 * contents above). Because of this we can't send a HEADERS
5336 * frame, so we have to cheat and instead send an empty DATA
5337 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005338 */
5339 outbuf.area[3] = H2_FT_DATA;
5340 outbuf.area[4] = H2_F_DATA_END_STREAM;
5341 }
5342
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005343 /* update the frame's size */
5344 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5345
5346 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005347 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005348 h2s->flags |= H2_SF_ES_SENT;
5349
5350 if (h2s->st == H2_SS_OPEN)
5351 h2s->st = H2_SS_HLOC;
5352 else
5353 h2s_close(h2s);
5354
5355 /* OK we could properly deliver the response */
5356 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005357 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005358 ret = 0;
5359 idx = htx_get_head(htx);
5360 blk = htx_get_blk(htx, idx);
5361 while (blk != blk_end) {
5362 ret += htx_get_blksz(blk);
5363 blk = htx_remove_blk(htx, blk);
5364 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005365
5366 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5367 ret += htx_get_blksz(blk_end);
5368 htx_remove_blk(htx, blk_end);
5369 }
5370
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005371 end:
5372 return ret;
5373 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005374 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5375 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005376 h2c->flags |= H2_CF_MUX_MFULL;
5377 h2s->flags |= H2_SF_BLK_MROOM;
5378 ret = 0;
5379 goto end;
5380 fail:
5381 /* unparsable HTX messages, too large ones to be produced in the local
5382 * list etc go here (unrecoverable errors).
5383 */
5384 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5385 ret = 0;
5386 goto end;
5387}
5388
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005389/* Called from the upper layer, to subscribe to events, such as being able to send.
5390 * The <param> argument here is supposed to be a pointer to a wait_event struct
5391 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5392 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5393 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5394 * returns 0 except for the error above.
5395 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005396static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5397{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005398 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005399 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005400 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005401
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005402 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005403 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005404 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5405 sw->events |= SUB_RETRY_RECV;
5406 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005407 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005408 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005409 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +02005410 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005411 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5412 sw->events |= SUB_RETRY_SEND;
5413 h2s->send_wait = sw;
5414 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5415 !LIST_ADDED(&h2s->list)) {
5416 if (h2s->flags & H2_SF_BLK_MFCTL)
5417 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5418 else
5419 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005420 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005421 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005422 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005423 if (event_type != 0)
5424 return -1;
5425 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005426}
5427
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005428/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5429 * The <param> argument here is supposed to be a pointer to the same wait_event
5430 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5431 * It always returns zero.
5432 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005433static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5434{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005435 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005436 struct h2s *h2s = cs->ctx;
5437
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005438 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005439 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005440 BUG_ON(h2s->recv_wait != sw);
5441 sw->events &= ~SUB_RETRY_RECV;
5442 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005443 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005444 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005445 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005446 BUG_ON(h2s->send_wait != sw);
5447 LIST_DEL(&h2s->list);
5448 LIST_INIT(&h2s->list);
5449 sw->events &= ~SUB_RETRY_SEND;
5450 /* We were about to send, make sure it does not happen */
5451 if (LIST_ADDED(&h2s->sending_list) &&
5452 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02005453 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005454 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005455 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005456 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005457 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005458 return 0;
5459}
5460
5461
Olivier Houchard511efea2018-08-16 15:30:32 +02005462/* Called from the upper layer, to receive data */
5463static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5464{
Olivier Houchard638b7992018-08-16 15:41:52 +02005465 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005466 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005467 struct htx *h2s_htx = NULL;
5468 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005469 size_t ret = 0;
5470
5471 /* transfer possibly pending data to the upper layer */
Willy Tarreau86724e22018-12-01 23:19:43 +01005472 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau86724e22018-12-01 23:19:43 +01005473 h2s_htx = htx_from_buf(&h2s->rxbuf);
Olivier Houchard56b03482018-12-10 16:09:53 +01005474 if (htx_is_empty(h2s_htx)) {
Christopher Faulet37070b22019-02-14 15:12:14 +01005475 /* Here htx_to_buf() will set buffer data to 0 because
5476 * the HTX is empty.
5477 */
5478 htx_to_buf(h2s_htx, &h2s->rxbuf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005479 goto end;
Olivier Houchard56b03482018-12-10 16:09:53 +01005480 }
Willy Tarreau86724e22018-12-01 23:19:43 +01005481
Christopher Faulet156852b2019-05-16 11:29:13 +02005482 ret = h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005483 buf_htx = htx_from_buf(buf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005484
Christopher Faulet2f6edc82019-05-15 10:07:59 +02005485 /* <buf> is empty and the message is small enough, swap the
5486 * buffers. */
5487 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
5488 htx_to_buf(buf_htx, buf);
5489 htx_to_buf(h2s_htx, &h2s->rxbuf);
5490 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5491 goto end;
5492 }
5493
Christopher Faulet156852b2019-05-16 11:29:13 +02005494 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005495
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005496 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
Willy Tarreau7196dd62019-03-05 10:51:11 +01005497 buf_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005498 if (htx_is_empty(buf_htx))
5499 cs->flags |= CS_FL_EOI;
5500 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005501
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01005502 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005503 htx_to_buf(buf_htx, buf);
5504 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet156852b2019-05-16 11:29:13 +02005505 ret -= h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005506 }
5507 else {
5508 ret = b_xfer(buf, &h2s->rxbuf, count);
5509 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005510
Christopher Faulet37070b22019-02-14 15:12:14 +01005511 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005512 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005513 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005514 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005515 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005516 if (h2s->flags & H2_SF_ES_RCVD)
5517 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02005518 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005519 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005520 if (cs->flags & CS_FL_ERR_PENDING)
5521 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005522 if (b_size(&h2s->rxbuf)) {
5523 b_free(&h2s->rxbuf);
5524 offer_buffers(NULL, tasks_run_queue);
5525 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005526 }
5527
Willy Tarreau082f5592018-11-25 08:03:32 +01005528 if (ret && h2c->dsi == h2s->id) {
5529 /* demux is blocking on this stream's buffer */
5530 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005531 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005532 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005533
Olivier Houchard511efea2018-08-16 15:30:32 +02005534 return ret;
5535}
5536
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005537/* stops all senders of this connection for example when the mux buffer is full.
5538 * They are moved from the sending_list to either fctl_list or send_list.
5539 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005540static void h2_stop_senders(struct h2c *h2c)
5541{
5542 struct h2s *h2s, *h2s_back;
5543
Olivier Houchardd360ac62019-03-22 17:37:16 +01005544 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5545 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02005546 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005547 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005548 }
5549}
5550
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005551/* Called from the upper layer, to send data from buffer <buf> for no more than
5552 * <count> bytes. Returns the number of bytes effectively sent. Some status
5553 * flags may be updated on the conn_stream.
5554 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005555static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005556{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005557 struct h2s *h2s = cs->ctx;
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005558 size_t orig_count = count;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005559 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005560 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005561 struct htx *htx;
5562 struct htx_blk *blk;
5563 enum htx_blk_type btype;
5564 uint32_t bsize;
5565 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005566
Olivier Houchardd360ac62019-03-22 17:37:16 +01005567 /* If we were not just woken because we wanted to send but couldn't,
5568 * and there's somebody else that is waiting to send, do nothing,
5569 * we will subscribe later and be put at the end of the list
5570 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005571 if (!LIST_ADDED(&h2s->sending_list) &&
Olivier Houchardd360ac62019-03-22 17:37:16 +01005572 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list)))
5573 return 0;
Olivier Houchard998410a2019-04-15 19:23:37 +02005574 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005575
Olivier Houchard998410a2019-04-15 19:23:37 +02005576 /* We couldn't set it to NULL before, because we needed it in case
5577 * we had to cancel the tasklet
5578 */
5579 h2s->send_wait = NULL;
5580
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005581 if (h2s->h2c->st0 < H2_CS_FRAME_H)
5582 return 0;
5583
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005584 /* htx will be enough to decide if we're using HTX or legacy */
5585 htx = (h2s->h2c->proxy->options2 & PR_O2_USE_HTX) ? htx_from_buf(buf) : NULL;
5586
Willy Tarreau0bad0432018-06-14 16:54:01 +02005587 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005588 h2s->flags |= H2_SF_OUTGOING_DATA;
5589
Willy Tarreau751f2d02018-10-05 09:35:00 +02005590 if (h2s->id == 0) {
5591 int32_t id = h2c_get_next_sid(h2s->h2c);
5592
5593 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005594 cs->flags |= CS_FL_ERROR;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005595 return 0;
5596 }
5597
5598 eb32_delete(&h2s->by_id);
5599 h2s->by_id.key = h2s->id = id;
5600 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005601 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005602 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5603 }
5604
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005605 if (htx) {
Willy Tarreau2b778482019-05-06 15:00:22 +02005606 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
Willy Tarreauc14999b2018-12-06 14:09:09 +01005607 count && !htx_is_empty(htx)) {
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005608 idx = htx_get_head(htx);
5609 blk = htx_get_blk(htx, idx);
5610 btype = htx_get_blk_type(blk);
5611 bsize = htx_get_blksz(blk);
5612
5613 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005614 case HTX_BLK_REQ_SL:
5615 /* start-line before headers */
5616 ret = h2s_htx_bck_make_req_headers(h2s, htx);
5617 if (ret > 0) {
5618 total += ret;
5619 count -= ret;
5620 if (ret < bsize)
5621 goto done;
5622 }
5623 break;
5624
Willy Tarreau115e83b2018-12-01 19:17:53 +01005625 case HTX_BLK_RES_SL:
5626 /* start-line before headers */
5627 ret = h2s_htx_frt_make_resp_headers(h2s, htx);
5628 if (ret > 0) {
5629 total += ret;
5630 count -= ret;
5631 if (ret < bsize)
5632 goto done;
5633 }
5634 break;
5635
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005636 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005637 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005638 /* all these cause the emission of a DATA frame (possibly empty).
5639 * This EOM necessarily is one before trailers, as the EOM following
5640 * trailers would have been consumed by the trailers parser.
5641 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01005642 ret = h2s_htx_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005643 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005644 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005645 total += ret;
5646 count -= ret;
5647 if (ret < bsize)
5648 goto done;
5649 }
5650 break;
5651
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005652 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005653 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005654 /* This is the first trailers block, all the subsequent ones AND
5655 * the EOM will be swallowed by the parser.
5656 */
5657 ret = h2s_htx_make_trailers(h2s, htx);
5658 if (ret > 0) {
5659 total += ret;
5660 count -= ret;
5661 if (ret < bsize)
5662 goto done;
5663 }
5664 break;
5665
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005666 default:
5667 htx_remove_blk(htx, blk);
5668 total += bsize;
5669 count -= bsize;
5670 break;
5671 }
5672 }
5673 goto done;
5674 }
5675
5676 /* legacy transfer mode */
Willy Tarreaua40704a2018-09-11 13:52:04 +02005677 while (h2s->h1m.state < H1_MSG_DONE && count) {
Willy Tarreau001823c2018-09-12 17:25:32 +02005678 if (h2s->h1m.state <= H1_MSG_LAST_LF) {
Willy Tarreau80739692018-10-05 11:35:57 +02005679 if (h2s->h2c->flags & H2_CF_IS_BACK)
5680 ret = -1;
5681 else
5682 ret = h2s_frt_make_resp_headers(h2s, buf, total, count);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005683 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005684 else if (h2s->h1m.state < H1_MSG_TRAILERS) {
Willy Tarreau0bad0432018-06-14 16:54:01 +02005685 ret = h2s_frt_make_resp_data(h2s, buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005686 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005687 else if (h2s->h1m.state == H1_MSG_TRAILERS) {
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005688 /* consume the trailers if any (we don't forward them for now) */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005689 ret = h1_measure_trailers(buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005690
Willy Tarreau5dd17352018-06-14 13:33:30 +02005691 if (unlikely((int)ret <= 0)) {
5692 if ((int)ret < 0)
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005693 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5694 break;
5695 }
Willy Tarreau35a62702018-02-27 15:37:25 +01005696 // trim any possibly pending data (eg: extra CR-LF, ...)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005697 total += count;
5698 count = 0;
Willy Tarreaua40704a2018-09-11 13:52:04 +02005699 h2s->h1m.state = H1_MSG_DONE;
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005700 break;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02005701 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005702 else {
Willy Tarreauec988c72018-12-19 18:00:29 +01005703 cs_set_error(cs);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005704 break;
5705 }
Willy Tarreau0bad0432018-06-14 16:54:01 +02005706
5707 total += ret;
5708 count -= ret;
5709
Willy Tarreau2b778482019-05-06 15:00:22 +02005710 if (h2s->st >= H2_SS_HLOC)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005711 break;
5712
5713 if (h2s->flags & H2_SF_BLK_ANY)
5714 break;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005715 }
5716
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005717 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005718 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005719 /* trim any possibly pending data after we close (extra CR-LF,
5720 * unprocessed trailers, abnormal extra data, ...)
5721 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005722 total += count;
5723 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005724 }
5725
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005726 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005727 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreauec988c72018-12-19 18:00:29 +01005728 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005729 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005730 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005731 }
5732
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005733 if (htx) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005734 htx_to_buf(htx, buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005735 } else {
5736 b_del(buf, total);
5737 }
Olivier Houchardd846c262018-10-19 17:24:29 +02005738
5739 /* The mux is full, cancel the pending tasks */
5740 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
5741 (h2s->flags & H2_SF_BLK_MBUSY))
5742 h2_stop_senders(h2s->h2c);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005743
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005744 /* If we're running HTX, and we read the whole buffer, then pretend
5745 * we read exactly what the caller specified, as with HTX the caller
5746 * will always give the buffer size, instead of the amount of data
5747 * available.
5748 */
5749 if (htx && !b_data(buf))
5750 total = orig_count;
5751
Olivier Houchard7505f942018-08-21 18:10:44 +02005752 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005753 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005754 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005755
Olivier Houchard7505f942018-08-21 18:10:44 +02005756 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005757 /* If we're waiting for flow control, and we got a shutr on the
5758 * connection, we will never be unlocked, so add an error on
5759 * the conn_stream.
5760 */
5761 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5762 !b_data(&h2s->h2c->dbuf) &&
5763 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
5764 if (cs->flags & CS_FL_EOS)
5765 cs->flags |= CS_FL_ERROR;
5766 else
5767 cs->flags |= CS_FL_ERR_PENDING;
5768 }
Willy Tarreaubda92dd2019-10-02 10:49:59 +02005769
5770 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL)) {
5771 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005772 LIST_DEL_INIT(&h2s->list);
5773 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005774 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005775}
5776
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005777/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005778static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005779{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005780 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005781 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005782 struct eb32_node *node;
5783 int fctl_cnt = 0;
5784 int send_cnt = 0;
5785 int tree_cnt = 0;
5786 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005787 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005788
5789 if (!h2c)
5790 return;
5791
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005792 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005793 fctl_cnt++;
5794
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005795 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005796 send_cnt++;
5797
Willy Tarreau3af37712018-12-18 14:34:41 +01005798 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005799 node = eb32_first(&h2c->streams_by_id);
5800 while (node) {
5801 h2s = container_of(node, struct h2s, by_id);
5802 tree_cnt++;
5803 if (!h2s->cs)
5804 orph_cnt++;
5805 node = eb32_next(node);
5806 }
5807
Willy Tarreau60f62682019-05-26 11:32:27 +02005808 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005809 tmbuf = br_tail(h2c->mbuf);
Willy Tarreau987c0632018-12-18 10:32:05 +01005810 chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
5811 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005812 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5813 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau616ac812018-07-24 14:12:42 +02005814 h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
5815 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005816 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005817 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5818 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5819 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005820 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5821 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5822 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005823 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5824 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005825
5826 if (h2s) {
5827 chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5828 h2s, h2s->id, h2s->flags,
5829 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5830 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5831 h2s->cs);
5832 if (h2s->cs)
5833 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5834 h2s->cs->flags, h2s->cs->data);
5835 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005836}
Willy Tarreau62f52692017-10-08 23:01:42 +02005837
5838/*******************************************************/
5839/* functions below are dedicated to the config parsers */
5840/*******************************************************/
5841
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005842/* config parser for global "tune.h2.header-table-size" */
5843static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5844 struct proxy *defpx, const char *file, int line,
5845 char **err)
5846{
5847 if (too_many_args(1, args, err, NULL))
5848 return -1;
5849
5850 h2_settings_header_table_size = atoi(args[1]);
5851 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5852 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5853 return -1;
5854 }
5855 return 0;
5856}
Willy Tarreau62f52692017-10-08 23:01:42 +02005857
Willy Tarreaue6baec02017-07-27 11:45:11 +02005858/* config parser for global "tune.h2.initial-window-size" */
5859static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5860 struct proxy *defpx, const char *file, int line,
5861 char **err)
5862{
5863 if (too_many_args(1, args, err, NULL))
5864 return -1;
5865
5866 h2_settings_initial_window_size = atoi(args[1]);
5867 if (h2_settings_initial_window_size < 0) {
5868 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5869 return -1;
5870 }
5871 return 0;
5872}
5873
Willy Tarreau5242ef82017-07-27 11:47:28 +02005874/* config parser for global "tune.h2.max-concurrent-streams" */
5875static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5876 struct proxy *defpx, const char *file, int line,
5877 char **err)
5878{
5879 if (too_many_args(1, args, err, NULL))
5880 return -1;
5881
5882 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005883 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005884 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5885 return -1;
5886 }
5887 return 0;
5888}
5889
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005890/* config parser for global "tune.h2.max-frame-size" */
5891static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5892 struct proxy *defpx, const char *file, int line,
5893 char **err)
5894{
5895 if (too_many_args(1, args, err, NULL))
5896 return -1;
5897
5898 h2_settings_max_frame_size = atoi(args[1]);
5899 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5900 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5901 return -1;
5902 }
5903 return 0;
5904}
5905
Willy Tarreau62f52692017-10-08 23:01:42 +02005906
5907/****************************************/
5908/* MUX initialization and instanciation */
5909/***************************************/
5910
5911/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005912static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005913 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005914 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005915 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005916 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02005917 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005918 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02005919 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01005920 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02005921 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01005922 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01005923 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01005924 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02005925 .shutr = h2_shutr,
5926 .shutw = h2_shutw,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005927 .show_fd = h2_show_fd,
Willy Tarreau28f1cb92017-12-20 16:14:44 +01005928 .flags = MX_FL_CLEAN_ABRT,
Willy Tarreau62f52692017-10-08 23:01:42 +02005929 .name = "H2",
5930};
5931
Christopher Faulet32f61c02018-04-10 14:33:41 +02005932/* PROTO selection : this mux registers PROTO token "h2" */
5933static struct mux_proto_list mux_proto_h2 =
Willy Tarreauf8957272018-10-03 10:25:20 +02005934 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_FE, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02005935
Willy Tarreau0108d902018-11-25 19:14:37 +01005936INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
5937
Christopher Faulet9b579102019-04-11 22:52:25 +02005938
5939/* The mux operations */
5940static const struct mux_ops h2_htx_ops = {
5941 .init = h2_init,
5942 .wake = h2_wake,
5943 .snd_buf = h2_snd_buf,
5944 .rcv_buf = h2_rcv_buf,
5945 .subscribe = h2_subscribe,
5946 .unsubscribe = h2_unsubscribe,
5947 .attach = h2_attach,
5948 .get_first_cs = h2_get_first_cs,
5949 .detach = h2_detach,
5950 .destroy = h2_destroy,
5951 .avail_streams = h2_avail_streams,
5952 .used_streams = h2_used_streams,
5953 .shutr = h2_shutr,
5954 .shutw = h2_shutw,
5955 .show_fd = h2_show_fd,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02005956 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Christopher Faulet9b579102019-04-11 22:52:25 +02005957 .name = "H2",
5958};
5959
Willy Tarreauf8957272018-10-03 10:25:20 +02005960static struct mux_proto_list mux_proto_h2_htx =
Christopher Faulet9b579102019-04-11 22:52:25 +02005961 { .token = IST("h2"), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &h2_htx_ops };
Willy Tarreauf8957272018-10-03 10:25:20 +02005962
5963INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2_htx);
5964
Willy Tarreau62f52692017-10-08 23:01:42 +02005965/* config keyword parsers */
5966static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005967 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02005968 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02005969 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005970 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02005971 { 0, NULL, NULL }
5972}};
5973
Willy Tarreau0108d902018-11-25 19:14:37 +01005974INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);