blob: d02168df5ae3ee9cf8e3223f03455da6873ac7a6 [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
180/* step we're currently in when sending chunks. This is needed because we may
181 * have to transfer chunks as large as a full buffer so there's no room left
182 * for size nor crlf around.
183 */
184#define H2_SF_CHNK_SIZE 0x00000000 // trying to send chunk size
185#define H2_SF_CHNK_DATA 0x00000400 // trying to send chunk data
186#define H2_SF_CHNK_CRLF 0x00000800 // trying to send chunk crlf after data
187
188#define H2_SF_CHNK_MASK 0x00000C00 // trying to send chunk size
189
Willy Tarreau67434202017-11-06 20:20:51 +0100190#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100191#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100192
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100193#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
194
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200195#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
196#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200197#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200198
199
Willy Tarreau18312642017-10-11 07:57:07 +0200200/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
201 * it is being processed in the internal HTTP representation (H1 for now).
202 */
203struct h2s {
204 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100205 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200206 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200207 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200208 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200209 int32_t id; /* stream ID */
210 uint32_t flags; /* H2_SF_* */
211 int mws; /* mux window size for this stream */
212 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
213 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200214 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100215 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200216 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200217 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 +0100218 struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
219 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 +0200220 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100221 struct list sending_list; /* To be used when adding in h2c->sending_list */
Willy Tarreau18312642017-10-11 07:57:07 +0200222};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200223
Willy Tarreauc6405142017-09-21 20:23:50 +0200224/* descriptor for an h2 frame header */
225struct h2_fh {
226 uint32_t len; /* length, host order, 24 bits */
227 uint32_t sid; /* stream id, host order, 31 bits */
228 uint8_t ft; /* frame type */
229 uint8_t ff; /* frame flags */
230};
231
Willy Tarreau8ceae722018-11-26 11:58:30 +0100232/* the h2c connection pool */
233DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
234
235/* the h2s stream pool */
236DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
237
Willy Tarreaudc572362018-12-12 08:08:05 +0100238/* The default connection window size is 65535, it may only be enlarged using
239 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
240 * we'll pretend we already received the difference between the two to send
241 * an equivalent window update to enlarge it to 2G-1.
242 */
243#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
244
Willy Tarreau455d5682019-05-24 19:42:18 +0200245/* maximum amount of data we're OK with re-aligning for buffer optimizations */
246#define MAX_DATA_REALIGN 1024
247
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200248/* a few settings from the global section */
249static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200250static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100251static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100252static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200253
Willy Tarreau2a856182017-05-16 15:20:39 +0200254/* a dmumy closed stream */
255static const struct h2s *h2_closed_stream = &(const struct h2s){
256 .cs = NULL,
257 .h2c = NULL,
258 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100259 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100260 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200261 .id = 0,
262};
263
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100264/* a dmumy closed stream returning a PROTOCOL_ERROR error */
265static const struct h2s *h2_error_stream = &(const struct h2s){
266 .cs = NULL,
267 .h2c = NULL,
268 .st = H2_SS_CLOSED,
269 .errcode = H2_ERR_PROTOCOL_ERROR,
270 .flags = 0,
271 .id = 0,
272};
273
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100274/* a dmumy closed stream returning a REFUSED_STREAM error */
275static const struct h2s *h2_refused_stream = &(const struct h2s){
276 .cs = NULL,
277 .h2c = NULL,
278 .st = H2_SS_CLOSED,
279 .errcode = H2_ERR_REFUSED_STREAM,
280 .flags = 0,
281 .id = 0,
282};
283
Willy Tarreau2a856182017-05-16 15:20:39 +0200284/* and a dummy idle stream for use with any unannounced stream */
285static const struct h2s *h2_idle_stream = &(const struct h2s){
286 .cs = NULL,
287 .h2c = NULL,
288 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100289 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200290 .id = 0,
291};
292
Olivier Houchard9f6af332018-05-25 14:04:04 +0200293static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200294static int h2_send(struct h2c *h2c);
295static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200296static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200297static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100298static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100299static 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 +0100300static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200301static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100302static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100303static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200304
Olivier Houchard7a977432019-03-21 15:47:13 +0100305static __inline int
306h2c_is_dead(struct h2c *h2c)
307{
308 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
309 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
310 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
311 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200312 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100313 (conn_xprt_read0_pending(h2c->conn) ||
314 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
315 return 1;
316
317 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100318}
319
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200320/*****************************************************/
321/* functions below are for dynamic buffer management */
322/*****************************************************/
323
Willy Tarreau315d8072017-12-10 22:17:57 +0100324/* indicates whether or not the we may call the h2_recv() function to attempt
325 * to receive data into the buffer and/or demux pending data. The condition is
326 * a bit complex due to some API limits for now. The rules are the following :
327 * - if an error or a shutdown was detected on the connection and the buffer
328 * is empty, we must not attempt to receive
329 * - if the demux buf failed to be allocated, we must not try to receive and
330 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100331 * - if no flag indicates a blocking condition, we may attempt to receive,
332 * regardless of whether the demux buffer is full or not, so that only
333 * de demux part decides whether or not to block. This is needed because
334 * the connection API indeed prevents us from re-enabling receipt that is
335 * already enabled in a polled state, so we must always immediately stop
336 * as soon as the demux can't proceed so as never to hit an end of read
337 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100338 * - otherwise must may not attempt
339 */
340static inline int h2_recv_allowed(const struct h2c *h2c)
341{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200342 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100343 (h2c->st0 >= H2_CS_ERROR ||
344 h2c->conn->flags & CO_FL_ERROR ||
345 conn_xprt_read0_pending(h2c->conn)))
346 return 0;
347
348 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100349 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100350 return 1;
351
352 return 0;
353}
354
Willy Tarreau47b515a2018-12-21 16:09:41 +0100355/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200356static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100357{
358 if (!h2_recv_allowed(h2c))
359 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200360 if ((!consider_buffer || !b_data(&h2c->dbuf))
361 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100362 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200363 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100364}
365
366
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100367/* returns true if the front connection has too many conn_streams attached */
368static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200369{
Willy Tarreaua8754662018-12-23 20:43:58 +0100370 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200371}
372
Willy Tarreau44e973f2018-03-01 17:49:30 +0100373/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
374 * flags are used to figure what buffer was requested. It returns 1 if the
375 * allocation succeeds, in which case the connection is woken up, or 0 if it's
376 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200377 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100378static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200379{
380 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100381 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200382
Willy Tarreau44e973f2018-03-01 17:49:30 +0100383 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200384 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200385 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200386 return 1;
387 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200388
Willy Tarreau51330962019-05-26 09:38:07 +0200389 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100390 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200391
392 if (h2c->flags & H2_CF_DEM_MROOM) {
393 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200394 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200395 }
Willy Tarreau14398122017-09-22 14:26:04 +0200396 return 1;
397 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100398
399 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
400 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200401 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100402 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200403 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100404 return 1;
405 }
406
Willy Tarreau14398122017-09-22 14:26:04 +0200407 return 0;
408}
409
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200410static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200411{
412 struct buffer *buf = NULL;
413
Willy Tarreauc234ae32019-05-13 17:56:11 +0200414 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100415 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
416 h2c->buf_wait.target = h2c;
417 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100418 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100419 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100420 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200421 __conn_xprt_stop_recv(h2c->conn);
422 }
423 return buf;
424}
425
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200426static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200427{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200428 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100429 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200430 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200431 }
432}
433
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200434static inline void h2_release_mbuf(struct h2c *h2c)
435{
436 struct buffer *buf;
437 unsigned int count = 0;
438
439 while (b_size(buf = br_head_pick(h2c->mbuf))) {
440 b_free(buf);
441 count++;
442 }
443 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200444 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200445}
446
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100447/* returns the number of allocatable outgoing streams for the connection taking
448 * the last_sid and the reserved ones into account.
449 */
450static inline int h2_streams_left(const struct h2c *h2c)
451{
452 int ret;
453
454 /* consider the number of outgoing streams we're allowed to create before
455 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
456 * nb_reserved is the number of streams which don't yet have an ID.
457 */
458 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
459 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
460 if (ret < 0)
461 ret = 0;
462 return ret;
463}
464
Willy Tarreau00f18a32019-01-26 12:19:01 +0100465/* returns the number of streams in use on a connection to figure if it's
466 * idle or not. We check nb_cs and not nb_streams as the caller will want
467 * to know if it was the last one after a detach().
468 */
469static int h2_used_streams(struct connection *conn)
470{
471 struct h2c *h2c = conn->ctx;
472
473 return h2c->nb_cs;
474}
475
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100476/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100477static int h2_avail_streams(struct connection *conn)
478{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100479 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100480 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100481 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100482
Willy Tarreau6afec462019-01-28 06:40:19 +0100483 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
484 * streams on the connection.
485 */
486 if (h2c->last_sid >= 0)
487 return 0;
488
Willy Tarreau86949782019-01-31 10:42:05 +0100489 /* note: may be negative if a SETTINGS frame changes the limit */
490 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100491
492 /* we must also consider the limit imposed by stream IDs */
493 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100494 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100495 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100496 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
497 ret1 = MIN(ret1, ret2);
498 }
499 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100500}
501
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200502
Willy Tarreau62f52692017-10-08 23:01:42 +0200503/*****************************************************************/
504/* functions below are dedicated to the mux setup and management */
505/*****************************************************************/
506
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200507/* Initialize the mux once it's attached. For outgoing connections, the context
508 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200509 * connections from the fact that the context is still NULL (even during mux
510 * upgrades). <input> is always used as Input buffer and may contain data. It is
511 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200512 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200513static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
514 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200515{
516 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100517 struct task *t = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200518
Willy Tarreaubafbe012017-11-24 17:34:44 +0100519 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200520 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200521 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200522
Christopher Faulete9b70722019-04-08 10:46:02 +0200523 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200524 h2c->flags = H2_CF_IS_BACK;
525 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
526 if (tick_isset(prx->timeout.serverfin))
527 h2c->shut_timeout = prx->timeout.serverfin;
528 } else {
529 h2c->flags = H2_CF_NONE;
530 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
531 if (tick_isset(prx->timeout.clientfin))
532 h2c->shut_timeout = prx->timeout.clientfin;
533 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100534
Willy Tarreau0b37d652018-10-03 10:33:02 +0200535 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100536 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100537 if (tick_isset(h2c->timeout)) {
538 t = task_new(tid_bit);
539 if (!t)
540 goto fail;
541
542 h2c->task = t;
543 t->process = h2_timeout_task;
544 t->context = h2c;
545 t->expire = tick_add(now_ms, h2c->timeout);
546 }
Willy Tarreauea392822017-10-31 10:02:25 +0100547
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200548 h2c->wait_event.tasklet = tasklet_new();
549 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200550 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200551 h2c->wait_event.tasklet->process = h2_io_cb;
552 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100553 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200554
Willy Tarreau32218eb2017-09-22 08:07:25 +0200555 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
556 if (!h2c->ddht)
557 goto fail;
558
559 /* Initialise the context. */
560 h2c->st0 = H2_CS_PREFACE;
561 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100562 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200563 h2c->max_id = -1;
564 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100565 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200566 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100567 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200568 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100569 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100570 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200571
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200572 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200573 h2c->dsi = -1;
574 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100575
Willy Tarreau32218eb2017-09-22 08:07:25 +0200576 h2c->last_sid = -1;
577
Willy Tarreau51330962019-05-26 09:38:07 +0200578 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200579 h2c->miw = 65535; /* mux initial window size */
580 h2c->mws = 65535; /* mux window size */
581 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200582 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200583 LIST_INIT(&h2c->send_list);
584 LIST_INIT(&h2c->fctl_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200585 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100586 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200587
Willy Tarreau3f133572017-10-31 19:21:06 +0100588 if (t)
589 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100590
Willy Tarreau01b44822018-10-03 14:26:37 +0200591 if (h2c->flags & H2_CF_IS_BACK) {
592 /* FIXME: this is temporary, for outgoing connections we need
593 * to immediately allocate a stream until the code is modified
594 * so that the caller calls ->attach(). For now the outgoing cs
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100595 * is stored as conn->ctx by the caller.
Willy Tarreau01b44822018-10-03 14:26:37 +0200596 */
597 struct h2s *h2s;
598
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100599 h2s = h2c_bck_stream_new(h2c, conn->ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200600 if (!h2s)
601 goto fail_stream;
602 }
603
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100604 conn->ctx = h2c;
Willy Tarreau01b44822018-10-03 14:26:37 +0200605
Willy Tarreau0f383582018-10-03 14:22:21 +0200606 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200607 h2c_restart_reading(h2c, 1);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200608 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200609 fail_stream:
610 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200611 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200612 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200613 if (h2c->wait_event.tasklet)
614 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100615 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200616 fail_no_h2c:
Willy Tarreau32218eb2017-09-22 08:07:25 +0200617 return -1;
618}
619
Willy Tarreau751f2d02018-10-05 09:35:00 +0200620/* returns the next allocatable outgoing stream ID for the H2 connection, or
621 * -1 if no more is allocatable.
622 */
623static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
624{
625 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100626
627 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200628 id = -1;
629 return id;
630}
631
Willy Tarreau2373acc2017-10-12 17:35:14 +0200632/* returns the stream associated with id <id> or NULL if not found */
633static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
634{
635 struct eb32_node *node;
636
Willy Tarreau751f2d02018-10-05 09:35:00 +0200637 if (id == 0)
638 return (struct h2s *)h2_closed_stream;
639
Willy Tarreau2a856182017-05-16 15:20:39 +0200640 if (id > h2c->max_id)
641 return (struct h2s *)h2_idle_stream;
642
Willy Tarreau2373acc2017-10-12 17:35:14 +0200643 node = eb32_lookup(&h2c->streams_by_id, id);
644 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200645 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200646
647 return container_of(node, struct h2s, by_id);
648}
649
Christopher Faulet73c12072019-04-08 11:23:22 +0200650/* release function. This one should be called to free all resources allocated
651 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200652 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200653static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200654{
Christopher Faulet61840e72019-04-15 09:33:32 +0200655 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200656
Willy Tarreau32218eb2017-09-22 08:07:25 +0200657 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200658 /* The connection must be aattached to this mux to be released */
659 if (h2c->conn && h2c->conn->ctx == h2c)
660 conn = h2c->conn;
661
Willy Tarreau32218eb2017-09-22 08:07:25 +0200662 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200663
Willy Tarreau186e96e2019-05-28 17:21:18 +0200664 if (LIST_ADDED(&h2c->buf_wait.list)) {
665 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
666 LIST_DEL(&h2c->buf_wait.list);
667 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
668 }
Willy Tarreau14398122017-09-22 14:26:04 +0200669
Willy Tarreau44e973f2018-03-01 17:49:30 +0100670 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200671 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100672
Willy Tarreauea392822017-10-31 10:02:25 +0100673 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200674 h2c->task->context = NULL;
675 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100676 h2c->task = NULL;
677 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200678 if (h2c->wait_event.tasklet)
679 tasklet_free(h2c->wait_event.tasklet);
Olivier Houchard0e079372019-04-15 17:51:16 +0200680 if (h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100681 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200682 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100683
Willy Tarreaubafbe012017-11-24 17:34:44 +0100684 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200685 }
686
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200687 if (conn) {
688 conn->mux = NULL;
689 conn->ctx = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200690
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200691 conn_stop_tracking(conn);
692 conn_full_close(conn);
693 if (conn->destroy_cb)
694 conn->destroy_cb(conn);
695 conn_free(conn);
696 }
Willy Tarreau62f52692017-10-08 23:01:42 +0200697}
698
699
Willy Tarreau71681172017-10-23 14:39:06 +0200700/******************************************************/
701/* functions below are for the H2 protocol processing */
702/******************************************************/
703
704/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100705static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200706{
707 return h2s ? h2s->id : 0;
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 Tarreau3ccf4b22017-10-13 19:07:26 +0200948 h2s->mws = h2c->miw;
949 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 */
1324 if (h2c->dft == H2_FT_RST_STREAM) {
1325 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 Tarreau3421aba2017-07-27 15:41:03 +02001546/* Increase all streams' outgoing window size by the difference passed in
1547 * argument. This is needed upon receipt of the settings frame if the initial
1548 * window size is different. The difference may be negative and the resulting
1549 * window size as well, for the time it takes to receive some window updates.
1550 */
1551static void h2c_update_all_ws(struct h2c *h2c, int diff)
1552{
1553 struct h2s *h2s;
1554 struct eb32_node *node;
1555
1556 if (!diff)
1557 return;
1558
1559 node = eb32_first(&h2c->streams_by_id);
1560 while (node) {
1561 h2s = container_of(node, struct h2s, by_id);
1562 h2s->mws += diff;
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001563
1564 if (h2s->mws > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
1565 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02001566 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001567 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001568 }
1569
Willy Tarreau3421aba2017-07-27 15:41:03 +02001570 node = eb32_next(node);
1571 }
1572}
1573
1574/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1575 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001576 * return an error in h2c. The caller must have already verified frame length
1577 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001578 */
1579static int h2c_handle_settings(struct h2c *h2c)
1580{
1581 unsigned int offset;
1582 int error;
1583
1584 if (h2c->dff & H2_F_SETTINGS_ACK) {
1585 if (h2c->dfl) {
1586 error = H2_ERR_FRAME_SIZE_ERROR;
1587 goto fail;
1588 }
1589 return 1;
1590 }
1591
Willy Tarreau3421aba2017-07-27 15:41:03 +02001592 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001593 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001594 return 0;
1595
1596 /* parse the frame */
1597 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001598 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
1599 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001600
1601 switch (type) {
1602 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
1603 /* we need to update all existing streams with the
1604 * difference from the previous iws.
1605 */
1606 if (arg < 0) { // RFC7540#6.5.2
1607 error = H2_ERR_FLOW_CONTROL_ERROR;
1608 goto fail;
1609 }
1610 h2c_update_all_ws(h2c, arg - h2c->miw);
1611 h2c->miw = arg;
1612 break;
1613 case H2_SETTINGS_MAX_FRAME_SIZE:
1614 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
1615 error = H2_ERR_PROTOCOL_ERROR;
1616 goto fail;
1617 }
1618 h2c->mfs = arg;
1619 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01001620 case H2_SETTINGS_ENABLE_PUSH:
1621 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
1622 error = H2_ERR_PROTOCOL_ERROR;
1623 goto fail;
1624 }
1625 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001626 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
1627 if (h2c->flags & H2_CF_IS_BACK) {
1628 /* the limit is only for the backend; for the frontend it is our limit */
1629 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
1630 arg = h2_settings_max_concurrent_streams;
1631 h2c->streams_limit = arg;
1632 }
1633 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001634 }
1635 }
1636
1637 /* need to ACK this frame now */
1638 h2c->st0 = H2_CS_FRAME_A;
1639 return 1;
1640 fail:
Willy Tarreau22de8d32018-09-05 19:55:58 +02001641 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001642 h2c_error(h2c, error);
1643 return 0;
1644}
1645
1646/* try to send an ACK for a settings frame on the connection. Returns > 0 on
1647 * success or one of the h2_status values.
1648 */
1649static int h2c_ack_settings(struct h2c *h2c)
1650{
1651 struct buffer *res;
1652 char str[9];
1653 int ret = -1;
1654
1655 if (h2c_mux_busy(h2c, NULL)) {
1656 h2c->flags |= H2_CF_DEM_MBUSY;
1657 return 0;
1658 }
1659
Willy Tarreau9c218e72019-05-26 10:08:28 +02001660 memcpy(str,
1661 "\x00\x00\x00" /* length : 0 (no data) */
1662 "\x04" "\x01" /* type : 4, flags : ACK */
1663 "\x00\x00\x00\x00" /* stream ID */, 9);
1664
Willy Tarreaubcc45952019-05-26 10:05:50 +02001665 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001666 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001667 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02001668 h2c->flags |= H2_CF_MUX_MALLOC;
1669 h2c->flags |= H2_CF_DEM_MROOM;
1670 return 0;
1671 }
1672
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001673 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02001674 if (unlikely(ret <= 0)) {
1675 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001676 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1677 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001678 h2c->flags |= H2_CF_MUX_MFULL;
1679 h2c->flags |= H2_CF_DEM_MROOM;
1680 return 0;
1681 }
1682 else {
1683 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1684 return 0;
1685 }
1686 }
1687 return ret;
1688}
1689
Willy Tarreaucf68c782017-10-10 17:11:41 +02001690/* processes a PING frame and schedules an ACK if needed. The caller must pass
1691 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01001692 * missing data. The caller must have already verified frame length
1693 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02001694 */
1695static int h2c_handle_ping(struct h2c *h2c)
1696{
Willy Tarreaucf68c782017-10-10 17:11:41 +02001697 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01001698 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02001699 h2c->st0 = H2_CS_FRAME_A;
1700 return 1;
1701}
1702
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001703/* Try to send a window update for stream id <sid> and value <increment>.
1704 * Returns > 0 on success or zero on missing room or failure. It may return an
1705 * error in h2c.
1706 */
1707static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
1708{
1709 struct buffer *res;
1710 char str[13];
1711 int ret = -1;
1712
1713 if (h2c_mux_busy(h2c, NULL)) {
1714 h2c->flags |= H2_CF_DEM_MBUSY;
1715 return 0;
1716 }
1717
Willy Tarreau9c218e72019-05-26 10:08:28 +02001718 /* length: 4, type: 8, flags: none */
1719 memcpy(str, "\x00\x00\x04\x08\x00", 5);
1720 write_n32(str + 5, sid);
1721 write_n32(str + 9, increment);
1722
Willy Tarreaubcc45952019-05-26 10:05:50 +02001723 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001724 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001725 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001726 h2c->flags |= H2_CF_MUX_MALLOC;
1727 h2c->flags |= H2_CF_DEM_MROOM;
1728 return 0;
1729 }
1730
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001731 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001732 if (unlikely(ret <= 0)) {
1733 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001734 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1735 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001736 h2c->flags |= H2_CF_MUX_MFULL;
1737 h2c->flags |= H2_CF_DEM_MROOM;
1738 return 0;
1739 }
1740 else {
1741 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1742 return 0;
1743 }
1744 }
1745 return ret;
1746}
1747
1748/* try to send pending window update for the connection. It's safe to call it
1749 * with no pending updates. Returns > 0 on success or zero on missing room or
1750 * failure. It may return an error in h2c.
1751 */
1752static int h2c_send_conn_wu(struct h2c *h2c)
1753{
1754 int ret = 1;
1755
1756 if (h2c->rcvd_c <= 0)
1757 return 1;
1758
Willy Tarreau97aaa672018-12-23 09:49:04 +01001759 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
1760 /* increase the advertised connection window to 2G on
1761 * first update.
1762 */
1763 h2c->flags |= H2_CF_WINDOW_OPENED;
1764 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
1765 }
1766
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02001767 /* send WU for the connection */
1768 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
1769 if (ret > 0)
1770 h2c->rcvd_c = 0;
1771
1772 return ret;
1773}
1774
1775/* try to send pending window update for the current dmux stream. It's safe to
1776 * call it with no pending updates. Returns > 0 on success or zero on missing
1777 * room or failure. It may return an error in h2c.
1778 */
1779static int h2c_send_strm_wu(struct h2c *h2c)
1780{
1781 int ret = 1;
1782
1783 if (h2c->rcvd_s <= 0)
1784 return 1;
1785
1786 /* send WU for the stream */
1787 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
1788 if (ret > 0)
1789 h2c->rcvd_s = 0;
1790
1791 return ret;
1792}
1793
Willy Tarreaucf68c782017-10-10 17:11:41 +02001794/* try to send an ACK for a ping frame on the connection. Returns > 0 on
1795 * success, 0 on missing data or one of the h2_status values.
1796 */
1797static int h2c_ack_ping(struct h2c *h2c)
1798{
1799 struct buffer *res;
1800 char str[17];
1801 int ret = -1;
1802
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001803 if (b_data(&h2c->dbuf) < 8)
Willy Tarreaucf68c782017-10-10 17:11:41 +02001804 return 0;
1805
1806 if (h2c_mux_busy(h2c, NULL)) {
1807 h2c->flags |= H2_CF_DEM_MBUSY;
1808 return 0;
1809 }
1810
Willy Tarreaucf68c782017-10-10 17:11:41 +02001811 memcpy(str,
1812 "\x00\x00\x08" /* length : 8 (same payload) */
1813 "\x06" "\x01" /* type : 6, flags : ACK */
1814 "\x00\x00\x00\x00" /* stream ID */, 9);
1815
1816 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001817 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02001818
Willy Tarreau9c218e72019-05-26 10:08:28 +02001819 res = br_tail(h2c->mbuf);
1820 retry:
1821 if (!h2_get_buf(h2c, res)) {
1822 h2c->flags |= H2_CF_MUX_MALLOC;
1823 h2c->flags |= H2_CF_DEM_MROOM;
1824 return 0;
1825 }
1826
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001827 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02001828 if (unlikely(ret <= 0)) {
1829 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001830 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1831 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02001832 h2c->flags |= H2_CF_MUX_MFULL;
1833 h2c->flags |= H2_CF_DEM_MROOM;
1834 return 0;
1835 }
1836 else {
1837 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1838 return 0;
1839 }
1840 }
1841 return ret;
1842}
1843
Willy Tarreau26f95952017-07-27 17:18:30 +02001844/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
1845 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01001846 * h2c or h2s. The caller must have already verified frame length and stream ID
1847 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02001848 */
1849static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
1850{
1851 int32_t inc;
1852 int error;
1853
Willy Tarreau26f95952017-07-27 17:18:30 +02001854 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001855 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau26f95952017-07-27 17:18:30 +02001856 return 0;
1857
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001858 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02001859
1860 if (h2c->dsi != 0) {
1861 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02001862
1863 /* it's not an error to receive WU on a closed stream */
1864 if (h2s->st == H2_SS_CLOSED)
1865 return 1;
1866
1867 if (!inc) {
1868 error = H2_ERR_PROTOCOL_ERROR;
1869 goto strm_err;
1870 }
1871
1872 if (h2s->mws >= 0 && h2s->mws + inc < 0) {
1873 error = H2_ERR_FLOW_CONTROL_ERROR;
1874 goto strm_err;
1875 }
1876
1877 h2s->mws += inc;
1878 if (h2s->mws > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
1879 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02001880 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Olivier Houcharddddfe312018-10-10 18:51:00 +02001881 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02001882 }
1883 }
1884 else {
1885 /* connection window update */
1886 if (!inc) {
1887 error = H2_ERR_PROTOCOL_ERROR;
1888 goto conn_err;
1889 }
1890
1891 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
1892 error = H2_ERR_FLOW_CONTROL_ERROR;
1893 goto conn_err;
1894 }
1895
1896 h2c->mws += inc;
1897 }
1898
1899 return 1;
1900
1901 conn_err:
1902 h2c_error(h2c, error);
1903 return 0;
1904
1905 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01001906 h2s_error(h2s, error);
1907 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau26f95952017-07-27 17:18:30 +02001908 return 0;
1909}
1910
Willy Tarreaue96b0922017-10-30 00:28:29 +01001911/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01001912 * the last ID. Returns > 0 on success or zero on missing data. The caller must
1913 * have already verified frame length and stream ID validity. Described in
1914 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01001915 */
1916static int h2c_handle_goaway(struct h2c *h2c)
1917{
Willy Tarreaue96b0922017-10-30 00:28:29 +01001918 int last;
1919
Willy Tarreaue96b0922017-10-30 00:28:29 +01001920 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001921 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaue96b0922017-10-30 00:28:29 +01001922 return 0;
1923
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001924 last = h2_get_n32(&h2c->dbuf, 0);
1925 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01001926 if (h2c->last_sid < 0)
1927 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02001928 h2_wake_some_streams(h2c, last);
Willy Tarreaue96b0922017-10-30 00:28:29 +01001929 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01001930}
1931
Willy Tarreau92153fc2017-12-03 19:46:19 +01001932/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01001933 * invalid. Returns > 0 on success or zero on missing data. It may return an
1934 * error in h2c. The caller must have already verified frame length and stream
1935 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01001936 */
1937static int h2c_handle_priority(struct h2c *h2c)
1938{
Willy Tarreau92153fc2017-12-03 19:46:19 +01001939 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001940 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau92153fc2017-12-03 19:46:19 +01001941 return 0;
1942
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001943 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01001944 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01001945 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
1946 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001947 }
1948 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01001949}
1950
Willy Tarreaucd234e92017-08-18 10:59:39 +02001951/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01001952 * Returns > 0 on success or zero on missing data. The caller must have already
1953 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02001954 */
1955static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
1956{
Willy Tarreaucd234e92017-08-18 10:59:39 +02001957 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001958 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreaucd234e92017-08-18 10:59:39 +02001959 return 0;
1960
1961 /* late RST, already handled */
1962 if (h2s->st == H2_SS_CLOSED)
1963 return 1;
1964
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001965 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01001966 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001967
1968 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01001969 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01001970 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02001971 }
1972
1973 h2s->flags |= H2_SF_RST_RCVD;
1974 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02001975}
1976
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001977/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
1978 * It may return an error in h2c or h2s. The caller must consider that the
1979 * return value is the new h2s in case one was allocated (most common case).
1980 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02001981 * errors here are reported as connection errors since it's impossible to
1982 * recover from such errors after the compression context has been altered.
1983 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001984static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02001985{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01001986 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01001987 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01001988 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02001989 int error;
1990
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001991 if (!b_size(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001992 return NULL; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02001993
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001994 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau2a761dc2018-02-26 18:50:57 +01001995 return NULL; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02001996
1997 /* now either the frame is complete or the buffer is complete */
1998 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01001999 /* The stream exists/existed, this must be a trailers frame */
2000 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002001 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2002 /* unrecoverable error ? */
2003 if (h2c->st0 >= H2_CS_ERROR)
2004 goto out;
2005
2006 if (error == 0)
2007 goto out; // missing data
2008
2009 if (error < 0) {
2010 /* Failed to decode this frame (e.g. too large request)
2011 * but the HPACK decompressor is still synchronized.
2012 */
2013 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2014 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002015 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002016 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002017 goto done;
2018 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002019 /* the connection was already killed by an RST, let's consume
2020 * the data and send another RST.
2021 */
2022 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2023 h2s = (struct h2s*)h2_error_stream;
2024 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002025 }
2026 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2027 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2028 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002029 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002030 goto conn_err;
2031 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002032 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2033 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002034
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002035 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002036
Willy Tarreau25919232019-01-03 14:48:18 +01002037 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002038 if (h2c->st0 >= H2_CS_ERROR)
2039 goto out;
2040
Willy Tarreau25919232019-01-03 14:48:18 +01002041 if (error <= 0) {
2042 if (error == 0)
2043 goto out; // missing data
2044
2045 /* Failed to decode this stream (e.g. too large request)
2046 * but the HPACK decompressor is still synchronized.
2047 */
2048 h2s = (struct h2s*)h2_error_stream;
2049 goto send_rst;
2050 }
2051
Willy Tarreau22de8d32018-09-05 19:55:58 +02002052 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002053 * positively from h2c_frt_stream_new(), the stream will report the error,
2054 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002055 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002056 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002057 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002058 h2s = (struct h2s*)h2_refused_stream;
2059 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002060 }
2061
2062 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002063 h2s->rxbuf = rxbuf;
2064 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002065 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002066
Willy Tarreau88d138e2019-01-02 19:38:14 +01002067 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002068 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002069 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002070
2071 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002072 if (h2s->st == H2_SS_OPEN)
2073 h2s->st = H2_SS_HREM;
2074 else
2075 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002076 }
2077
Willy Tarreau3a429f02019-01-03 11:41:50 +01002078 /* update the max stream ID if the request is being processed */
2079 if (h2s->id > h2c->max_id)
2080 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002081
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002082 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002083
2084 conn_err:
2085 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002086 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002087
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002088 out:
2089 h2_release_buf(h2c, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002090 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002091
2092 send_rst:
2093 /* make the demux send an RST for the current stream. We may only
2094 * do this if we're certain that the HEADERS frame was properly
2095 * decompressed so that the HPACK decoder is still kept up to date.
2096 */
2097 h2_release_buf(h2c, &rxbuf);
2098 h2c->st0 = H2_CS_FRAME_E;
2099 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002100}
2101
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002102/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2103 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2104 * errors here are reported as connection errors since it's impossible to
2105 * recover from such errors after the compression context has been altered.
2106 */
2107static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2108{
2109 int error;
2110
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002111 if (!b_size(&h2c->dbuf))
2112 return NULL; // empty buffer
2113
2114 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
2115 return NULL; // incomplete frame
2116
Willy Tarreau1915ca22019-01-24 11:49:37 +01002117 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002118
Willy Tarreau25919232019-01-03 14:48:18 +01002119 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002120 if (h2c->st0 >= H2_CS_ERROR)
2121 return NULL;
2122
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002123 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2124 /* RFC7540#5.1 */
2125 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2126 h2c->st0 = H2_CS_FRAME_E;
2127 return NULL;
2128 }
2129
Willy Tarreau25919232019-01-03 14:48:18 +01002130 if (error <= 0) {
2131 if (error == 0)
2132 return NULL; // missing data
2133
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002134 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002135 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002136 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau25919232019-01-03 14:48:18 +01002137 return NULL;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002138 }
2139
Christopher Fauletfa922f02019-05-07 10:55:17 +02002140 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002141 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002142
Willy Tarreau927b88b2019-03-04 08:03:25 +01002143 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002144 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002145 else if (h2s->flags & H2_SF_ES_RCVD) {
2146 if (h2s->st == H2_SS_OPEN)
2147 h2s->st = H2_SS_HREM;
2148 else if (h2s->st == H2_SS_HLOC)
2149 h2s_close(h2s);
2150 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002151
2152 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002153}
2154
Willy Tarreau454f9052017-10-26 19:40:35 +02002155/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2156 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2157 */
2158static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2159{
2160 int error;
2161
2162 /* note that empty DATA frames are perfectly valid and sometimes used
2163 * to signal an end of stream (with the ES flag).
2164 */
2165
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002166 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau454f9052017-10-26 19:40:35 +02002167 return 0; // empty buffer
2168
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002169 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau454f9052017-10-26 19:40:35 +02002170 return 0; // incomplete frame
2171
2172 /* now either the frame is complete or the buffer is complete */
2173
Willy Tarreau454f9052017-10-26 19:40:35 +02002174 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2175 /* RFC7540#6.1 */
2176 error = H2_ERR_STREAM_CLOSED;
2177 goto strm_err;
2178 }
2179
Willy Tarreau1915ca22019-01-24 11:49:37 +01002180 if ((h2s->flags & H2_SF_DATA_CLEN) && h2c->dfl > h2s->body_len) {
2181 /* RFC7540#8.1.2 */
2182 error = H2_ERR_PROTOCOL_ERROR;
2183 goto strm_err;
2184 }
2185
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002186 if (!h2_frt_transfer_data(h2s))
2187 return 0;
2188
Willy Tarreau454f9052017-10-26 19:40:35 +02002189 /* call the upper layers to process the frame, then let the upper layer
2190 * notify the stream about any change.
2191 */
2192 if (!h2s->cs) {
2193 error = H2_ERR_STREAM_CLOSED;
2194 goto strm_err;
2195 }
2196
Willy Tarreau8f650c32017-11-21 19:36:21 +01002197 if (h2c->st0 >= H2_CS_ERROR)
2198 return 0;
2199
Willy Tarreau721c9742017-11-07 11:05:42 +01002200 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002201 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002202 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002203 }
2204
2205 /* check for completion : the callee will change this to FRAME_A or
2206 * FRAME_H once done.
2207 */
2208 if (h2c->st0 == H2_CS_FRAME_P)
2209 return 0;
2210
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002211 /* last frame */
2212 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002213 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002214 if (h2s->st == H2_SS_OPEN)
2215 h2s->st = H2_SS_HREM;
2216 else
2217 h2s_close(h2s);
2218
Willy Tarreau1915ca22019-01-24 11:49:37 +01002219 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2220 /* RFC7540#8.1.2 */
2221 error = H2_ERR_PROTOCOL_ERROR;
2222 goto strm_err;
2223 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002224 }
2225
Willy Tarreau454f9052017-10-26 19:40:35 +02002226 return 1;
2227
Willy Tarreau454f9052017-10-26 19:40:35 +02002228 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002229 h2s_error(h2s, error);
2230 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002231 return 0;
2232}
2233
Willy Tarreaubc933932017-10-09 16:21:43 +02002234/* process Rx frames to be demultiplexed */
2235static void h2_process_demux(struct h2c *h2c)
2236{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002237 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002238 struct h2_fh hdr;
2239 unsigned int padlen = 0;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002240
Willy Tarreau081d4722017-05-16 21:51:05 +02002241 if (h2c->st0 >= H2_CS_ERROR)
2242 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002243
2244 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2245 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau01b44822018-10-03 14:26:37 +02002246 if (h2c->flags & H2_CF_IS_BACK)
2247 return;
Willy Tarreau52eed752017-09-22 15:05:09 +02002248 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2249 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002250 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau52eed752017-09-22 15:05:09 +02002251 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002252 sess_log(h2c->conn->owner);
2253 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002254 goto fail;
2255 }
2256
2257 h2c->max_id = 0;
2258 h2c->st0 = H2_CS_SETTINGS1;
2259 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002260
2261 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002262 /* ensure that what is pending is a valid SETTINGS frame
2263 * without an ACK.
2264 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002265 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002266 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002267 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002268 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002269 sess_log(h2c->conn->owner);
2270 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002271 goto fail;
2272 }
2273
2274 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2275 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2276 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2277 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002278 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002279 goto fail;
2280 }
2281
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002282 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002283 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2284 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2285 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002286 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002287 goto fail;
2288 }
2289
Willy Tarreau3bf69182018-12-21 15:34:50 +01002290 /* that's OK, switch to FRAME_P to process it. This is
2291 * a SETTINGS frame whose header has already been
2292 * deleted above.
2293 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002294 padlen = 0;
2295 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002296 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002297 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002298
2299 /* process as many incoming frames as possible below */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002300 while (b_data(&h2c->dbuf)) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002301 int ret = 0;
2302
2303 if (h2c->st0 >= H2_CS_ERROR)
2304 break;
2305
2306 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002307 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002308 break;
2309
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002310 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002311 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002312 if (!h2c->nb_streams) {
2313 /* only log if no other stream can report the error */
2314 sess_log(h2c->conn->owner);
2315 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002316 break;
2317 }
2318
Willy Tarreau3bf69182018-12-21 15:34:50 +01002319 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2320 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2321 * we read the pad length and drop it from the remaining
2322 * payload (one byte + the 9 remaining ones = 10 total
2323 * removed), so we have a frame payload starting after the
2324 * pad len. Flow controlled frames (DATA) also count the
2325 * padlen in the flow control, so it must be adjusted.
2326 */
2327 if (hdr.len < 1) {
2328 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2329 sess_log(h2c->conn->owner);
2330 goto fail;
2331 }
2332 hdr.len--;
2333
2334 if (b_data(&h2c->dbuf) < 10)
2335 break; // missing padlen
2336
2337 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
2338
2339 if (padlen > hdr.len) {
2340 /* RFC7540#6.1 : pad length = length of
2341 * frame payload or greater => error.
2342 */
2343 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2344 sess_log(h2c->conn->owner);
2345 goto fail;
2346 }
2347
2348 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
2349 h2c->rcvd_c++;
2350 h2c->rcvd_s++;
2351 }
2352 b_del(&h2c->dbuf, 1);
2353 }
2354 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002355
2356 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002357 h2c->dfl = hdr.len;
2358 h2c->dsi = hdr.sid;
2359 h2c->dft = hdr.ft;
2360 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002361 h2c->dpl = padlen;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002362 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002363
2364 /* check for minimum basic frame format validity */
2365 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
2366 if (ret != H2_ERR_NO_ERROR) {
2367 h2c_error(h2c, ret);
2368 sess_log(h2c->conn->owner);
2369 goto fail;
2370 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002371 }
2372
2373 /* Only H2_CS_FRAME_P and H2_CS_FRAME_A here */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002374 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
2375
Willy Tarreau567beb82018-12-18 16:52:44 +01002376 if (tmp_h2s != h2s && h2s && h2s->cs &&
2377 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002378 conn_xprt_read0_pending(h2c->conn) ||
2379 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002380 (h2s->flags & H2_SF_ES_RCVD) ||
2381 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002382 /* we may have to signal the upper layers */
2383 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002384 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002385 }
2386 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002387
Willy Tarreaud7901432017-12-29 11:34:40 +01002388 if (h2c->st0 == H2_CS_FRAME_E)
2389 goto strm_err;
2390
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002391 if (h2s->st == H2_SS_IDLE &&
2392 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2393 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2394 * this state MUST be treated as a connection error
2395 */
2396 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002397 if (!h2c->nb_streams) {
2398 /* only log if no other stream can report the error */
2399 sess_log(h2c->conn->owner);
2400 }
Willy Tarreauf65b80d2017-10-30 11:46:49 +01002401 break;
2402 }
2403
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002404 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2405 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2406 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002407 * this state MUST be treated as a stream error.
2408 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2409 * PUSH_PROMISE/CONTINUATION cause connection errors.
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002410 */
Willy Tarreau5b4eae32019-01-24 09:43:32 +01002411 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2412 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2413 else
2414 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002415 goto strm_err;
2416 }
2417
Willy Tarreauab837502017-12-27 15:07:30 +01002418 /* Below the management of frames received in closed state is a
2419 * bit hackish because the spec makes strong differences between
2420 * streams closed by receiving RST, sending RST, and seeing ES
2421 * in both directions. In addition to this, the creation of a
2422 * new stream reusing the identifier of a closed one will be
2423 * detected here. Given that we cannot keep track of all closed
2424 * streams forever, we consider that unknown closed streams were
2425 * closed on RST received, which allows us to respond with an
2426 * RST without breaking the connection (eg: to abort a transfer).
2427 * Some frames have to be silently ignored as well.
2428 */
2429 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
Willy Tarreau3ad5d312019-01-29 18:33:26 +01002430 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreauab837502017-12-27 15:07:30 +01002431 /* #5.1.1: The identifier of a newly
2432 * established stream MUST be numerically
2433 * greater than all streams that the initiating
2434 * endpoint has opened or reserved. This
2435 * governs streams that are opened using a
2436 * HEADERS frame and streams that are reserved
2437 * using PUSH_PROMISE. An endpoint that
2438 * receives an unexpected stream identifier
2439 * MUST respond with a connection error.
2440 */
2441 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2442 goto strm_err;
2443 }
2444
Willy Tarreau8d9ac3e2019-01-30 16:58:30 +01002445 if (h2s->flags & H2_SF_RST_RCVD && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreauab837502017-12-27 15:07:30 +01002446 /* RFC7540#5.1:closed: an endpoint that
2447 * receives any frame other than PRIORITY after
2448 * receiving a RST_STREAM MUST treat that as a
2449 * stream error of type STREAM_CLOSED.
2450 *
2451 * Note that old streams fall into this category
2452 * and will lead to an RST being sent.
Willy Tarreau8d9ac3e2019-01-30 16:58:30 +01002453 *
2454 * However, we cannot generalize this to all frame types. Those
2455 * carrying compression state must still be processed before
2456 * being dropped or we'll desynchronize the decoder. This can
2457 * happen with request trailers received after sending an
2458 * RST_STREAM, or with header/trailers responses received after
2459 * sending RST_STREAM (aborted stream).
Willy Tarreauab837502017-12-27 15:07:30 +01002460 */
2461 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2462 h2c->st0 = H2_CS_FRAME_E;
2463 goto strm_err;
2464 }
2465
2466 /* RFC7540#5.1:closed: if this state is reached as a
2467 * result of sending a RST_STREAM frame, the peer that
2468 * receives the RST_STREAM might have already sent
2469 * frames on the stream that cannot be withdrawn. An
2470 * endpoint MUST ignore frames that it receives on
2471 * closed streams after it has sent a RST_STREAM
2472 * frame. An endpoint MAY choose to limit the period
2473 * over which it ignores frames and treat frames that
2474 * arrive after this time as being in error.
2475 */
Willy Tarreau24ff1f82019-01-30 19:20:09 +01002476 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
Willy Tarreauab837502017-12-27 15:07:30 +01002477 /* RFC7540#5.1:closed: any frame other than
2478 * PRIO/WU/RST in this state MUST be treated as
2479 * a connection error
2480 */
2481 if (h2c->dft != H2_FT_RST_STREAM &&
2482 h2c->dft != H2_FT_PRIORITY &&
2483 h2c->dft != H2_FT_WINDOW_UPDATE) {
2484 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
2485 goto strm_err;
2486 }
2487 }
2488 }
2489
Willy Tarreauc0da1962017-10-30 18:38:00 +01002490#if 0
2491 // problem below: it is not possible to completely ignore such
2492 // streams as we need to maintain the compression state as well
2493 // and for this we need to completely process these frames (eg:
2494 // HEADERS frames) as well as counting DATA frames to emit
2495 // proper WINDOW UPDATES and ensure the connection doesn't stall.
2496 // This is a typical case of layer violation where the
2497 // transported contents are critical to the connection's
2498 // validity and must be ignored at the same time :-(
2499
2500 /* graceful shutdown, ignore streams whose ID is higher than
2501 * the one advertised in GOAWAY. RFC7540#6.8.
2502 */
2503 if (unlikely(h2c->last_sid >= 0) && h2c->dsi > h2c->last_sid) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002504 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2505 b_del(&h2c->dbuf, ret);
Willy Tarreauc0da1962017-10-30 18:38:00 +01002506 h2c->dfl -= ret;
2507 ret = h2c->dfl == 0;
2508 goto strm_err;
2509 }
2510#endif
2511
Willy Tarreau7e98c052017-10-10 15:56:59 +02002512 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002513 case H2_FT_SETTINGS:
2514 if (h2c->st0 == H2_CS_FRAME_P)
2515 ret = h2c_handle_settings(h2c);
2516
2517 if (h2c->st0 == H2_CS_FRAME_A)
2518 ret = h2c_ack_settings(h2c);
2519 break;
2520
Willy Tarreaucf68c782017-10-10 17:11:41 +02002521 case H2_FT_PING:
2522 if (h2c->st0 == H2_CS_FRAME_P)
2523 ret = h2c_handle_ping(h2c);
2524
2525 if (h2c->st0 == H2_CS_FRAME_A)
2526 ret = h2c_ack_ping(h2c);
2527 break;
2528
Willy Tarreau26f95952017-07-27 17:18:30 +02002529 case H2_FT_WINDOW_UPDATE:
2530 if (h2c->st0 == H2_CS_FRAME_P)
2531 ret = h2c_handle_window_update(h2c, h2s);
2532 break;
2533
Willy Tarreau61290ec2017-10-17 08:19:21 +02002534 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01002535 /* RFC7540#6.10: CONTINUATION may only be preceeded by
2536 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
2537 * frames' parsers consume all following CONTINUATION
2538 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02002539 */
Willy Tarreauea18f862018-12-22 20:19:26 +01002540 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2541 sess_log(h2c->conn->owner);
2542 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02002543
Willy Tarreau13278b42017-10-13 19:23:14 +02002544 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002545 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002546 if (h2c->flags & H2_CF_IS_BACK)
2547 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
2548 else
2549 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002550 if (tmp_h2s) {
2551 h2s = tmp_h2s;
2552 ret = 1;
2553 }
2554 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002555 break;
2556
Willy Tarreau454f9052017-10-26 19:40:35 +02002557 case H2_FT_DATA:
2558 if (h2c->st0 == H2_CS_FRAME_P)
2559 ret = h2c_frt_handle_data(h2c, h2s);
2560
2561 if (h2c->st0 == H2_CS_FRAME_A)
2562 ret = h2c_send_strm_wu(h2c);
2563 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002564
Willy Tarreau92153fc2017-12-03 19:46:19 +01002565 case H2_FT_PRIORITY:
2566 if (h2c->st0 == H2_CS_FRAME_P)
2567 ret = h2c_handle_priority(h2c);
2568 break;
2569
Willy Tarreaucd234e92017-08-18 10:59:39 +02002570 case H2_FT_RST_STREAM:
2571 if (h2c->st0 == H2_CS_FRAME_P)
2572 ret = h2c_handle_rst_stream(h2c, h2s);
2573 break;
2574
Willy Tarreaue96b0922017-10-30 00:28:29 +01002575 case H2_FT_GOAWAY:
2576 if (h2c->st0 == H2_CS_FRAME_P)
2577 ret = h2c_handle_goaway(h2c);
2578 break;
2579
Willy Tarreau1c661982017-10-30 13:52:01 +01002580 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02002581 default:
2582 /* drop frames that we ignore. They may be larger than
2583 * the buffer so we drain all of their contents until
2584 * we reach the end.
2585 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002586 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
2587 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002588 h2c->dfl -= ret;
2589 ret = h2c->dfl == 0;
2590 }
2591
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002592 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01002593 /* We may have to send an RST if not done yet */
2594 if (h2s->st == H2_SS_ERROR)
2595 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002596
Willy Tarreaua20a5192017-12-27 11:02:06 +01002597 if (h2c->st0 == H2_CS_FRAME_E)
2598 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002599
Willy Tarreau7e98c052017-10-10 15:56:59 +02002600 /* error or missing data condition met above ? */
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002601 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02002602 break;
2603
2604 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002605 b_del(&h2c->dbuf, h2c->dfl);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002606 h2c->st0 = H2_CS_FRAME_H;
2607 }
2608 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002609
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002610 if (h2c->rcvd_c > 0 &&
2611 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM)))
2612 h2c_send_conn_wu(h2c);
2613
Willy Tarreau52eed752017-09-22 15:05:09 +02002614 fail:
2615 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01002616 if (h2s && h2s->cs &&
2617 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002618 conn_xprt_read0_pending(h2c->conn) ||
2619 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002620 (h2s->flags & H2_SF_ES_RCVD) ||
2621 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002622 /* we may have to signal the upper layers */
2623 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002624 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002625 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01002626
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02002627 h2c_restart_reading(h2c, 0);
Willy Tarreaubc933932017-10-09 16:21:43 +02002628}
2629
2630/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
2631 * the end.
2632 */
2633static int h2_process_mux(struct h2c *h2c)
2634{
Olivier Houchard998410a2019-04-15 19:23:37 +02002635 struct h2s *h2s, *h2s_back;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002636
Willy Tarreau01b44822018-10-03 14:26:37 +02002637 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2638 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
2639 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
2640 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
2641 if (h2c->st0 == H2_CS_ERROR) {
2642 h2c->st0 = H2_CS_ERROR2;
2643 sess_log(h2c->conn->owner);
2644 }
2645 goto fail;
2646 }
2647 h2c->st0 = H2_CS_SETTINGS1;
2648 }
2649 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01002650 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau01b44822018-10-03 14:26:37 +02002651 return 1;
2652 }
2653
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002654 /* start by sending possibly pending window updates */
2655 if (h2c->rcvd_c > 0 &&
2656 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
2657 h2c_send_conn_wu(h2c) < 0)
2658 goto fail;
2659
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002660 /* First we always process the flow control list because the streams
2661 * waiting there were already elected for immediate emission but were
2662 * blocked just on this.
2663 */
2664
Olivier Houchard998410a2019-04-15 19:23:37 +02002665 list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002666 if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY ||
2667 h2c->st0 >= H2_CS_ERROR)
2668 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002669
Willy Tarreauc234ae32019-05-13 17:56:11 +02002670 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002671 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002672
Olivier Houchardfa8aa862018-10-10 18:25:41 +02002673 h2s->flags &= ~H2_SF_BLK_ANY;
Olivier Houchard998410a2019-04-15 19:23:37 +02002674 /* For some reason, the upper layer failed to subsribe again,
2675 * so remove it from the send_list
2676 */
2677 if (!h2s->send_wait) {
2678 LIST_DEL_INIT(&h2s->list);
2679 continue;
2680 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002681 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01002682 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002683 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002684 }
2685
Olivier Houchard998410a2019-04-15 19:23:37 +02002686 list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002687 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
2688 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002689
Willy Tarreauc234ae32019-05-13 17:56:11 +02002690 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002691 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002692
Olivier Houchard998410a2019-04-15 19:23:37 +02002693 /* For some reason, the upper layer failed to subsribe again,
2694 * so remove it from the send_list
2695 */
2696 if (!h2s->send_wait) {
2697 LIST_DEL_INIT(&h2s->list);
2698 continue;
2699 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02002700 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002701 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01002702 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002703 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02002704 }
2705
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002706 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01002707 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02002708 if (h2c->st0 == H2_CS_ERROR) {
2709 if (h2c->max_id >= 0) {
2710 h2c_send_goaway_error(h2c, NULL);
2711 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
2712 return 0;
2713 }
2714
2715 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
2716 }
2717 return 1;
2718 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002719 return (1);
Willy Tarreaubc933932017-10-09 16:21:43 +02002720}
2721
Willy Tarreau62f52692017-10-08 23:01:42 +02002722
Willy Tarreau479998a2018-11-18 06:30:59 +01002723/* Attempt to read data, and subscribe if none available.
2724 * The function returns 1 if data has been received, otherwise zero.
2725 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002726static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002727{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002728 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002729 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002730 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02002731 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002732
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002733 if (h2c->wait_event.events & SUB_RETRY_RECV)
Olivier Houchard81a15af2018-10-19 17:26:49 +02002734 return (b_data(&h2c->dbuf));
Olivier Houchardaf4021e2018-08-09 13:06:55 +02002735
Willy Tarreau315d8072017-12-10 22:17:57 +01002736 if (!h2_recv_allowed(h2c))
Olivier Houchard81a15af2018-10-19 17:26:49 +02002737 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002738
Willy Tarreau44e973f2018-03-01 17:49:30 +01002739 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002740 if (!buf) {
2741 h2c->flags |= H2_CF_DEM_DALLOC;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002742 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02002743 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02002744
Olivier Houchard7505f942018-08-21 18:10:44 +02002745 do {
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002746 b_realign_if_empty(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01002747 if (!b_data(buf) && (h2c->proxy->options2 & PR_O2_USE_HTX)) {
2748 /* HTX in use : try to pre-align the buffer like the
2749 * rxbufs will be to optimize memory copies. We'll make
2750 * sure that the frame header lands at the end of the
2751 * HTX block to alias it upon recv. We cannot use the
2752 * head because rcv_buf() will realign the buffer if
2753 * it's empty. Thus we cheat and pretend we already
2754 * have a few bytes there.
2755 */
2756 max = buf_room_for_htx_data(buf) + 9;
Willy Tarreauc0960d12018-12-14 10:59:15 +01002757 buf->head = sizeof(struct htx) - 9;
Willy Tarreau2a59e872018-12-12 08:23:47 +01002758 }
2759 else
2760 max = b_room(buf);
2761
Olivier Houchard7505f942018-08-21 18:10:44 +02002762 if (max)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002763 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0);
Olivier Houchard7505f942018-08-21 18:10:44 +02002764 else
2765 ret = 0;
2766 } while (ret > 0);
Willy Tarreaua2af5122017-10-09 11:56:46 +02002767
Olivier Houchard53216e72018-10-10 15:46:36 +02002768 if (h2_recv_allowed(h2c) && (b_data(buf) < buf->size))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002769 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Olivier Houchard81a15af2018-10-19 17:26:49 +02002770
Olivier Houcharda1411e62018-08-17 18:42:48 +02002771 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01002772 h2_release_buf(h2c, &h2c->dbuf);
Olivier Houchard46677732018-11-29 17:06:17 +01002773 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002774 }
2775
Willy Tarreaub7b5fe12018-06-18 13:33:09 +02002776 if (b_data(buf) == buf->size)
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002777 h2c->flags |= H2_CF_DEM_DFULL;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002778 return 1;
Willy Tarreau62f52692017-10-08 23:01:42 +02002779}
2780
Willy Tarreau479998a2018-11-18 06:30:59 +01002781/* Try to send data if possible.
2782 * The function returns 1 if data have been sent, otherwise zero.
2783 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002784static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002785{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002786 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02002787 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002788 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002789
2790 if (conn->flags & CO_FL_ERROR)
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01002791 return 1;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002792
Olivier Houchard7505f942018-08-21 18:10:44 +02002793
Willy Tarreaua2af5122017-10-09 11:56:46 +02002794 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
2795 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002796 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002797 }
2798
Willy Tarreaubc933932017-10-09 16:21:43 +02002799 /* This loop is quite simple : it tries to fill as much as it can from
2800 * pending streams into the existing buffer until it's reportedly full
2801 * or the end of send requests is reached. Then it tries to send this
2802 * buffer's contents out, marks it not full if at least one byte could
2803 * be sent, and tries again.
2804 *
2805 * The snd_buf() function normally takes a "flags" argument which may
2806 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
2807 * data immediately comes and CO_SFL_STREAMER to indicate that the
2808 * connection is streaming lots of data (used to increase TLS record
2809 * size at the expense of latency). The former can be sent any time
2810 * there's a buffer full flag, as it indicates at least one stream
2811 * attempted to send and failed so there are pending data. An
2812 * alternative would be to set it as long as there's an active stream
2813 * but that would be problematic for ACKs until we have an absolute
2814 * guarantee that all waiters have at least one byte to send. The
2815 * latter should possibly not be set for now.
2816 */
2817
2818 done = 0;
2819 while (!done) {
2820 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002821 unsigned int released = 0;
2822 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02002823
2824 /* fill as much as we can into the current buffer */
2825 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
2826 done = h2_process_mux(h2c);
2827
Olivier Houchard2b094432019-01-29 18:28:36 +01002828 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002829 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01002830
Willy Tarreaubc933932017-10-09 16:21:43 +02002831 if (conn->flags & CO_FL_ERROR)
2832 break;
2833
2834 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
2835 flags |= CO_SFL_MSG_MORE;
2836
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002837 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
2838 if (b_data(buf)) {
2839 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002840 if (!ret) {
2841 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002842 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002843 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002844 sent = 1;
2845 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002846 if (b_data(buf)) {
2847 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002848 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002849 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002850 }
2851 b_free(buf);
2852 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02002853 }
Willy Tarreaubc933932017-10-09 16:21:43 +02002854
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002855 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02002856 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02002857
Willy Tarreaubc933932017-10-09 16:21:43 +02002858 /* wrote at least one byte, the buffer is not full anymore */
2859 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
2860 }
2861
Willy Tarreaua2af5122017-10-09 11:56:46 +02002862 if (conn->flags & CO_FL_SOCK_WR_SH) {
2863 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02002864 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02002865 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002866 /* We're not full anymore, so we can wake any task that are waiting
2867 * for us.
2868 */
2869 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01002870 struct h2s *h2s;
2871
2872 list_for_each_entry(h2s, &h2c->send_list, list) {
2873 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
2874 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02002875
Willy Tarreauc234ae32019-05-13 17:56:11 +02002876 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01002877 continue;
2878
Olivier Houchard998410a2019-04-15 19:23:37 +02002879 /* For some reason, the upper layer failed to subsribe again,
2880 * so remove it from the send_list
2881 */
2882 if (!h2s->send_wait) {
2883 LIST_DEL_INIT(&h2s->list);
2884 continue;
2885 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01002886 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002887 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002888 tasklet_wakeup(h2s->send_wait->tasklet);
Olivier Houchardd360ac62019-03-22 17:37:16 +01002889 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02002890 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02002891 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002892 /* We're done, no more to send */
Willy Tarreau662fafc2019-05-26 09:43:07 +02002893 if (!br_data(h2c->mbuf))
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002894 return sent;
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002895schedule:
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002896 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002897 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02002898
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02002899 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002900}
2901
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002902/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002903static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
2904{
2905 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02002906 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02002907
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002908 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02002909 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002910 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02002911 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01002912 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02002913 h2_process(h2c);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002914 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002915}
Willy Tarreaua2af5122017-10-09 11:56:46 +02002916
Willy Tarreau62f52692017-10-08 23:01:42 +02002917/* callback called on any event by the connection handler.
2918 * It applies changes and returns zero, or < 0 if it wants immediate
2919 * destruction of the connection (which normally doesn not happen in h2).
2920 */
Olivier Houchard7505f942018-08-21 18:10:44 +02002921static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02002922{
Olivier Houchard7505f942018-08-21 18:10:44 +02002923 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02002924
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002925 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01002926 h2_process_demux(h2c);
2927
2928 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002929 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01002930
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002931 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01002932 h2c->flags &= ~H2_CF_DEM_DFULL;
2933 }
Olivier Houchard7505f942018-08-21 18:10:44 +02002934 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01002935
Willy Tarreau0b37d652018-10-03 10:33:02 +02002936 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01002937 /* frontend is stopping, reload likely in progress, let's try
2938 * to announce a graceful shutdown if not yet done. We don't
2939 * care if it fails, it will be tried again later.
2940 */
2941 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
2942 if (h2c->last_sid < 0)
2943 h2c->last_sid = (1U << 31) - 1;
2944 h2c_send_goaway_error(h2c, NULL);
2945 }
2946 }
2947
Olivier Houchard7fc96d52017-11-23 18:25:47 +01002948 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002949 * If we received early data, and the handshake is done, wake
2950 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01002951 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002952 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
2953 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
2954 struct eb32_node *node;
2955 struct h2s *h2s;
2956
2957 h2c->flags |= H2_CF_WAIT_FOR_HS;
2958 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
2959
2960 while (node) {
2961 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01002962 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01002963 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002964 node = eb32_next(node);
2965 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01002966 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01002967
Willy Tarreau26bd7612017-10-09 16:47:04 +02002968 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01002969 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
2970 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
2971 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02002972 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002973
2974 if (eb_is_empty(&h2c->streams_by_id)) {
2975 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02002976 h2_release(h2c);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002977 return -1;
2978 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002979 }
2980
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002981 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01002982 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02002983
Olivier Houchard53216e72018-10-10 15:46:36 +02002984 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
2985 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
2986 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02002987 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02002988 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
2989 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02002990 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02002991
Willy Tarreau3f133572017-10-31 19:21:06 +01002992 if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02002993 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
2994 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01002995 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02002996
Olivier Houchard7505f942018-08-21 18:10:44 +02002997 h2_send(h2c);
Willy Tarreau62f52692017-10-08 23:01:42 +02002998 return 0;
2999}
3000
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003001/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003002static int h2_wake(struct connection *conn)
3003{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003004 struct h2c *h2c = conn->ctx;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003005
3006 return (h2_process(h2c));
3007}
3008
Willy Tarreauea392822017-10-31 10:02:25 +01003009/* Connection timeout management. The principle is that if there's no receipt
3010 * nor sending for a certain amount of time, the connection is closed. If the
3011 * MUX buffer still has lying data or is not allocatable, the connection is
3012 * immediately killed. If it's allocatable and empty, we attempt to send a
3013 * GOAWAY frame.
3014 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003015static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003016{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003017 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003018 int expired = tick_is_expired(t->expire, now_ms);
3019
Willy Tarreau0975f112018-03-29 15:22:59 +02003020 if (!expired && h2c)
Willy Tarreauea392822017-10-31 10:02:25 +01003021 return t;
3022
Olivier Houchard3f795f72019-04-17 22:51:06 +02003023 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003024
3025 if (!h2c) {
3026 /* resources were already deleted */
3027 return NULL;
3028 }
3029
3030 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003031 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003032 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003033
Willy Tarreau662fafc2019-05-26 09:43:07 +02003034 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003035 /* don't even try to send a GOAWAY, the buffer is stuck */
3036 h2c->flags |= H2_CF_GOAWAY_FAILED;
3037 }
3038
3039 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003040 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003041 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3042 h2c->flags |= H2_CF_GOAWAY_FAILED;
3043
Willy Tarreau662fafc2019-05-26 09:43:07 +02003044 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003045 unsigned int released = 0;
3046 struct buffer *buf;
3047
3048 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3049 if (b_data(buf)) {
3050 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3051 if (!ret)
3052 break;
3053 b_del(buf, ret);
3054 if (b_data(buf))
3055 break;
3056 b_free(buf);
3057 released++;
3058 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003059 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003060
3061 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003062 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003063 }
Willy Tarreauea392822017-10-31 10:02:25 +01003064
Willy Tarreau0975f112018-03-29 15:22:59 +02003065 /* either we can release everything now or it will be done later once
3066 * the last stream closes.
3067 */
3068 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003069 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003070
Willy Tarreauea392822017-10-31 10:02:25 +01003071 return NULL;
3072}
3073
3074
Willy Tarreau62f52692017-10-08 23:01:42 +02003075/*******************************************/
3076/* functions below are used by the streams */
3077/*******************************************/
3078
3079/*
3080 * Attach a new stream to a connection
3081 * (Used for outgoing connections)
3082 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003083static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003084{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003085 struct conn_stream *cs;
3086 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003087 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003088
3089 cs = cs_new(conn);
3090 if (!cs)
3091 return NULL;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003092 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003093 if (!h2s) {
3094 cs_free(cs);
3095 return NULL;
3096 }
3097 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003098}
3099
Willy Tarreaufafd3982018-11-18 21:29:20 +01003100/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3101 * We have to scan because we may have some orphan streams. It might be
3102 * beneficial to scan backwards from the end to reduce the likeliness to find
3103 * orphans.
3104 */
3105static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3106{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003107 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003108 struct h2s *h2s;
3109 struct eb32_node *node;
3110
3111 node = eb32_first(&h2c->streams_by_id);
3112 while (node) {
3113 h2s = container_of(node, struct h2s, by_id);
3114 if (h2s->cs)
3115 return h2s->cs;
3116 node = eb32_next(node);
3117 }
3118 return NULL;
3119}
3120
Willy Tarreau62f52692017-10-08 23:01:42 +02003121/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003122 * Destroy the mux and the associated connection, if it is no longer used
3123 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003124static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003125{
Christopher Faulet73c12072019-04-08 11:23:22 +02003126 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003127
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003128 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003129 h2_release(h2c);
Olivier Houchard060ed432018-11-06 16:32:42 +01003130}
3131
3132/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003133 * Detach the stream from the connection and possibly release the connection.
3134 */
3135static void h2_detach(struct conn_stream *cs)
3136{
Willy Tarreau60935142017-10-16 18:11:19 +02003137 struct h2s *h2s = cs->ctx;
3138 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003139 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003140
3141 cs->ctx = NULL;
3142 if (!h2s)
3143 return;
3144
Olivier Houchard998410a2019-04-15 19:23:37 +02003145 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003146 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003147 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003148 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003149 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003150 /*
3151 * At this point, the stream_interface is supposed to have called
3152 * h2_unsubscribe(), so the only way there's still a
3153 * subscription that came from the stream_interface (as we
3154 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3155 * without the stream_interface involved) is that we subscribed
3156 * for sending, we woke the tasklet up and removed the
3157 * SUB_RETRY_SEND flag, so the stream_interface would not
3158 * know it has to unsubscribe for send, but the tasklet hasn't
3159 * run yet. Make sure to handle that by explicitely setting
3160 * send_wait to NULL, as nothing else will do it for us.
3161 */
3162 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003163 }
3164
Olivier Houchardf502aca2018-12-14 19:42:40 +01003165 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003166 h2c = h2s->h2c;
3167 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003168 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003169 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3170 !h2_frt_has_too_many_cs(h2c)) {
3171 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003172 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003173 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003174 }
Willy Tarreau60935142017-10-16 18:11:19 +02003175
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003176 /* this stream may be blocked waiting for some data to leave (possibly
3177 * an ES or RST frame), so orphan it in this case.
3178 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003179 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003180 (h2c->st0 < H2_CS_ERROR) &&
Olivier Houchard16ff2612019-03-21 15:48:46 +01003181 (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 +01003182 return;
3183
Willy Tarreau45f752e2017-10-30 15:44:59 +01003184 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3185 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3186 /* unblock the connection if it was blocked on this
3187 * stream.
3188 */
3189 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3190 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003191 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003192 }
3193
Willy Tarreau71049cc2018-03-28 13:56:39 +02003194 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003195
Olivier Houchard8a786902018-12-15 16:05:40 +01003196 if (h2c->flags & H2_CF_IS_BACK &&
3197 (h2c->proxy->options2 & PR_O2_USE_HTX)) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003198 if (!(h2c->conn->flags &
3199 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3200 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003201 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003202 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3203 h2c->conn->owner = NULL;
3204 if (eb_is_empty(&h2c->streams_by_id)) {
3205 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3206 /* The server doesn't want it, let's kill the connection right away */
3207 h2c->conn->mux->destroy(h2c->conn);
3208 return;
3209 }
3210 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003211 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003212 if (eb_is_empty(&h2c->streams_by_id)) {
3213 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0)
3214 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
3215 return;
3216 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003217 /* Never ever allow to reuse a connection from a non-reuse backend */
3218 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3219 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003220 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003221 struct server *srv = objt_server(h2c->conn->target);
3222
3223 if (srv) {
3224 if (h2c->conn->flags & CO_FL_PRIVATE)
3225 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3226 else
3227 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3228 }
3229
3230 }
3231 }
3232 }
3233
Willy Tarreaue323f342018-03-28 13:51:45 +02003234 /* We don't want to close right now unless we're removing the
3235 * last stream, and either the connection is in error, or it
3236 * reached the ID already specified in a GOAWAY frame received
3237 * or sent (as seen by last_sid >= 0).
3238 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003239 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003240 /* no more stream will come, kill it now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003241 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003242 }
3243 else if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02003244 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3245 task_queue(h2c->task);
Willy Tarreau60935142017-10-16 18:11:19 +02003246 }
Willy Tarreau62f52692017-10-08 23:01:42 +02003247}
3248
Willy Tarreau88bdba32019-05-13 18:17:53 +02003249/* Performs a synchronous or asynchronous shutr(). */
3250static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003251{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003252 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003253 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003254
Willy Tarreauf983d002019-05-14 10:40:21 +02003255 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003256 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003257
Willy Tarreau18059042019-01-31 19:12:48 +01003258 /* a connstream may require us to immediately kill the whole connection
3259 * for example because of a "tcp-request content reject" rule that is
3260 * normally used to limit abuse. In this case we schedule a goaway to
3261 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003262 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003263 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003264 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3265 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3266 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3267 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003268 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3269 /* Nothing was never sent for this stream, so reset with
3270 * REFUSED_STREAM error to let the client retry the
3271 * request.
3272 */
3273 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3274 }
Willy Tarreau18059042019-01-31 19:12:48 +01003275
Willy Tarreau90c32322017-11-24 08:00:30 +01003276 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003277 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003278 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003279
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003280 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003281 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003282 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003283 done:
3284 h2s->flags &= ~H2_SF_WANT_SHUTR;
3285 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003286add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003287 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003288 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003289 if (h2s->flags & H2_SF_BLK_MFCTL) {
3290 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3291 h2s->send_wait = sw;
3292 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3293 h2s->send_wait = sw;
3294 LIST_ADDQ(&h2c->send_list, &h2s->list);
3295 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003296 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003297 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003298 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003299 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003300}
3301
Willy Tarreau88bdba32019-05-13 18:17:53 +02003302/* Performs a synchronous or asynchronous shutw(). */
3303static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003304{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003305 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003306 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003307
Willy Tarreauf983d002019-05-14 10:40:21 +02003308 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003309 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003310
Willy Tarreauf983d002019-05-14 10:40:21 +02003311 if (h2s->st != H2_SS_HLOC && h2s->st != H2_SS_ERROR &&
3312 (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003313 /* we can cleanly close using an empty data frame only after headers */
3314
3315 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3316 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003317 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003318
3319 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003320 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003321 else
3322 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003323 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003324 /* a connstream may require us to immediately kill the whole connection
3325 * for example because of a "tcp-request content reject" rule that is
3326 * normally used to limit abuse. In this case we schedule a goaway to
3327 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003328 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003329 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003330 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3331 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3332 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3333 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003334 else {
3335 /* Nothing was never sent for this stream, so reset with
3336 * REFUSED_STREAM error to let the client retry the
3337 * request.
3338 */
3339 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3340 }
Willy Tarreau18059042019-01-31 19:12:48 +01003341
Willy Tarreau90c32322017-11-24 08:00:30 +01003342 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003343 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003344 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003345
Willy Tarreau00dd0782018-03-01 16:31:34 +01003346 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003347 }
3348
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003349 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003350 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003351 done:
3352 h2s->flags &= ~H2_SF_WANT_SHUTW;
3353 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003354
3355 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003356 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003357 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003358 if (h2s->flags & H2_SF_BLK_MFCTL) {
3359 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3360 h2s->send_wait = sw;
3361 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3362 h2s->send_wait = sw;
3363 LIST_ADDQ(&h2c->send_list, &h2s->list);
3364 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003365 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003366 /* let the handler know we want to shutw */
3367 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003368 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003369}
3370
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003371/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003372 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3373 * and prevented the last frame from being emitted.
3374 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003375static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3376{
3377 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003378 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003379
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003380 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003381 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003382 h2_do_shutw(h2s);
3383
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003384 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003385 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003386
Willy Tarreau88bdba32019-05-13 18:17:53 +02003387 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003388 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003389 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01003390
Willy Tarreau88bdba32019-05-13 18:17:53 +02003391 if (!h2s->cs) {
3392 h2s_destroy(h2s);
3393 if (h2c_is_dead(h2c))
3394 h2_release(h2c);
3395 }
Olivier Houchard7a977432019-03-21 15:47:13 +01003396 }
3397
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003398 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02003399}
3400
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003401/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003402static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3403{
3404 struct h2s *h2s = cs->ctx;
3405
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003406 if (cs->flags & CS_FL_KILL_CONN)
3407 h2s->flags |= H2_SF_KILL_CONN;
3408
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003409 if (!mode)
3410 return;
3411
3412 h2_do_shutr(h2s);
3413}
3414
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003415/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003416static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3417{
3418 struct h2s *h2s = cs->ctx;
3419
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003420 if (cs->flags & CS_FL_KILL_CONN)
3421 h2s->flags |= H2_SF_KILL_CONN;
3422
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003423 h2_do_shutw(h2s);
3424}
3425
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003426/* Decode the payload of a HEADERS frame and produce the equivalent HTTP/1 or
Willy Tarreau86277d42019-01-02 15:36:11 +01003427 * HTX request or response depending on the connection's side. Returns a
3428 * positive value on success, a negative value on failure, or 0 if it couldn't
3429 * proceed. May report connection errors in h2c->errcode if the frame is
3430 * non-decodable and the connection unrecoverable. In absence of connection
3431 * error when a failure is reported, the caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01003432 *
3433 * The function may fold CONTINUATION frames into the initial HEADERS frame
3434 * by removing padding and next frame header, then moving the CONTINUATION
3435 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
3436 * leaving a hole between the main frame and the beginning of the next one.
3437 * The possibly remaining incomplete or next frame at the end may be moved
3438 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
3439 * HEADERS frames are unwrapped into a temporary buffer before decoding.
3440 *
3441 * A buffer at the beginning of processing may look like this :
3442 *
3443 * ,---.---------.-----.--------------.--------------.------.---.
3444 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
3445 * `---^---------^-----^--------------^--------------^------^---'
3446 * | | <-----> | |
3447 * area | dpl | wrap
3448 * |<--------------> |
3449 * | dfl |
3450 * |<-------------------------------------------------->|
3451 * head data
3452 *
3453 * Padding is automatically overwritten when folding, participating to the
3454 * hole size after dfl :
3455 *
3456 * ,---.------------------------.-----.--------------.------.---.
3457 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
3458 * `---^------------------------^-----^--------------^------^---'
3459 * | | <-----> | |
3460 * area | hole | wrap
3461 * |<-----------------------> |
3462 * | dfl |
3463 * |<-------------------------------------------------->|
3464 * head data
3465 *
3466 * Please note that the HEADERS frame is always deprived from its PADLEN byte
3467 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
3468 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003469 *
3470 * The <flags> field must point to either the stream's flags or to a copy of it
3471 * so that the function can update the following flags :
3472 * - H2_SF_DATA_CLEN when content-length is seen
3473 * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion
3474 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01003475 *
3476 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
3477 * decoding, in order to detect if we're dealing with a headers or a trailers
3478 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02003479 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003480static 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 +02003481{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003482 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02003483 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003484 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02003485 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003486 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003487 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01003488 int flen; // header frame len
3489 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01003490 int ret = 0;
3491 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02003492 int wrap;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003493 int try = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02003494
Willy Tarreauea18f862018-12-22 20:19:26 +01003495next_frame:
3496 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
3497 goto leave; // incomplete input frame
3498
3499 /* No END_HEADERS means there's one or more CONTINUATION frames. In
3500 * this case, we'll try to paste it immediately after the initial
3501 * HEADERS frame payload and kill any possible padding. The initial
3502 * frame's length will be increased to represent the concatenation
3503 * of the two frames. The next frame is read from position <tlen>
3504 * and written at position <flen> (minus padding if some is present).
3505 */
3506 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
3507 struct h2_fh hdr;
3508 int clen; // CONTINUATION frame's payload length
3509
3510 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
3511 /* no more data, the buffer may be full, either due to
3512 * too large a frame or because of too large a hole that
3513 * we're going to compact at the end.
3514 */
3515 goto leave;
3516 }
3517
3518 if (hdr.ft != H2_FT_CONTINUATION) {
3519 /* RFC7540#6.10: frame of unexpected type */
3520 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3521 goto fail;
3522 }
3523
3524 if (hdr.sid != h2c->dsi) {
3525 /* RFC7540#6.10: frame of different stream */
3526 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3527 goto fail;
3528 }
3529
3530 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
3531 /* RFC7540#4.2: invalid frame length */
3532 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3533 goto fail;
3534 }
3535
3536 /* detect when we must stop aggragating frames */
3537 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
3538
3539 /* Take as much as we can of the CONTINUATION frame's payload */
3540 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
3541 if (clen > hdr.len)
3542 clen = hdr.len;
3543
3544 /* Move the frame's payload over the padding, hole and frame
3545 * header. At least one of hole or dpl is null (see diagrams
3546 * above). The hole moves after the new aggragated frame.
3547 */
3548 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
3549 h2c->dfl += clen - h2c->dpl;
3550 hole += h2c->dpl + 9;
3551 h2c->dpl = 0;
3552 goto next_frame;
3553 }
3554
3555 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01003556
Willy Tarreau13278b42017-10-13 19:23:14 +02003557 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003558 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02003559 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02003560 copy = alloc_trash_chunk();
3561 if (!copy) {
3562 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
3563 goto fail;
3564 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003565 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
3566 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
3567 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02003568 }
3569
Willy Tarreau13278b42017-10-13 19:23:14 +02003570 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
3571 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003572 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003573 /* RFC7540#5.3.1 : stream dep may not depend on itself */
3574 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02003575 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01003576 }
3577
Willy Tarreaua01f45e2018-12-31 07:41:24 +01003578 if (flen < 5) {
3579 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3580 goto fail;
3581 }
3582
Willy Tarreau13278b42017-10-13 19:23:14 +02003583 hdrs += 5; // stream dep = 4, weight = 1
3584 flen -= 5;
3585 }
3586
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003587 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau937f7602018-02-26 15:22:17 +01003588 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01003589 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003590 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003591
Willy Tarreau937f7602018-02-26 15:22:17 +01003592 /* we can't retry a failed decompression operation so we must be very
3593 * careful not to take any risks. In practice the output buffer is
3594 * always empty except maybe for trailers, in which case we simply have
3595 * to wait for the upper layer to finish consuming what is available.
3596 */
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003597
3598 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003599 htx = htx_from_buf(rxbuf);
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003600 if (!htx_is_empty(htx)) {
3601 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003602 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003603 }
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003604 } else {
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003605 if (b_data(rxbuf)) {
3606 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau86277d42019-01-02 15:36:11 +01003607 goto leave;
Willy Tarreau8dbb1702019-01-03 08:52:09 +01003608 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003609
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003610 rxbuf->head = 0;
3611 try = b_size(rxbuf);
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003612 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003613
Willy Tarreau25919232019-01-03 14:48:18 +01003614 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003615 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
3616 sizeof(list)/sizeof(list[0]), tmp);
3617 if (outlen < 0) {
3618 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
3619 goto fail;
3620 }
3621
Willy Tarreau25919232019-01-03 14:48:18 +01003622 /* The PACK decompressor was updated, let's update the input buffer and
3623 * the parser's state to commit these changes and allow us to later
3624 * fail solely on the stream if needed.
3625 */
3626 b_del(&h2c->dbuf, h2c->dfl + hole);
3627 h2c->dfl = hole = 0;
3628 h2c->st0 = H2_CS_FRAME_H;
3629
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003630 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01003631 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01003632
Willy Tarreau88d138e2019-01-02 19:38:14 +01003633 if (*flags & H2_SF_HEADERS_RCVD)
3634 goto trailers;
3635
3636 /* This is the first HEADERS frame so it's a headers block */
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003637 if (htx) {
3638 /* HTX mode */
3639 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003640 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003641 else
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003642 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003643 } else {
3644 /* HTTP/1 mode */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01003645 outlen = h2_make_h1_request(list, b_tail(rxbuf), try, &msgf, body_len);
Willy Tarreau83195932019-01-03 10:26:23 +01003646 if (outlen > 0)
3647 b_add(rxbuf, outlen);
Willy Tarreauc3e18f32018-10-08 14:51:56 +02003648 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003649
3650 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01003651 /* too large headers? this is a stream error only */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01003652 goto fail;
3653 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003654
Willy Tarreau174b06a2018-04-25 18:13:58 +02003655 if (msgf & H2_MSGF_BODY) {
3656 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003657 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003658 *flags |= H2_SF_DATA_CLEN;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003659 if (htx)
3660 htx->extra = *body_len;
3661 }
Olivier Houchard50d660c2018-12-08 00:18:31 +01003662 else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003663 *flags |= H2_SF_DATA_CHNK;
Willy Tarreau174b06a2018-04-25 18:13:58 +02003664 }
3665
Willy Tarreau88d138e2019-01-02 19:38:14 +01003666 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01003667 /* indicate that a HEADERS frame was received for this stream, except
3668 * for 1xx responses. For 1xx responses, another HEADERS frame is
3669 * expected.
3670 */
3671 if (!(msgf & H2_MSGF_RSP_1XX))
3672 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01003673
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02003674 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01003675 /* Mark the end of message, either using EOM in HTX or with the
3676 * trailing CRLF after the end of trailers. Note that DATA_CHNK
Willy Tarreau2135f912019-05-07 11:17:32 +02003677 * is not set during headers with END_STREAM. For HTX trailers,
3678 * we must not leave an HTX trailers block not followed by an
3679 * EOM block, the two must be atomic. Thus if we fail to emit
3680 * the EOM block we must remove the TLR block we've just added.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003681 */
3682 if (htx) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02003683 if (!htx_add_endof(htx, HTX_BLK_EOM))
Willy Tarreau88d138e2019-01-02 19:38:14 +01003684 goto fail;
3685 }
3686 else if (*flags & H2_SF_DATA_CHNK) {
3687 if (!b_putblk(rxbuf, "\r\n", 2))
3688 goto fail;
3689 }
3690 }
Willy Tarreau937f7602018-02-26 15:22:17 +01003691
Willy Tarreau86277d42019-01-02 15:36:11 +01003692 /* success */
3693 ret = 1;
3694
Willy Tarreau68dd9852017-07-03 14:44:26 +02003695 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01003696 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01003697 * move the remaining data over it.
3698 */
3699 if (hole) {
3700 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
3701 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
3702 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
3703 b_sub(&h2c->dbuf, hole);
3704 }
3705
Willy Tarreau97215ca2019-04-29 10:20:21 +02003706 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01003707 /* too large frames */
3708 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01003709 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01003710 }
3711
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003712 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01003713 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02003714 free_trash_chunk(copy);
Willy Tarreau86277d42019-01-02 15:36:11 +01003715 return ret;
3716
Willy Tarreau68dd9852017-07-03 14:44:26 +02003717 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01003718 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02003719 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003720
3721 trailers:
3722 /* This is the last HEADERS frame hence a trailer */
3723
3724 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
3725 /* It's a trailer but it's missing ES flag */
3726 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3727 goto fail;
3728 }
3729
Christopher Faulet54b5e212019-06-04 10:08:28 +02003730 /* Trailers terminate a DATA sequence. In HTX we always handle them. In
3731 * legacy, when using chunks, we have to emit the 0 CRLF marker first
3732 * and then handle the trailers. For other modes, the trailers are
3733 * silently dropped.
Willy Tarreau88d138e2019-01-02 19:38:14 +01003734 */
3735 if (htx) {
Willy Tarreau5255f282019-01-03 18:41:05 +01003736 if (h2_make_htx_trailers(list, htx) <= 0)
3737 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003738 }
3739 else if (*flags & H2_SF_DATA_CHNK) {
3740 /* Legacy mode with chunked encoding : we must finalize the
3741 * data block message emit the trailing CRLF */
3742 if (!b_putblk(rxbuf, "0\r\n", 3))
3743 goto fail;
Willy Tarreaue2b05cc2019-01-03 16:18:34 +01003744
3745 outlen = h2_make_h1_trailers(list, b_tail(rxbuf), try);
3746 if (outlen > 0)
3747 b_add(rxbuf, outlen);
3748 else
3749 goto fail;
Willy Tarreau88d138e2019-01-02 19:38:14 +01003750 }
3751
3752 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02003753}
3754
Willy Tarreau454f9052017-10-26 19:40:35 +02003755/* Transfer the payload of a DATA frame to the HTTP/1 side. When content-length
3756 * or a tunnel is used, the contents are copied as-is. When chunked encoding is
3757 * in use, a new chunk is emitted for each frame. This is supposed to fit
3758 * because the smallest chunk takes 1 byte for the size, 2 for CRLF, X for the
3759 * data, 2 for the extra CRLF, so that's 5+X, while on the H2 side the smallest
3760 * frame will be 9+X bytes based on the same buffer size. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003761 * parser state is automatically updated. Returns > 0 if it could completely
3762 * send the current frame, 0 if it couldn't complete, in which case
3763 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
3764 * DATA frame can return 0 as a valid result). Stream errors are reported in
3765 * h2s->errcode and connection errors in h2c->errcode. The caller must already
3766 * have checked the frame header and ensured that the frame was complete or the
3767 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02003768 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01003769static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003770{
3771 struct h2c *h2c = h2s->h2c;
3772 int block1, block2;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003773 unsigned int flen = 0;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003774 unsigned int chklen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003775 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003776 struct buffer *csbuf;
Willy Tarreau454f9052017-10-26 19:40:35 +02003777
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003778 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003779
Olivier Houchard638b7992018-08-16 15:41:52 +02003780 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003781 if (!csbuf) {
3782 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003783 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003784 }
3785
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003786try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003787 flen = h2c->dfl - h2c->dpl;
Olivier Houchard2f308832018-12-19 15:53:53 +01003788 if (h2c->proxy->options2 & PR_O2_USE_HTX)
3789 htx = htx_from_buf(csbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003790 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01003791 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003792
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003793 if (flen > b_data(&h2c->dbuf)) {
3794 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003795 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01003796 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003797 }
3798
Willy Tarreaua9b77962019-01-31 07:23:00 +01003799 if (htx) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003800 unsigned int sent;
3801
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003802 block1 = htx_free_data_space(htx);
3803 if (!block1) {
3804 h2c->flags |= H2_CF_DEM_SFULL;
3805 goto fail;
3806 }
3807 if (flen > block1)
3808 flen = block1;
3809
3810 /* here, flen is the max we can copy into the output buffer */
3811 block1 = b_contig_data(&h2c->dbuf, 0);
3812 if (flen > block1)
3813 flen = block1;
3814
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003815 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003816
Willy Tarreaub6563f42019-06-15 11:34:41 +02003817 b_del(&h2c->dbuf, sent);
3818 h2c->dfl -= sent;
3819 h2c->rcvd_c += sent;
3820 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau1915ca22019-01-24 11:49:37 +01003821
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003822 if (h2s->flags & H2_SF_DATA_CLEN) {
Willy Tarreaub6563f42019-06-15 11:34:41 +02003823 h2s->body_len -= sent;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01003824 htx->extra = h2s->body_len;
3825 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02003826
3827 if (sent < flen) {
3828 h2c->flags |= H2_CF_DEM_SFULL;
3829 goto fail;
3830 }
3831
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003832 goto try_again;
3833 }
Willy Tarreau455d5682019-05-24 19:42:18 +02003834 else if (unlikely(b_space_wraps(csbuf) &&
3835 flen + chklen <= b_room(csbuf) &&
3836 b_data(csbuf) <= MAX_DATA_REALIGN)) {
3837 /* it doesn't fit in a single block and the buffer is fragmented, if there are
3838 * not too many data in the buffer, let's defragment it and try
3839 * again.
Willy Tarreaud755ea62018-02-26 15:44:54 +01003840 */
3841 b_slow_realign(csbuf, trash.area, 0);
Willy Tarreau454f9052017-10-26 19:40:35 +02003842 }
3843
Willy Tarreaueba10f22018-04-25 20:44:22 +02003844 /* chunked-encoding requires more room */
3845 if (h2s->flags & H2_SF_DATA_CHNK) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01003846 chklen = MIN(flen, b_room(csbuf));
Willy Tarreaueba10f22018-04-25 20:44:22 +02003847 chklen = (chklen < 16) ? 1 : (chklen < 256) ? 2 :
3848 (chklen < 4096) ? 3 : (chklen < 65536) ? 4 :
3849 (chklen < 1048576) ? 4 : 8;
3850 chklen += 4; // CRLF, CRLF
3851 }
3852
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003853 /* does it fit in output buffer or should we wait ? */
Willy Tarreaud755ea62018-02-26 15:44:54 +01003854 if (flen + chklen > b_room(csbuf)) {
3855 if (chklen >= b_room(csbuf)) {
3856 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003857 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01003858 }
3859 flen = b_room(csbuf) - chklen;
Willy Tarreaueba10f22018-04-25 20:44:22 +02003860 }
3861
3862 if (h2s->flags & H2_SF_DATA_CHNK) {
3863 /* emit the chunk size */
3864 unsigned int chksz = flen;
3865 char str[10];
3866 char *beg;
3867
3868 beg = str + sizeof(str);
3869 *--beg = '\n';
3870 *--beg = '\r';
3871 do {
3872 *--beg = hextab[chksz & 0xF];
3873 } while (chksz >>= 4);
Willy Tarreaud755ea62018-02-26 15:44:54 +01003874 b_putblk(csbuf, beg, str + sizeof(str) - beg);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003875 }
3876
Willy Tarreau454f9052017-10-26 19:40:35 +02003877 /* Block1 is the length of the first block before the buffer wraps,
3878 * block2 is the optional second block to reach the end of the frame.
3879 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003880 block1 = b_contig_data(&h2c->dbuf, 0);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003881 if (block1 > flen)
3882 block1 = flen;
Willy Tarreau454f9052017-10-26 19:40:35 +02003883 block2 = flen - block1;
3884
3885 if (block1)
Willy Tarreaud755ea62018-02-26 15:44:54 +01003886 b_putblk(csbuf, b_head(&h2c->dbuf), block1);
Willy Tarreau454f9052017-10-26 19:40:35 +02003887
3888 if (block2)
Willy Tarreaud755ea62018-02-26 15:44:54 +01003889 b_putblk(csbuf, b_peek(&h2c->dbuf, block1), block2);
Willy Tarreau454f9052017-10-26 19:40:35 +02003890
Willy Tarreaueba10f22018-04-25 20:44:22 +02003891 if (h2s->flags & H2_SF_DATA_CHNK) {
3892 /* emit the CRLF */
Willy Tarreaud755ea62018-02-26 15:44:54 +01003893 b_putblk(csbuf, "\r\n", 2);
Willy Tarreaueba10f22018-04-25 20:44:22 +02003894 }
3895
Willy Tarreau454f9052017-10-26 19:40:35 +02003896 /* now mark the input data as consumed (will be deleted from the buffer
3897 * by the caller when seeing FRAME_A after sending the window update).
3898 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003899 b_del(&h2c->dbuf, flen);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003900 h2c->dfl -= flen;
3901 h2c->rcvd_c += flen;
3902 h2c->rcvd_s += flen; // warning, this can also affect the closed streams!
3903
Willy Tarreau1915ca22019-01-24 11:49:37 +01003904 if (h2s->flags & H2_SF_DATA_CLEN)
3905 h2s->body_len -= flen;
3906
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003907 if (h2c->dfl > h2c->dpl) {
3908 /* more data available, transfer stalled on stream full */
Willy Tarreaud755ea62018-02-26 15:44:54 +01003909 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003910 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003911 }
3912
Willy Tarreau4a28da12018-01-04 14:41:00 +01003913 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01003914 /* here we're done with the frame, all the payload (except padding) was
3915 * transferred.
3916 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02003917
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003918 if (h2c->dff & H2_F_DATA_END_STREAM) {
3919 if (htx) {
3920 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
3921 h2c->flags |= H2_CF_DEM_SFULL;
3922 goto fail;
3923 }
Willy Tarreaud755ea62018-02-26 15:44:54 +01003924 }
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003925 else if (h2s->flags & H2_SF_DATA_CHNK) {
3926 /* emit the trailing 0 CRLF CRLF */
3927 if (b_room(csbuf) < 5) {
3928 h2c->flags |= H2_CF_DEM_SFULL;
3929 goto fail;
3930 }
3931 chklen += 5;
3932 b_putblk(csbuf, "0\r\n\r\n", 5);
3933 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02003934 }
3935
Willy Tarreaud1023bb2018-03-22 16:53:12 +01003936 h2c->rcvd_c += h2c->dpl;
3937 h2c->rcvd_s += h2c->dpl;
3938 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02003939 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003940 if (htx)
3941 htx_to_buf(htx, csbuf);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01003942 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01003943 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003944 if (htx)
3945 htx_to_buf(htx, csbuf);
Willy Tarreau454b57b2018-02-26 15:50:05 +01003946 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02003947}
3948
Willy Tarreau5dd17352018-06-14 13:33:30 +02003949/* Try to send a HEADERS frame matching HTTP/1 response present at offset <ofs>
3950 * and for <max> bytes in buffer <buf> for the H2 stream <h2s>. Returns the
3951 * number of bytes sent. The caller must check the stream's status to detect
3952 * any error which might have happened subsequently to a successful send.
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02003953 */
Willy Tarreau206ba832018-06-14 15:27:31 +02003954static size_t h2s_frt_make_resp_headers(struct h2s *h2s, const struct buffer *buf, size_t ofs, size_t max)
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02003955{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02003956 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02003957 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02003958 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02003959 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02003960 struct buffer *mbuf;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02003961 union h1_sl sl;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02003962 int es_now = 0;
3963 int ret = 0;
3964 int hdr;
3965
3966 if (h2c_mux_busy(h2c, h2s)) {
3967 h2s->flags |= H2_SF_BLK_MBUSY;
3968 return 0;
3969 }
3970
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02003971 /* First, try to parse the H1 response and index it into <list>.
3972 * NOTE! Since it comes from haproxy, we *know* that a response header
3973 * block does not wrap and we can safely read it this way without
3974 * having to realign the buffer.
3975 */
Willy Tarreau5dd17352018-06-14 13:33:30 +02003976 ret = h1_headers_to_hdr_list(b_peek(buf, ofs), b_peek(buf, ofs) + max,
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02003977 list, sizeof(list)/sizeof(list[0]), h1m, &sl);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02003978 if (ret <= 0) {
Willy Tarreauf13ef962017-11-02 15:14:19 +01003979 /* incomplete or invalid response, this is abnormal coming from
3980 * haproxy and may only result in a bad errorfile or bad Lua code
3981 * so that won't be fixed, raise an error now.
3982 *
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02003983 * FIXME: we should instead add the ability to only return a
3984 * 502 bad gateway. But in theory this is not supposed to
3985 * happen.
3986 */
3987 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
3988 ret = 0;
3989 goto end;
3990 }
3991
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02003992 h2s->status = sl.st.status;
Willy Tarreaudb72da02018-09-13 11:52:20 +02003993
3994 /* certain statuses have no body or an empty one, regardless of
3995 * what the headers say.
3996 */
3997 if (sl.st.status >= 100 && sl.st.status < 200) {
3998 h1m->flags &= ~(H1_MF_CLEN | H1_MF_CHNK);
3999 h1m->curr_len = h1m->body_len = 0;
4000 }
4001 else if (sl.st.status == 204 || sl.st.status == 304) {
4002 /* no contents, claim c-len is present and set to zero */
4003 h1m->flags &= ~H1_MF_CHNK;
4004 h1m->flags |= H1_MF_CLEN;
4005 h1m->curr_len = h1m->body_len = 0;
4006 }
4007
Willy Tarreaubcc45952019-05-26 10:05:50 +02004008 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004009 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004010 if (!h2_get_buf(h2c, mbuf)) {
4011 h2c->flags |= H2_CF_MUX_MALLOC;
4012 h2s->flags |= H2_SF_BLK_MROOM;
4013 return 0;
4014 }
4015
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004016 chunk_reset(&outbuf);
4017
4018 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004019 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4020 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004021 break;
4022 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004023 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004024 }
4025
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004026 if (outbuf.size < 9)
4027 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004028
4029 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004030 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4031 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4032 outbuf.data = 9;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004033
4034 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004035 if (unlikely(list[0].v.len != 3)) {
Willy Tarreaua87f2022017-11-09 11:23:00 +01004036 /* this is an unparsable response */
4037 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4038 ret = 0;
4039 goto end;
4040 }
Willy Tarreauaafdf582018-12-10 18:06:40 +01004041
4042 if (!hpack_encode_str_status(&outbuf, h2s->status, list[0].v)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004043 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004044 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004045 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004046 }
4047
4048 /* encode all headers, stop at empty name */
4049 for (hdr = 1; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaua76e4c22017-11-24 08:17:28 +01004050 /* these ones do not exist in H2 and must be dropped. */
4051 if (isteq(list[hdr].n, ist("connection")) ||
4052 isteq(list[hdr].n, ist("proxy-connection")) ||
4053 isteq(list[hdr].n, ist("keep-alive")) ||
4054 isteq(list[hdr].n, ist("upgrade")) ||
4055 isteq(list[hdr].n, ist("transfer-encoding")))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004056 continue;
4057
4058 if (isteq(list[hdr].n, ist("")))
4059 break; // end
4060
4061 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4062 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004063 if (b_space_wraps(mbuf))
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004064 goto realign_again;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004065 goto full;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004066 }
4067 }
4068
4069 /* we may need to add END_STREAM */
Willy Tarreau927b88b2019-03-04 08:03:25 +01004070 if (((h1m->flags & H1_MF_CLEN) && !h1m->body_len) || !h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004071 es_now = 1;
4072
4073 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004074 h2_set_frame_size(outbuf.area, outbuf.data - 9);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004075
4076 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004077 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004078
4079 /* consume incoming H1 response */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004080 max -= ret;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004081
4082 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004083 b_add(mbuf, outbuf.data);
Willy Tarreau67434202017-11-06 20:20:51 +01004084 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004085
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004086 if (es_now) {
Willy Tarreau35a62702018-02-27 15:37:25 +01004087 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004088 ret += max;
Willy Tarreau35a62702018-02-27 15:37:25 +01004089
Willy Tarreau801250e2018-09-11 11:45:04 +02004090 h1m->state = H1_MSG_DONE;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004091 h2s->flags |= H2_SF_ES_SENT;
4092 if (h2s->st == H2_SS_OPEN)
4093 h2s->st = H2_SS_HLOC;
4094 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004095 h2s_close(h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004096 }
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02004097 else if (h2s->status >= 100 && h2s->status < 200) {
Willy Tarreau87285592017-11-29 15:41:32 +01004098 /* we'll let the caller check if it has more headers to send */
Willy Tarreau7f437ff2018-09-11 13:51:19 +02004099 h1m_init_res(h1m);
Willy Tarreau9b8cd1f2018-09-12 09:24:38 +02004100 h1m->err_pos = -1; // don't care about errors on the response path
Willy Tarreaueb528db2018-09-12 09:54:00 +02004101 h2s->h1m.flags |= H1_MF_TOLOWER;
Willy Tarreau87285592017-11-29 15:41:32 +01004102 goto end;
Willy Tarreauc199faf2017-10-31 08:35:27 +01004103 }
Willy Tarreau001823c2018-09-12 17:25:32 +02004104
4105 /* now the h1m state is either H1_MSG_CHUNK_SIZE or H1_MSG_DATA */
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004106
4107 end:
Dirkjan Bussinkc26c72d2018-09-14 14:30:25 +02004108 //fprintf(stderr, "[%d] sent simple H2 response (sid=%d) = %d bytes (%d in, ep=%u, es=%s)\n", h2c->st0, h2s->id, outbuf.len, ret, h1m->err_pos, h1m_state_str(h1m->err_state));
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004109 return ret;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004110 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004111 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4112 goto retry;
Willy Tarreaub5b7d4a2018-09-12 18:51:18 +02004113 h1m_init_res(h1m);
4114 h1m->err_pos = -1; // don't care about errors on the response path
4115 h2c->flags |= H2_CF_MUX_MFULL;
4116 h2s->flags |= H2_SF_BLK_MROOM;
4117 ret = 0;
4118 goto end;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02004119}
4120
Willy Tarreau5dd17352018-06-14 13:33:30 +02004121/* Try to send a DATA frame matching HTTP/1 response present at offset <ofs>
4122 * for up to <max> bytes in response buffer <buf>, for stream <h2s>. Returns
4123 * the number of bytes sent. The caller must check the stream's status to
4124 * detect any error which might have happened subsequently to a successful send.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004125 */
Willy Tarreau206ba832018-06-14 15:27:31 +02004126static size_t h2s_frt_make_resp_data(struct h2s *h2s, const struct buffer *buf, size_t ofs, size_t max)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004127{
4128 struct h2c *h2c = h2s->h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +02004129 struct h1m *h1m = &h2s->h1m;
Willy Tarreau83061a82018-07-13 11:56:34 +02004130 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004131 struct buffer *mbuf;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004132 int ret = 0;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02004133 size_t total = 0;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004134 int es_now = 0;
4135 int size = 0;
Willy Tarreau206ba832018-06-14 15:27:31 +02004136 const char *blk1, *blk2;
Willy Tarreau55f3ce12018-07-18 11:49:27 +02004137 size_t len1, len2;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004138
4139 if (h2c_mux_busy(h2c, h2s)) {
4140 h2s->flags |= H2_SF_BLK_MBUSY;
4141 goto end;
4142 }
4143
Willy Tarreaubcc45952019-05-26 10:05:50 +02004144 mbuf = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004145 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004146 if (!h2_get_buf(h2c, mbuf)) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004147 h2c->flags |= H2_CF_MUX_MALLOC;
4148 h2s->flags |= H2_SF_BLK_MROOM;
4149 goto end;
4150 }
4151
4152 new_frame:
Willy Tarreau5dd17352018-06-14 13:33:30 +02004153 if (!max)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004154 goto end;
4155
4156 chunk_reset(&outbuf);
4157
4158 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004159 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4160 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004161 break;
4162 realign_again:
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004163 /* If there are pending data in the output buffer, and we have
4164 * less than 1/4 of the mbuf's size and everything fits, we'll
4165 * still perform a copy anyway. Otherwise we'll pretend the mbuf
4166 * is full and wait, to save some slow realign calls.
4167 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004168 if ((max + 9 > b_room(mbuf) || max >= b_size(mbuf) / 4)) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004169 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4170 goto retry;
Willy Tarreau06ae84a2018-12-12 09:17:21 +01004171 h2c->flags |= H2_CF_MUX_MFULL;
4172 h2s->flags |= H2_SF_BLK_MROOM;
4173 goto end;
4174 }
4175
Willy Tarreaubcc45952019-05-26 10:05:50 +02004176 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004177 }
4178
4179 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004180 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4181 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004182 h2c->flags |= H2_CF_MUX_MFULL;
4183 h2s->flags |= H2_SF_BLK_MROOM;
4184 goto end;
4185 }
4186
4187 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004188 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4189 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4190 outbuf.data = 9;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004191
4192 switch (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
4193 case 0: /* no content length, read till SHUTW */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004194 size = max;
Willy Tarreau13e4e942017-12-14 10:55:21 +01004195 h1m->curr_len = size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004196 break;
4197 case H1_MF_CLEN: /* content-length: read only h2m->body_len */
Willy Tarreau5dd17352018-06-14 13:33:30 +02004198 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004199 if ((long long)size > h1m->curr_len)
4200 size = h1m->curr_len;
4201 break;
4202 default: /* te:chunked : parse chunks */
Willy Tarreau801250e2018-09-11 11:45:04 +02004203 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Willy Tarreauc0973c62018-06-14 15:53:21 +02004204 ret = h1_skip_chunk_crlf(buf, ofs, ofs + max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004205 if (!ret)
4206 goto end;
4207
4208 if (ret < 0) {
4209 /* FIXME: bad contents. how to proceed here when we're in H2 ? */
Willy Tarreau25173a72018-09-12 09:05:16 +02004210 h1m->err_pos = ofs + max + ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004211 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4212 goto end;
4213 }
Willy Tarreau5dd17352018-06-14 13:33:30 +02004214 max -= ret;
4215 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004216 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004217 h1m->state = H1_MSG_CHUNK_SIZE;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004218 }
4219
Willy Tarreau801250e2018-09-11 11:45:04 +02004220 if (h1m->state == H1_MSG_CHUNK_SIZE) {
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004221 unsigned int chunk;
Willy Tarreau84d6b7a2018-06-14 15:59:05 +02004222 ret = h1_parse_chunk_size(buf, ofs, ofs + max, &chunk);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004223 if (!ret)
4224 goto end;
4225
4226 if (ret < 0) {
4227 /* FIXME: bad contents. how to proceed here when we're in H2 ? */
Willy Tarreau25173a72018-09-12 09:05:16 +02004228 h1m->err_pos = ofs + max + ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004229 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4230 goto end;
4231 }
4232
4233 size = chunk;
4234 h1m->curr_len = chunk;
4235 h1m->body_len += chunk;
Willy Tarreau5dd17352018-06-14 13:33:30 +02004236 max -= ret;
4237 ofs += ret;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004238 total += ret;
Willy Tarreau801250e2018-09-11 11:45:04 +02004239 h1m->state = size ? H1_MSG_DATA : H1_MSG_TRAILERS;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004240 if (!size)
4241 goto send_empty;
4242 }
4243
4244 /* in MSG_DATA state, continue below */
4245 size = h1m->curr_len;
4246 break;
4247 }
4248
4249 /* we have in <size> the exact number of bytes we need to copy from
4250 * the H1 buffer. We need to check this against the connection's and
4251 * the stream's send windows, and to ensure that this fits in the max
4252 * frame size and in the buffer's available space minus 9 bytes (for
4253 * the frame header). The connection's flow control is applied last so
4254 * that we can use a separate list of streams which are immediately
4255 * unblocked on window opening. Note: we don't implement padding.
4256 */
4257
Willy Tarreau5dd17352018-06-14 13:33:30 +02004258 if (size > max)
4259 size = max;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004260
4261 if (size > h2s->mws)
4262 size = h2s->mws;
4263
4264 if (size <= 0) {
4265 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004266 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02004267 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004268 goto end;
4269 }
4270
4271 if (h2c->mfs && size > h2c->mfs)
4272 size = h2c->mfs;
4273
4274 if (size + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02004275 /* It doesn't fit at once. If it at least fits once split and
4276 * the amount of data to move is low, let's defragment the
4277 * buffer now.
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004278 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004279 if (b_space_wraps(mbuf) &&
4280 (size + 9 <= b_room(mbuf)) &&
4281 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004282 goto realign_again;
4283 size = outbuf.size - 9;
4284 }
4285
4286 if (size <= 0) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004287 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4288 goto retry;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004289 h2c->flags |= H2_CF_MUX_MFULL;
4290 h2s->flags |= H2_SF_BLK_MROOM;
4291 goto end;
4292 }
4293
4294 if (size > h2c->mws)
4295 size = h2c->mws;
4296
4297 if (size <= 0) {
4298 h2s->flags |= H2_SF_BLK_MFCTL;
4299 goto end;
4300 }
4301
4302 /* copy whatever we can */
4303 blk1 = blk2 = NULL; // silence a maybe-uninitialized warning
Willy Tarreau5dd17352018-06-14 13:33:30 +02004304 ret = b_getblk_nc(buf, &blk1, &len1, &blk2, &len2, ofs, max);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004305 if (ret == 1)
4306 len2 = 0;
4307
4308 if (!ret || len1 + len2 < size) {
4309 /* FIXME: must normally never happen */
4310 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4311 goto end;
4312 }
4313
4314 /* limit len1/len2 to size */
4315 if (len1 + len2 > size) {
4316 int sub = len1 + len2 - size;
4317
4318 if (len2 > sub)
4319 len2 -= sub;
4320 else {
4321 sub -= len2;
4322 len2 = 0;
4323 len1 -= sub;
4324 }
4325 }
4326
4327 /* now let's copy this this into the output buffer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004328 memcpy(outbuf.area + 9, blk1, len1);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004329 if (len2)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004330 memcpy(outbuf.area + 9 + len1, blk2, len2);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004331
4332 send_empty:
4333 /* we may need to add END_STREAM */
4334 /* FIXME: we should also detect shutdown(w) below, but how ? Maybe we
4335 * could rely on the MSG_MORE flag as a hint for this ?
Willy Tarreau00610962018-07-19 10:58:28 +02004336 *
4337 * FIXME: what we do here is not correct because we send end_stream
4338 * before knowing if we'll have to send a HEADERS frame for the
4339 * trailers. More importantly we're not consuming the trailing CRLF
4340 * after the end of trailers, so it will be left to the caller to
4341 * eat it. The right way to do it would be to measure trailers here
4342 * and to send ES only if there are no trailers.
4343 *
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004344 */
4345 if (((h1m->flags & H1_MF_CLEN) && !(h1m->curr_len - size)) ||
Willy Tarreau801250e2018-09-11 11:45:04 +02004346 !h1m->curr_len || h1m->state >= H1_MSG_DONE)
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004347 es_now = 1;
4348
4349 /* update the frame's size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004350 h2_set_frame_size(outbuf.area, size);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004351
4352 if (es_now)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004353 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004354
4355 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004356 b_add(mbuf, size + 9);
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004357
4358 /* consume incoming H1 response */
4359 if (size > 0) {
Willy Tarreau5dd17352018-06-14 13:33:30 +02004360 max -= size;
4361 ofs += size;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004362 total += size;
4363 h1m->curr_len -= size;
4364 h2s->mws -= size;
4365 h2c->mws -= size;
4366
4367 if (size && !h1m->curr_len && (h1m->flags & H1_MF_CHNK)) {
Willy Tarreau801250e2018-09-11 11:45:04 +02004368 h1m->state = H1_MSG_CHUNK_CRLF;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004369 goto new_frame;
4370 }
4371 }
4372
4373 if (es_now) {
4374 if (h2s->st == H2_SS_OPEN)
4375 h2s->st = H2_SS_HLOC;
4376 else
Willy Tarreau00dd0782018-03-01 16:31:34 +01004377 h2s_close(h2s);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004378
Willy Tarreau35a62702018-02-27 15:37:25 +01004379 if (!(h1m->flags & H1_MF_CHNK)) {
4380 // trim any possibly pending data (eg: inconsistent content-length)
Willy Tarreau5dd17352018-06-14 13:33:30 +02004381 total += max;
4382 ofs += max;
4383 max = 0;
Willy Tarreau35a62702018-02-27 15:37:25 +01004384
Willy Tarreau801250e2018-09-11 11:45:04 +02004385 h1m->state = H1_MSG_DONE;
Willy Tarreau35a62702018-02-27 15:37:25 +01004386 }
Willy Tarreau9d89ac82017-10-31 17:15:59 +01004387
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004388 h2s->flags |= H2_SF_ES_SENT;
4389 }
4390
4391 end:
Dirkjan Bussinkc26c72d2018-09-14 14:30:25 +02004392 trace("[%d] sent simple H2 DATA response (sid=%d) = %d bytes out (%u in, st=%s, ep=%u, es=%s, h2cws=%d h2sws=%d) data=%u", h2c->st0, h2s->id, size+9, (unsigned int)total, h1m_state_str(h1m->state), h1m->err_pos, h1m_state_str(h1m->err_state), h2c->mws, h2s->mws, (unsigned int)b_data(buf));
Willy Tarreauc652dbd2017-10-19 11:16:37 +02004393 return total;
4394}
4395
Willy Tarreau115e83b2018-12-01 19:17:53 +01004396/* Try to send a HEADERS frame matching HTX response present in HTX message
4397 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4398 * must check the stream's status to detect any error which might have happened
4399 * subsequently to a successful send. The htx blocks are automatically removed
4400 * from the message. The htx message is assumed to be valid since produced from
4401 * the internal code, hence it contains a start line, an optional series of
4402 * header blocks and an end of header, otherwise an invalid frame could be
4403 * emitted and the resulting htx message could be left in an inconsistent state.
4404 */
4405static size_t h2s_htx_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
4406{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004407 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004408 struct h2c *h2c = h2s->h2c;
4409 struct htx_blk *blk;
4410 struct htx_blk *blk_end;
4411 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004412 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004413 struct htx_sl *sl;
4414 enum htx_blk_type type;
4415 int es_now = 0;
4416 int ret = 0;
4417 int hdr;
4418 int idx;
4419
4420 if (h2c_mux_busy(h2c, h2s)) {
4421 h2s->flags |= H2_SF_BLK_MBUSY;
4422 return 0;
4423 }
4424
Willy Tarreau115e83b2018-12-01 19:17:53 +01004425 /* determine the first block which must not be deleted, blk_end may
4426 * be NULL if all blocks have to be deleted.
4427 */
4428 idx = htx_get_head(htx);
4429 blk_end = NULL;
4430 while (idx != -1) {
4431 type = htx_get_blk_type(htx_get_blk(htx, idx));
4432 idx = htx_get_next(htx, idx);
4433 if (type == HTX_BLK_EOH) {
4434 if (idx != -1)
4435 blk_end = htx_get_blk(htx, idx);
4436 break;
4437 }
4438 }
4439
4440 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004441 blk = htx_get_head_blk(htx);
4442 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_RES_SL);
4443 ALREADY_CHECKED(blk);
4444 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004445 h2s->status = sl->info.res.status;
Willy Tarreauaafdf582018-12-10 18:06:40 +01004446 if (h2s->status < 100 || h2s->status > 999)
4447 goto fail;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004448
4449 /* and the rest of the headers, that we dump starting at header 0 */
4450 hdr = 0;
4451
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004452 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004453 while ((idx = htx_get_next(htx, idx)) != -1) {
4454 blk = htx_get_blk(htx, idx);
4455 type = htx_get_blk_type(blk);
4456
4457 if (type == HTX_BLK_UNUSED)
4458 continue;
4459
4460 if (type != HTX_BLK_HDR)
4461 break;
4462
4463 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4464 goto fail;
4465
4466 list[hdr].n = htx_get_blk_name(htx, blk);
4467 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004468 hdr++;
4469 }
4470
4471 /* marker for end of headers */
4472 list[hdr].n = ist("");
4473
4474 if (h2s->status == 204 || h2s->status == 304) {
4475 /* no contents, claim c-len is present and set to zero */
4476 es_now = 1;
4477 }
4478
Willy Tarreau9c218e72019-05-26 10:08:28 +02004479 mbuf = br_tail(h2c->mbuf);
4480 retry:
4481 if (!h2_get_buf(h2c, mbuf)) {
4482 h2c->flags |= H2_CF_MUX_MALLOC;
4483 h2s->flags |= H2_SF_BLK_MROOM;
4484 return 0;
4485 }
4486
Willy Tarreau115e83b2018-12-01 19:17:53 +01004487 chunk_reset(&outbuf);
4488
4489 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004490 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4491 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004492 break;
4493 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004494 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004495 }
4496
4497 if (outbuf.size < 9)
4498 goto full;
4499
4500 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4501 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4502 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4503 outbuf.data = 9;
4504
4505 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004506 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004507 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004508 goto realign_again;
4509 goto full;
4510 }
4511
4512 /* encode all headers, stop at empty name */
4513 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4514 /* these ones do not exist in H2 and must be dropped. */
4515 if (isteq(list[hdr].n, ist("connection")) ||
4516 isteq(list[hdr].n, ist("proxy-connection")) ||
4517 isteq(list[hdr].n, ist("keep-alive")) ||
4518 isteq(list[hdr].n, ist("upgrade")) ||
4519 isteq(list[hdr].n, ist("transfer-encoding")))
4520 continue;
4521
4522 if (isteq(list[hdr].n, ist("")))
4523 break; // end
4524
4525 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4526 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004527 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004528 goto realign_again;
4529 goto full;
4530 }
4531 }
4532
Christopher Faulet0b465482019-02-19 15:14:23 +01004533 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004534 * FIXME: we should also set it when we know for sure that the
4535 * content-length is zero as well as on 204/304
4536 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004537 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4538 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004539 es_now = 1;
4540
Willy Tarreau927b88b2019-03-04 08:03:25 +01004541 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004542 es_now = 1;
4543
4544 /* update the frame's size */
4545 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4546
4547 if (es_now)
4548 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4549
4550 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004551 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004552
4553 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4554 * 1xx responses, another HEADERS frame is expected.
4555 */
4556 if (h2s->status >= 200 || h2s->status == 101)
4557 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004558
Willy Tarreau115e83b2018-12-01 19:17:53 +01004559 if (es_now) {
4560 h2s->flags |= H2_SF_ES_SENT;
4561 if (h2s->st == H2_SS_OPEN)
4562 h2s->st = H2_SS_HLOC;
4563 else
4564 h2s_close(h2s);
4565 }
4566
4567 /* OK we could properly deliver the response */
4568
4569 /* remove all header blocks including the EOH and compute the
4570 * corresponding size.
4571 *
4572 * FIXME: We should remove everything when es_now is set.
4573 */
4574 ret = 0;
4575 idx = htx_get_head(htx);
4576 blk = htx_get_blk(htx, idx);
4577 while (blk != blk_end) {
4578 ret += htx_get_blksz(blk);
4579 blk = htx_remove_blk(htx, blk);
4580 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004581
Christopher Faulet316934d2019-05-15 14:22:48 +02004582 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4583 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004584 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004585 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004586 end:
4587 return ret;
4588 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004589 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4590 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004591 h2c->flags |= H2_CF_MUX_MFULL;
4592 h2s->flags |= H2_SF_BLK_MROOM;
4593 ret = 0;
4594 goto end;
4595 fail:
4596 /* unparsable HTX messages, too large ones to be produced in the local
4597 * list etc go here (unrecoverable errors).
4598 */
4599 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4600 ret = 0;
4601 goto end;
4602}
4603
Willy Tarreau80739692018-10-05 11:35:57 +02004604/* Try to send a HEADERS frame matching HTX request present in HTX message
4605 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4606 * must check the stream's status to detect any error which might have happened
4607 * subsequently to a successful send. The htx blocks are automatically removed
4608 * from the message. The htx message is assumed to be valid since produced from
4609 * the internal code, hence it contains a start line, an optional series of
4610 * header blocks and an end of header, otherwise an invalid frame could be
4611 * emitted and the resulting htx message could be left in an inconsistent state.
4612 */
4613static size_t h2s_htx_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
4614{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004615 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004616 struct h2c *h2c = h2s->h2c;
4617 struct htx_blk *blk;
4618 struct htx_blk *blk_end;
4619 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004620 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004621 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004622 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004623 enum htx_blk_type type;
4624 int es_now = 0;
4625 int ret = 0;
4626 int hdr;
4627 int idx;
4628
4629 if (h2c_mux_busy(h2c, h2s)) {
4630 h2s->flags |= H2_SF_BLK_MBUSY;
4631 return 0;
4632 }
4633
Willy Tarreau80739692018-10-05 11:35:57 +02004634 /* determine the first block which must not be deleted, blk_end may
4635 * be NULL if all blocks have to be deleted.
4636 */
4637 idx = htx_get_head(htx);
4638 blk_end = NULL;
4639 while (idx != -1) {
4640 type = htx_get_blk_type(htx_get_blk(htx, idx));
4641 idx = htx_get_next(htx, idx);
4642 if (type == HTX_BLK_EOH) {
4643 if (idx != -1)
4644 blk_end = htx_get_blk(htx, idx);
4645 break;
4646 }
4647 }
4648
4649 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004650 blk = htx_get_head_blk(htx);
4651 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
4652 ALREADY_CHECKED(blk);
4653 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004654 meth = htx_sl_req_meth(sl);
4655 path = htx_sl_req_uri(sl);
4656
4657 /* and the rest of the headers, that we dump starting at header 0 */
4658 hdr = 0;
4659
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004660 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004661 while ((idx = htx_get_next(htx, idx)) != -1) {
4662 blk = htx_get_blk(htx, idx);
4663 type = htx_get_blk_type(blk);
4664
4665 if (type == HTX_BLK_UNUSED)
4666 continue;
4667
4668 if (type != HTX_BLK_HDR)
4669 break;
4670
4671 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
4672 goto fail;
4673
4674 list[hdr].n = htx_get_blk_name(htx, blk);
4675 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004676 hdr++;
4677 }
4678
4679 /* marker for end of headers */
4680 list[hdr].n = ist("");
4681
Willy Tarreau9c218e72019-05-26 10:08:28 +02004682 mbuf = br_tail(h2c->mbuf);
4683 retry:
4684 if (!h2_get_buf(h2c, mbuf)) {
4685 h2c->flags |= H2_CF_MUX_MALLOC;
4686 h2s->flags |= H2_SF_BLK_MROOM;
4687 return 0;
4688 }
4689
Willy Tarreau80739692018-10-05 11:35:57 +02004690 chunk_reset(&outbuf);
4691
4692 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004693 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4694 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004695 break;
4696 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004697 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004698 }
4699
4700 if (outbuf.size < 9)
4701 goto full;
4702
4703 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4704 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4705 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4706 outbuf.data = 9;
4707
4708 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004709 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004710 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004711 goto realign_again;
4712 goto full;
4713 }
4714
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004715 /* RFC7540 #8.3: the CONNECT method must have :
4716 * - :authority set to the URI part (host:port)
4717 * - :method set to CONNECT
4718 * - :scheme and :path omitted
4719 */
4720 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4721 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004722 struct ist scheme;
4723
4724 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4725 scheme = ist("http");
4726 else
4727 scheme = ist("https");
4728
4729 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004730 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004731 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004732 goto realign_again;
4733 goto full;
4734 }
Willy Tarreau80739692018-10-05 11:35:57 +02004735
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004736 /* encode the path, which necessarily is the second one */
4737 if (!hpack_encode_path(&outbuf, path)) {
4738 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004739 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004740 goto realign_again;
4741 goto full;
4742 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004743
4744 /* look for the Host header and place it in :authority */
4745 auth = ist2(NULL, 0);
4746 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4747 if (isteq(list[hdr].n, ist("")))
4748 break; // end
4749
4750 if (isteq(list[hdr].n, ist("host"))) {
4751 auth = list[hdr].v;
4752 break;
4753 }
4754 }
4755 }
4756 else {
4757 /* for CONNECT, :authority is taken from the path */
4758 auth = path;
4759 }
4760
4761 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4762 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004763 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004764 goto realign_again;
4765 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004766 }
4767
4768 /* encode all headers, stop at empty name */
4769 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4770 /* these ones do not exist in H2 and must be dropped. */
4771 if (isteq(list[hdr].n, ist("connection")) ||
Willy Tarreau053c1572019-02-01 16:13:59 +01004772 isteq(list[hdr].n, ist("host")) ||
Willy Tarreau80739692018-10-05 11:35:57 +02004773 isteq(list[hdr].n, ist("proxy-connection")) ||
4774 isteq(list[hdr].n, ist("keep-alive")) ||
4775 isteq(list[hdr].n, ist("upgrade")) ||
4776 isteq(list[hdr].n, ist("transfer-encoding")))
4777 continue;
4778
4779 if (isteq(list[hdr].n, ist("")))
4780 break; // end
4781
4782 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4783 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004784 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004785 goto realign_again;
4786 goto full;
4787 }
4788 }
4789
4790 /* we may need to add END_STREAM if we have no body :
4791 * - request already closed, or :
4792 * - no transfer-encoding, and :
4793 * - no content-length or content-length:0
4794 * Fixme: this doesn't take into account CONNECT requests.
4795 */
4796 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4797 es_now = 1;
4798
4799 if (sl->flags & HTX_SL_F_BODYLESS)
4800 es_now = 1;
4801
Willy Tarreau927b88b2019-03-04 08:03:25 +01004802 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004803 es_now = 1;
4804
4805 /* update the frame's size */
4806 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4807
4808 if (es_now)
4809 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4810
4811 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004812 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004813 h2s->flags |= H2_SF_HEADERS_SENT;
4814 h2s->st = H2_SS_OPEN;
4815
Willy Tarreau80739692018-10-05 11:35:57 +02004816 if (es_now) {
4817 // trim any possibly pending data (eg: inconsistent content-length)
4818 h2s->flags |= H2_SF_ES_SENT;
4819 h2s->st = H2_SS_HLOC;
4820 }
4821
4822 /* remove all header blocks including the EOH and compute the
4823 * corresponding size.
4824 *
4825 * FIXME: We should remove everything when es_now is set.
4826 */
4827 ret = 0;
4828 idx = htx_get_head(htx);
4829 blk = htx_get_blk(htx, idx);
4830 while (blk != blk_end) {
4831 ret += htx_get_blksz(blk);
4832 blk = htx_remove_blk(htx, blk);
4833 }
4834
Christopher Faulet316934d2019-05-15 14:22:48 +02004835 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4836 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02004837 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004838 }
Willy Tarreau80739692018-10-05 11:35:57 +02004839
4840 end:
4841 return ret;
4842 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004843 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4844 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02004845 h2c->flags |= H2_CF_MUX_MFULL;
4846 h2s->flags |= H2_SF_BLK_MROOM;
4847 ret = 0;
4848 goto end;
4849 fail:
4850 /* unparsable HTX messages, too large ones to be produced in the local
4851 * list etc go here (unrecoverable errors).
4852 */
4853 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4854 ret = 0;
4855 goto end;
4856}
4857
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004858/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01004859 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
4860 * caller must check the stream's status to detect any error which might have
4861 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02004862 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004863 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01004864static size_t h2s_htx_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004865{
4866 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004867 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004868 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004869 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004870 size_t total = 0;
4871 int es_now = 0;
4872 int bsize; /* htx block size */
4873 int fsize; /* h2 frame size */
4874 struct htx_blk *blk;
4875 enum htx_blk_type type;
4876 int idx;
4877
4878 if (h2c_mux_busy(h2c, h2s)) {
4879 h2s->flags |= H2_SF_BLK_MBUSY;
4880 goto end;
4881 }
4882
Willy Tarreau98de12a2018-12-12 07:03:00 +01004883 htx = htx_from_buf(buf);
4884
Christopher Faulet54b5e212019-06-04 10:08:28 +02004885 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
4886 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
4887 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004888 */
4889
4890 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01004891 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004892 goto end;
4893
4894 idx = htx_get_head(htx);
4895 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02004896 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004897 bsize = htx_get_blksz(blk);
4898 fsize = bsize;
4899
Christopher Faulet54b5e212019-06-04 10:08:28 +02004900 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01004901 if (h2s->flags & H2_SF_ES_SENT) {
4902 /* ES already sent */
4903 htx_remove_blk(htx, blk);
4904 total++; // EOM counts as one byte
4905 count--;
4906 goto end;
4907 }
4908 }
4909 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01004910 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004911
Willy Tarreau9c218e72019-05-26 10:08:28 +02004912 mbuf = br_tail(h2c->mbuf);
4913 retry:
4914 if (!h2_get_buf(h2c, mbuf)) {
4915 h2c->flags |= H2_CF_MUX_MALLOC;
4916 h2s->flags |= H2_SF_BLK_MROOM;
4917 goto end;
4918 }
4919
Willy Tarreau98de12a2018-12-12 07:03:00 +01004920 /* Perform some optimizations to reduce the number of buffer copies.
4921 * First, if the mux's buffer is empty and the htx area contains
4922 * exactly one data block of the same size as the requested count, and
4923 * this count fits within the frame size, the stream's window size, and
4924 * the connection's window size, then it's possible to simply swap the
4925 * caller's buffer with the mux's output buffer and adjust offsets and
4926 * length to match the entire DATA HTX block in the middle. In this
4927 * case we perform a true zero-copy operation from end-to-end. This is
4928 * the situation that happens all the time with large files. Second, if
4929 * this is not possible, but the mux's output buffer is empty, we still
4930 * have an opportunity to avoid the copy to the intermediary buffer, by
4931 * making the intermediary buffer's area point to the output buffer's
4932 * area. In this case we want to skip the HTX header to make sure that
4933 * copies remain aligned and that this operation remains possible all
4934 * the time. This goes for headers, data blocks and any data extracted
4935 * from the HTX blocks.
4936 */
4937 if (unlikely(fsize == count &&
4938 htx->used == 1 && type == HTX_BLK_DATA &&
4939 fsize <= h2s->mws && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004940 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004941
Willy Tarreaubcc45952019-05-26 10:05:50 +02004942 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01004943 /* Too bad there are data left there. We're willing to memcpy/memmove
4944 * up to 1/4 of the buffer, which means that it's OK to copy a large
4945 * frame into a buffer containing few data if it needs to be realigned,
4946 * and that it's also OK to copy few data without realigning. Otherwise
4947 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01004948 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004949 if (fsize + 9 <= b_room(mbuf) &&
4950 (b_data(mbuf) <= b_size(mbuf) / 4 ||
4951 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf))))
Willy Tarreau98de12a2018-12-12 07:03:00 +01004952 goto copy;
Willy Tarreau8ab128c2019-03-21 17:47:28 +01004953
Willy Tarreau9c218e72019-05-26 10:08:28 +02004954 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4955 goto retry;
4956
Willy Tarreau98de12a2018-12-12 07:03:00 +01004957 h2c->flags |= H2_CF_MUX_MFULL;
4958 h2s->flags |= H2_SF_BLK_MROOM;
4959 goto end;
4960 }
4961
4962 /* map an H2 frame to the HTX block so that we can put the
4963 * frame header there.
4964 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004965 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
4966 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01004967
4968 /* prepend an H2 DATA frame header just before the DATA block */
4969 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
4970 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4971 h2_set_frame_size(outbuf.area, fsize);
4972
4973 /* update windows */
4974 h2s->mws -= fsize;
4975 h2c->mws -= fsize;
4976
4977 /* and exchange with our old area */
4978 buf->area = old_area;
4979 buf->data = buf->head = 0;
4980 total += fsize;
4981 goto end;
4982 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01004983
Willy Tarreau98de12a2018-12-12 07:03:00 +01004984 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004985 /* for DATA and EOM we'll have to emit a frame, even if empty */
4986
4987 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004988 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4989 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004990 break;
4991 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004992 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004993 }
4994
4995 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02004996 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4997 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004998 h2c->flags |= H2_CF_MUX_MFULL;
4999 h2s->flags |= H2_SF_BLK_MROOM;
5000 goto end;
5001 }
5002
5003 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5004 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5005 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5006 outbuf.data = 9;
5007
5008 /* we have in <fsize> the exact number of bytes we need to copy from
5009 * the HTX buffer. We need to check this against the connection's and
5010 * the stream's send windows, and to ensure that this fits in the max
5011 * frame size and in the buffer's available space minus 9 bytes (for
5012 * the frame header). The connection's flow control is applied last so
5013 * that we can use a separate list of streams which are immediately
5014 * unblocked on window opening. Note: we don't implement padding.
5015 */
5016
5017 /* EOM is presented with bsize==1 but would lead to the emission of an
5018 * empty frame, thus we force it to zero here.
5019 */
5020 if (type == HTX_BLK_EOM)
5021 bsize = fsize = 0;
5022
5023 if (!fsize)
5024 goto send_empty;
5025
5026 if (h2s->mws <= 0) {
5027 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005028 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005029 LIST_DEL_INIT(&h2s->list);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005030 goto end;
5031 }
5032
Willy Tarreauee573762018-12-04 15:25:57 +01005033 if (fsize > count)
5034 fsize = count;
5035
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005036 if (fsize > h2s->mws)
5037 fsize = h2s->mws; // >0
5038
5039 if (h2c->mfs && fsize > h2c->mfs)
5040 fsize = h2c->mfs; // >0
5041
5042 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005043 /* It doesn't fit at once. If it at least fits once split and
5044 * the amount of data to move is low, let's defragment the
5045 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005046 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005047 if (b_space_wraps(mbuf) &&
5048 (fsize + 9 <= b_room(mbuf)) &&
5049 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005050 goto realign_again;
5051 fsize = outbuf.size - 9;
5052
5053 if (fsize <= 0) {
5054 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005055 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5056 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005057 h2c->flags |= H2_CF_MUX_MFULL;
5058 h2s->flags |= H2_SF_BLK_MROOM;
5059 goto end;
5060 }
5061 }
5062
5063 if (h2c->mws <= 0) {
5064 h2s->flags |= H2_SF_BLK_MFCTL;
5065 goto end;
5066 }
5067
5068 if (fsize > h2c->mws)
5069 fsize = h2c->mws;
5070
5071 /* now let's copy this this into the output buffer */
5072 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005073 h2s->mws -= fsize;
5074 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005075 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005076
5077 send_empty:
5078 /* update the frame's size */
5079 h2_set_frame_size(outbuf.area, fsize);
5080
5081 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5082 * meeting EOM. We should optimize this later.
5083 */
5084 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005085 total++; // EOM counts as one byte
5086 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005087 es_now = 1;
5088 }
5089
5090 if (es_now)
5091 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5092
5093 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005094 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005095
5096 /* consume incoming HTX block, including EOM */
5097 total += fsize;
5098 if (fsize == bsize) {
5099 htx_remove_blk(htx, blk);
5100 if (fsize)
5101 goto new_frame;
5102 } else {
5103 /* we've truncated this block */
5104 htx_cut_data_blk(htx, blk, fsize);
5105 }
5106
5107 if (es_now) {
5108 if (h2s->st == H2_SS_OPEN)
5109 h2s->st = H2_SS_HLOC;
5110 else
5111 h2s_close(h2s);
5112
5113 h2s->flags |= H2_SF_ES_SENT;
5114 }
5115
5116 end:
5117 return total;
5118}
5119
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005120/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5121 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5122 * processed. The caller must check the stream's status to detect any error
5123 * which might have happened subsequently to a successful send. The htx blocks
5124 * are automatically removed from the message. The htx message is assumed to be
5125 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005126 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005127 * as a single frame. The ES flag is always set.
5128 */
5129static size_t h2s_htx_make_trailers(struct h2s *h2s, struct htx *htx)
5130{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005131 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005132 struct h2c *h2c = h2s->h2c;
5133 struct htx_blk *blk;
5134 struct htx_blk *blk_end;
5135 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005136 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005137 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005138 int ret = 0;
5139 int hdr;
5140 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005141
5142 if (h2c_mux_busy(h2c, h2s)) {
5143 h2s->flags |= H2_SF_BLK_MBUSY;
5144 goto end;
5145 }
5146
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005147 /* determine the first block which must not be deleted, blk_end may
5148 * be NULL if all blocks have to be deleted. also get trailers.
5149 */
5150 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005151 blk_end = NULL;
5152
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005153 hdr = 0;
5154 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005155 blk = htx_get_blk(htx, idx);
5156 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005157 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005158 if (type == HTX_BLK_UNUSED)
5159 continue;
5160
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005161 if (type == HTX_BLK_EOT) {
5162 if (idx != -1)
5163 blk_end = blk;
5164 break;
5165 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005166 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005167 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005168
5169 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1))
5170 goto fail;
5171
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005172 list[hdr].n = htx_get_blk_name(htx, blk);
5173 list[hdr].v = htx_get_blk_value(htx, blk);
5174 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005175 }
5176
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005177 /* marker for end of trailers */
5178 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005179
Willy Tarreau9c218e72019-05-26 10:08:28 +02005180 mbuf = br_tail(h2c->mbuf);
5181 retry:
5182 if (!h2_get_buf(h2c, mbuf)) {
5183 h2c->flags |= H2_CF_MUX_MALLOC;
5184 h2s->flags |= H2_SF_BLK_MROOM;
5185 goto end;
5186 }
5187
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005188 chunk_reset(&outbuf);
5189
5190 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005191 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5192 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005193 break;
5194 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005195 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005196 }
5197
5198 if (outbuf.size < 9)
5199 goto full;
5200
5201 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5202 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5203 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5204 outbuf.data = 9;
5205
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005206 /* encode all headers */
5207 for (idx = 0; idx < hdr; idx++) {
5208 /* these ones do not exist in H2 or must not appear in
5209 * trailers and must be dropped.
5210 */
5211 if (isteq(list[idx].n, ist("host")) ||
5212 isteq(list[idx].n, ist("content-length")) ||
5213 isteq(list[idx].n, ist("connection")) ||
5214 isteq(list[idx].n, ist("proxy-connection")) ||
5215 isteq(list[idx].n, ist("keep-alive")) ||
5216 isteq(list[idx].n, ist("upgrade")) ||
5217 isteq(list[idx].n, ist("te")) ||
5218 isteq(list[idx].n, ist("transfer-encoding")))
5219 continue;
5220
5221 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5222 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005223 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005224 goto realign_again;
5225 goto full;
5226 }
5227 }
5228
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005229 if (outbuf.data == 9) {
5230 /* here we have a problem, we have nothing to emit (either we
5231 * received an empty trailers block followed or we removed its
5232 * contents above). Because of this we can't send a HEADERS
5233 * frame, so we have to cheat and instead send an empty DATA
5234 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005235 */
5236 outbuf.area[3] = H2_FT_DATA;
5237 outbuf.area[4] = H2_F_DATA_END_STREAM;
5238 }
5239
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005240 /* update the frame's size */
5241 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5242
5243 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005244 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005245 h2s->flags |= H2_SF_ES_SENT;
5246
5247 if (h2s->st == H2_SS_OPEN)
5248 h2s->st = H2_SS_HLOC;
5249 else
5250 h2s_close(h2s);
5251
5252 /* OK we could properly deliver the response */
5253 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005254 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005255 ret = 0;
5256 idx = htx_get_head(htx);
5257 blk = htx_get_blk(htx, idx);
5258 while (blk != blk_end) {
5259 ret += htx_get_blksz(blk);
5260 blk = htx_remove_blk(htx, blk);
5261 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005262
5263 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5264 ret += htx_get_blksz(blk_end);
5265 htx_remove_blk(htx, blk_end);
5266 }
5267
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005268 end:
5269 return ret;
5270 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005271 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5272 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005273 h2c->flags |= H2_CF_MUX_MFULL;
5274 h2s->flags |= H2_SF_BLK_MROOM;
5275 ret = 0;
5276 goto end;
5277 fail:
5278 /* unparsable HTX messages, too large ones to be produced in the local
5279 * list etc go here (unrecoverable errors).
5280 */
5281 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5282 ret = 0;
5283 goto end;
5284}
5285
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005286/* Called from the upper layer, to subscribe to events, such as being able to send.
5287 * The <param> argument here is supposed to be a pointer to a wait_event struct
5288 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5289 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5290 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5291 * returns 0 except for the error above.
5292 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005293static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5294{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005295 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005296 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005297 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005298
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005299 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005300 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005301 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5302 sw->events |= SUB_RETRY_RECV;
5303 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005304 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005305 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005306 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard6ff20392018-07-17 18:46:31 +02005307 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005308 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5309 sw->events |= SUB_RETRY_SEND;
5310 h2s->send_wait = sw;
5311 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5312 !LIST_ADDED(&h2s->list)) {
5313 if (h2s->flags & H2_SF_BLK_MFCTL)
5314 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5315 else
5316 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005317 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005318 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005319 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005320 if (event_type != 0)
5321 return -1;
5322 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005323}
5324
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005325/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5326 * The <param> argument here is supposed to be a pointer to the same wait_event
5327 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5328 * It always returns zero.
5329 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005330static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5331{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005332 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005333 struct h2s *h2s = cs->ctx;
5334
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005335 if (event_type & SUB_RETRY_RECV) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005336 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005337 BUG_ON(h2s->recv_wait != sw);
5338 sw->events &= ~SUB_RETRY_RECV;
5339 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005340 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005341 if (event_type & SUB_RETRY_SEND) {
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005342 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005343 BUG_ON(h2s->send_wait != sw);
5344 LIST_DEL(&h2s->list);
5345 LIST_INIT(&h2s->list);
5346 sw->events &= ~SUB_RETRY_SEND;
5347 /* We were about to send, make sure it does not happen */
5348 if (LIST_ADDED(&h2s->sending_list) &&
5349 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02005350 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005351 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005352 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005353 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005354 }
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005355 return 0;
5356}
5357
5358
Olivier Houchard511efea2018-08-16 15:30:32 +02005359/* Called from the upper layer, to receive data */
5360static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5361{
Olivier Houchard638b7992018-08-16 15:41:52 +02005362 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005363 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005364 struct htx *h2s_htx = NULL;
5365 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005366 size_t ret = 0;
5367
5368 /* transfer possibly pending data to the upper layer */
Willy Tarreau86724e22018-12-01 23:19:43 +01005369 if (h2c->proxy->options2 & PR_O2_USE_HTX) {
Willy Tarreau86724e22018-12-01 23:19:43 +01005370 h2s_htx = htx_from_buf(&h2s->rxbuf);
Olivier Houchard56b03482018-12-10 16:09:53 +01005371 if (htx_is_empty(h2s_htx)) {
Christopher Faulet37070b22019-02-14 15:12:14 +01005372 /* Here htx_to_buf() will set buffer data to 0 because
5373 * the HTX is empty.
5374 */
5375 htx_to_buf(h2s_htx, &h2s->rxbuf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005376 goto end;
Olivier Houchard56b03482018-12-10 16:09:53 +01005377 }
Willy Tarreau86724e22018-12-01 23:19:43 +01005378
Christopher Faulet156852b2019-05-16 11:29:13 +02005379 ret = h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005380 buf_htx = htx_from_buf(buf);
Willy Tarreau86724e22018-12-01 23:19:43 +01005381
Christopher Faulet2f6edc82019-05-15 10:07:59 +02005382 /* <buf> is empty and the message is small enough, swap the
5383 * buffers. */
5384 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
5385 htx_to_buf(buf_htx, buf);
5386 htx_to_buf(h2s_htx, &h2s->rxbuf);
5387 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5388 goto end;
5389 }
5390
Christopher Faulet156852b2019-05-16 11:29:13 +02005391 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005392
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005393 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
Willy Tarreau7196dd62019-03-05 10:51:11 +01005394 buf_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta61e97b2019-05-16 11:30:31 +02005395 if (htx_is_empty(buf_htx))
5396 cs->flags |= CS_FL_EOI;
5397 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005398
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01005399 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005400 htx_to_buf(buf_htx, buf);
5401 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet156852b2019-05-16 11:29:13 +02005402 ret -= h2s_htx->data;
Willy Tarreau86724e22018-12-01 23:19:43 +01005403 }
5404 else {
5405 ret = b_xfer(buf, &h2s->rxbuf, count);
5406 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005407
Christopher Faulet37070b22019-02-14 15:12:14 +01005408 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005409 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005410 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005411 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005412 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005413 if (h2s->flags & H2_SF_ES_RCVD)
5414 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02005415 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005416 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005417 if (cs->flags & CS_FL_ERR_PENDING)
5418 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005419 if (b_size(&h2s->rxbuf)) {
5420 b_free(&h2s->rxbuf);
5421 offer_buffers(NULL, tasks_run_queue);
5422 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005423 }
5424
Willy Tarreau082f5592018-11-25 08:03:32 +01005425 if (ret && h2c->dsi == h2s->id) {
5426 /* demux is blocking on this stream's buffer */
5427 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005428 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005429 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005430
Olivier Houchard511efea2018-08-16 15:30:32 +02005431 return ret;
5432}
5433
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005434/* stops all senders of this connection for example when the mux buffer is full.
5435 * They are moved from the sending_list to either fctl_list or send_list.
5436 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005437static void h2_stop_senders(struct h2c *h2c)
5438{
5439 struct h2s *h2s, *h2s_back;
5440
Olivier Houchardd360ac62019-03-22 17:37:16 +01005441 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5442 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02005443 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005444 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005445 }
5446}
5447
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005448/* Called from the upper layer, to send data from buffer <buf> for no more than
5449 * <count> bytes. Returns the number of bytes effectively sent. Some status
5450 * flags may be updated on the conn_stream.
5451 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005452static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005453{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005454 struct h2s *h2s = cs->ctx;
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005455 size_t orig_count = count;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005456 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005457 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005458 struct htx *htx;
5459 struct htx_blk *blk;
5460 enum htx_blk_type btype;
5461 uint32_t bsize;
5462 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005463
Olivier Houchardd360ac62019-03-22 17:37:16 +01005464 /* If we were not just woken because we wanted to send but couldn't,
5465 * and there's somebody else that is waiting to send, do nothing,
5466 * we will subscribe later and be put at the end of the list
5467 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005468 if (!LIST_ADDED(&h2s->sending_list) &&
Olivier Houchardd360ac62019-03-22 17:37:16 +01005469 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list)))
5470 return 0;
Olivier Houchard998410a2019-04-15 19:23:37 +02005471 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005472
Olivier Houchard998410a2019-04-15 19:23:37 +02005473 /* We couldn't set it to NULL before, because we needed it in case
5474 * we had to cancel the tasklet
5475 */
5476 h2s->send_wait = NULL;
5477
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005478 if (h2s->h2c->st0 < H2_CS_FRAME_H)
5479 return 0;
5480
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005481 /* htx will be enough to decide if we're using HTX or legacy */
5482 htx = (h2s->h2c->proxy->options2 & PR_O2_USE_HTX) ? htx_from_buf(buf) : NULL;
5483
Willy Tarreau0bad0432018-06-14 16:54:01 +02005484 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005485 h2s->flags |= H2_SF_OUTGOING_DATA;
5486
Willy Tarreau751f2d02018-10-05 09:35:00 +02005487 if (h2s->id == 0) {
5488 int32_t id = h2c_get_next_sid(h2s->h2c);
5489
5490 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005491 cs->flags |= CS_FL_ERROR;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005492 return 0;
5493 }
5494
5495 eb32_delete(&h2s->by_id);
5496 h2s->by_id.key = h2s->id = id;
5497 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005498 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005499 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5500 }
5501
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005502 if (htx) {
Willy Tarreau2b778482019-05-06 15:00:22 +02005503 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
Willy Tarreauc14999b2018-12-06 14:09:09 +01005504 count && !htx_is_empty(htx)) {
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005505 idx = htx_get_head(htx);
5506 blk = htx_get_blk(htx, idx);
5507 btype = htx_get_blk_type(blk);
5508 bsize = htx_get_blksz(blk);
5509
5510 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005511 case HTX_BLK_REQ_SL:
5512 /* start-line before headers */
5513 ret = h2s_htx_bck_make_req_headers(h2s, htx);
5514 if (ret > 0) {
5515 total += ret;
5516 count -= ret;
5517 if (ret < bsize)
5518 goto done;
5519 }
5520 break;
5521
Willy Tarreau115e83b2018-12-01 19:17:53 +01005522 case HTX_BLK_RES_SL:
5523 /* start-line before headers */
5524 ret = h2s_htx_frt_make_resp_headers(h2s, htx);
5525 if (ret > 0) {
5526 total += ret;
5527 count -= ret;
5528 if (ret < bsize)
5529 goto done;
5530 }
5531 break;
5532
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005533 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005534 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005535 /* all these cause the emission of a DATA frame (possibly empty).
5536 * This EOM necessarily is one before trailers, as the EOM following
5537 * trailers would have been consumed by the trailers parser.
5538 */
Willy Tarreau98de12a2018-12-12 07:03:00 +01005539 ret = h2s_htx_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005540 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005541 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005542 total += ret;
5543 count -= ret;
5544 if (ret < bsize)
5545 goto done;
5546 }
5547 break;
5548
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005549 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005550 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005551 /* This is the first trailers block, all the subsequent ones AND
5552 * the EOM will be swallowed by the parser.
5553 */
5554 ret = h2s_htx_make_trailers(h2s, htx);
5555 if (ret > 0) {
5556 total += ret;
5557 count -= ret;
5558 if (ret < bsize)
5559 goto done;
5560 }
5561 break;
5562
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005563 default:
5564 htx_remove_blk(htx, blk);
5565 total += bsize;
5566 count -= bsize;
5567 break;
5568 }
5569 }
5570 goto done;
5571 }
5572
5573 /* legacy transfer mode */
Willy Tarreaua40704a2018-09-11 13:52:04 +02005574 while (h2s->h1m.state < H1_MSG_DONE && count) {
Willy Tarreau001823c2018-09-12 17:25:32 +02005575 if (h2s->h1m.state <= H1_MSG_LAST_LF) {
Willy Tarreau80739692018-10-05 11:35:57 +02005576 if (h2s->h2c->flags & H2_CF_IS_BACK)
5577 ret = -1;
5578 else
5579 ret = h2s_frt_make_resp_headers(h2s, buf, total, count);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005580 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005581 else if (h2s->h1m.state < H1_MSG_TRAILERS) {
Willy Tarreau0bad0432018-06-14 16:54:01 +02005582 ret = h2s_frt_make_resp_data(h2s, buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005583 }
Willy Tarreaua40704a2018-09-11 13:52:04 +02005584 else if (h2s->h1m.state == H1_MSG_TRAILERS) {
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005585 /* consume the trailers if any (we don't forward them for now) */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005586 ret = h1_measure_trailers(buf, total, count);
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005587
Willy Tarreau5dd17352018-06-14 13:33:30 +02005588 if (unlikely((int)ret <= 0)) {
5589 if ((int)ret < 0)
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005590 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5591 break;
5592 }
Willy Tarreau35a62702018-02-27 15:37:25 +01005593 // trim any possibly pending data (eg: extra CR-LF, ...)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005594 total += count;
5595 count = 0;
Willy Tarreaua40704a2018-09-11 13:52:04 +02005596 h2s->h1m.state = H1_MSG_DONE;
Willy Tarreau9d89ac82017-10-31 17:15:59 +01005597 break;
Willy Tarreauc652dbd2017-10-19 11:16:37 +02005598 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005599 else {
Willy Tarreauec988c72018-12-19 18:00:29 +01005600 cs_set_error(cs);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005601 break;
5602 }
Willy Tarreau0bad0432018-06-14 16:54:01 +02005603
5604 total += ret;
5605 count -= ret;
5606
Willy Tarreau2b778482019-05-06 15:00:22 +02005607 if (h2s->st >= H2_SS_HLOC)
Willy Tarreau0bad0432018-06-14 16:54:01 +02005608 break;
5609
5610 if (h2s->flags & H2_SF_BLK_ANY)
5611 break;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005612 }
5613
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005614 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005615 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005616 /* trim any possibly pending data after we close (extra CR-LF,
5617 * unprocessed trailers, abnormal extra data, ...)
5618 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005619 total += count;
5620 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005621 }
5622
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005623 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005624 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreauec988c72018-12-19 18:00:29 +01005625 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005626 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005627 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005628 }
5629
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005630 if (htx) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005631 htx_to_buf(htx, buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005632 } else {
5633 b_del(buf, total);
5634 }
Olivier Houchardd846c262018-10-19 17:24:29 +02005635
5636 /* The mux is full, cancel the pending tasks */
5637 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
5638 (h2s->flags & H2_SF_BLK_MBUSY))
5639 h2_stop_senders(h2s->h2c);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005640
Olivier Houchard8122a8d2018-12-03 19:13:29 +01005641 /* If we're running HTX, and we read the whole buffer, then pretend
5642 * we read exactly what the caller specified, as with HTX the caller
5643 * will always give the buffer size, instead of the amount of data
5644 * available.
5645 */
5646 if (htx && !b_data(buf))
5647 total = orig_count;
5648
Olivier Houchard7505f942018-08-21 18:10:44 +02005649 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005650 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005651 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005652
Olivier Houchard7505f942018-08-21 18:10:44 +02005653 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005654 /* If we're waiting for flow control, and we got a shutr on the
5655 * connection, we will never be unlocked, so add an error on
5656 * the conn_stream.
5657 */
5658 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5659 !b_data(&h2s->h2c->dbuf) &&
5660 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
5661 if (cs->flags & CS_FL_EOS)
5662 cs->flags |= CS_FL_ERROR;
5663 else
5664 cs->flags |= CS_FL_ERR_PENDING;
5665 }
Olivier Houchard998410a2019-04-15 19:23:37 +02005666 if (total > 0) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01005667 /* Ok we managed to send something, leave the send_list */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005668 LIST_DEL_INIT(&h2s->list);
5669 }
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005670 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005671}
5672
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005673/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005674static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005675{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005676 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005677 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005678 struct eb32_node *node;
5679 int fctl_cnt = 0;
5680 int send_cnt = 0;
5681 int tree_cnt = 0;
5682 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005683 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005684
5685 if (!h2c)
5686 return;
5687
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005688 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005689 fctl_cnt++;
5690
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005691 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005692 send_cnt++;
5693
Willy Tarreau3af37712018-12-18 14:34:41 +01005694 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005695 node = eb32_first(&h2c->streams_by_id);
5696 while (node) {
5697 h2s = container_of(node, struct h2s, by_id);
5698 tree_cnt++;
5699 if (!h2s->cs)
5700 orph_cnt++;
5701 node = eb32_next(node);
5702 }
5703
Willy Tarreau60f62682019-05-26 11:32:27 +02005704 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005705 tmbuf = br_tail(h2c->mbuf);
Willy Tarreau987c0632018-12-18 10:32:05 +01005706 chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
5707 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005708 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5709 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau616ac812018-07-24 14:12:42 +02005710 h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
5711 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005712 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005713 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5714 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5715 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005716 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5717 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5718 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005719 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5720 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005721
5722 if (h2s) {
5723 chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5724 h2s, h2s->id, h2s->flags,
5725 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5726 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5727 h2s->cs);
5728 if (h2s->cs)
5729 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5730 h2s->cs->flags, h2s->cs->data);
5731 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005732}
Willy Tarreau62f52692017-10-08 23:01:42 +02005733
5734/*******************************************************/
5735/* functions below are dedicated to the config parsers */
5736/*******************************************************/
5737
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005738/* config parser for global "tune.h2.header-table-size" */
5739static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5740 struct proxy *defpx, const char *file, int line,
5741 char **err)
5742{
5743 if (too_many_args(1, args, err, NULL))
5744 return -1;
5745
5746 h2_settings_header_table_size = atoi(args[1]);
5747 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5748 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5749 return -1;
5750 }
5751 return 0;
5752}
Willy Tarreau62f52692017-10-08 23:01:42 +02005753
Willy Tarreaue6baec02017-07-27 11:45:11 +02005754/* config parser for global "tune.h2.initial-window-size" */
5755static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5756 struct proxy *defpx, const char *file, int line,
5757 char **err)
5758{
5759 if (too_many_args(1, args, err, NULL))
5760 return -1;
5761
5762 h2_settings_initial_window_size = atoi(args[1]);
5763 if (h2_settings_initial_window_size < 0) {
5764 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5765 return -1;
5766 }
5767 return 0;
5768}
5769
Willy Tarreau5242ef82017-07-27 11:47:28 +02005770/* config parser for global "tune.h2.max-concurrent-streams" */
5771static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5772 struct proxy *defpx, const char *file, int line,
5773 char **err)
5774{
5775 if (too_many_args(1, args, err, NULL))
5776 return -1;
5777
5778 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005779 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005780 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5781 return -1;
5782 }
5783 return 0;
5784}
5785
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005786/* config parser for global "tune.h2.max-frame-size" */
5787static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5788 struct proxy *defpx, const char *file, int line,
5789 char **err)
5790{
5791 if (too_many_args(1, args, err, NULL))
5792 return -1;
5793
5794 h2_settings_max_frame_size = atoi(args[1]);
5795 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5796 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5797 return -1;
5798 }
5799 return 0;
5800}
5801
Willy Tarreau62f52692017-10-08 23:01:42 +02005802
5803/****************************************/
5804/* MUX initialization and instanciation */
5805/***************************************/
5806
5807/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005808static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005809 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005810 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005811 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005812 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02005813 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005814 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02005815 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01005816 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02005817 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01005818 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01005819 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01005820 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02005821 .shutr = h2_shutr,
5822 .shutw = h2_shutw,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005823 .show_fd = h2_show_fd,
Willy Tarreau28f1cb92017-12-20 16:14:44 +01005824 .flags = MX_FL_CLEAN_ABRT,
Willy Tarreau62f52692017-10-08 23:01:42 +02005825 .name = "H2",
5826};
5827
Christopher Faulet32f61c02018-04-10 14:33:41 +02005828/* PROTO selection : this mux registers PROTO token "h2" */
5829static struct mux_proto_list mux_proto_h2 =
Willy Tarreauf8957272018-10-03 10:25:20 +02005830 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_FE, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02005831
Willy Tarreau0108d902018-11-25 19:14:37 +01005832INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
5833
Christopher Faulet9b579102019-04-11 22:52:25 +02005834
5835/* The mux operations */
5836static const struct mux_ops h2_htx_ops = {
5837 .init = h2_init,
5838 .wake = h2_wake,
5839 .snd_buf = h2_snd_buf,
5840 .rcv_buf = h2_rcv_buf,
5841 .subscribe = h2_subscribe,
5842 .unsubscribe = h2_unsubscribe,
5843 .attach = h2_attach,
5844 .get_first_cs = h2_get_first_cs,
5845 .detach = h2_detach,
5846 .destroy = h2_destroy,
5847 .avail_streams = h2_avail_streams,
5848 .used_streams = h2_used_streams,
5849 .shutr = h2_shutr,
5850 .shutw = h2_shutw,
5851 .show_fd = h2_show_fd,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02005852 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Christopher Faulet9b579102019-04-11 22:52:25 +02005853 .name = "H2",
5854};
5855
Willy Tarreauf8957272018-10-03 10:25:20 +02005856static struct mux_proto_list mux_proto_h2_htx =
Christopher Faulet9b579102019-04-11 22:52:25 +02005857 { .token = IST("h2"), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &h2_htx_ops };
Willy Tarreauf8957272018-10-03 10:25:20 +02005858
5859INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2_htx);
5860
Willy Tarreau62f52692017-10-08 23:01:42 +02005861/* config keyword parsers */
5862static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005863 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02005864 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02005865 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005866 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02005867 { 0, NULL, NULL }
5868}};
5869
Willy Tarreau0108d902018-11-25 19:14:37 +01005870INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);