blob: 229f5ba198d0e653c391e52795c1a9dd1ac0b12b [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 */
Olivier Houchardd846c262018-10-19 17:24:29 +0200133 struct list sending_list; /* list of h2s scheduled to send data */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100134 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200135 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200136};
137
Willy Tarreau18312642017-10-11 07:57:07 +0200138/* H2 stream state, in h2s->st */
139enum h2_ss {
140 H2_SS_IDLE = 0, // idle
141 H2_SS_RLOC, // reserved(local)
142 H2_SS_RREM, // reserved(remote)
143 H2_SS_OPEN, // open
144 H2_SS_HREM, // half-closed(remote)
145 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200146 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200147 H2_SS_CLOSED, // closed
148 H2_SS_ENTRIES // must be last
149} __attribute__((packed));
150
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200151#define H2_SS_MASK(state) (1UL << (state))
152#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
153#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
154#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
155#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
156#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
157#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
158#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
159#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200160
Willy Tarreau18312642017-10-11 07:57:07 +0200161/* HTTP/2 stream flags (32 bit), in h2s->flags */
162#define H2_SF_NONE 0x00000000
163#define H2_SF_ES_RCVD 0x00000001
164#define H2_SF_ES_SENT 0x00000002
165
166#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
167#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
168
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200169/* stream flags indicating the reason the stream is blocked */
170#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
171#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux
172#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl
173#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl
174#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
175
Willy Tarreau454f9052017-10-26 19:40:35 +0200176/* stream flags indicating how data is supposed to be sent */
177#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
178#define H2_SF_DATA_CHNK 0x00000200 // data sent using chunked-encoding
179
Christopher Faulet4da05472019-07-18 15:26:47 +0200180/* unused flags: 0x00000400, 0x00000800 */
Willy Tarreau454f9052017-10-26 19:40:35 +0200181
Willy Tarreau67434202017-11-06 20:20:51 +0100182#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100183#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100184
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100185#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
186
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200187#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
188#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200189#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200190
191
Willy Tarreau18312642017-10-11 07:57:07 +0200192/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
193 * it is being processed in the internal HTTP representation (H1 for now).
194 */
195struct h2s {
196 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100197 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200198 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200199 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200200 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200201 int32_t id; /* stream ID */
202 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200203 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200204 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
205 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200206 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100207 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200208 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200209 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 +0100210 struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
211 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 +0200212 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100213 struct list sending_list; /* To be used when adding in h2c->sending_list */
Willy Tarreau18312642017-10-11 07:57:07 +0200214};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200215
Willy Tarreauc6405142017-09-21 20:23:50 +0200216/* descriptor for an h2 frame header */
217struct h2_fh {
218 uint32_t len; /* length, host order, 24 bits */
219 uint32_t sid; /* stream id, host order, 31 bits */
220 uint8_t ft; /* frame type */
221 uint8_t ff; /* frame flags */
222};
223
Willy Tarreau8ceae722018-11-26 11:58:30 +0100224/* the h2c connection pool */
225DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
226
227/* the h2s stream pool */
228DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
229
Willy Tarreaudc572362018-12-12 08:08:05 +0100230/* The default connection window size is 65535, it may only be enlarged using
231 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
232 * we'll pretend we already received the difference between the two to send
233 * an equivalent window update to enlarge it to 2G-1.
234 */
235#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
236
Willy Tarreau455d5682019-05-24 19:42:18 +0200237/* maximum amount of data we're OK with re-aligning for buffer optimizations */
238#define MAX_DATA_REALIGN 1024
239
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200240/* a few settings from the global section */
241static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200242static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100243static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100244static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200245
Willy Tarreau2a856182017-05-16 15:20:39 +0200246/* a dmumy closed stream */
247static const struct h2s *h2_closed_stream = &(const struct h2s){
248 .cs = NULL,
249 .h2c = NULL,
250 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100251 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100252 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200253 .id = 0,
254};
255
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100256/* a dmumy closed stream returning a PROTOCOL_ERROR error */
257static const struct h2s *h2_error_stream = &(const struct h2s){
258 .cs = NULL,
259 .h2c = NULL,
260 .st = H2_SS_CLOSED,
261 .errcode = H2_ERR_PROTOCOL_ERROR,
262 .flags = 0,
263 .id = 0,
264};
265
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100266/* a dmumy closed stream returning a REFUSED_STREAM error */
267static const struct h2s *h2_refused_stream = &(const struct h2s){
268 .cs = NULL,
269 .h2c = NULL,
270 .st = H2_SS_CLOSED,
271 .errcode = H2_ERR_REFUSED_STREAM,
272 .flags = 0,
273 .id = 0,
274};
275
Willy Tarreau2a856182017-05-16 15:20:39 +0200276/* and a dummy idle stream for use with any unannounced stream */
277static const struct h2s *h2_idle_stream = &(const struct h2s){
278 .cs = NULL,
279 .h2c = NULL,
280 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100281 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200282 .id = 0,
283};
284
Olivier Houchard9f6af332018-05-25 14:04:04 +0200285static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200286static int h2_send(struct h2c *h2c);
287static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200288static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200289static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100290static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100291static 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 +0100292static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200293static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100294static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100295static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200296
Olivier Houchard7a977432019-03-21 15:47:13 +0100297static __inline int
298h2c_is_dead(struct h2c *h2c)
299{
300 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
301 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
302 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
303 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200304 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100305 (conn_xprt_read0_pending(h2c->conn) ||
306 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
307 return 1;
308
309 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100310}
311
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200312/*****************************************************/
313/* functions below are for dynamic buffer management */
314/*****************************************************/
315
Willy Tarreau315d8072017-12-10 22:17:57 +0100316/* indicates whether or not the we may call the h2_recv() function to attempt
317 * to receive data into the buffer and/or demux pending data. The condition is
318 * a bit complex due to some API limits for now. The rules are the following :
319 * - if an error or a shutdown was detected on the connection and the buffer
320 * is empty, we must not attempt to receive
321 * - if the demux buf failed to be allocated, we must not try to receive and
322 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100323 * - if no flag indicates a blocking condition, we may attempt to receive,
324 * regardless of whether the demux buffer is full or not, so that only
325 * de demux part decides whether or not to block. This is needed because
326 * the connection API indeed prevents us from re-enabling receipt that is
327 * already enabled in a polled state, so we must always immediately stop
328 * as soon as the demux can't proceed so as never to hit an end of read
329 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100330 * - otherwise must may not attempt
331 */
332static inline int h2_recv_allowed(const struct h2c *h2c)
333{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200334 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100335 (h2c->st0 >= H2_CS_ERROR ||
336 h2c->conn->flags & CO_FL_ERROR ||
337 conn_xprt_read0_pending(h2c->conn)))
338 return 0;
339
340 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100341 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100342 return 1;
343
344 return 0;
345}
346
Willy Tarreau47b515a2018-12-21 16:09:41 +0100347/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200348static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100349{
350 if (!h2_recv_allowed(h2c))
351 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200352 if ((!consider_buffer || !b_data(&h2c->dbuf))
353 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100354 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200355 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100356}
357
358
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100359/* returns true if the front connection has too many conn_streams attached */
360static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200361{
Willy Tarreaua8754662018-12-23 20:43:58 +0100362 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200363}
364
Willy Tarreau44e973f2018-03-01 17:49:30 +0100365/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
366 * flags are used to figure what buffer was requested. It returns 1 if the
367 * allocation succeeds, in which case the connection is woken up, or 0 if it's
368 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200369 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100370static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200371{
372 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100373 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200374
Willy Tarreau44e973f2018-03-01 17:49:30 +0100375 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200376 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200377 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200378 return 1;
379 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200380
Willy Tarreau51330962019-05-26 09:38:07 +0200381 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100382 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200383
384 if (h2c->flags & H2_CF_DEM_MROOM) {
385 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200386 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200387 }
Willy Tarreau14398122017-09-22 14:26:04 +0200388 return 1;
389 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100390
391 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
392 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200393 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100394 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200395 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100396 return 1;
397 }
398
Willy Tarreau14398122017-09-22 14:26:04 +0200399 return 0;
400}
401
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200402static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200403{
404 struct buffer *buf = NULL;
405
Willy Tarreauc234ae32019-05-13 17:56:11 +0200406 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100407 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
408 h2c->buf_wait.target = h2c;
409 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100410 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100411 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100412 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200413 __conn_xprt_stop_recv(h2c->conn);
414 }
415 return buf;
416}
417
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200418static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200419{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200420 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100421 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200422 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200423 }
424}
425
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200426static inline void h2_release_mbuf(struct h2c *h2c)
427{
428 struct buffer *buf;
429 unsigned int count = 0;
430
431 while (b_size(buf = br_head_pick(h2c->mbuf))) {
432 b_free(buf);
433 count++;
434 }
435 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200436 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200437}
438
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100439/* returns the number of allocatable outgoing streams for the connection taking
440 * the last_sid and the reserved ones into account.
441 */
442static inline int h2_streams_left(const struct h2c *h2c)
443{
444 int ret;
445
446 /* consider the number of outgoing streams we're allowed to create before
447 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
448 * nb_reserved is the number of streams which don't yet have an ID.
449 */
450 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
451 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
452 if (ret < 0)
453 ret = 0;
454 return ret;
455}
456
Willy Tarreau00f18a32019-01-26 12:19:01 +0100457/* returns the number of streams in use on a connection to figure if it's
458 * idle or not. We check nb_cs and not nb_streams as the caller will want
459 * to know if it was the last one after a detach().
460 */
461static int h2_used_streams(struct connection *conn)
462{
463 struct h2c *h2c = conn->ctx;
464
465 return h2c->nb_cs;
466}
467
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100468/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100469static int h2_avail_streams(struct connection *conn)
470{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100471 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100472 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100473 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100474
Willy Tarreau6afec462019-01-28 06:40:19 +0100475 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
476 * streams on the connection.
477 */
478 if (h2c->last_sid >= 0)
479 return 0;
480
Willy Tarreau86949782019-01-31 10:42:05 +0100481 /* note: may be negative if a SETTINGS frame changes the limit */
482 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100483
484 /* we must also consider the limit imposed by stream IDs */
485 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100486 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100487 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100488 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
489 ret1 = MIN(ret1, ret2);
490 }
491 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100492}
493
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200494
Willy Tarreau62f52692017-10-08 23:01:42 +0200495/*****************************************************************/
496/* functions below are dedicated to the mux setup and management */
497/*****************************************************************/
498
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200499/* Initialize the mux once it's attached. For outgoing connections, the context
500 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200501 * connections from the fact that the context is still NULL (even during mux
502 * upgrades). <input> is always used as Input buffer and may contain data. It is
503 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200504 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200505static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
506 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200507{
508 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100509 struct task *t = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200510
Willy Tarreaubafbe012017-11-24 17:34:44 +0100511 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200512 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200513 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200514
Christopher Faulete9b70722019-04-08 10:46:02 +0200515 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200516 h2c->flags = H2_CF_IS_BACK;
517 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
518 if (tick_isset(prx->timeout.serverfin))
519 h2c->shut_timeout = prx->timeout.serverfin;
520 } else {
521 h2c->flags = H2_CF_NONE;
522 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
523 if (tick_isset(prx->timeout.clientfin))
524 h2c->shut_timeout = prx->timeout.clientfin;
525 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100526
Willy Tarreau0b37d652018-10-03 10:33:02 +0200527 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100528 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100529 if (tick_isset(h2c->timeout)) {
530 t = task_new(tid_bit);
531 if (!t)
532 goto fail;
533
534 h2c->task = t;
535 t->process = h2_timeout_task;
536 t->context = h2c;
537 t->expire = tick_add(now_ms, h2c->timeout);
538 }
Willy Tarreauea392822017-10-31 10:02:25 +0100539
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200540 h2c->wait_event.tasklet = tasklet_new();
541 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200542 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200543 h2c->wait_event.tasklet->process = h2_io_cb;
544 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100545 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200546
Willy Tarreau32218eb2017-09-22 08:07:25 +0200547 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
548 if (!h2c->ddht)
549 goto fail;
550
551 /* Initialise the context. */
552 h2c->st0 = H2_CS_PREFACE;
553 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100554 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200555 h2c->max_id = -1;
556 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100557 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200558 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100559 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200560 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100561 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100562 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200563
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200564 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200565 h2c->dsi = -1;
566 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100567
Willy Tarreau32218eb2017-09-22 08:07:25 +0200568 h2c->last_sid = -1;
569
Willy Tarreau51330962019-05-26 09:38:07 +0200570 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200571 h2c->miw = 65535; /* mux initial window size */
572 h2c->mws = 65535; /* mux window size */
573 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200574 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200575 LIST_INIT(&h2c->send_list);
576 LIST_INIT(&h2c->fctl_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200577 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100578 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200579
Willy Tarreau3f133572017-10-31 19:21:06 +0100580 if (t)
581 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100582
Willy Tarreau01b44822018-10-03 14:26:37 +0200583 if (h2c->flags & H2_CF_IS_BACK) {
584 /* FIXME: this is temporary, for outgoing connections we need
585 * to immediately allocate a stream until the code is modified
586 * so that the caller calls ->attach(). For now the outgoing cs
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100587 * is stored as conn->ctx by the caller.
Willy Tarreau01b44822018-10-03 14:26:37 +0200588 */
589 struct h2s *h2s;
590
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100591 h2s = h2c_bck_stream_new(h2c, conn->ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200592 if (!h2s)
593 goto fail_stream;
594 }
595
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100596 conn->ctx = h2c;
Willy Tarreau01b44822018-10-03 14:26:37 +0200597
Willy Tarreau0f383582018-10-03 14:22:21 +0200598 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200599 h2c_restart_reading(h2c, 1);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200600 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200601 fail_stream:
602 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200603 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200604 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200605 if (h2c->wait_event.tasklet)
606 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100607 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200608 fail_no_h2c:
Willy Tarreau32218eb2017-09-22 08:07:25 +0200609 return -1;
610}
611
Willy Tarreau751f2d02018-10-05 09:35:00 +0200612/* returns the next allocatable outgoing stream ID for the H2 connection, or
613 * -1 if no more is allocatable.
614 */
615static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
616{
617 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100618
619 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200620 id = -1;
621 return id;
622}
623
Willy Tarreau2373acc2017-10-12 17:35:14 +0200624/* returns the stream associated with id <id> or NULL if not found */
625static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
626{
627 struct eb32_node *node;
628
Willy Tarreau751f2d02018-10-05 09:35:00 +0200629 if (id == 0)
630 return (struct h2s *)h2_closed_stream;
631
Willy Tarreau2a856182017-05-16 15:20:39 +0200632 if (id > h2c->max_id)
633 return (struct h2s *)h2_idle_stream;
634
Willy Tarreau2373acc2017-10-12 17:35:14 +0200635 node = eb32_lookup(&h2c->streams_by_id, id);
636 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200637 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200638
639 return container_of(node, struct h2s, by_id);
640}
641
Christopher Faulet73c12072019-04-08 11:23:22 +0200642/* release function. This one should be called to free all resources allocated
643 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200644 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200645static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200646{
Christopher Faulet61840e72019-04-15 09:33:32 +0200647 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200648
Willy Tarreau32218eb2017-09-22 08:07:25 +0200649 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200650 /* The connection must be aattached to this mux to be released */
651 if (h2c->conn && h2c->conn->ctx == h2c)
652 conn = h2c->conn;
653
Willy Tarreau32218eb2017-09-22 08:07:25 +0200654 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200655
Willy Tarreau186e96e2019-05-28 17:21:18 +0200656 if (LIST_ADDED(&h2c->buf_wait.list)) {
657 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
658 LIST_DEL(&h2c->buf_wait.list);
659 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
660 }
Willy Tarreau14398122017-09-22 14:26:04 +0200661
Willy Tarreau44e973f2018-03-01 17:49:30 +0100662 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200663 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100664
Willy Tarreauea392822017-10-31 10:02:25 +0100665 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200666 h2c->task->context = NULL;
667 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100668 h2c->task = NULL;
669 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200670 if (h2c->wait_event.tasklet)
671 tasklet_free(h2c->wait_event.tasklet);
Olivier Houchard0e079372019-04-15 17:51:16 +0200672 if (h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100673 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200674 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100675
Willy Tarreaubafbe012017-11-24 17:34:44 +0100676 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200677 }
678
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200679 if (conn) {
680 conn->mux = NULL;
681 conn->ctx = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200682
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200683 conn_stop_tracking(conn);
684 conn_full_close(conn);
685 if (conn->destroy_cb)
686 conn->destroy_cb(conn);
687 conn_free(conn);
688 }
Willy Tarreau62f52692017-10-08 23:01:42 +0200689}
690
691
Willy Tarreau71681172017-10-23 14:39:06 +0200692/******************************************************/
693/* functions below are for the H2 protocol processing */
694/******************************************************/
695
696/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100697static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200698{
699 return h2s ? h2s->id : 0;
700}
701
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200702/* returns the sum of the stream's own window size and the mux's initial
703 * window, which together form the stream's effective window size.
704 */
705static inline int h2s_mws(const struct h2s *h2s)
706{
707 return h2s->sws + h2s->h2c->miw;
708}
709
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200710/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100711static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200712{
713 if (h2c->msi < 0)
714 return 0;
715
716 if (h2c->msi == h2s_id(h2s))
717 return 0;
718
719 return 1;
720}
721
Willy Tarreau741d6df2017-10-17 08:00:59 +0200722/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +0100723static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +0200724{
725 h2c->errcode = err;
726 h2c->st0 = H2_CS_ERROR;
727}
728
Willy Tarreau175cebb2019-01-24 10:02:24 +0100729/* marks an error on the stream. It may also update an already closed stream
730 * (e.g. to report an error after an RST was received).
731 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100732static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +0200733{
Willy Tarreau175cebb2019-01-24 10:02:24 +0100734 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau2e43f082017-10-17 08:03:59 +0200735 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +0100736 if (h2s->st < H2_SS_ERROR)
737 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +0100738 if (h2s->cs)
739 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +0200740 }
741}
742
Willy Tarreau7e094452018-12-19 18:08:52 +0100743/* attempt to notify the data layer of recv availability */
744static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
745{
746 struct wait_event *sw;
747
748 if (h2s->recv_wait) {
749 sw = h2s->recv_wait;
750 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200751 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100752 h2s->recv_wait = NULL;
753 }
754}
755
756/* attempt to notify the data layer of send availability */
757static void __maybe_unused h2s_notify_send(struct h2s *h2s)
758{
759 struct wait_event *sw;
760
Willy Tarreauc234ae32019-05-13 17:56:11 +0200761 if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau7e094452018-12-19 18:08:52 +0100762 sw = h2s->send_wait;
763 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchardfd1e96d2019-03-25 14:04:25 +0100764 LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200765 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +0100766 }
767}
768
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100769/* alerts the data layer, trying to wake it up by all means, following
770 * this sequence :
771 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
772 * - if its subscribed to send, then it's woken up for send
773 * - if it was subscribed to neither, its ->wake() callback is called
774 * It is safe to call this function with a closed stream which doesn't have a
775 * conn_stream anymore.
776 */
777static void __maybe_unused h2s_alert(struct h2s *h2s)
778{
779 if (h2s->recv_wait || h2s->send_wait) {
780 h2s_notify_recv(h2s);
781 h2s_notify_send(h2s);
782 }
783 else if (h2s->cs && h2s->cs->data_cb->wake != NULL)
784 h2s->cs->data_cb->wake(h2s->cs);
785}
786
Willy Tarreaue4820742017-07-27 13:37:23 +0200787/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100788static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +0200789{
790 uint8_t *out = frame;
791
792 *out = len >> 16;
793 write_n16(out + 1, len);
794}
795
Willy Tarreau54c15062017-10-10 17:10:03 +0200796/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
797 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
798 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200799 * available in the buffer's input prior to calling this function. The buffer
800 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +0200801 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100802static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +0200803 const struct buffer *b, int o)
804{
Willy Tarreau591d4452018-06-15 17:21:00 +0200805 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 +0200806}
807
Willy Tarreau1f094672017-11-20 21:27:45 +0100808static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200809{
Willy Tarreau591d4452018-06-15 17:21:00 +0200810 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200811}
812
Willy Tarreau1f094672017-11-20 21:27:45 +0100813static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200814{
Willy Tarreau591d4452018-06-15 17:21:00 +0200815 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200816}
817
Willy Tarreau1f094672017-11-20 21:27:45 +0100818static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +0200819{
Willy Tarreau591d4452018-06-15 17:21:00 +0200820 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +0200821}
822
823
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100824/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
825 * The algorithm is not obvious. It turns out that H2 headers are neither
826 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
827 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +0200828 *
829 * b0 b1 b2 b3 b4 b5..b8
830 * +----------+---------+--------+----+----+----------------------+
831 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
832 * +----------+---------+--------+----+----+----------------------+
833 *
834 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
835 * we get the sid properly aligned and ordered, and 16 bits of len properly
836 * ordered as well. The type and flags can be extracted using bit shifts from
837 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +0200838 * Returns zero if some bytes are missing, otherwise non-zero on success. The
839 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +0200840 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100841static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200842{
843 uint64_t w;
844
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100845 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +0200846 return 0;
847
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100848 w = h2_get_n64(b, o + 1);
849 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +0200850 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
851 h->ff = w >> 32;
852 h->ft = w >> 40;
853 h->len += w >> 48;
854 return 1;
855}
856
857/* skip the next 9 bytes corresponding to the frame header possibly parsed by
858 * h2_peek_frame_hdr() above.
859 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100860static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +0200861{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200862 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +0200863}
864
865/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +0100866static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +0200867{
868 int ret;
869
Willy Tarreaua4428bd2018-12-22 18:11:41 +0100870 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +0200871 if (ret > 0)
872 h2_skip_frame_hdr(b);
873 return ret;
874}
875
Willy Tarreau00dd0782018-03-01 16:31:34 +0100876/* marks stream <h2s> as CLOSED and decrement the number of active streams for
877 * its connection if the stream was not yet closed. Please use this exclusively
878 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100879 */
Willy Tarreau00dd0782018-03-01 16:31:34 +0100880static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100881{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100882 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100883 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100884 if (!h2s->id)
885 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +0100886 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +0100887 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
888 h2s_notify_recv(h2s);
889 }
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100890 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +0100891 h2s->st = H2_SS_CLOSED;
892}
893
Willy Tarreau71049cc2018-03-28 13:56:39 +0200894/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
895static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +0100896{
897 h2s_close(h2s);
898 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +0200899 if (b_size(&h2s->rxbuf)) {
900 b_free(&h2s->rxbuf);
901 offer_buffers(NULL, tasks_run_queue);
902 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200903 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100904 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200905 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100906 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -0800907 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200908 * reference left would be in the h2c send_list/fctl_list, and if
909 * we're in it, we're getting out anyway
910 */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100911 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc234ae32019-05-13 17:56:11 +0200912 if (LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau86eded62019-06-14 14:47:49 +0200913 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +0200914 LIST_DEL_INIT(&h2s->sending_list);
915 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200916 tasklet_free(h2s->wait_event.tasklet);
Willy Tarreau0a10de62018-03-01 16:27:53 +0100917 pool_free(pool_head_h2s, h2s);
918}
919
Willy Tarreaua8e49542018-10-03 18:53:55 +0200920/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
921 * stream tree. In case of error, nothing is added and NULL is returned. The
922 * causes of errors can be any failed memory allocation. The caller is
923 * responsible for checking if the connection may support an extra stream
924 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200925 */
Willy Tarreaua8e49542018-10-03 18:53:55 +0200926static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200927{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200928 struct h2s *h2s;
929
Willy Tarreaubafbe012017-11-24 17:34:44 +0100930 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200931 if (!h2s)
932 goto out;
933
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200934 h2s->wait_event.tasklet = tasklet_new();
935 if (!h2s->wait_event.tasklet) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200936 pool_free(pool_head_h2s, h2s);
937 goto out;
938 }
939 h2s->send_wait = NULL;
940 h2s->recv_wait = NULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200941 h2s->wait_event.tasklet->process = h2_deferred_shut;
942 h2s->wait_event.tasklet->context = h2s;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100943 h2s->wait_event.events = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200944 LIST_INIT(&h2s->list);
Olivier Houchardd360ac62019-03-22 17:37:16 +0100945 LIST_INIT(&h2s->sending_list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200946 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +0200947 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200948 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200949 h2s->flags = H2_SF_NONE;
950 h2s->errcode = H2_ERR_NO_ERROR;
951 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200952 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +0100953 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +0200954 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +0200955
956 if (h2c->flags & H2_CF_IS_BACK) {
957 h1m_init_req(&h2s->h1m);
958 h2s->h1m.err_pos = -1; // don't care about errors on the request path
959 h2s->h1m.flags |= H1_MF_TOLOWER;
960 } else {
961 h1m_init_res(&h2s->h1m);
962 h2s->h1m.err_pos = -1; // don't care about errors on the response path
963 h2s->h1m.flags |= H1_MF_TOLOWER;
964 }
965
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200966 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +0200967 if (id > 0)
968 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100969 else
970 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200971
972 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +0100973 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100974 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +0200975
976 return h2s;
977
978 out_free_h2s:
979 pool_free(pool_head_h2s, h2s);
980 out:
981 return NULL;
982}
983
984/* creates a new stream <id> on the h2c connection and returns it, or NULL in
985 * case of memory allocation error.
986 */
987static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
988{
989 struct session *sess = h2c->conn->owner;
990 struct conn_stream *cs;
991 struct h2s *h2s;
992
993 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
994 goto out;
995
996 h2s = h2s_new(h2c, id);
997 if (!h2s)
998 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +0200999
1000 cs = cs_new(h2c->conn);
1001 if (!cs)
1002 goto out_close;
1003
Olivier Houchard746fb772018-12-15 19:42:00 +01001004 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001005 h2s->cs = cs;
1006 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001007 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001008
1009 if (stream_create_from_cs(cs) < 0)
1010 goto out_free_cs;
1011
Willy Tarreau590a0512018-09-05 11:56:48 +02001012 /* We want the accept date presented to the next stream to be the one
1013 * we have now, the handshake time to be null (since the next stream
1014 * is not delayed by a handshake), and the idle time to count since
1015 * right now.
1016 */
1017 sess->accept_date = date;
1018 sess->tv_accept = now;
1019 sess->t_handshake = 0;
1020
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001021 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001022 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001023 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001024 return h2s;
1025
1026 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001027 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001028 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001029 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001030 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001031 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001032 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001033 sess_log(sess);
1034 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001035}
1036
Willy Tarreau751f2d02018-10-05 09:35:00 +02001037/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1038 * and returns it, or NULL in case of memory allocation error or if the highest
1039 * possible stream ID was reached.
1040 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001041static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001042{
1043 struct h2s *h2s = NULL;
1044
Willy Tarreau86949782019-01-31 10:42:05 +01001045 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001046 goto out;
1047
Willy Tarreaua80dca82019-01-24 17:08:28 +01001048 if (h2_streams_left(h2c) < 1)
1049 goto out;
1050
Willy Tarreau751f2d02018-10-05 09:35:00 +02001051 /* Defer choosing the ID until we send the first message to create the stream */
1052 h2s = h2s_new(h2c, 0);
1053 if (!h2s)
1054 goto out;
1055
1056 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001057 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001058 cs->ctx = h2s;
1059 h2c->nb_cs++;
1060
Willy Tarreau751f2d02018-10-05 09:35:00 +02001061 out:
1062 return h2s;
1063}
1064
Willy Tarreaube5b7152017-09-25 16:25:39 +02001065/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1066 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1067 * the various settings codes.
1068 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001069static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001070{
1071 struct buffer *res;
1072 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001073 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001074 int mfs;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001075 int ret;
1076
1077 if (h2c_mux_busy(h2c, NULL)) {
1078 h2c->flags |= H2_CF_DEM_MBUSY;
1079 return 0;
1080 }
1081
Willy Tarreaube5b7152017-09-25 16:25:39 +02001082 chunk_init(&buf, buf_data, sizeof(buf_data));
1083 chunk_memcpy(&buf,
1084 "\x00\x00\x00" /* length : 0 for now */
1085 "\x04\x00" /* type : 4 (settings), flags : 0 */
1086 "\x00\x00\x00\x00", /* stream ID : 0 */
1087 9);
1088
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001089 if (h2c->flags & H2_CF_IS_BACK) {
1090 /* send settings_enable_push=0 */
1091 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1092 }
1093
Willy Tarreaube5b7152017-09-25 16:25:39 +02001094 if (h2_settings_header_table_size != 4096) {
1095 char str[6] = "\x00\x01"; /* header_table_size */
1096
1097 write_n32(str + 2, h2_settings_header_table_size);
1098 chunk_memcat(&buf, str, 6);
1099 }
1100
1101 if (h2_settings_initial_window_size != 65535) {
1102 char str[6] = "\x00\x04"; /* initial_window_size */
1103
1104 write_n32(str + 2, h2_settings_initial_window_size);
1105 chunk_memcat(&buf, str, 6);
1106 }
1107
1108 if (h2_settings_max_concurrent_streams != 0) {
1109 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1110
1111 /* Note: 0 means "unlimited" for haproxy's config but not for
1112 * the protocol, so never send this value!
1113 */
1114 write_n32(str + 2, h2_settings_max_concurrent_streams);
1115 chunk_memcat(&buf, str, 6);
1116 }
1117
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001118 mfs = h2_settings_max_frame_size;
1119 if (mfs > global.tune.bufsize)
1120 mfs = global.tune.bufsize;
1121
1122 if (!mfs)
1123 mfs = global.tune.bufsize;
1124
1125 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001126 char str[6] = "\x00\x05"; /* max_frame_size */
1127
1128 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1129 * match bufsize - rewrite size, but at the moment it seems
1130 * that clients don't take care of it.
1131 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001132 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001133 chunk_memcat(&buf, str, 6);
1134 }
1135
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001136 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001137
1138 res = br_tail(h2c->mbuf);
1139 retry:
1140 if (!h2_get_buf(h2c, res)) {
1141 h2c->flags |= H2_CF_MUX_MALLOC;
1142 h2c->flags |= H2_CF_DEM_MROOM;
1143 return 0;
1144 }
1145
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001146 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001147 if (unlikely(ret <= 0)) {
1148 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001149 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1150 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001151 h2c->flags |= H2_CF_MUX_MFULL;
1152 h2c->flags |= H2_CF_DEM_MROOM;
1153 return 0;
1154 }
1155 else {
1156 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1157 return 0;
1158 }
1159 }
1160 return ret;
1161}
1162
Willy Tarreau52eed752017-09-22 15:05:09 +02001163/* Try to receive a connection preface, then upon success try to send our
1164 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1165 * missing data. It may return an error in h2c.
1166 */
1167static int h2c_frt_recv_preface(struct h2c *h2c)
1168{
1169 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001170 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001171
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001172 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001173
1174 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001175 if (ret1 < 0)
1176 sess_log(h2c->conn->owner);
1177
Willy Tarreau52eed752017-09-22 15:05:09 +02001178 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1179 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1180 return 0;
1181 }
1182
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001183 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001184 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001185 b_del(&h2c->dbuf, ret1);
Willy Tarreau52eed752017-09-22 15:05:09 +02001186
Willy Tarreaube5b7152017-09-25 16:25:39 +02001187 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001188}
1189
Willy Tarreau01b44822018-10-03 14:26:37 +02001190/* Try to send a connection preface, then upon success try to send our
1191 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1192 * missing data. It may return an error in h2c.
1193 */
1194static int h2c_bck_send_preface(struct h2c *h2c)
1195{
1196 struct buffer *res;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001197 int ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001198
1199 if (h2c_mux_busy(h2c, NULL)) {
1200 h2c->flags |= H2_CF_DEM_MBUSY;
1201 return 0;
1202 }
1203
Willy Tarreaubcc45952019-05-26 10:05:50 +02001204 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001205 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001206 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001207 h2c->flags |= H2_CF_MUX_MALLOC;
1208 h2c->flags |= H2_CF_DEM_MROOM;
1209 return 0;
1210 }
1211
1212 if (!b_data(res)) {
1213 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001214 ret = b_istput(res, ist(H2_CONN_PREFACE));
1215 if (unlikely(ret <= 0)) {
1216 if (!ret) {
1217 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1218 goto retry;
1219 h2c->flags |= H2_CF_MUX_MFULL;
1220 h2c->flags |= H2_CF_DEM_MROOM;
1221 return 0;
1222 }
1223 else {
1224 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1225 return 0;
1226 }
1227 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001228 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001229 return h2c_send_settings(h2c);
1230}
1231
Willy Tarreau081d4722017-05-16 21:51:05 +02001232/* try to send a GOAWAY frame on the connection to report an error or a graceful
1233 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1234 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1235 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1236 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1237 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1238 * on unrecoverable failure. It will not attempt to send one again in this last
1239 * case so that it is safe to use h2c_error() to report such errors.
1240 */
1241static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1242{
1243 struct buffer *res;
1244 char str[17];
1245 int ret;
1246
1247 if (h2c->flags & H2_CF_GOAWAY_FAILED)
1248 return 1; // claim that it worked
1249
1250 if (h2c_mux_busy(h2c, h2s)) {
1251 if (h2s)
1252 h2s->flags |= H2_SF_BLK_MBUSY;
1253 else
1254 h2c->flags |= H2_CF_DEM_MBUSY;
1255 return 0;
1256 }
1257
Willy Tarreau9c218e72019-05-26 10:08:28 +02001258 /* len: 8, type: 7, flags: none, sid: 0 */
1259 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1260
1261 if (h2c->last_sid < 0)
1262 h2c->last_sid = h2c->max_id;
1263
1264 write_n32(str + 9, h2c->last_sid);
1265 write_n32(str + 13, h2c->errcode);
1266
Willy Tarreaubcc45952019-05-26 10:05:50 +02001267 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001268 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001269 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001270 h2c->flags |= H2_CF_MUX_MALLOC;
1271 if (h2s)
1272 h2s->flags |= H2_SF_BLK_MROOM;
1273 else
1274 h2c->flags |= H2_CF_DEM_MROOM;
1275 return 0;
1276 }
1277
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001278 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001279 if (unlikely(ret <= 0)) {
1280 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001281 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1282 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001283 h2c->flags |= H2_CF_MUX_MFULL;
1284 if (h2s)
1285 h2s->flags |= H2_SF_BLK_MROOM;
1286 else
1287 h2c->flags |= H2_CF_DEM_MROOM;
1288 return 0;
1289 }
1290 else {
1291 /* we cannot report this error using GOAWAY, so we mark
1292 * it and claim a success.
1293 */
1294 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1295 h2c->flags |= H2_CF_GOAWAY_FAILED;
1296 return 1;
1297 }
1298 }
1299 h2c->flags |= H2_CF_GOAWAY_SENT;
1300 return ret;
1301}
1302
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001303/* Try to send an RST_STREAM frame on the connection for the indicated stream
1304 * during mux operations. This stream must be valid and cannot be closed
1305 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1306 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1307 * not yet.
1308 *
1309 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1310 * to write the message, it subscribes the stream to future notifications.
1311 */
1312static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1313{
1314 struct buffer *res;
1315 char str[13];
1316 int ret;
1317
1318 if (!h2s || h2s->st == H2_SS_CLOSED)
1319 return 1;
1320
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001321 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1322 * RST_STREAM in response to a RST_STREAM frame.
1323 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001324 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001325 ret = 1;
1326 goto ignore;
1327 }
1328
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001329 if (h2c_mux_busy(h2c, h2s)) {
1330 h2s->flags |= H2_SF_BLK_MBUSY;
1331 return 0;
1332 }
1333
Willy Tarreau9c218e72019-05-26 10:08:28 +02001334 /* len: 4, type: 3, flags: none */
1335 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1336 write_n32(str + 5, h2s->id);
1337 write_n32(str + 9, h2s->errcode);
1338
Willy Tarreaubcc45952019-05-26 10:05:50 +02001339 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001340 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001341 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001342 h2c->flags |= H2_CF_MUX_MALLOC;
1343 h2s->flags |= H2_SF_BLK_MROOM;
1344 return 0;
1345 }
1346
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001347 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001348 if (unlikely(ret <= 0)) {
1349 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001350 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1351 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001352 h2c->flags |= H2_CF_MUX_MFULL;
1353 h2s->flags |= H2_SF_BLK_MROOM;
1354 return 0;
1355 }
1356 else {
1357 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1358 return 0;
1359 }
1360 }
1361
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001362 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001363 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001364 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001365 return ret;
1366}
1367
1368/* Try to send an RST_STREAM frame on the connection for the stream being
1369 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001370 * error code, even if the stream is one of the dummy ones, and will update
1371 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001372 *
1373 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1374 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001375 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001376 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001377 */
1378static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1379{
1380 struct buffer *res;
1381 char str[13];
1382 int ret;
1383
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001384 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1385 * RST_STREAM in response to a RST_STREAM frame.
1386 */
1387 if (h2c->dft == H2_FT_RST_STREAM) {
1388 ret = 1;
1389 goto ignore;
1390 }
1391
Willy Tarreau27a84c92017-10-17 08:10:17 +02001392 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001393 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001394 return 0;
1395 }
1396
Willy Tarreau9c218e72019-05-26 10:08:28 +02001397 /* len: 4, type: 3, flags: none */
1398 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1399
1400 write_n32(str + 5, h2c->dsi);
1401 write_n32(str + 9, h2s->errcode);
1402
Willy Tarreaubcc45952019-05-26 10:05:50 +02001403 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001404 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001405 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001406 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001407 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001408 return 0;
1409 }
1410
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001411 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001412 if (unlikely(ret <= 0)) {
1413 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001414 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1415 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001416 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001417 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001418 return 0;
1419 }
1420 else {
1421 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1422 return 0;
1423 }
1424 }
1425
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001426 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001427 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001428 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001429 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001430 }
1431
Willy Tarreau27a84c92017-10-17 08:10:17 +02001432 return ret;
1433}
1434
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001435/* try to send an empty DATA frame with the ES flag set to notify about the
1436 * end of stream and match a shutdown(write). If an ES was already sent as
1437 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1438 * on success or zero if nothing was done. In case of lack of room to write the
1439 * message, it subscribes the requesting stream to future notifications.
1440 */
1441static int h2_send_empty_data_es(struct h2s *h2s)
1442{
1443 struct h2c *h2c = h2s->h2c;
1444 struct buffer *res;
1445 char str[9];
1446 int ret;
1447
Willy Tarreau721c9742017-11-07 11:05:42 +01001448 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED)
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001449 return 1;
1450
1451 if (h2c_mux_busy(h2c, h2s)) {
1452 h2s->flags |= H2_SF_BLK_MBUSY;
1453 return 0;
1454 }
1455
Willy Tarreau9c218e72019-05-26 10:08:28 +02001456 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1457 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1458 write_n32(str + 5, h2s->id);
1459
Willy Tarreaubcc45952019-05-26 10:05:50 +02001460 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001461 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001462 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001463 h2c->flags |= H2_CF_MUX_MALLOC;
1464 h2s->flags |= H2_SF_BLK_MROOM;
1465 return 0;
1466 }
1467
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001468 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001469 if (likely(ret > 0)) {
1470 h2s->flags |= H2_SF_ES_SENT;
1471 }
1472 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001473 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1474 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001475 h2c->flags |= H2_CF_MUX_MFULL;
1476 h2s->flags |= H2_SF_BLK_MROOM;
1477 return 0;
1478 }
1479 else {
1480 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1481 return 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001482 }
1483 return ret;
1484}
1485
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001486/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001487 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001488 * is automatically updated accordingly. If the stream is orphaned, it is
1489 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001490 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001491static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001492{
1493 if (!h2s->cs) {
1494 /* this stream was already orphaned */
1495 h2s_destroy(h2s);
1496 return;
1497 }
1498
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001499 if (conn_xprt_read0_pending(h2s->h2c->conn)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001500 if (h2s->st == H2_SS_OPEN)
1501 h2s->st = H2_SS_HREM;
1502 else if (h2s->st == H2_SS_HLOC)
1503 h2s_close(h2s);
1504 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001505
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001506 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1507 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1508 h2s->cs->flags |= CS_FL_ERR_PENDING;
1509 if (h2s->cs->flags & CS_FL_EOS)
1510 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001511
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001512 if (h2s->st < H2_SS_ERROR)
1513 h2s->st = H2_SS_ERROR;
1514 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001515
1516 h2s_alert(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001517}
1518
1519/* wake the streams attached to the connection, whose id is greater than <last>
1520 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001521 */
Willy Tarreau23482912019-05-07 15:23:14 +02001522static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001523{
1524 struct eb32_node *node;
1525 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001526
Christopher Fauletf02ca002019-03-07 16:21:34 +01001527 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001528 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1529 while (node) {
1530 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001531 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001532 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001533 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001534
Christopher Fauletf02ca002019-03-07 16:21:34 +01001535 /* Wake all streams with unassigned ID (ID == 0) */
1536 node = eb32_lookup(&h2c->streams_by_id, 0);
1537 while (node) {
1538 h2s = container_of(node, struct h2s, by_id);
1539 if (h2s->id > 0)
1540 break;
1541 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001542 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001543 }
1544}
1545
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001546/* Wake up all blocked streams whose window size has become positive after the
1547 * mux's initial window was adjusted. This should be done after having processed
1548 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001549 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001550static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001551{
1552 struct h2s *h2s;
1553 struct eb32_node *node;
1554
Willy Tarreau3421aba2017-07-27 15:41:03 +02001555 node = eb32_first(&h2c->streams_by_id);
1556 while (node) {
1557 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001558 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001559 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02001560 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001561 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001562 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001563 node = eb32_next(node);
1564 }
1565}
1566
1567/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1568 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001569 * return an error in h2c. The caller must have already verified frame length
1570 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001571 */
1572static int h2c_handle_settings(struct h2c *h2c)
1573{
1574 unsigned int offset;
1575 int error;
1576
1577 if (h2c->dff & H2_F_SETTINGS_ACK) {
1578 if (h2c->dfl) {
1579 error = H2_ERR_FRAME_SIZE_ERROR;
1580 goto fail;
1581 }
1582 return 1;
1583 }
1584
Willy Tarreau3421aba2017-07-27 15:41:03 +02001585 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001586 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001587 return 0;
1588
1589 /* parse the frame */
1590 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001591 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
1592 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001593
1594 switch (type) {
1595 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
1596 /* we need to update all existing streams with the
1597 * difference from the previous iws.
1598 */
1599 if (arg < 0) { // RFC7540#6.5.2
1600 error = H2_ERR_FLOW_CONTROL_ERROR;
1601 goto fail;
1602 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001603 h2c->miw = arg;
1604 break;
1605 case H2_SETTINGS_MAX_FRAME_SIZE:
1606 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
1607 error = H2_ERR_PROTOCOL_ERROR;
1608 goto fail;
1609 }
1610 h2c->mfs = arg;
1611 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01001612 case H2_SETTINGS_ENABLE_PUSH:
1613 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
1614 error = H2_ERR_PROTOCOL_ERROR;
1615 goto fail;
1616 }
1617 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001618 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
1619 if (h2c->flags & H2_CF_IS_BACK) {
1620 /* the limit is only for the backend; for the frontend it is our limit */
1621 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
1622 arg = h2_settings_max_concurrent_streams;
1623 h2c->streams_limit = arg;
1624 }
1625 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001626 }
1627 }
1628
1629 /* need to ACK this frame now */
1630 h2c->st0 = H2_CS_FRAME_A;
1631 return 1;
1632 fail:
Willy Tarreau22de8d32018-09-05 19:55:58 +02001633 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001634 h2c_error(h2c, error);
1635 return 0;
1636}
1637
1638/* try to send an ACK for a settings frame on the connection. Returns > 0 on
1639 * success or one of the h2_status values.
1640 */
1641static int h2c_ack_settings(struct h2c *h2c)
1642{
1643 struct buffer *res;
1644 char str[9];
1645 int ret = -1;
1646
1647 if (h2c_mux_busy(h2c, NULL)) {
1648 h2c->flags |= H2_CF_DEM_MBUSY;
1649 return 0;
1650 }
1651
Willy Tarreau9c218e72019-05-26 10:08:28 +02001652 memcpy(str,
1653 "\x00\x00\x00" /* length : 0 (no data) */
1654 "\x04" "\x01" /* type : 4, flags : ACK */
1655 "\x00\x00\x00\x00" /* stream ID */, 9);
1656
Willy Tarreaubcc45952019-05-26 10:05:50 +02001657 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001658 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001659 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02001660 h2c->flags |= H2_CF_MUX_MALLOC;
1661 h2c->flags |= H2_CF_DEM_MROOM;
1662 return 0;
1663 }
1664
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001665 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02001666 if (unlikely(ret <= 0)) {
1667 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001668 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1669 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001670 h2c->flags |= H2_CF_MUX_MFULL;
1671 h2c->flags |= H2_CF_DEM_MROOM;
1672 return 0;
1673 }
1674 else {
1675 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1676 return 0;
1677 }
1678 }
1679 return ret;
1680}
1681
Willy Tarreaucf68c782017-10-10 17:11:41 +02001682/* processes a PING frame and schedules an ACK if needed. The caller must pass
1683 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01001684 * missing data. The caller must have already verified frame length
1685 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02001686 */
1687static int h2c_handle_ping(struct h2c *h2c)
1688{
Willy Tarreaucf68c782017-10-10 17:11:41 +02001689 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01001690 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02001691 h2c->st0 = H2_CS_FRAME_A;
1692 return 1;
1693}
1694
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001695/* Try to send a window update for stream id <sid> and value <increment>.
1696 * Returns > 0 on success or zero on missing room or failure. It may return an
1697 * error in h2c.
1698 */
1699static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
1700{
1701 struct buffer *res;
1702 char str[13];
1703 int ret = -1;
1704
1705 if (h2c_mux_busy(h2c, NULL)) {
1706 h2c->flags |= H2_CF_DEM_MBUSY;
1707 return 0;
1708 }
1709
Willy Tarreau9c218e72019-05-26 10:08:28 +02001710 /* length: 4, type: 8, flags: none */
1711 memcpy(str, "\x00\x00\x04\x08\x00", 5);
1712 write_n32(str + 5, sid);
1713 write_n32(str + 9, increment);
1714
Willy Tarreaubcc45952019-05-26 10:05:50 +02001715 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001716 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001717 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001718 h2c->flags |= H2_CF_MUX_MALLOC;
1719 h2c->flags |= H2_CF_DEM_MROOM;
1720 return 0;
1721 }
1722
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001723 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001724 if (unlikely(ret <= 0)) {
1725 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001726 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1727 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001728 h2c->flags |= H2_CF_MUX_MFULL;
1729 h2c->flags |= H2_CF_DEM_MROOM;
1730 return 0;
1731 }
1732 else {
1733 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1734 return 0;
1735 }
1736 }
1737 return ret;
1738}
1739
1740/* try to send pending window update for the connection. It's safe to call it
1741 * with no pending updates. Returns > 0 on success or zero on missing room or
1742 * failure. It may return an error in h2c.
1743 */
1744static int h2c_send_conn_wu(struct h2c *h2c)
1745{
1746 int ret = 1;
1747
1748 if (h2c->rcvd_c <= 0)
1749 return 1;
1750
Willy Tarreau97aaa672018-12-23 09:49:04 +01001751 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
1752 /* increase the advertised connection window to 2G on
1753 * first update.
1754 */
1755 h2c->flags |= H2_CF_WINDOW_OPENED;
1756 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
1757 }
1758
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001759 /* send WU for the connection */
1760 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
1761 if (ret > 0)
1762 h2c->rcvd_c = 0;
1763
1764 return ret;
1765}
1766
1767/* try to send pending window update for the current dmux stream. It's safe to
1768 * call it with no pending updates. Returns > 0 on success or zero on missing
1769 * room or failure. It may return an error in h2c.
1770 */
1771static int h2c_send_strm_wu(struct h2c *h2c)
1772{
1773 int ret = 1;
1774
1775 if (h2c->rcvd_s <= 0)
1776 return 1;
1777
1778 /* send WU for the stream */
1779 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
1780 if (ret > 0)
1781 h2c->rcvd_s = 0;
1782
1783 return ret;
1784}
1785
Willy Tarreaucf68c782017-10-10 17:11:41 +02001786/* try to send an ACK for a ping frame on the connection. Returns > 0 on
1787 * success, 0 on missing data or one of the h2_status values.
1788 */
1789static int h2c_ack_ping(struct h2c *h2c)
1790{
1791 struct buffer *res;
1792 char str[17];
1793 int ret = -1;
1794
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001795 if (b_data(&h2c->dbuf) < 8)
Willy Tarreaucf68c782017-10-10 17:11:41 +02001796 return 0;
1797
1798 if (h2c_mux_busy(h2c, NULL)) {
1799 h2c->flags |= H2_CF_DEM_MBUSY;
1800 return 0;
1801 }
1802
Willy Tarreaucf68c782017-10-10 17:11:41 +02001803 memcpy(str,
1804 "\x00\x00\x08" /* length : 8 (same payload) */
1805 "\x06" "\x01" /* type : 6, flags : ACK */
1806 "\x00\x00\x00\x00" /* stream ID */, 9);
1807
1808 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001809 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02001810
Willy Tarreau9c218e72019-05-26 10:08:28 +02001811 res = br_tail(h2c->mbuf);
1812 retry:
1813 if (!h2_get_buf(h2c, res)) {
1814 h2c->flags |= H2_CF_MUX_MALLOC;
1815 h2c->flags |= H2_CF_DEM_MROOM;
1816 return 0;
1817 }
1818
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001819 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02001820 if (unlikely(ret <= 0)) {
1821 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001822 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1823 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02001824 h2c->flags |= H2_CF_MUX_MFULL;
1825 h2c->flags |= H2_CF_DEM_MROOM;
1826 return 0;
1827 }
1828 else {
1829 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1830 return 0;
1831 }
1832 }
1833 return ret;
1834}
1835
Willy Tarreau26f95952017-07-27 17:18:30 +02001836/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
1837 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01001838 * h2c or h2s. The caller must have already verified frame length and stream ID
1839 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02001840 */
1841static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
1842{
1843 int32_t inc;
1844 int error;
1845
Willy Tarreau26f95952017-07-27 17:18:30 +02001846 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001847 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau26f95952017-07-27 17:18:30 +02001848 return 0;
1849
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001850 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02001851
1852 if (h2c->dsi != 0) {
1853 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02001854
1855 /* it's not an error to receive WU on a closed stream */
1856 if (h2s->st == H2_SS_CLOSED)
1857 return 1;
1858
1859 if (!inc) {
1860 error = H2_ERR_PROTOCOL_ERROR;
1861 goto strm_err;
1862 }
1863
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001864 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001865 error = H2_ERR_FLOW_CONTROL_ERROR;
1866 goto strm_err;
1867 }
1868
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001869 h2s->sws += inc;
1870 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02001871 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02001872 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Olivier Houcharddddfe312018-10-10 18:51:00 +02001873 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02001874 }
1875 }
1876 else {
1877 /* connection window update */
1878 if (!inc) {
1879 error = H2_ERR_PROTOCOL_ERROR;
1880 goto conn_err;
1881 }
1882
1883 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
1884 error = H2_ERR_FLOW_CONTROL_ERROR;
1885 goto conn_err;
1886 }
1887
1888 h2c->mws += inc;
1889 }
1890
1891 return 1;
1892
1893 conn_err:
1894 h2c_error(h2c, error);
1895 return 0;
1896
1897 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01001898 h2s_error(h2s, error);
1899 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau26f95952017-07-27 17:18:30 +02001900 return 0;
1901}
1902
Willy Tarreaue96b0922017-10-30 00:28:29 +01001903/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01001904 * the last ID. Returns > 0 on success or zero on missing data. The caller must
1905 * have already verified frame length and stream ID validity. Described in
1906 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01001907 */
1908static int h2c_handle_goaway(struct h2c *h2c)
1909{
Willy Tarreaue96b0922017-10-30 00:28:29 +01001910 int last;
1911
Willy Tarreaue96b0922017-10-30 00:28:29 +01001912 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001913 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaue96b0922017-10-30 00:28:29 +01001914 return 0;
1915
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001916 last = h2_get_n32(&h2c->dbuf, 0);
1917 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01001918 if (h2c->last_sid < 0)
1919 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02001920 h2_wake_some_streams(h2c, last);
Willy Tarreaue96b0922017-10-30 00:28:29 +01001921 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01001922}
1923
Willy Tarreau92153fc2017-12-03 19:46:19 +01001924/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01001925 * invalid. Returns > 0 on success or zero on missing data. It may return an
1926 * error in h2c. The caller must have already verified frame length and stream
1927 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01001928 */
1929static int h2c_handle_priority(struct h2c *h2c)
1930{
Willy Tarreau92153fc2017-12-03 19:46:19 +01001931 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001932 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau92153fc2017-12-03 19:46:19 +01001933 return 0;
1934
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001935 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01001936 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01001937 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1938 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001939 }
1940 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001941}
1942
Willy Tarreaucd234e92017-08-18 10:59:39 +02001943/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01001944 * Returns > 0 on success or zero on missing data. The caller must have already
1945 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02001946 */
1947static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
1948{
Willy Tarreaucd234e92017-08-18 10:59:39 +02001949 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001950 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaucd234e92017-08-18 10:59:39 +02001951 return 0;
1952
1953 /* late RST, already handled */
1954 if (h2s->st == H2_SS_CLOSED)
1955 return 1;
1956
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001957 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01001958 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001959
1960 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01001961 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01001962 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001963 }
1964
1965 h2s->flags |= H2_SF_RST_RCVD;
1966 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02001967}
1968
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001969/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
1970 * It may return an error in h2c or h2s. The caller must consider that the
1971 * return value is the new h2s in case one was allocated (most common case).
1972 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02001973 * errors here are reported as connection errors since it's impossible to
1974 * recover from such errors after the compression context has been altered.
1975 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001976static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02001977{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01001978 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01001979 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01001980 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02001981 int error;
1982
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001983 if (!b_size(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001984 return NULL; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02001985
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001986 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001987 return NULL; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02001988
1989 /* now either the frame is complete or the buffer is complete */
1990 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01001991 /* The stream exists/existed, this must be a trailers frame */
1992 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02001993 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
1994 /* unrecoverable error ? */
1995 if (h2c->st0 >= H2_CS_ERROR)
1996 goto out;
1997
1998 if (error == 0)
1999 goto out; // missing data
2000
2001 if (error < 0) {
2002 /* Failed to decode this frame (e.g. too large request)
2003 * but the HPACK decompressor is still synchronized.
2004 */
2005 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2006 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002007 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002008 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002009 goto done;
2010 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002011 /* the connection was already killed by an RST, let's consume
2012 * the data and send another RST.
2013 */
2014 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2015 h2s = (struct h2s*)h2_error_stream;
2016 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002017 }
2018 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2019 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2020 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002021 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002022 goto conn_err;
2023 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002024 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2025 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002026
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002027 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002028
Willy Tarreau25919232019-01-03 14:48:18 +01002029 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002030 if (h2c->st0 >= H2_CS_ERROR)
2031 goto out;
2032
Willy Tarreau25919232019-01-03 14:48:18 +01002033 if (error <= 0) {
2034 if (error == 0)
2035 goto out; // missing data
2036
2037 /* Failed to decode this stream (e.g. too large request)
2038 * but the HPACK decompressor is still synchronized.
2039 */
2040 h2s = (struct h2s*)h2_error_stream;
2041 goto send_rst;
2042 }
2043
Willy Tarreau22de8d32018-09-05 19:55:58 +02002044 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002045 * positively from h2c_frt_stream_new(), the stream will report the error,
2046 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002047 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002048 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002049 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002050 h2s = (struct h2s*)h2_refused_stream;
2051 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002052 }
2053
2054 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002055 h2s->rxbuf = rxbuf;
2056 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002057 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002058
Willy Tarreau88d138e2019-01-02 19:38:14 +01002059 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002060 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002061 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002062
2063 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002064 if (h2s->st == H2_SS_OPEN)
2065 h2s->st = H2_SS_HREM;
2066 else
2067 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002068 }
2069
Willy Tarreau3a429f02019-01-03 11:41:50 +01002070 /* update the max stream ID if the request is being processed */
2071 if (h2s->id > h2c->max_id)
2072 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002073
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002074 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002075
2076 conn_err:
2077 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002078 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002079
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002080 out:
2081 h2_release_buf(h2c, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002082 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002083
2084 send_rst:
2085 /* make the demux send an RST for the current stream. We may only
2086 * do this if we're certain that the HEADERS frame was properly
2087 * decompressed so that the HPACK decoder is still kept up to date.
2088 */
2089 h2_release_buf(h2c, &rxbuf);
2090 h2c->st0 = H2_CS_FRAME_E;
2091 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002092}
2093
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002094/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2095 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2096 * errors here are reported as connection errors since it's impossible to
2097 * recover from such errors after the compression context has been altered.
2098 */
2099static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2100{
2101 int error;
2102
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002103 if (!b_size(&h2c->dbuf))
2104 return NULL; // empty buffer
2105
2106 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
2107 return NULL; // incomplete frame
2108
Willy Tarreau1915ca22019-01-24 11:49:37 +01002109 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002110
Willy Tarreau25919232019-01-03 14:48:18 +01002111 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002112 if (h2c->st0 >= H2_CS_ERROR)
2113 return NULL;
2114
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002115 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2116 /* RFC7540#5.1 */
2117 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2118 h2c->st0 = H2_CS_FRAME_E;
2119 return NULL;
2120 }
2121
Willy Tarreau25919232019-01-03 14:48:18 +01002122 if (error <= 0) {
2123 if (error == 0)
2124 return NULL; // missing data
2125
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002126 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002127 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002128 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau25919232019-01-03 14:48:18 +01002129 return NULL;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002130 }
2131
Christopher Fauletfa922f02019-05-07 10:55:17 +02002132 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002133 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002134
Willy Tarreau927b88b2019-03-04 08:03:25 +01002135 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002136 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002137 else if (h2s->flags & H2_SF_ES_RCVD) {
2138 if (h2s->st == H2_SS_OPEN)
2139 h2s->st = H2_SS_HREM;
2140 else if (h2s->st == H2_SS_HLOC)
2141 h2s_close(h2s);
2142 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002143
2144 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002145}
2146
Willy Tarreau454f9052017-10-26 19:40:35 +02002147/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2148 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2149 */
2150static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2151{
2152 int error;
2153
2154 /* note that empty DATA frames are perfectly valid and sometimes used
2155 * to signal an end of stream (with the ES flag).
2156 */
2157
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002158 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau454f9052017-10-26 19:40:35 +02002159 return 0; // empty buffer
2160
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002161 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau454f9052017-10-26 19:40:35 +02002162 return 0; // incomplete frame
2163
2164 /* now either the frame is complete or the buffer is complete */
2165
Willy Tarreau454f9052017-10-26 19:40:35 +02002166 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2167 /* RFC7540#6.1 */
2168 error = H2_ERR_STREAM_CLOSED;
2169 goto strm_err;
2170 }
2171
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002172 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002173 /* RFC7540#8.1.2 */
2174 error = H2_ERR_PROTOCOL_ERROR;
2175 goto strm_err;
2176 }
2177
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002178 if (!h2_frt_transfer_data(h2s))
2179 return 0;
2180
Willy Tarreau454f9052017-10-26 19:40:35 +02002181 /* call the upper layers to process the frame, then let the upper layer
2182 * notify the stream about any change.
2183 */
2184 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002185 /* The upper layer has already closed, this may happen on
2186 * 4xx/redirects during POST, or when receiving a response
2187 * from an H2 server after the client has aborted.
2188 */
2189 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002190 goto strm_err;
2191 }
2192
Willy Tarreau8f650c32017-11-21 19:36:21 +01002193 if (h2c->st0 >= H2_CS_ERROR)
2194 return 0;
2195
Willy Tarreau721c9742017-11-07 11:05:42 +01002196 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002197 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002198 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002199 }
2200
2201 /* check for completion : the callee will change this to FRAME_A or
2202 * FRAME_H once done.
2203 */
2204 if (h2c->st0 == H2_CS_FRAME_P)
2205 return 0;
2206
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002207 /* last frame */
2208 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002209 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002210 if (h2s->st == H2_SS_OPEN)
2211 h2s->st = H2_SS_HREM;
2212 else
2213 h2s_close(h2s);
2214
Willy Tarreau1915ca22019-01-24 11:49:37 +01002215 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2216 /* RFC7540#8.1.2 */
2217 error = H2_ERR_PROTOCOL_ERROR;
2218 goto strm_err;
2219 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002220 }
2221
Willy Tarreau454f9052017-10-26 19:40:35 +02002222 return 1;
2223
Willy Tarreau454f9052017-10-26 19:40:35 +02002224 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002225 h2s_error(h2s, error);
2226 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002227 return 0;
2228}
2229
Willy Tarreau63864812019-08-07 14:25:20 +02002230/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2231 * valid for the current stream state. This is needed only after parsing the
2232 * frame header but in practice it can be performed at any time during
2233 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2234 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2235 */
2236static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2237{
2238 if (h2s->st == H2_SS_IDLE &&
2239 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2240 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2241 * this state MUST be treated as a connection error
2242 */
2243 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2244 if (!h2c->nb_streams) {
2245 /* only log if no other stream can report the error */
2246 sess_log(h2c->conn->owner);
2247 }
2248 return 0;
2249 }
2250
2251 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2252 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2253 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2254 * this state MUST be treated as a stream error.
2255 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2256 * PUSH_PROMISE/CONTINUATION cause connection errors.
2257 */
2258 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2259 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2260 else
2261 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2262 return 0;
2263 }
2264
2265 /* Below the management of frames received in closed state is a
2266 * bit hackish because the spec makes strong differences between
2267 * streams closed by receiving RST, sending RST, and seeing ES
2268 * in both directions. In addition to this, the creation of a
2269 * new stream reusing the identifier of a closed one will be
2270 * detected here. Given that we cannot keep track of all closed
2271 * streams forever, we consider that unknown closed streams were
2272 * closed on RST received, which allows us to respond with an
2273 * RST without breaking the connection (eg: to abort a transfer).
2274 * Some frames have to be silently ignored as well.
2275 */
2276 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2277 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2278 /* #5.1.1: The identifier of a newly
2279 * established stream MUST be numerically
2280 * greater than all streams that the initiating
2281 * endpoint has opened or reserved. This
2282 * governs streams that are opened using a
2283 * HEADERS frame and streams that are reserved
2284 * using PUSH_PROMISE. An endpoint that
2285 * receives an unexpected stream identifier
2286 * MUST respond with a connection error.
2287 */
2288 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2289 return 0;
2290 }
2291
2292 if (h2s->flags & H2_SF_RST_RCVD && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2293 /* RFC7540#5.1:closed: an endpoint that
2294 * receives any frame other than PRIORITY after
2295 * receiving a RST_STREAM MUST treat that as a
2296 * stream error of type STREAM_CLOSED.
2297 *
2298 * Note that old streams fall into this category
2299 * and will lead to an RST being sent.
2300 *
2301 * However, we cannot generalize this to all frame types. Those
2302 * carrying compression state must still be processed before
2303 * being dropped or we'll desynchronize the decoder. This can
2304 * happen with request trailers received after sending an
2305 * RST_STREAM, or with header/trailers responses received after
2306 * sending RST_STREAM (aborted stream).
2307 */
2308 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2309 h2c->st0 = H2_CS_FRAME_E;
2310 return 0;
2311 }
2312
2313 /* RFC7540#5.1:closed: if this state is reached as a
2314 * result of sending a RST_STREAM frame, the peer that
2315 * receives the RST_STREAM might have already sent
2316 * frames on the stream that cannot be withdrawn. An
2317 * endpoint MUST ignore frames that it receives on
2318 * closed streams after it has sent a RST_STREAM
2319 * frame. An endpoint MAY choose to limit the period
2320 * over which it ignores frames and treat frames that
2321 * arrive after this time as being in error.
2322 */
2323 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
2324 /* RFC7540#5.1:closed: any frame other than
2325 * PRIO/WU/RST in this state MUST be treated as
2326 * a connection error
2327 */
2328 if (h2c->dft != H2_FT_RST_STREAM &&
2329 h2c->dft != H2_FT_PRIORITY &&
2330 h2c->dft != H2_FT_WINDOW_UPDATE) {
2331 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2332 return 0;
2333 }
2334 }
2335 }
2336 return 1;
2337}
2338
Willy Tarreaubc933932017-10-09 16:21:43 +02002339/* process Rx frames to be demultiplexed */
2340static void h2_process_demux(struct h2c *h2c)
2341{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002342 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002343 struct h2_fh hdr;
2344 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002345 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002346
Willy Tarreau081d4722017-05-16 21:51:05 +02002347 if (h2c->st0 >= H2_CS_ERROR)
2348 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002349
2350 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2351 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau01b44822018-10-03 14:26:37 +02002352 if (h2c->flags & H2_CF_IS_BACK)
2353 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002354 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2355 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002356 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau52eed752017-09-22 15:05:09 +02002357 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002358 sess_log(h2c->conn->owner);
2359 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002360 goto fail;
2361 }
2362
2363 h2c->max_id = 0;
2364 h2c->st0 = H2_CS_SETTINGS1;
2365 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002366
2367 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002368 /* ensure that what is pending is a valid SETTINGS frame
2369 * without an ACK.
2370 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002371 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002372 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002373 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002374 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002375 sess_log(h2c->conn->owner);
2376 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002377 goto fail;
2378 }
2379
2380 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2381 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2382 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2383 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002384 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002385 goto fail;
2386 }
2387
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002388 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002389 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2390 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2391 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002392 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002393 goto fail;
2394 }
2395
Willy Tarreau3bf69182018-12-21 15:34:50 +01002396 /* that's OK, switch to FRAME_P to process it. This is
2397 * a SETTINGS frame whose header has already been
2398 * deleted above.
2399 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002400 padlen = 0;
2401 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002402 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002403 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002404
2405 /* process as many incoming frames as possible below */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002406 while (b_data(&h2c->dbuf)) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002407 int ret = 0;
2408
2409 if (h2c->st0 >= H2_CS_ERROR)
2410 break;
2411
2412 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02002413 h2c->rcvd_s = 0;
2414
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002415 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002416 break;
2417
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002418 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002419 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002420 if (!h2c->nb_streams) {
2421 /* only log if no other stream can report the error */
2422 sess_log(h2c->conn->owner);
2423 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002424 break;
2425 }
2426
Christopher Fauletdd2a5622019-06-18 12:22:38 +02002427 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002428 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2429 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2430 * we read the pad length and drop it from the remaining
2431 * payload (one byte + the 9 remaining ones = 10 total
2432 * removed), so we have a frame payload starting after the
2433 * pad len. Flow controlled frames (DATA) also count the
2434 * padlen in the flow control, so it must be adjusted.
2435 */
2436 if (hdr.len < 1) {
2437 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2438 sess_log(h2c->conn->owner);
2439 goto fail;
2440 }
2441 hdr.len--;
2442
2443 if (b_data(&h2c->dbuf) < 10)
2444 break; // missing padlen
2445
2446 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
2447
2448 if (padlen > hdr.len) {
2449 /* RFC7540#6.1 : pad length = length of
2450 * frame payload or greater => error.
2451 */
2452 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2453 sess_log(h2c->conn->owner);
2454 goto fail;
2455 }
2456
2457 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
2458 h2c->rcvd_c++;
2459 h2c->rcvd_s++;
2460 }
2461 b_del(&h2c->dbuf, 1);
2462 }
2463 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002464
2465 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002466 h2c->dfl = hdr.len;
2467 h2c->dsi = hdr.sid;
2468 h2c->dft = hdr.ft;
2469 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002470 h2c->dpl = padlen;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002471 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002472
2473 /* check for minimum basic frame format validity */
2474 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
2475 if (ret != H2_ERR_NO_ERROR) {
2476 h2c_error(h2c, ret);
2477 sess_log(h2c->conn->owner);
2478 goto fail;
2479 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002480 }
2481
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02002482 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
2483 * H2_CS_FRAME_P indicates an incomplete previous operation
2484 * (most often the first attempt) and requires some validity
2485 * checks for the frame and the current state. The two other
2486 * ones are set after completion (or abortion) and must skip
2487 * validity checks.
2488 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002489 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
2490
Willy Tarreau567beb82018-12-18 16:52:44 +01002491 if (tmp_h2s != h2s && h2s && h2s->cs &&
2492 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002493 conn_xprt_read0_pending(h2c->conn) ||
2494 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002495 (h2s->flags & H2_SF_ES_RCVD) ||
2496 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002497 /* we may have to signal the upper layers */
2498 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002499 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002500 }
2501 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002502
Willy Tarreau63864812019-08-07 14:25:20 +02002503 if (h2c->st0 == H2_CS_FRAME_E ||
2504 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s)))
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002505 goto strm_err;
Willy Tarreauc0da1962017-10-30 18:38:00 +01002506
Willy Tarreau7e98c052017-10-10 15:56:59 +02002507 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002508 case H2_FT_SETTINGS:
2509 if (h2c->st0 == H2_CS_FRAME_P)
2510 ret = h2c_handle_settings(h2c);
2511
2512 if (h2c->st0 == H2_CS_FRAME_A)
2513 ret = h2c_ack_settings(h2c);
2514 break;
2515
Willy Tarreaucf68c782017-10-10 17:11:41 +02002516 case H2_FT_PING:
2517 if (h2c->st0 == H2_CS_FRAME_P)
2518 ret = h2c_handle_ping(h2c);
2519
2520 if (h2c->st0 == H2_CS_FRAME_A)
2521 ret = h2c_ack_ping(h2c);
2522 break;
2523
Willy Tarreau26f95952017-07-27 17:18:30 +02002524 case H2_FT_WINDOW_UPDATE:
2525 if (h2c->st0 == H2_CS_FRAME_P)
2526 ret = h2c_handle_window_update(h2c, h2s);
2527 break;
2528
Willy Tarreau61290ec2017-10-17 08:19:21 +02002529 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01002530 /* RFC7540#6.10: CONTINUATION may only be preceeded by
2531 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
2532 * frames' parsers consume all following CONTINUATION
2533 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02002534 */
Willy Tarreauea18f862018-12-22 20:19:26 +01002535 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2536 sess_log(h2c->conn->owner);
2537 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02002538
Willy Tarreau13278b42017-10-13 19:23:14 +02002539 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002540 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002541 if (h2c->flags & H2_CF_IS_BACK)
2542 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
2543 else
2544 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002545 if (tmp_h2s) {
2546 h2s = tmp_h2s;
2547 ret = 1;
2548 }
2549 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002550 break;
2551
Willy Tarreau454f9052017-10-26 19:40:35 +02002552 case H2_FT_DATA:
2553 if (h2c->st0 == H2_CS_FRAME_P)
2554 ret = h2c_frt_handle_data(h2c, h2s);
2555
2556 if (h2c->st0 == H2_CS_FRAME_A)
2557 ret = h2c_send_strm_wu(h2c);
2558 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002559
Willy Tarreau92153fc2017-12-03 19:46:19 +01002560 case H2_FT_PRIORITY:
2561 if (h2c->st0 == H2_CS_FRAME_P)
2562 ret = h2c_handle_priority(h2c);
2563 break;
2564
Willy Tarreaucd234e92017-08-18 10:59:39 +02002565 case H2_FT_RST_STREAM:
2566 if (h2c->st0 == H2_CS_FRAME_P)
2567 ret = h2c_handle_rst_stream(h2c, h2s);
2568 break;
2569
Willy Tarreaue96b0922017-10-30 00:28:29 +01002570 case H2_FT_GOAWAY:
2571 if (h2c->st0 == H2_CS_FRAME_P)
2572 ret = h2c_handle_goaway(h2c);
2573 break;
2574
Willy Tarreau1c661982017-10-30 13:52:01 +01002575 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02002576 default:
2577 /* drop frames that we ignore. They may be larger than
2578 * the buffer so we drain all of their contents until
2579 * we reach the end.
2580 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002581 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2582 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002583 h2c->dfl -= ret;
2584 ret = h2c->dfl == 0;
2585 }
2586
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002587 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01002588 /* We may have to send an RST if not done yet */
2589 if (h2s->st == H2_SS_ERROR)
2590 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002591
Willy Tarreaua20a5192017-12-27 11:02:06 +01002592 if (h2c->st0 == H2_CS_FRAME_E)
2593 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002594
Willy Tarreau7e98c052017-10-10 15:56:59 +02002595 /* error or missing data condition met above ? */
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002596 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02002597 break;
2598
2599 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002600 b_del(&h2c->dbuf, h2c->dfl);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002601 h2c->st0 = H2_CS_FRAME_H;
2602 }
2603 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002604
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002605 if (h2c->rcvd_c > 0 &&
2606 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM)))
2607 h2c_send_conn_wu(h2c);
2608
Willy Tarreau52eed752017-09-22 15:05:09 +02002609 fail:
2610 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01002611 if (h2s && h2s->cs &&
2612 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002613 conn_xprt_read0_pending(h2c->conn) ||
2614 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002615 (h2s->flags & H2_SF_ES_RCVD) ||
2616 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002617 /* we may have to signal the upper layers */
2618 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002619 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002620 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002621
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002622 if (old_iw != h2c->miw)
2623 h2c_unblock_sfctl(h2c);
2624
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02002625 h2c_restart_reading(h2c, 0);
Willy Tarreaubc933932017-10-09 16:21:43 +02002626}
2627
2628/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
2629 * the end.
2630 */
2631static int h2_process_mux(struct h2c *h2c)
2632{
Olivier Houchard998410a2019-04-15 19:23:37 +02002633 struct h2s *h2s, *h2s_back;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002634
Willy Tarreau01b44822018-10-03 14:26:37 +02002635 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2636 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
2637 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
2638 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2639 if (h2c->st0 == H2_CS_ERROR) {
2640 h2c->st0 = H2_CS_ERROR2;
2641 sess_log(h2c->conn->owner);
2642 }
2643 goto fail;
2644 }
2645 h2c->st0 = H2_CS_SETTINGS1;
2646 }
2647 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01002648 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau01b44822018-10-03 14:26:37 +02002649 return 1;
2650 }
2651
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002652 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02002653 if (h2c->rcvd_s > 0 &&
2654 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2655 h2c_send_strm_wu(h2c) < 0)
2656 goto fail;
2657
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002658 if (h2c->rcvd_c > 0 &&
2659 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2660 h2c_send_conn_wu(h2c) < 0)
2661 goto fail;
2662
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002663 /* First we always process the flow control list because the streams
2664 * waiting there were already elected for immediate emission but were
2665 * blocked just on this.
2666 */
2667
Olivier Houchard998410a2019-04-15 19:23:37 +02002668 list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002669 if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY ||
2670 h2c->st0 >= H2_CS_ERROR)
2671 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002672
Willy Tarreauc234ae32019-05-13 17:56:11 +02002673 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002674 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002675
Olivier Houchardfa8aa862018-10-10 18:25:41 +02002676 h2s->flags &= ~H2_SF_BLK_ANY;
Olivier Houchard998410a2019-04-15 19:23:37 +02002677 /* For some reason, the upper layer failed to subsribe again,
2678 * so remove it from the send_list
2679 */
2680 if (!h2s->send_wait) {
2681 LIST_DEL_INIT(&h2s->list);
2682 continue;
2683 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002684 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01002685 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002686 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002687 }
2688
Olivier Houchard998410a2019-04-15 19:23:37 +02002689 list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002690 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
2691 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002692
Willy Tarreauc234ae32019-05-13 17:56:11 +02002693 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002694 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002695
Olivier Houchard998410a2019-04-15 19:23:37 +02002696 /* For some reason, the upper layer failed to subsribe again,
2697 * so remove it from the send_list
2698 */
2699 if (!h2s->send_wait) {
2700 LIST_DEL_INIT(&h2s->list);
2701 continue;
2702 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02002703 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002704 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01002705 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002706 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002707 }
2708
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002709 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01002710 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02002711 if (h2c->st0 == H2_CS_ERROR) {
2712 if (h2c->max_id >= 0) {
2713 h2c_send_goaway_error(h2c, NULL);
2714 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
2715 return 0;
2716 }
2717
2718 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
2719 }
2720 return 1;
2721 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002722 return (1);
Willy Tarreaubc933932017-10-09 16:21:43 +02002723}
2724
Willy Tarreau62f52692017-10-08 23:01:42 +02002725
Willy Tarreau479998a2018-11-18 06:30:59 +01002726/* Attempt to read data, and subscribe if none available.
2727 * The function returns 1 if data has been received, otherwise zero.
2728 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002729static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002730{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002731 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002732 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002733 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02002734 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002735
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002736 if (h2c->wait_event.events & SUB_RETRY_RECV)
Olivier Houchard81a15af2018-10-19 17:26:49 +02002737 return (b_data(&h2c->dbuf));
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002738
Willy Tarreau315d8072017-12-10 22:17:57 +01002739 if (!h2_recv_allowed(h2c))
Olivier Houchard81a15af2018-10-19 17:26:49 +02002740 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002741
Willy Tarreau44e973f2018-03-01 17:49:30 +01002742 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002743 if (!buf) {
2744 h2c->flags |= H2_CF_DEM_DALLOC;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002745 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002746 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002747
Willy Tarreau4d7a8842019-07-31 16:00:48 +02002748 b_realign_if_empty(buf);
2749 if (!b_data(buf)) {
2750 /* try to pre-align the buffer like the
2751 * rxbufs will be to optimize memory copies. We'll make
2752 * sure that the frame header lands at the end of the
2753 * HTX block to alias it upon recv. We cannot use the
2754 * head because rcv_buf() will realign the buffer if
2755 * it's empty. Thus we cheat and pretend we already
2756 * have a few bytes there.
2757 */
2758 max = buf_room_for_htx_data(buf) + 9;
2759 buf->head = sizeof(struct htx) - 9;
2760 }
2761 else
2762 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01002763
Willy Tarreau4d7a8842019-07-31 16:00:48 +02002764 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002765
Willy Tarreau9bc1c952019-08-02 07:48:47 +02002766 if (max && !ret && h2_recv_allowed(h2c))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002767 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Olivier Houchard81a15af2018-10-19 17:26:49 +02002768
Olivier Houcharda1411e62018-08-17 18:42:48 +02002769 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01002770 h2_release_buf(h2c, &h2c->dbuf);
Olivier Houchard46677732018-11-29 17:06:17 +01002771 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002772 }
2773
Willy Tarreaub7b5fe12018-06-18 13:33:09 +02002774 if (b_data(buf) == buf->size)
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002775 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau4d7a8842019-07-31 16:00:48 +02002776 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02002777}
2778
Willy Tarreau479998a2018-11-18 06:30:59 +01002779/* Try to send data if possible.
2780 * The function returns 1 if data have been sent, otherwise zero.
2781 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002782static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002783{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002784 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02002785 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002786 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002787
2788 if (conn->flags & CO_FL_ERROR)
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01002789 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002790
Olivier Houchard7505f942018-08-21 18:10:44 +02002791
Willy Tarreaua2af5122017-10-09 11:56:46 +02002792 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
2793 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002794 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002795 }
2796
Willy Tarreaubc933932017-10-09 16:21:43 +02002797 /* This loop is quite simple : it tries to fill as much as it can from
2798 * pending streams into the existing buffer until it's reportedly full
2799 * or the end of send requests is reached. Then it tries to send this
2800 * buffer's contents out, marks it not full if at least one byte could
2801 * be sent, and tries again.
2802 *
2803 * The snd_buf() function normally takes a "flags" argument which may
2804 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
2805 * data immediately comes and CO_SFL_STREAMER to indicate that the
2806 * connection is streaming lots of data (used to increase TLS record
2807 * size at the expense of latency). The former can be sent any time
2808 * there's a buffer full flag, as it indicates at least one stream
2809 * attempted to send and failed so there are pending data. An
2810 * alternative would be to set it as long as there's an active stream
2811 * but that would be problematic for ACKs until we have an absolute
2812 * guarantee that all waiters have at least one byte to send. The
2813 * latter should possibly not be set for now.
2814 */
2815
2816 done = 0;
2817 while (!done) {
2818 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002819 unsigned int released = 0;
2820 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02002821
2822 /* fill as much as we can into the current buffer */
2823 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
2824 done = h2_process_mux(h2c);
2825
Olivier Houchard2b094432019-01-29 18:28:36 +01002826 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002827 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01002828
Willy Tarreaubc933932017-10-09 16:21:43 +02002829 if (conn->flags & CO_FL_ERROR)
2830 break;
2831
2832 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
2833 flags |= CO_SFL_MSG_MORE;
2834
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002835 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
2836 if (b_data(buf)) {
2837 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002838 if (!ret) {
2839 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002840 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002841 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002842 sent = 1;
2843 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002844 if (b_data(buf)) {
2845 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002846 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002847 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002848 }
2849 b_free(buf);
2850 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02002851 }
Willy Tarreaubc933932017-10-09 16:21:43 +02002852
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002853 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02002854 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002855
Willy Tarreaubc933932017-10-09 16:21:43 +02002856 /* wrote at least one byte, the buffer is not full anymore */
2857 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
2858 }
2859
Willy Tarreaua2af5122017-10-09 11:56:46 +02002860 if (conn->flags & CO_FL_SOCK_WR_SH) {
2861 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02002862 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002863 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002864 /* We're not full anymore, so we can wake any task that are waiting
2865 * for us.
2866 */
2867 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01002868 struct h2s *h2s;
2869
2870 list_for_each_entry(h2s, &h2c->send_list, list) {
2871 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
2872 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002873
Willy Tarreauc234ae32019-05-13 17:56:11 +02002874 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002875 continue;
2876
Olivier Houchard998410a2019-04-15 19:23:37 +02002877 /* For some reason, the upper layer failed to subsribe again,
2878 * so remove it from the send_list
2879 */
2880 if (!h2s->send_wait) {
2881 LIST_DEL_INIT(&h2s->list);
2882 continue;
2883 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002884 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002885 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002886 tasklet_wakeup(h2s->send_wait->tasklet);
Olivier Houchardd360ac62019-03-22 17:37:16 +01002887 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02002888 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002889 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002890 /* We're done, no more to send */
Willy Tarreau662fafc2019-05-26 09:43:07 +02002891 if (!br_data(h2c->mbuf))
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002892 return sent;
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002893schedule:
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002894 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002895 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002896
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002897 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002898}
2899
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002900/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002901static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
2902{
2903 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02002904 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002905
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002906 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02002907 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002908 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02002909 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01002910 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02002911 h2_process(h2c);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002912 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002913}
Willy Tarreaua2af5122017-10-09 11:56:46 +02002914
Willy Tarreau62f52692017-10-08 23:01:42 +02002915/* callback called on any event by the connection handler.
2916 * It applies changes and returns zero, or < 0 if it wants immediate
2917 * destruction of the connection (which normally doesn not happen in h2).
2918 */
Olivier Houchard7505f942018-08-21 18:10:44 +02002919static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002920{
Olivier Houchard7505f942018-08-21 18:10:44 +02002921 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002922
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002923 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01002924 h2_process_demux(h2c);
2925
2926 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002927 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01002928
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002929 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01002930 h2c->flags &= ~H2_CF_DEM_DFULL;
2931 }
Olivier Houchard7505f942018-08-21 18:10:44 +02002932 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01002933
Willy Tarreau0b37d652018-10-03 10:33:02 +02002934 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01002935 /* frontend is stopping, reload likely in progress, let's try
2936 * to announce a graceful shutdown if not yet done. We don't
2937 * care if it fails, it will be tried again later.
2938 */
2939 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
2940 if (h2c->last_sid < 0)
2941 h2c->last_sid = (1U << 31) - 1;
2942 h2c_send_goaway_error(h2c, NULL);
2943 }
2944 }
2945
Olivier Houchard7fc96d52017-11-23 18:25:47 +01002946 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002947 * If we received early data, and the handshake is done, wake
2948 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01002949 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002950 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
2951 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
2952 struct eb32_node *node;
2953 struct h2s *h2s;
2954
2955 h2c->flags |= H2_CF_WAIT_FOR_HS;
2956 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
2957
2958 while (node) {
2959 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01002960 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01002961 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002962 node = eb32_next(node);
2963 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01002964 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002965
Willy Tarreau26bd7612017-10-09 16:47:04 +02002966 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01002967 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
2968 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
2969 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02002970 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002971
2972 if (eb_is_empty(&h2c->streams_by_id)) {
2973 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02002974 h2_release(h2c);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002975 return -1;
2976 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002977 }
2978
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002979 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01002980 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002981
Olivier Houchard53216e72018-10-10 15:46:36 +02002982 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
2983 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
2984 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02002985 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02002986 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
2987 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02002988 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02002989
Willy Tarreau3f133572017-10-31 19:21:06 +01002990 if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02002991 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
2992 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01002993 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002994
Olivier Houchard7505f942018-08-21 18:10:44 +02002995 h2_send(h2c);
Willy Tarreau62f52692017-10-08 23:01:42 +02002996 return 0;
2997}
2998
Willy Tarreau749f5ca2019-03-21 19:19:36 +01002999/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003000static int h2_wake(struct connection *conn)
3001{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003002 struct h2c *h2c = conn->ctx;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003003
3004 return (h2_process(h2c));
3005}
3006
Willy Tarreauea392822017-10-31 10:02:25 +01003007/* Connection timeout management. The principle is that if there's no receipt
3008 * nor sending for a certain amount of time, the connection is closed. If the
3009 * MUX buffer still has lying data or is not allocatable, the connection is
3010 * immediately killed. If it's allocatable and empty, we attempt to send a
3011 * GOAWAY frame.
3012 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003013static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003014{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003015 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003016 int expired = tick_is_expired(t->expire, now_ms);
3017
Willy Tarreau0975f112018-03-29 15:22:59 +02003018 if (!expired && h2c)
Willy Tarreauea392822017-10-31 10:02:25 +01003019 return t;
3020
Olivier Houchard3f795f72019-04-17 22:51:06 +02003021 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003022
3023 if (!h2c) {
3024 /* resources were already deleted */
3025 return NULL;
3026 }
3027
3028 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003029 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003030 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003031
Willy Tarreau662fafc2019-05-26 09:43:07 +02003032 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003033 /* don't even try to send a GOAWAY, the buffer is stuck */
3034 h2c->flags |= H2_CF_GOAWAY_FAILED;
3035 }
3036
3037 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003038 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003039 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3040 h2c->flags |= H2_CF_GOAWAY_FAILED;
3041
Willy Tarreau662fafc2019-05-26 09:43:07 +02003042 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003043 unsigned int released = 0;
3044 struct buffer *buf;
3045
3046 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3047 if (b_data(buf)) {
3048 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3049 if (!ret)
3050 break;
3051 b_del(buf, ret);
3052 if (b_data(buf))
3053 break;
3054 b_free(buf);
3055 released++;
3056 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003057 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003058
3059 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003060 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003061 }
Willy Tarreauea392822017-10-31 10:02:25 +01003062
Willy Tarreau0975f112018-03-29 15:22:59 +02003063 /* either we can release everything now or it will be done later once
3064 * the last stream closes.
3065 */
3066 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003067 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003068
Willy Tarreauea392822017-10-31 10:02:25 +01003069 return NULL;
3070}
3071
3072
Willy Tarreau62f52692017-10-08 23:01:42 +02003073/*******************************************/
3074/* functions below are used by the streams */
3075/*******************************************/
3076
3077/*
3078 * Attach a new stream to a connection
3079 * (Used for outgoing connections)
3080 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003081static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003082{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003083 struct conn_stream *cs;
3084 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003085 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003086
3087 cs = cs_new(conn);
3088 if (!cs)
3089 return NULL;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003090 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003091 if (!h2s) {
3092 cs_free(cs);
3093 return NULL;
3094 }
3095 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003096}
3097
Willy Tarreaufafd3982018-11-18 21:29:20 +01003098/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3099 * We have to scan because we may have some orphan streams. It might be
3100 * beneficial to scan backwards from the end to reduce the likeliness to find
3101 * orphans.
3102 */
3103static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3104{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003105 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003106 struct h2s *h2s;
3107 struct eb32_node *node;
3108
3109 node = eb32_first(&h2c->streams_by_id);
3110 while (node) {
3111 h2s = container_of(node, struct h2s, by_id);
3112 if (h2s->cs)
3113 return h2s->cs;
3114 node = eb32_next(node);
3115 }
3116 return NULL;
3117}
3118
Willy Tarreau62f52692017-10-08 23:01:42 +02003119/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003120 * Destroy the mux and the associated connection, if it is no longer used
3121 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003122static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003123{
Christopher Faulet73c12072019-04-08 11:23:22 +02003124 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003125
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003126 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003127 h2_release(h2c);
Olivier Houchard060ed432018-11-06 16:32:42 +01003128}
3129
3130/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003131 * Detach the stream from the connection and possibly release the connection.
3132 */
3133static void h2_detach(struct conn_stream *cs)
3134{
Willy Tarreau60935142017-10-16 18:11:19 +02003135 struct h2s *h2s = cs->ctx;
3136 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003137 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003138
3139 cs->ctx = NULL;
3140 if (!h2s)
3141 return;
3142
Olivier Houchard998410a2019-04-15 19:23:37 +02003143 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003144 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003145 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003146 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003147 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003148 /*
3149 * At this point, the stream_interface is supposed to have called
3150 * h2_unsubscribe(), so the only way there's still a
3151 * subscription that came from the stream_interface (as we
3152 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3153 * without the stream_interface involved) is that we subscribed
3154 * for sending, we woke the tasklet up and removed the
3155 * SUB_RETRY_SEND flag, so the stream_interface would not
3156 * know it has to unsubscribe for send, but the tasklet hasn't
3157 * run yet. Make sure to handle that by explicitely setting
3158 * send_wait to NULL, as nothing else will do it for us.
3159 */
3160 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003161 }
3162
Olivier Houchardf502aca2018-12-14 19:42:40 +01003163 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003164 h2c = h2s->h2c;
3165 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003166 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003167 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3168 !h2_frt_has_too_many_cs(h2c)) {
3169 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003170 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003171 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003172 }
Willy Tarreau60935142017-10-16 18:11:19 +02003173
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003174 /* this stream may be blocked waiting for some data to leave (possibly
3175 * an ES or RST frame), so orphan it in this case.
3176 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003177 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003178 (h2c->st0 < H2_CS_ERROR) &&
Olivier Houchard16ff2612019-03-21 15:48:46 +01003179 (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 +01003180 return;
3181
Willy Tarreau45f752e2017-10-30 15:44:59 +01003182 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3183 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3184 /* unblock the connection if it was blocked on this
3185 * stream.
3186 */
3187 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3188 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003189 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003190 }
3191
Willy Tarreau71049cc2018-03-28 13:56:39 +02003192 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003193
Christopher Faulet9b79a102019-07-15 11:22:56 +02003194 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003195 if (!(h2c->conn->flags &
3196 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3197 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003198 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003199 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3200 h2c->conn->owner = NULL;
3201 if (eb_is_empty(&h2c->streams_by_id)) {
3202 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3203 /* The server doesn't want it, let's kill the connection right away */
3204 h2c->conn->mux->destroy(h2c->conn);
3205 return;
3206 }
3207 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003208 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003209 if (eb_is_empty(&h2c->streams_by_id)) {
3210 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0)
3211 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
3212 return;
3213 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003214 /* Never ever allow to reuse a connection from a non-reuse backend */
3215 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3216 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003217 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003218 struct server *srv = objt_server(h2c->conn->target);
3219
3220 if (srv) {
3221 if (h2c->conn->flags & CO_FL_PRIVATE)
3222 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3223 else
3224 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3225 }
3226
3227 }
3228 }
3229 }
3230
Willy Tarreaue323f342018-03-28 13:51:45 +02003231 /* We don't want to close right now unless we're removing the
3232 * last stream, and either the connection is in error, or it
3233 * reached the ID already specified in a GOAWAY frame received
3234 * or sent (as seen by last_sid >= 0).
3235 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003236 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003237 /* no more stream will come, kill it now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003238 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003239 }
3240 else if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02003241 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3242 task_queue(h2c->task);
Willy Tarreau60935142017-10-16 18:11:19 +02003243 }
Willy Tarreau62f52692017-10-08 23:01:42 +02003244}
3245
Willy Tarreau88bdba32019-05-13 18:17:53 +02003246/* Performs a synchronous or asynchronous shutr(). */
3247static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003248{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003249 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003250 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003251
Willy Tarreauf983d002019-05-14 10:40:21 +02003252 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003253 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003254
Willy Tarreau18059042019-01-31 19:12:48 +01003255 /* a connstream may require us to immediately kill the whole connection
3256 * for example because of a "tcp-request content reject" rule that is
3257 * normally used to limit abuse. In this case we schedule a goaway to
3258 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003259 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003260 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003261 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3262 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3263 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3264 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003265 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3266 /* Nothing was never sent for this stream, so reset with
3267 * REFUSED_STREAM error to let the client retry the
3268 * request.
3269 */
3270 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3271 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003272 else {
3273 /* a final response was already provided, we don't want this
3274 * stream anymore. This may happen when the server responds
3275 * before the end of an upload and closes quickly (redirect,
3276 * deny, ...)
3277 */
3278 h2s_error(h2s, H2_ERR_CANCEL);
3279 }
Willy Tarreau18059042019-01-31 19:12:48 +01003280
Willy Tarreau90c32322017-11-24 08:00:30 +01003281 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003282 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003283 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003284
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003285 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003286 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003287 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003288 done:
3289 h2s->flags &= ~H2_SF_WANT_SHUTR;
3290 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003291add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003292 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003293 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003294 if (h2s->flags & H2_SF_BLK_MFCTL) {
3295 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3296 h2s->send_wait = sw;
3297 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3298 h2s->send_wait = sw;
3299 LIST_ADDQ(&h2c->send_list, &h2s->list);
3300 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003301 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003302 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003303 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003304 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003305}
3306
Willy Tarreau88bdba32019-05-13 18:17:53 +02003307/* Performs a synchronous or asynchronous shutw(). */
3308static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003309{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003310 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003311 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003312
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003313 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003314 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003315
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003316 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003317 /* we can cleanly close using an empty data frame only after headers */
3318
3319 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3320 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003321 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003322
3323 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003324 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003325 else
3326 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003327 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003328 /* a connstream may require us to immediately kill the whole connection
3329 * for example because of a "tcp-request content reject" rule that is
3330 * normally used to limit abuse. In this case we schedule a goaway to
3331 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003332 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003333 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003334 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3335 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3336 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3337 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003338 else {
3339 /* Nothing was never sent for this stream, so reset with
3340 * REFUSED_STREAM error to let the client retry the
3341 * request.
3342 */
3343 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3344 }
Willy Tarreau18059042019-01-31 19:12:48 +01003345
Willy Tarreau90c32322017-11-24 08:00:30 +01003346 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003347 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003348 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003349
Willy Tarreau00dd0782018-03-01 16:31:34 +01003350 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003351 }
3352
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003353 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003354 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003355 done:
3356 h2s->flags &= ~H2_SF_WANT_SHUTW;
3357 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003358
3359 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003360 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003361 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003362 if (h2s->flags & H2_SF_BLK_MFCTL) {
3363 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3364 h2s->send_wait = sw;
3365 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3366 h2s->send_wait = sw;
3367 LIST_ADDQ(&h2c->send_list, &h2s->list);
3368 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003369 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003370 /* let the handler know we want to shutw */
3371 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003372 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003373}
3374
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003375/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003376 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3377 * and prevented the last frame from being emitted.
3378 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003379static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3380{
3381 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003382 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003383
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003384 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003385 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003386 h2_do_shutw(h2s);
3387
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003388 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003389 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003390
Willy Tarreau88bdba32019-05-13 18:17:53 +02003391 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003392 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003393 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01003394
Willy Tarreau88bdba32019-05-13 18:17:53 +02003395 if (!h2s->cs) {
3396 h2s_destroy(h2s);
3397 if (h2c_is_dead(h2c))
3398 h2_release(h2c);
3399 }
Olivier Houchard7a977432019-03-21 15:47:13 +01003400 }
3401
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003402 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02003403}
3404
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003405/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003406static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3407{
3408 struct h2s *h2s = cs->ctx;
3409
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003410 if (cs->flags & CS_FL_KILL_CONN)
3411 h2s->flags |= H2_SF_KILL_CONN;
3412
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003413 if (!mode)
3414 return;
3415
3416 h2_do_shutr(h2s);
3417}
3418
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003419/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003420static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3421{
3422 struct h2s *h2s = cs->ctx;
3423
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003424 if (cs->flags & CS_FL_KILL_CONN)
3425 h2s->flags |= H2_SF_KILL_CONN;
3426
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003427 h2_do_shutw(h2s);
3428}
3429
Christopher Faulet9b79a102019-07-15 11:22:56 +02003430/* Decode the payload of a HEADERS frame and produce the HTX request or response
3431 * depending on the connection's side. Returns a positive value on success, a
3432 * negative value on failure, or 0 if it couldn't proceed. May report connection
3433 * errors in h2c->errcode if the frame is non-decodable and the connection
3434 * unrecoverable. In absence of connection error when a failure is reported, the
3435 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01003436 *
3437 * The function may fold CONTINUATION frames into the initial HEADERS frame
3438 * by removing padding and next frame header, then moving the CONTINUATION
3439 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
3440 * leaving a hole between the main frame and the beginning of the next one.
3441 * The possibly remaining incomplete or next frame at the end may be moved
3442 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
3443 * HEADERS frames are unwrapped into a temporary buffer before decoding.
3444 *
3445 * A buffer at the beginning of processing may look like this :
3446 *
3447 * ,---.---------.-----.--------------.--------------.------.---.
3448 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
3449 * `---^---------^-----^--------------^--------------^------^---'
3450 * | | <-----> | |
3451 * area | dpl | wrap
3452 * |<--------------> |
3453 * | dfl |
3454 * |<-------------------------------------------------->|
3455 * head data
3456 *
3457 * Padding is automatically overwritten when folding, participating to the
3458 * hole size after dfl :
3459 *
3460 * ,---.------------------------.-----.--------------.------.---.
3461 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
3462 * `---^------------------------^-----^--------------^------^---'
3463 * | | <-----> | |
3464 * area | hole | wrap
3465 * |<-----------------------> |
3466 * | dfl |
3467 * |<-------------------------------------------------->|
3468 * head data
3469 *
3470 * Please note that the HEADERS frame is always deprived from its PADLEN byte
3471 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
3472 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003473 *
3474 * The <flags> field must point to either the stream's flags or to a copy of it
3475 * so that the function can update the following flags :
3476 * - H2_SF_DATA_CLEN when content-length is seen
3477 * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion
3478 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01003479 *
3480 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
3481 * decoding, in order to detect if we're dealing with a headers or a trailers
3482 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02003483 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003484static 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 +02003485{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003486 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02003487 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003488 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02003489 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003490 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003491 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01003492 int flen; // header frame len
3493 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01003494 int ret = 0;
3495 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02003496 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02003497
Willy Tarreauea18f862018-12-22 20:19:26 +01003498next_frame:
3499 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
3500 goto leave; // incomplete input frame
3501
3502 /* No END_HEADERS means there's one or more CONTINUATION frames. In
3503 * this case, we'll try to paste it immediately after the initial
3504 * HEADERS frame payload and kill any possible padding. The initial
3505 * frame's length will be increased to represent the concatenation
3506 * of the two frames. The next frame is read from position <tlen>
3507 * and written at position <flen> (minus padding if some is present).
3508 */
3509 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
3510 struct h2_fh hdr;
3511 int clen; // CONTINUATION frame's payload length
3512
3513 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
3514 /* no more data, the buffer may be full, either due to
3515 * too large a frame or because of too large a hole that
3516 * we're going to compact at the end.
3517 */
3518 goto leave;
3519 }
3520
3521 if (hdr.ft != H2_FT_CONTINUATION) {
3522 /* RFC7540#6.10: frame of unexpected type */
3523 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3524 goto fail;
3525 }
3526
3527 if (hdr.sid != h2c->dsi) {
3528 /* RFC7540#6.10: frame of different stream */
3529 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3530 goto fail;
3531 }
3532
3533 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
3534 /* RFC7540#4.2: invalid frame length */
3535 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3536 goto fail;
3537 }
3538
3539 /* detect when we must stop aggragating frames */
3540 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
3541
3542 /* Take as much as we can of the CONTINUATION frame's payload */
3543 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
3544 if (clen > hdr.len)
3545 clen = hdr.len;
3546
3547 /* Move the frame's payload over the padding, hole and frame
3548 * header. At least one of hole or dpl is null (see diagrams
3549 * above). The hole moves after the new aggragated frame.
3550 */
3551 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
3552 h2c->dfl += clen - h2c->dpl;
3553 hole += h2c->dpl + 9;
3554 h2c->dpl = 0;
3555 goto next_frame;
3556 }
3557
3558 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01003559
Willy Tarreau13278b42017-10-13 19:23:14 +02003560 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003561 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02003562 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02003563 copy = alloc_trash_chunk();
3564 if (!copy) {
3565 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
3566 goto fail;
3567 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003568 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
3569 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
3570 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02003571 }
3572
Willy Tarreau13278b42017-10-13 19:23:14 +02003573 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
3574 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003575 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003576 /* RFC7540#5.3.1 : stream dep may not depend on itself */
3577 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02003578 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003579 }
3580
Willy Tarreaua01f45e2018-12-31 07:41:24 +01003581 if (flen < 5) {
3582 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3583 goto fail;
3584 }
3585
Willy Tarreau13278b42017-10-13 19:23:14 +02003586 hdrs += 5; // stream dep = 4, weight = 1
3587 flen -= 5;
3588 }
3589
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003590 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau937f7602018-02-26 15:22:17 +01003591 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01003592 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003593 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003594
Willy Tarreau937f7602018-02-26 15:22:17 +01003595 /* we can't retry a failed decompression operation so we must be very
3596 * careful not to take any risks. In practice the output buffer is
3597 * always empty except maybe for trailers, in which case we simply have
3598 * to wait for the upper layer to finish consuming what is available.
3599 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02003600 htx = htx_from_buf(rxbuf);
3601 if (!htx_is_empty(htx)) {
3602 h2c->flags |= H2_CF_DEM_SFULL;
3603 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003604 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003605
Willy Tarreau25919232019-01-03 14:48:18 +01003606 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003607 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
3608 sizeof(list)/sizeof(list[0]), tmp);
3609 if (outlen < 0) {
3610 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
3611 goto fail;
3612 }
3613
Willy Tarreau25919232019-01-03 14:48:18 +01003614 /* The PACK decompressor was updated, let's update the input buffer and
3615 * the parser's state to commit these changes and allow us to later
3616 * fail solely on the stream if needed.
3617 */
3618 b_del(&h2c->dbuf, h2c->dfl + hole);
3619 h2c->dfl = hole = 0;
3620 h2c->st0 = H2_CS_FRAME_H;
3621
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003622 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01003623 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003624
Willy Tarreau88d138e2019-01-02 19:38:14 +01003625 if (*flags & H2_SF_HEADERS_RCVD)
3626 goto trailers;
3627
3628 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02003629 if (h2c->flags & H2_CF_IS_BACK)
3630 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
3631 else
3632 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003633
3634 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01003635 /* too large headers? this is a stream error only */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003636 goto fail;
3637 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003638
Willy Tarreau174b06a2018-04-25 18:13:58 +02003639 if (msgf & H2_MSGF_BODY) {
3640 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003641 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003642 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02003643 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003644 }
Olivier Houchard50d660c2018-12-08 00:18:31 +01003645 else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003646 *flags |= H2_SF_DATA_CHNK;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003647 }
3648
Willy Tarreau88d138e2019-01-02 19:38:14 +01003649 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01003650 /* indicate that a HEADERS frame was received for this stream, except
3651 * for 1xx responses. For 1xx responses, another HEADERS frame is
3652 * expected.
3653 */
3654 if (!(msgf & H2_MSGF_RSP_1XX))
3655 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003656
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02003657 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02003658 /* Mark the end of message using EOM */
3659 if (!htx_add_endof(htx, HTX_BLK_EOM))
3660 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003661 }
Willy Tarreau937f7602018-02-26 15:22:17 +01003662
Willy Tarreau86277d42019-01-02 15:36:11 +01003663 /* success */
3664 ret = 1;
3665
Willy Tarreau68dd9852017-07-03 14:44:26 +02003666 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01003667 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01003668 * move the remaining data over it.
3669 */
3670 if (hole) {
3671 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
3672 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
3673 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
3674 b_sub(&h2c->dbuf, hole);
3675 }
3676
Willy Tarreau97215ca2019-04-29 10:20:21 +02003677 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01003678 /* too large frames */
3679 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01003680 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01003681 }
3682
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003683 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003684 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02003685 free_trash_chunk(copy);
Willy Tarreau86277d42019-01-02 15:36:11 +01003686 return ret;
3687
Willy Tarreau68dd9852017-07-03 14:44:26 +02003688 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01003689 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02003690 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003691
3692 trailers:
3693 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01003694 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
3695 /* It's a trailer but it's missing ES flag */
3696 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3697 goto fail;
3698 }
3699
Christopher Faulet9b79a102019-07-15 11:22:56 +02003700 /* Trailers terminate a DATA sequence */
3701 if (h2_make_htx_trailers(list, htx) <= 0)
3702 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003703 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02003704}
3705
Christopher Faulet9b79a102019-07-15 11:22:56 +02003706/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003707 * parser state is automatically updated. Returns > 0 if it could completely
3708 * send the current frame, 0 if it couldn't complete, in which case
3709 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
3710 * DATA frame can return 0 as a valid result). Stream errors are reported in
3711 * h2s->errcode and connection errors in h2c->errcode. The caller must already
3712 * have checked the frame header and ensured that the frame was complete or the
3713 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02003714 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01003715static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003716{
3717 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02003718 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003719 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003720 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003721 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02003722 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02003723
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003724 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003725
Olivier Houchard638b7992018-08-16 15:41:52 +02003726 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003727 if (!csbuf) {
3728 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003729 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003730 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02003731 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003732
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003733try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003734 flen = h2c->dfl - h2c->dpl;
3735 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01003736 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003737
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003738 if (flen > b_data(&h2c->dbuf)) {
3739 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003740 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01003741 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003742 }
3743
Christopher Faulet9b79a102019-07-15 11:22:56 +02003744 block = htx_free_data_space(htx);
3745 if (!block) {
3746 h2c->flags |= H2_CF_DEM_SFULL;
3747 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003748 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02003749 if (flen > block)
3750 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003751
Christopher Faulet9b79a102019-07-15 11:22:56 +02003752 /* here, flen is the max we can copy into the output buffer */
3753 block = b_contig_data(&h2c->dbuf, 0);
3754 if (flen > block)
3755 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003756
Christopher Faulet9b79a102019-07-15 11:22:56 +02003757 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau454f9052017-10-26 19:40:35 +02003758
Christopher Faulet9b79a102019-07-15 11:22:56 +02003759 b_del(&h2c->dbuf, sent);
3760 h2c->dfl -= sent;
3761 h2c->rcvd_c += sent;
3762 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02003763
Christopher Faulet9b79a102019-07-15 11:22:56 +02003764 if (h2s->flags & H2_SF_DATA_CLEN) {
3765 h2s->body_len -= sent;
3766 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003767 }
3768
Christopher Faulet9b79a102019-07-15 11:22:56 +02003769 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01003770 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003771 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003772 }
3773
Christopher Faulet9b79a102019-07-15 11:22:56 +02003774 goto try_again;
3775
Willy Tarreau4a28da12018-01-04 14:41:00 +01003776 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003777 /* here we're done with the frame, all the payload (except padding) was
3778 * transferred.
3779 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02003780
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003781 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02003782 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
3783 h2c->flags |= H2_CF_DEM_SFULL;
3784 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003785 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02003786 }
3787
Willy Tarreaud1023bb2018-03-22 16:53:12 +01003788 h2c->rcvd_c += h2c->dpl;
3789 h2c->rcvd_s += h2c->dpl;
3790 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02003791 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02003792 htx_to_buf(htx, csbuf);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003793 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003794 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003795 if (htx)
3796 htx_to_buf(htx, csbuf);
Willy Tarreau454b57b2018-02-26 15:50:05 +01003797 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02003798}
3799
Willy Tarreau115e83b2018-12-01 19:17:53 +01003800/* Try to send a HEADERS frame matching HTX response present in HTX message
3801 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
3802 * must check the stream's status to detect any error which might have happened
3803 * subsequently to a successful send. The htx blocks are automatically removed
3804 * from the message. The htx message is assumed to be valid since produced from
3805 * the internal code, hence it contains a start line, an optional series of
3806 * header blocks and an end of header, otherwise an invalid frame could be
3807 * emitted and the resulting htx message could be left in an inconsistent state.
3808 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02003809static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01003810{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003811 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01003812 struct h2c *h2c = h2s->h2c;
3813 struct htx_blk *blk;
3814 struct htx_blk *blk_end;
3815 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02003816 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01003817 struct htx_sl *sl;
3818 enum htx_blk_type type;
3819 int es_now = 0;
3820 int ret = 0;
3821 int hdr;
3822 int idx;
3823
3824 if (h2c_mux_busy(h2c, h2s)) {
3825 h2s->flags |= H2_SF_BLK_MBUSY;
3826 return 0;
3827 }
3828
Willy Tarreau115e83b2018-12-01 19:17:53 +01003829 /* determine the first block which must not be deleted, blk_end may
3830 * be NULL if all blocks have to be deleted.
3831 */
3832 idx = htx_get_head(htx);
3833 blk_end = NULL;
3834 while (idx != -1) {
3835 type = htx_get_blk_type(htx_get_blk(htx, idx));
3836 idx = htx_get_next(htx, idx);
3837 if (type == HTX_BLK_EOH) {
3838 if (idx != -1)
3839 blk_end = htx_get_blk(htx, idx);
3840 break;
3841 }
3842 }
3843
3844 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02003845 blk = htx_get_head_blk(htx);
3846 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_RES_SL);
3847 ALREADY_CHECKED(blk);
3848 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01003849 h2s->status = sl->info.res.status;
Willy Tarreauaafdf582018-12-10 18:06:40 +01003850 if (h2s->status < 100 || h2s->status > 999)
3851 goto fail;
Willy Tarreau115e83b2018-12-01 19:17:53 +01003852
3853 /* and the rest of the headers, that we dump starting at header 0 */
3854 hdr = 0;
3855
Willy Tarreau8e162ee2018-12-06 14:07:27 +01003856 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01003857 while ((idx = htx_get_next(htx, idx)) != -1) {
3858 blk = htx_get_blk(htx, idx);
3859 type = htx_get_blk_type(blk);
3860
3861 if (type == HTX_BLK_UNUSED)
3862 continue;
3863
3864 if (type != HTX_BLK_HDR)
3865 break;
3866
3867 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
3868 goto fail;
3869
3870 list[hdr].n = htx_get_blk_name(htx, blk);
3871 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01003872 hdr++;
3873 }
3874
3875 /* marker for end of headers */
3876 list[hdr].n = ist("");
3877
3878 if (h2s->status == 204 || h2s->status == 304) {
3879 /* no contents, claim c-len is present and set to zero */
3880 es_now = 1;
3881 }
3882
Willy Tarreau9c218e72019-05-26 10:08:28 +02003883 mbuf = br_tail(h2c->mbuf);
3884 retry:
3885 if (!h2_get_buf(h2c, mbuf)) {
3886 h2c->flags |= H2_CF_MUX_MALLOC;
3887 h2s->flags |= H2_SF_BLK_MROOM;
3888 return 0;
3889 }
3890
Willy Tarreau115e83b2018-12-01 19:17:53 +01003891 chunk_reset(&outbuf);
3892
3893 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02003894 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
3895 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01003896 break;
3897 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02003898 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01003899 }
3900
3901 if (outbuf.size < 9)
3902 goto full;
3903
3904 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
3905 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
3906 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
3907 outbuf.data = 9;
3908
3909 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01003910 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02003911 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01003912 goto realign_again;
3913 goto full;
3914 }
3915
3916 /* encode all headers, stop at empty name */
3917 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
3918 /* these ones do not exist in H2 and must be dropped. */
3919 if (isteq(list[hdr].n, ist("connection")) ||
3920 isteq(list[hdr].n, ist("proxy-connection")) ||
3921 isteq(list[hdr].n, ist("keep-alive")) ||
3922 isteq(list[hdr].n, ist("upgrade")) ||
3923 isteq(list[hdr].n, ist("transfer-encoding")))
3924 continue;
3925
3926 if (isteq(list[hdr].n, ist("")))
3927 break; // end
3928
3929 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
3930 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02003931 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01003932 goto realign_again;
3933 goto full;
3934 }
3935 }
3936
Christopher Faulet0b465482019-02-19 15:14:23 +01003937 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01003938 * FIXME: we should also set it when we know for sure that the
3939 * content-length is zero as well as on 204/304
3940 */
Christopher Faulet0b465482019-02-19 15:14:23 +01003941 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
3942 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01003943 es_now = 1;
3944
Willy Tarreau927b88b2019-03-04 08:03:25 +01003945 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01003946 es_now = 1;
3947
3948 /* update the frame's size */
3949 h2_set_frame_size(outbuf.area, outbuf.data - 9);
3950
3951 if (es_now)
3952 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
3953
3954 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02003955 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01003956
3957 /* indicates the HEADERS frame was sent, except for 1xx responses. For
3958 * 1xx responses, another HEADERS frame is expected.
3959 */
3960 if (h2s->status >= 200 || h2s->status == 101)
3961 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01003962
Willy Tarreau115e83b2018-12-01 19:17:53 +01003963 if (es_now) {
3964 h2s->flags |= H2_SF_ES_SENT;
3965 if (h2s->st == H2_SS_OPEN)
3966 h2s->st = H2_SS_HLOC;
3967 else
3968 h2s_close(h2s);
3969 }
3970
3971 /* OK we could properly deliver the response */
3972
3973 /* remove all header blocks including the EOH and compute the
3974 * corresponding size.
3975 *
3976 * FIXME: We should remove everything when es_now is set.
3977 */
3978 ret = 0;
3979 idx = htx_get_head(htx);
3980 blk = htx_get_blk(htx, idx);
3981 while (blk != blk_end) {
3982 ret += htx_get_blksz(blk);
3983 blk = htx_remove_blk(htx, blk);
3984 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01003985
Christopher Faulet316934d2019-05-15 14:22:48 +02003986 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
3987 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01003988 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02003989 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01003990 end:
3991 return ret;
3992 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02003993 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
3994 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01003995 h2c->flags |= H2_CF_MUX_MFULL;
3996 h2s->flags |= H2_SF_BLK_MROOM;
3997 ret = 0;
3998 goto end;
3999 fail:
4000 /* unparsable HTX messages, too large ones to be produced in the local
4001 * list etc go here (unrecoverable errors).
4002 */
4003 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4004 ret = 0;
4005 goto end;
4006}
4007
Willy Tarreau80739692018-10-05 11:35:57 +02004008/* Try to send a HEADERS frame matching HTX request present in HTX message
4009 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4010 * must check the stream's status to detect any error which might have happened
4011 * subsequently to a successful send. The htx blocks are automatically removed
4012 * from the message. The htx message is assumed to be valid since produced from
4013 * the internal code, hence it contains a start line, an optional series of
4014 * header blocks and an end of header, otherwise an invalid frame could be
4015 * emitted and the resulting htx message could be left in an inconsistent state.
4016 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004017static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02004018{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004019 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004020 struct h2c *h2c = h2s->h2c;
4021 struct htx_blk *blk;
4022 struct htx_blk *blk_end;
4023 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004024 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004025 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004026 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004027 enum htx_blk_type type;
4028 int es_now = 0;
4029 int ret = 0;
4030 int hdr;
4031 int idx;
4032
4033 if (h2c_mux_busy(h2c, h2s)) {
4034 h2s->flags |= H2_SF_BLK_MBUSY;
4035 return 0;
4036 }
4037
Willy Tarreau80739692018-10-05 11:35:57 +02004038 /* determine the first block which must not be deleted, blk_end may
4039 * be NULL if all blocks have to be deleted.
4040 */
4041 idx = htx_get_head(htx);
4042 blk_end = NULL;
4043 while (idx != -1) {
4044 type = htx_get_blk_type(htx_get_blk(htx, idx));
4045 idx = htx_get_next(htx, idx);
4046 if (type == HTX_BLK_EOH) {
4047 if (idx != -1)
4048 blk_end = htx_get_blk(htx, idx);
4049 break;
4050 }
4051 }
4052
4053 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004054 blk = htx_get_head_blk(htx);
4055 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
4056 ALREADY_CHECKED(blk);
4057 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004058 meth = htx_sl_req_meth(sl);
4059 path = htx_sl_req_uri(sl);
4060
4061 /* and the rest of the headers, that we dump starting at header 0 */
4062 hdr = 0;
4063
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004064 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004065 while ((idx = htx_get_next(htx, idx)) != -1) {
4066 blk = htx_get_blk(htx, idx);
4067 type = htx_get_blk_type(blk);
4068
4069 if (type == HTX_BLK_UNUSED)
4070 continue;
4071
4072 if (type != HTX_BLK_HDR)
4073 break;
4074
4075 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4076 goto fail;
4077
4078 list[hdr].n = htx_get_blk_name(htx, blk);
4079 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004080 hdr++;
4081 }
4082
4083 /* marker for end of headers */
4084 list[hdr].n = ist("");
4085
Willy Tarreau9c218e72019-05-26 10:08:28 +02004086 mbuf = br_tail(h2c->mbuf);
4087 retry:
4088 if (!h2_get_buf(h2c, mbuf)) {
4089 h2c->flags |= H2_CF_MUX_MALLOC;
4090 h2s->flags |= H2_SF_BLK_MROOM;
4091 return 0;
4092 }
4093
Willy Tarreau80739692018-10-05 11:35:57 +02004094 chunk_reset(&outbuf);
4095
4096 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004097 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4098 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004099 break;
4100 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004101 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004102 }
4103
4104 if (outbuf.size < 9)
4105 goto full;
4106
4107 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4108 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4109 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4110 outbuf.data = 9;
4111
4112 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004113 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004114 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004115 goto realign_again;
4116 goto full;
4117 }
4118
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004119 /* RFC7540 #8.3: the CONNECT method must have :
4120 * - :authority set to the URI part (host:port)
4121 * - :method set to CONNECT
4122 * - :scheme and :path omitted
4123 */
4124 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4125 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004126 struct ist scheme;
4127
4128 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4129 scheme = ist("http");
4130 else
4131 scheme = ist("https");
4132
4133 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004134 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004135 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004136 goto realign_again;
4137 goto full;
4138 }
Willy Tarreau80739692018-10-05 11:35:57 +02004139
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004140 /* encode the path, which necessarily is the second one */
4141 if (!hpack_encode_path(&outbuf, path)) {
4142 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004143 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004144 goto realign_again;
4145 goto full;
4146 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004147
4148 /* look for the Host header and place it in :authority */
4149 auth = ist2(NULL, 0);
4150 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4151 if (isteq(list[hdr].n, ist("")))
4152 break; // end
4153
4154 if (isteq(list[hdr].n, ist("host"))) {
4155 auth = list[hdr].v;
4156 break;
4157 }
4158 }
4159 }
4160 else {
4161 /* for CONNECT, :authority is taken from the path */
4162 auth = path;
4163 }
4164
4165 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4166 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004167 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004168 goto realign_again;
4169 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004170 }
4171
4172 /* encode all headers, stop at empty name */
4173 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4174 /* these ones do not exist in H2 and must be dropped. */
4175 if (isteq(list[hdr].n, ist("connection")) ||
Willy Tarreau053c1572019-02-01 16:13:59 +01004176 isteq(list[hdr].n, ist("host")) ||
Willy Tarreau80739692018-10-05 11:35:57 +02004177 isteq(list[hdr].n, ist("proxy-connection")) ||
4178 isteq(list[hdr].n, ist("keep-alive")) ||
4179 isteq(list[hdr].n, ist("upgrade")) ||
4180 isteq(list[hdr].n, ist("transfer-encoding")))
4181 continue;
4182
4183 if (isteq(list[hdr].n, ist("")))
4184 break; // end
4185
4186 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4187 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004188 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004189 goto realign_again;
4190 goto full;
4191 }
4192 }
4193
4194 /* we may need to add END_STREAM if we have no body :
4195 * - request already closed, or :
4196 * - no transfer-encoding, and :
4197 * - no content-length or content-length:0
4198 * Fixme: this doesn't take into account CONNECT requests.
4199 */
4200 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4201 es_now = 1;
4202
4203 if (sl->flags & HTX_SL_F_BODYLESS)
4204 es_now = 1;
4205
Willy Tarreau927b88b2019-03-04 08:03:25 +01004206 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004207 es_now = 1;
4208
4209 /* update the frame's size */
4210 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4211
4212 if (es_now)
4213 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4214
4215 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004216 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004217 h2s->flags |= H2_SF_HEADERS_SENT;
4218 h2s->st = H2_SS_OPEN;
4219
Willy Tarreau80739692018-10-05 11:35:57 +02004220 if (es_now) {
4221 // trim any possibly pending data (eg: inconsistent content-length)
4222 h2s->flags |= H2_SF_ES_SENT;
4223 h2s->st = H2_SS_HLOC;
4224 }
4225
4226 /* remove all header blocks including the EOH and compute the
4227 * corresponding size.
4228 *
4229 * FIXME: We should remove everything when es_now is set.
4230 */
4231 ret = 0;
4232 idx = htx_get_head(htx);
4233 blk = htx_get_blk(htx, idx);
4234 while (blk != blk_end) {
4235 ret += htx_get_blksz(blk);
4236 blk = htx_remove_blk(htx, blk);
4237 }
4238
Christopher Faulet316934d2019-05-15 14:22:48 +02004239 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4240 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02004241 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004242 }
Willy Tarreau80739692018-10-05 11:35:57 +02004243
4244 end:
4245 return ret;
4246 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004247 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4248 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02004249 h2c->flags |= H2_CF_MUX_MFULL;
4250 h2s->flags |= H2_SF_BLK_MROOM;
4251 ret = 0;
4252 goto end;
4253 fail:
4254 /* unparsable HTX messages, too large ones to be produced in the local
4255 * list etc go here (unrecoverable errors).
4256 */
4257 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4258 ret = 0;
4259 goto end;
4260}
4261
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004262/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01004263 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
4264 * caller must check the stream's status to detect any error which might have
4265 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02004266 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004267 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004268static size_t h2s_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004269{
4270 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004271 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004272 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004273 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004274 size_t total = 0;
4275 int es_now = 0;
4276 int bsize; /* htx block size */
4277 int fsize; /* h2 frame size */
4278 struct htx_blk *blk;
4279 enum htx_blk_type type;
4280 int idx;
4281
4282 if (h2c_mux_busy(h2c, h2s)) {
4283 h2s->flags |= H2_SF_BLK_MBUSY;
4284 goto end;
4285 }
4286
Willy Tarreau98de12a2018-12-12 07:03:00 +01004287 htx = htx_from_buf(buf);
4288
Christopher Faulet54b5e212019-06-04 10:08:28 +02004289 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
4290 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
4291 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004292 */
4293
4294 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01004295 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004296 goto end;
4297
4298 idx = htx_get_head(htx);
4299 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02004300 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004301 bsize = htx_get_blksz(blk);
4302 fsize = bsize;
4303
Christopher Faulet54b5e212019-06-04 10:08:28 +02004304 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01004305 if (h2s->flags & H2_SF_ES_SENT) {
4306 /* ES already sent */
4307 htx_remove_blk(htx, blk);
4308 total++; // EOM counts as one byte
4309 count--;
4310 goto end;
4311 }
4312 }
4313 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01004314 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004315
Willy Tarreau9c218e72019-05-26 10:08:28 +02004316 mbuf = br_tail(h2c->mbuf);
4317 retry:
4318 if (!h2_get_buf(h2c, mbuf)) {
4319 h2c->flags |= H2_CF_MUX_MALLOC;
4320 h2s->flags |= H2_SF_BLK_MROOM;
4321 goto end;
4322 }
4323
Willy Tarreau98de12a2018-12-12 07:03:00 +01004324 /* Perform some optimizations to reduce the number of buffer copies.
4325 * First, if the mux's buffer is empty and the htx area contains
4326 * exactly one data block of the same size as the requested count, and
4327 * this count fits within the frame size, the stream's window size, and
4328 * the connection's window size, then it's possible to simply swap the
4329 * caller's buffer with the mux's output buffer and adjust offsets and
4330 * length to match the entire DATA HTX block in the middle. In this
4331 * case we perform a true zero-copy operation from end-to-end. This is
4332 * the situation that happens all the time with large files. Second, if
4333 * this is not possible, but the mux's output buffer is empty, we still
4334 * have an opportunity to avoid the copy to the intermediary buffer, by
4335 * making the intermediary buffer's area point to the output buffer's
4336 * area. In this case we want to skip the HTX header to make sure that
4337 * copies remain aligned and that this operation remains possible all
4338 * the time. This goes for headers, data blocks and any data extracted
4339 * from the HTX blocks.
4340 */
4341 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02004342 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02004343 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004344 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004345
Willy Tarreaubcc45952019-05-26 10:05:50 +02004346 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01004347 /* Too bad there are data left there. We're willing to memcpy/memmove
4348 * up to 1/4 of the buffer, which means that it's OK to copy a large
4349 * frame into a buffer containing few data if it needs to be realigned,
4350 * and that it's also OK to copy few data without realigning. Otherwise
4351 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01004352 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004353 if (fsize + 9 <= b_room(mbuf) &&
4354 (b_data(mbuf) <= b_size(mbuf) / 4 ||
4355 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf))))
Willy Tarreau98de12a2018-12-12 07:03:00 +01004356 goto copy;
Willy Tarreau8ab128c2019-03-21 17:47:28 +01004357
Willy Tarreau9c218e72019-05-26 10:08:28 +02004358 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4359 goto retry;
4360
Willy Tarreau98de12a2018-12-12 07:03:00 +01004361 h2c->flags |= H2_CF_MUX_MFULL;
4362 h2s->flags |= H2_SF_BLK_MROOM;
4363 goto end;
4364 }
4365
4366 /* map an H2 frame to the HTX block so that we can put the
4367 * frame header there.
4368 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004369 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
4370 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01004371
4372 /* prepend an H2 DATA frame header just before the DATA block */
4373 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4374 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4375 h2_set_frame_size(outbuf.area, fsize);
4376
4377 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02004378 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004379 h2c->mws -= fsize;
4380
4381 /* and exchange with our old area */
4382 buf->area = old_area;
4383 buf->data = buf->head = 0;
4384 total += fsize;
4385 goto end;
4386 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01004387
Willy Tarreau98de12a2018-12-12 07:03:00 +01004388 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004389 /* for DATA and EOM we'll have to emit a frame, even if empty */
4390
4391 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004392 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4393 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004394 break;
4395 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004396 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004397 }
4398
4399 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004400 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4401 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004402 h2c->flags |= H2_CF_MUX_MFULL;
4403 h2s->flags |= H2_SF_BLK_MROOM;
4404 goto end;
4405 }
4406
4407 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
4408 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4409 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4410 outbuf.data = 9;
4411
4412 /* we have in <fsize> the exact number of bytes we need to copy from
4413 * the HTX buffer. We need to check this against the connection's and
4414 * the stream's send windows, and to ensure that this fits in the max
4415 * frame size and in the buffer's available space minus 9 bytes (for
4416 * the frame header). The connection's flow control is applied last so
4417 * that we can use a separate list of streams which are immediately
4418 * unblocked on window opening. Note: we don't implement padding.
4419 */
4420
4421 /* EOM is presented with bsize==1 but would lead to the emission of an
4422 * empty frame, thus we force it to zero here.
4423 */
4424 if (type == HTX_BLK_EOM)
4425 bsize = fsize = 0;
4426
4427 if (!fsize)
4428 goto send_empty;
4429
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02004430 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004431 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004432 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02004433 LIST_DEL_INIT(&h2s->list);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004434 goto end;
4435 }
4436
Willy Tarreauee573762018-12-04 15:25:57 +01004437 if (fsize > count)
4438 fsize = count;
4439
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02004440 if (fsize > h2s_mws(h2s))
4441 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004442
4443 if (h2c->mfs && fsize > h2c->mfs)
4444 fsize = h2c->mfs; // >0
4445
4446 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02004447 /* It doesn't fit at once. If it at least fits once split and
4448 * the amount of data to move is low, let's defragment the
4449 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004450 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004451 if (b_space_wraps(mbuf) &&
4452 (fsize + 9 <= b_room(mbuf)) &&
4453 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004454 goto realign_again;
4455 fsize = outbuf.size - 9;
4456
4457 if (fsize <= 0) {
4458 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02004459 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4460 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004461 h2c->flags |= H2_CF_MUX_MFULL;
4462 h2s->flags |= H2_SF_BLK_MROOM;
4463 goto end;
4464 }
4465 }
4466
4467 if (h2c->mws <= 0) {
4468 h2s->flags |= H2_SF_BLK_MFCTL;
4469 goto end;
4470 }
4471
4472 if (fsize > h2c->mws)
4473 fsize = h2c->mws;
4474
4475 /* now let's copy this this into the output buffer */
4476 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02004477 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01004478 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01004479 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004480
4481 send_empty:
4482 /* update the frame's size */
4483 h2_set_frame_size(outbuf.area, fsize);
4484
4485 /* FIXME: for now we only set the ES flag on empty DATA frames, once
4486 * meeting EOM. We should optimize this later.
4487 */
4488 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01004489 total++; // EOM counts as one byte
4490 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004491 es_now = 1;
4492 }
4493
4494 if (es_now)
4495 outbuf.area[4] |= H2_F_DATA_END_STREAM;
4496
4497 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004498 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004499
4500 /* consume incoming HTX block, including EOM */
4501 total += fsize;
4502 if (fsize == bsize) {
4503 htx_remove_blk(htx, blk);
4504 if (fsize)
4505 goto new_frame;
4506 } else {
4507 /* we've truncated this block */
4508 htx_cut_data_blk(htx, blk, fsize);
4509 }
4510
4511 if (es_now) {
4512 if (h2s->st == H2_SS_OPEN)
4513 h2s->st = H2_SS_HLOC;
4514 else
4515 h2s_close(h2s);
4516
4517 h2s->flags |= H2_SF_ES_SENT;
4518 }
4519
4520 end:
4521 return total;
4522}
4523
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004524/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
4525 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
4526 * processed. The caller must check the stream's status to detect any error
4527 * which might have happened subsequently to a successful send. The htx blocks
4528 * are automatically removed from the message. The htx message is assumed to be
4529 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02004530 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004531 * as a single frame. The ES flag is always set.
4532 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004533static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004534{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004535 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004536 struct h2c *h2c = h2s->h2c;
4537 struct htx_blk *blk;
4538 struct htx_blk *blk_end;
4539 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004540 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004541 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004542 int ret = 0;
4543 int hdr;
4544 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004545
4546 if (h2c_mux_busy(h2c, h2s)) {
4547 h2s->flags |= H2_SF_BLK_MBUSY;
4548 goto end;
4549 }
4550
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004551 /* determine the first block which must not be deleted, blk_end may
4552 * be NULL if all blocks have to be deleted. also get trailers.
4553 */
4554 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004555 blk_end = NULL;
4556
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004557 hdr = 0;
4558 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004559 blk = htx_get_blk(htx, idx);
4560 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004561 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004562 if (type == HTX_BLK_UNUSED)
4563 continue;
4564
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004565 if (type == HTX_BLK_EOT) {
4566 if (idx != -1)
4567 blk_end = blk;
4568 break;
4569 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02004570 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004571 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004572
4573 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4574 goto fail;
4575
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004576 list[hdr].n = htx_get_blk_name(htx, blk);
4577 list[hdr].v = htx_get_blk_value(htx, blk);
4578 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004579 }
4580
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004581 /* marker for end of trailers */
4582 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004583
Willy Tarreau9c218e72019-05-26 10:08:28 +02004584 mbuf = br_tail(h2c->mbuf);
4585 retry:
4586 if (!h2_get_buf(h2c, mbuf)) {
4587 h2c->flags |= H2_CF_MUX_MALLOC;
4588 h2s->flags |= H2_SF_BLK_MROOM;
4589 goto end;
4590 }
4591
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004592 chunk_reset(&outbuf);
4593
4594 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004595 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4596 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004597 break;
4598 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004599 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004600 }
4601
4602 if (outbuf.size < 9)
4603 goto full;
4604
4605 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
4606 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
4607 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4608 outbuf.data = 9;
4609
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004610 /* encode all headers */
4611 for (idx = 0; idx < hdr; idx++) {
4612 /* these ones do not exist in H2 or must not appear in
4613 * trailers and must be dropped.
4614 */
4615 if (isteq(list[idx].n, ist("host")) ||
4616 isteq(list[idx].n, ist("content-length")) ||
4617 isteq(list[idx].n, ist("connection")) ||
4618 isteq(list[idx].n, ist("proxy-connection")) ||
4619 isteq(list[idx].n, ist("keep-alive")) ||
4620 isteq(list[idx].n, ist("upgrade")) ||
4621 isteq(list[idx].n, ist("te")) ||
4622 isteq(list[idx].n, ist("transfer-encoding")))
4623 continue;
4624
4625 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
4626 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004627 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004628 goto realign_again;
4629 goto full;
4630 }
4631 }
4632
Willy Tarreau5121e5d2019-05-06 15:13:41 +02004633 if (outbuf.data == 9) {
4634 /* here we have a problem, we have nothing to emit (either we
4635 * received an empty trailers block followed or we removed its
4636 * contents above). Because of this we can't send a HEADERS
4637 * frame, so we have to cheat and instead send an empty DATA
4638 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01004639 */
4640 outbuf.area[3] = H2_FT_DATA;
4641 outbuf.area[4] = H2_F_DATA_END_STREAM;
4642 }
4643
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004644 /* update the frame's size */
4645 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4646
4647 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004648 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004649 h2s->flags |= H2_SF_ES_SENT;
4650
4651 if (h2s->st == H2_SS_OPEN)
4652 h2s->st = H2_SS_HLOC;
4653 else
4654 h2s_close(h2s);
4655
4656 /* OK we could properly deliver the response */
4657 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02004658 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004659 ret = 0;
4660 idx = htx_get_head(htx);
4661 blk = htx_get_blk(htx, idx);
4662 while (blk != blk_end) {
4663 ret += htx_get_blksz(blk);
4664 blk = htx_remove_blk(htx, blk);
4665 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004666
4667 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4668 ret += htx_get_blksz(blk_end);
4669 htx_remove_blk(htx, blk_end);
4670 }
4671
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004672 end:
4673 return ret;
4674 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004675 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4676 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004677 h2c->flags |= H2_CF_MUX_MFULL;
4678 h2s->flags |= H2_SF_BLK_MROOM;
4679 ret = 0;
4680 goto end;
4681 fail:
4682 /* unparsable HTX messages, too large ones to be produced in the local
4683 * list etc go here (unrecoverable errors).
4684 */
4685 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4686 ret = 0;
4687 goto end;
4688}
4689
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004690/* Called from the upper layer, to subscribe to events, such as being able to send.
4691 * The <param> argument here is supposed to be a pointer to a wait_event struct
4692 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
4693 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
4694 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
4695 * returns 0 except for the error above.
4696 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02004697static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
4698{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004699 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02004700 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02004701 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02004702
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004703 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02004704 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02004705 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
4706 sw->events |= SUB_RETRY_RECV;
4707 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004708 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004709 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004710 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +02004711 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02004712 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
4713 sw->events |= SUB_RETRY_SEND;
4714 h2s->send_wait = sw;
4715 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
4716 !LIST_ADDED(&h2s->list)) {
4717 if (h2s->flags & H2_SF_BLK_MFCTL)
4718 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
4719 else
4720 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02004721 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004722 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02004723 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004724 if (event_type != 0)
4725 return -1;
4726 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02004727}
4728
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004729/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
4730 * The <param> argument here is supposed to be a pointer to the same wait_event
4731 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
4732 * It always returns zero.
4733 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004734static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
4735{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004736 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004737 struct h2s *h2s = cs->ctx;
4738
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004739 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004740 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02004741 BUG_ON(h2s->recv_wait != sw);
4742 sw->events &= ~SUB_RETRY_RECV;
4743 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004744 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004745 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004746 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02004747 BUG_ON(h2s->send_wait != sw);
4748 LIST_DEL(&h2s->list);
4749 LIST_INIT(&h2s->list);
4750 sw->events &= ~SUB_RETRY_SEND;
4751 /* We were about to send, make sure it does not happen */
4752 if (LIST_ADDED(&h2s->sending_list) &&
4753 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02004754 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02004755 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02004756 }
Olivier Houchardf8338152019-05-14 17:50:32 +02004757 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02004758 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02004759 return 0;
4760}
4761
4762
Olivier Houchard511efea2018-08-16 15:30:32 +02004763/* Called from the upper layer, to receive data */
4764static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
4765{
Olivier Houchard638b7992018-08-16 15:41:52 +02004766 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01004767 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01004768 struct htx *h2s_htx = NULL;
4769 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02004770 size_t ret = 0;
4771
4772 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004773 h2s_htx = htx_from_buf(&h2s->rxbuf);
4774 if (htx_is_empty(h2s_htx)) {
4775 /* Here htx_to_buf() will set buffer data to 0 because
4776 * the HTX is empty.
4777 */
4778 htx_to_buf(h2s_htx, &h2s->rxbuf);
4779 goto end;
4780 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01004781
Christopher Faulet9b79a102019-07-15 11:22:56 +02004782 ret = h2s_htx->data;
4783 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01004784
Christopher Faulet9b79a102019-07-15 11:22:56 +02004785 /* <buf> is empty and the message is small enough, swap the
4786 * buffers. */
4787 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004788 htx_to_buf(buf_htx, buf);
4789 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004790 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
4791 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01004792 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004793
4794 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
4795
4796 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
4797 buf_htx->flags |= HTX_FL_PARSING_ERROR;
4798 if (htx_is_empty(buf_htx))
4799 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01004800 }
Olivier Houchard511efea2018-08-16 15:30:32 +02004801
Christopher Faulet9b79a102019-07-15 11:22:56 +02004802 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
4803 htx_to_buf(buf_htx, buf);
4804 htx_to_buf(h2s_htx, &h2s->rxbuf);
4805 ret -= h2s_htx->data;
4806
Christopher Faulet37070b22019-02-14 15:12:14 +01004807 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02004808 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01004809 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02004810 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01004811 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02004812 if (h2s->flags & H2_SF_ES_RCVD)
4813 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02004814 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02004815 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01004816 if (cs->flags & CS_FL_ERR_PENDING)
4817 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02004818 if (b_size(&h2s->rxbuf)) {
4819 b_free(&h2s->rxbuf);
4820 offer_buffers(NULL, tasks_run_queue);
4821 }
Olivier Houchard511efea2018-08-16 15:30:32 +02004822 }
4823
Willy Tarreau082f5592018-11-25 08:03:32 +01004824 if (ret && h2c->dsi == h2s->id) {
4825 /* demux is blocking on this stream's buffer */
4826 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004827 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01004828 }
Christopher Faulet37070b22019-02-14 15:12:14 +01004829
Olivier Houchard511efea2018-08-16 15:30:32 +02004830 return ret;
4831}
4832
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004833/* stops all senders of this connection for example when the mux buffer is full.
4834 * They are moved from the sending_list to either fctl_list or send_list.
4835 */
Olivier Houchardd846c262018-10-19 17:24:29 +02004836static void h2_stop_senders(struct h2c *h2c)
4837{
4838 struct h2s *h2s, *h2s_back;
4839
Olivier Houchardd360ac62019-03-22 17:37:16 +01004840 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
4841 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02004842 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004843 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02004844 }
4845}
4846
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004847/* Called from the upper layer, to send data from buffer <buf> for no more than
4848 * <count> bytes. Returns the number of bytes effectively sent. Some status
4849 * flags may be updated on the conn_stream.
4850 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02004851static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02004852{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004853 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02004854 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02004855 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01004856 struct htx *htx;
4857 struct htx_blk *blk;
4858 enum htx_blk_type btype;
4859 uint32_t bsize;
4860 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004861
Olivier Houchardd360ac62019-03-22 17:37:16 +01004862 /* If we were not just woken because we wanted to send but couldn't,
4863 * and there's somebody else that is waiting to send, do nothing,
4864 * we will subscribe later and be put at the end of the list
4865 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02004866 if (!LIST_ADDED(&h2s->sending_list) &&
Olivier Houchardd360ac62019-03-22 17:37:16 +01004867 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list)))
4868 return 0;
Olivier Houchard998410a2019-04-15 19:23:37 +02004869 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01004870
Olivier Houchard998410a2019-04-15 19:23:37 +02004871 /* We couldn't set it to NULL before, because we needed it in case
4872 * we had to cancel the tasklet
4873 */
4874 h2s->send_wait = NULL;
4875
Willy Tarreau6bf641a2018-10-08 09:43:03 +02004876 if (h2s->h2c->st0 < H2_CS_FRAME_H)
4877 return 0;
4878
Christopher Faulet9b79a102019-07-15 11:22:56 +02004879 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01004880
Willy Tarreau0bad0432018-06-14 16:54:01 +02004881 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01004882 h2s->flags |= H2_SF_OUTGOING_DATA;
4883
Willy Tarreau751f2d02018-10-05 09:35:00 +02004884 if (h2s->id == 0) {
4885 int32_t id = h2c_get_next_sid(h2s->h2c);
4886
4887 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02004888 cs->flags |= CS_FL_ERROR;
Willy Tarreau751f2d02018-10-05 09:35:00 +02004889 return 0;
4890 }
4891
4892 eb32_delete(&h2s->by_id);
4893 h2s->by_id.key = h2s->id = id;
4894 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01004895 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02004896 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
4897 }
4898
Christopher Faulet9b79a102019-07-15 11:22:56 +02004899 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
4900 count && !htx_is_empty(htx)) {
4901 idx = htx_get_head(htx);
4902 blk = htx_get_blk(htx, idx);
4903 btype = htx_get_blk_type(blk);
4904 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01004905
Christopher Faulet9b79a102019-07-15 11:22:56 +02004906 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02004907 case HTX_BLK_REQ_SL:
4908 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004909 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02004910 if (ret > 0) {
4911 total += ret;
4912 count -= ret;
4913 if (ret < bsize)
4914 goto done;
4915 }
4916 break;
4917
Willy Tarreau115e83b2018-12-01 19:17:53 +01004918 case HTX_BLK_RES_SL:
4919 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004920 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004921 if (ret > 0) {
4922 total += ret;
4923 count -= ret;
4924 if (ret < bsize)
4925 goto done;
4926 }
4927 break;
4928
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004929 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004930 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004931 /* all these cause the emission of a DATA frame (possibly empty).
4932 * This EOM necessarily is one before trailers, as the EOM following
4933 * trailers would have been consumed by the trailers parser.
4934 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004935 ret = h2s_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004936 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01004937 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004938 total += ret;
4939 count -= ret;
4940 if (ret < bsize)
4941 goto done;
4942 }
4943 break;
4944
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004945 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02004946 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004947 /* This is the first trailers block, all the subsequent ones AND
4948 * the EOM will be swallowed by the parser.
4949 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004950 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01004951 if (ret > 0) {
4952 total += ret;
4953 count -= ret;
4954 if (ret < bsize)
4955 goto done;
4956 }
4957 break;
4958
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01004959 default:
4960 htx_remove_blk(htx, blk);
4961 total += bsize;
4962 count -= bsize;
4963 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01004964 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01004965 }
4966
Christopher Faulet9b79a102019-07-15 11:22:56 +02004967 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02004968 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02004969 /* trim any possibly pending data after we close (extra CR-LF,
4970 * unprocessed trailers, abnormal extra data, ...)
4971 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02004972 total += count;
4973 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02004974 }
4975
Willy Tarreauc6795ca2017-11-07 09:43:06 +01004976 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01004977 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreauec988c72018-12-19 18:00:29 +01004978 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01004979 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004980 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01004981 }
4982
Christopher Faulet9b79a102019-07-15 11:22:56 +02004983 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02004984
4985 /* The mux is full, cancel the pending tasks */
4986 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
4987 (h2s->flags & H2_SF_BLK_MBUSY))
4988 h2_stop_senders(h2s->h2c);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01004989
Olivier Houchard7505f942018-08-21 18:10:44 +02004990 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004991 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004992 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02004993
Olivier Houchard7505f942018-08-21 18:10:44 +02004994 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01004995 /* If we're waiting for flow control, and we got a shutr on the
4996 * connection, we will never be unlocked, so add an error on
4997 * the conn_stream.
4998 */
4999 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5000 !b_data(&h2s->h2c->dbuf) &&
5001 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
5002 if (cs->flags & CS_FL_EOS)
5003 cs->flags |= CS_FL_ERROR;
5004 else
5005 cs->flags |= CS_FL_ERR_PENDING;
5006 }
Olivier Houchard998410a2019-04-15 19:23:37 +02005007 if (total > 0) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01005008 /* Ok we managed to send something, leave the send_list */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005009 LIST_DEL_INIT(&h2s->list);
5010 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005011 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005012}
5013
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005014/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005015static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005016{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005017 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005018 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005019 struct eb32_node *node;
5020 int fctl_cnt = 0;
5021 int send_cnt = 0;
5022 int tree_cnt = 0;
5023 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005024 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005025
5026 if (!h2c)
5027 return;
5028
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005029 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005030 fctl_cnt++;
5031
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005032 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005033 send_cnt++;
5034
Willy Tarreau3af37712018-12-18 14:34:41 +01005035 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005036 node = eb32_first(&h2c->streams_by_id);
5037 while (node) {
5038 h2s = container_of(node, struct h2s, by_id);
5039 tree_cnt++;
5040 if (!h2s->cs)
5041 orph_cnt++;
5042 node = eb32_next(node);
5043 }
5044
Willy Tarreau60f62682019-05-26 11:32:27 +02005045 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005046 tmbuf = br_tail(h2c->mbuf);
Willy Tarreau987c0632018-12-18 10:32:05 +01005047 chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
5048 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005049 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5050 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau616ac812018-07-24 14:12:42 +02005051 h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
5052 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005053 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005054 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5055 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5056 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005057 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5058 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5059 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005060 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5061 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005062
5063 if (h2s) {
5064 chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5065 h2s, h2s->id, h2s->flags,
5066 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5067 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5068 h2s->cs);
5069 if (h2s->cs)
5070 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5071 h2s->cs->flags, h2s->cs->data);
5072 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005073}
Willy Tarreau62f52692017-10-08 23:01:42 +02005074
5075/*******************************************************/
5076/* functions below are dedicated to the config parsers */
5077/*******************************************************/
5078
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005079/* config parser for global "tune.h2.header-table-size" */
5080static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5081 struct proxy *defpx, const char *file, int line,
5082 char **err)
5083{
5084 if (too_many_args(1, args, err, NULL))
5085 return -1;
5086
5087 h2_settings_header_table_size = atoi(args[1]);
5088 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5089 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5090 return -1;
5091 }
5092 return 0;
5093}
Willy Tarreau62f52692017-10-08 23:01:42 +02005094
Willy Tarreaue6baec02017-07-27 11:45:11 +02005095/* config parser for global "tune.h2.initial-window-size" */
5096static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5097 struct proxy *defpx, const char *file, int line,
5098 char **err)
5099{
5100 if (too_many_args(1, args, err, NULL))
5101 return -1;
5102
5103 h2_settings_initial_window_size = atoi(args[1]);
5104 if (h2_settings_initial_window_size < 0) {
5105 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5106 return -1;
5107 }
5108 return 0;
5109}
5110
Willy Tarreau5242ef82017-07-27 11:47:28 +02005111/* config parser for global "tune.h2.max-concurrent-streams" */
5112static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5113 struct proxy *defpx, const char *file, int line,
5114 char **err)
5115{
5116 if (too_many_args(1, args, err, NULL))
5117 return -1;
5118
5119 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005120 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005121 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5122 return -1;
5123 }
5124 return 0;
5125}
5126
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005127/* config parser for global "tune.h2.max-frame-size" */
5128static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5129 struct proxy *defpx, const char *file, int line,
5130 char **err)
5131{
5132 if (too_many_args(1, args, err, NULL))
5133 return -1;
5134
5135 h2_settings_max_frame_size = atoi(args[1]);
5136 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5137 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5138 return -1;
5139 }
5140 return 0;
5141}
5142
Willy Tarreau62f52692017-10-08 23:01:42 +02005143
5144/****************************************/
5145/* MUX initialization and instanciation */
5146/***************************************/
5147
5148/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005149static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005150 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005151 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005152 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005153 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02005154 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005155 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02005156 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01005157 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02005158 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01005159 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01005160 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01005161 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02005162 .shutr = h2_shutr,
5163 .shutw = h2_shutw,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005164 .show_fd = h2_show_fd,
Christopher Faulet9b79a102019-07-15 11:22:56 +02005165 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Willy Tarreau62f52692017-10-08 23:01:42 +02005166 .name = "H2",
5167};
5168
Christopher Faulet32f61c02018-04-10 14:33:41 +02005169static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02005170 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02005171
Willy Tarreau0108d902018-11-25 19:14:37 +01005172INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
5173
Willy Tarreau62f52692017-10-08 23:01:42 +02005174/* config keyword parsers */
5175static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005176 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02005177 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02005178 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005179 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02005180 { 0, NULL, NULL }
5181}};
5182
Willy Tarreau0108d902018-11-25 19:14:37 +01005183INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);