blob: be9dae928a260dab2eaf707d2de3c15d9a067f5b [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>
Willy Tarreau12ae2122019-08-08 18:23:12 +020025#include <proto/trace.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010026#include <proto/session.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020027#include <proto/stream.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010028#include <proto/stream_interface.h>
Willy Tarreauea392822017-10-31 10:02:25 +010029#include <types/session.h>
Willy Tarreau5ab6b572017-09-22 08:05:00 +020030#include <eb32tree.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020031
32
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010033/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020034static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010036static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020037static const struct h2s *h2_idle_stream;
38
Willy Tarreau5ab6b572017-09-22 08:05:00 +020039/* Connection flags (32 bit), in h2c->flags */
40#define H2_CF_NONE 0x00000000
41
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020042/* Flags indicating why writing to the mux is blocked. */
43#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
44#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
45#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
46
Willy Tarreau315d8072017-12-10 22:17:57 +010047/* Flags indicating why writing to the demux is blocked.
48 * The first two ones directly affect the ability for the mux to receive data
49 * from the connection. The other ones affect the mux's ability to demux
50 * received data.
51 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020052#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
53#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010054
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020055#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
56#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
57#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
58#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020059#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
60#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020061
Willy Tarreau081d4722017-05-16 21:51:05 +020062/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020063#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
64#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
65#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 +020066#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau97aaa672018-12-23 09:49:04 +010067#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
Willy Tarreau081d4722017-05-16 21:51:05 +020068
Willy Tarreau5ab6b572017-09-22 08:05:00 +020069/* H2 connection state, in h2c->st0 */
70enum h2_cs {
71 H2_CS_PREFACE, // init done, waiting for connection preface
72 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
73 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
74 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010075 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
76 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020077 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
78 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
79 H2_CS_ENTRIES // must be last
80} __attribute__((packed));
81
Willy Tarreau51330962019-05-26 09:38:07 +020082
Willy Tarreau9c218e72019-05-26 10:08:28 +020083/* 32 buffers: one for the ring's root, rest for the mbuf itself */
84#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020085
Willy Tarreau5ab6b572017-09-22 08:05:00 +020086/* H2 connection descriptor */
87struct h2c {
88 struct connection *conn;
89
90 enum h2_cs st0; /* mux state */
91 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
92
93 /* 16 bit hole here */
94 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010095 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020096 int32_t max_id; /* highest ID known on this connection, <0 before preface */
97 uint32_t rcvd_c; /* newly received data to ACK for the connection */
98 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
99
100 /* states for the demux direction */
101 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200102 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200103
104 int32_t dsi; /* demux stream ID (<0 = idle) */
105 int32_t dfl; /* demux frame length (if dsi >= 0) */
106 int8_t dft; /* demux frame type (if dsi >= 0) */
107 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100108 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
109 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200110 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
111
112 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200113 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200114 int32_t msi; /* mux stream ID (<0 = idle) */
115 int32_t mfl; /* mux frame length (if dsi >= 0) */
116 int8_t mft; /* mux frame type (if dsi >= 0) */
117 int8_t mff; /* mux frame flags (if dsi >= 0) */
118 /* 16 bit hole here */
119 int32_t miw; /* mux initial window size for all new streams */
120 int32_t mws; /* mux window size. Can be negative. */
121 int32_t mfs; /* mux's max frame size */
122
Willy Tarreauea392822017-10-31 10:02:25 +0100123 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100124 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100125 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200126 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100127 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100128 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200129 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100130 struct task *task; /* timeout management task */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200131 struct eb_root streams_by_id; /* all active streams by their ID */
132 struct list send_list; /* list of blocked streams requesting to send */
133 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200134 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Olivier Houchardd846c262018-10-19 17:24:29 +0200135 struct list sending_list; /* list of h2s scheduled to send data */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100136 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200137 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200138};
139
Willy Tarreau18312642017-10-11 07:57:07 +0200140/* H2 stream state, in h2s->st */
141enum h2_ss {
142 H2_SS_IDLE = 0, // idle
143 H2_SS_RLOC, // reserved(local)
144 H2_SS_RREM, // reserved(remote)
145 H2_SS_OPEN, // open
146 H2_SS_HREM, // half-closed(remote)
147 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200148 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200149 H2_SS_CLOSED, // closed
150 H2_SS_ENTRIES // must be last
151} __attribute__((packed));
152
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200153#define H2_SS_MASK(state) (1UL << (state))
154#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
155#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
156#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
157#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
158#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
159#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
160#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
161#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200162
Willy Tarreau18312642017-10-11 07:57:07 +0200163/* HTTP/2 stream flags (32 bit), in h2s->flags */
164#define H2_SF_NONE 0x00000000
165#define H2_SF_ES_RCVD 0x00000001
166#define H2_SF_ES_SENT 0x00000002
167
168#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
169#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
170
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200171/* stream flags indicating the reason the stream is blocked */
172#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200173#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
174#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
175#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200176#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
177
Willy Tarreau454f9052017-10-26 19:40:35 +0200178/* stream flags indicating how data is supposed to be sent */
179#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Willy Tarreau454f9052017-10-26 19:40:35 +0200180
Christopher Faulet3e395632019-09-13 09:37:21 +0200181/* unused flags: 0x00000200, 0x00000400, 0x00000800 */
Willy Tarreau454f9052017-10-26 19:40:35 +0200182
Willy Tarreau67434202017-11-06 20:20:51 +0100183#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100184#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100185
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100186#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
187
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200188#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
189#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200190#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200191
192
Willy Tarreau18312642017-10-11 07:57:07 +0200193/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
194 * it is being processed in the internal HTTP representation (H1 for now).
195 */
196struct h2s {
197 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100198 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200199 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200200 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200201 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200202 int32_t id; /* stream ID */
203 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200204 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200205 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
206 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200207 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100208 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200209 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200210 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 +0100211 struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
212 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 +0200213 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Olivier Houchardd360ac62019-03-22 17:37:16 +0100214 struct list sending_list; /* To be used when adding in h2c->sending_list */
Willy Tarreau18312642017-10-11 07:57:07 +0200215};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200216
Willy Tarreauc6405142017-09-21 20:23:50 +0200217/* descriptor for an h2 frame header */
218struct h2_fh {
219 uint32_t len; /* length, host order, 24 bits */
220 uint32_t sid; /* stream id, host order, 31 bits */
221 uint8_t ft; /* frame type */
222 uint8_t ff; /* frame flags */
223};
224
Willy Tarreau12ae2122019-08-08 18:23:12 +0200225/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200226static void h2_trace(enum trace_level level, uint64_t mask, \
227 const struct trace_source *src,
228 const struct ist where, const struct ist func,
229 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200230
231/* The event representation is split like this :
232 * strm - application layer
233 * h2s - internal H2 stream
234 * h2c - internal H2 connection
235 * conn - external connection
236 *
237 */
238static const struct trace_event h2_trace_events[] = {
239#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200240 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200241#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200242 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200243#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200244 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200245#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200246 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200247#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200248 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200249#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200250 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200251#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200252 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200253#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200254 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200255#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200256 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200257#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H2 input (ES or RST)" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of H2 end of input (ES or RST)" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343 { }
344};
345
346static const struct name_desc h2_trace_lockon_args[4] = {
347 /* arg1 */ { /* already used by the connection */ },
348 /* arg2 */ { .name="h2s", .desc="H2 stream" },
349 /* arg3 */ { },
350 /* arg4 */ { }
351};
352
353static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200354#define H2_VERB_CLEAN 1
355 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
356#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200358#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200359 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200360#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200361 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200362#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200363 { .name="complete", .desc="add full data dump when available" },
364 { /* end */ }
365};
366
367static struct trace_source trace_h2 = {
368 .name = IST("h2"),
369 .desc = "HTTP/2 multiplexer",
370 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200371 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200372 .known_events = h2_trace_events,
373 .lockon_args = h2_trace_lockon_args,
374 .decoding = h2_trace_decoding,
375 .report_events = ~0, // report everything by default
376};
377
378#define TRACE_SOURCE &trace_h2
379INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
380
Willy Tarreau8ceae722018-11-26 11:58:30 +0100381/* the h2c connection pool */
382DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
383
384/* the h2s stream pool */
385DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
386
Willy Tarreaudc572362018-12-12 08:08:05 +0100387/* The default connection window size is 65535, it may only be enlarged using
388 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
389 * we'll pretend we already received the difference between the two to send
390 * an equivalent window update to enlarge it to 2G-1.
391 */
392#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
393
Willy Tarreau455d5682019-05-24 19:42:18 +0200394/* maximum amount of data we're OK with re-aligning for buffer optimizations */
395#define MAX_DATA_REALIGN 1024
396
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200397/* a few settings from the global section */
398static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200399static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100400static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100401static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200402
Willy Tarreau2a856182017-05-16 15:20:39 +0200403/* a dmumy closed stream */
404static const struct h2s *h2_closed_stream = &(const struct h2s){
405 .cs = NULL,
406 .h2c = NULL,
407 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100408 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100409 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200410 .id = 0,
411};
412
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100413/* a dmumy closed stream returning a PROTOCOL_ERROR error */
414static const struct h2s *h2_error_stream = &(const struct h2s){
415 .cs = NULL,
416 .h2c = NULL,
417 .st = H2_SS_CLOSED,
418 .errcode = H2_ERR_PROTOCOL_ERROR,
419 .flags = 0,
420 .id = 0,
421};
422
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100423/* a dmumy closed stream returning a REFUSED_STREAM error */
424static const struct h2s *h2_refused_stream = &(const struct h2s){
425 .cs = NULL,
426 .h2c = NULL,
427 .st = H2_SS_CLOSED,
428 .errcode = H2_ERR_REFUSED_STREAM,
429 .flags = 0,
430 .id = 0,
431};
432
Willy Tarreau2a856182017-05-16 15:20:39 +0200433/* and a dummy idle stream for use with any unannounced stream */
434static const struct h2s *h2_idle_stream = &(const struct h2s){
435 .cs = NULL,
436 .h2c = NULL,
437 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100438 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200439 .id = 0,
440};
441
Olivier Houchard9f6af332018-05-25 14:04:04 +0200442static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200443static int h2_send(struct h2c *h2c);
444static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200445static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200446static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100447static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100448static 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 +0100449static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200450static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100451static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100452static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200453
Willy Tarreauab2ec452019-08-30 07:07:08 +0200454/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
455static inline const char *h2c_st_to_str(enum h2_cs st)
456{
457 switch (st) {
458 case H2_CS_PREFACE: return "PRF";
459 case H2_CS_SETTINGS1: return "STG";
460 case H2_CS_FRAME_H: return "FRH";
461 case H2_CS_FRAME_P: return "FRP";
462 case H2_CS_FRAME_A: return "FRA";
463 case H2_CS_FRAME_E: return "FRE";
464 case H2_CS_ERROR: return "ERR";
465 case H2_CS_ERROR2: return "ER2";
466 default: return "???";
467 }
468}
469
470/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
471static inline const char *h2s_st_to_str(enum h2_ss st)
472{
473 switch (st) {
474 case H2_SS_IDLE: return "IDL"; // idle
475 case H2_SS_RLOC: return "RSL"; // reserved local
476 case H2_SS_RREM: return "RSR"; // reserved remote
477 case H2_SS_OPEN: return "OPN"; // open
478 case H2_SS_HREM: return "HCR"; // half-closed remote
479 case H2_SS_HLOC: return "HCL"; // half-closed local
480 case H2_SS_ERROR : return "ERR"; // error
481 case H2_SS_CLOSED: return "CLO"; // closed
482 default: return "???";
483 }
484}
485
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200486/* the H2 traces always expect that arg1, if non-null, is of type connection
487 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
488 * that arg3, if non-null, is either of type htx for tx headers, or of type
489 * buffer for everything else.
490 */
491static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
492 const struct ist where, const struct ist func,
493 const void *a1, const void *a2, const void *a3, const void *a4)
494{
495 const struct connection *conn = a1;
496 const struct h2c *h2c = conn ? conn->ctx : NULL;
497 const struct h2s *h2s = a2;
498 const struct buffer *buf = a3;
499 const struct htx *htx;
500 int pos;
501
502 if (!h2c) // nothing to add
503 return;
504
Willy Tarreau17104d42019-08-30 07:12:55 +0200505 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200506 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
507
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100508 if (h2c->errcode)
509 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
510
Willy Tarreau73db4342019-09-25 07:28:44 +0200511 if (h2c->dsi >= 0 &&
512 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
513 chunk_appendf(&trace_buf, " dft=%s/%02x", h2_ft_str(h2c->dft), h2c->dff);
514 }
515
516 if (h2s) {
517 if (h2s->id <= 0)
518 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
519 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100520 if (h2s->id && h2s->errcode)
521 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200522 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200523 }
524
525 /* Let's dump decoded requests and responses right after parsing. They
526 * are traced at level USER with a few recognizable flags.
527 */
528 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
529 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
530 htx = htxbuf(buf); // recv req/res
531 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
532 htx = a3; // send req/res
533 else
534 htx = NULL;
535
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200536 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200537 const struct htx_blk *blk = htx_get_blk(htx, pos);
538 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
539 enum htx_blk_type type = htx_get_blk_type(blk);
540
541 if (type == HTX_BLK_REQ_SL)
542 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200543 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200544 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
545 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
546 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
547 else if (type == HTX_BLK_RES_SL)
548 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200549 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200550 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
551 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
552 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
553 }
554}
555
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200556/* returns true if the connection is allowed to expire, false otherwise. A
557 * connection may expire when:
558 * - it has no stream
559 * - it has data in the mux buffer
560 * - it has streams in the blocked list
561 * - it has streams in the fctl list
562 * - it has streams in the send list
563 * Otherwise it means some streams are waiting in the data layer and it should
564 * not expire.
565 */
566static inline int h2c_may_expire(const struct h2c *h2c)
567{
568 return eb_is_empty(&h2c->streams_by_id) ||
569 br_data(h2c->mbuf) ||
570 !LIST_ISEMPTY(&h2c->blocked_list) ||
571 !LIST_ISEMPTY(&h2c->fctl_list) ||
572 !LIST_ISEMPTY(&h2c->send_list) ||
573 !LIST_ISEMPTY(&h2c->sending_list);
574}
575
Olivier Houchard7a977432019-03-21 15:47:13 +0100576static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200577h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100578{
579 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
580 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
581 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
582 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200583 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100584 (conn_xprt_read0_pending(h2c->conn) ||
585 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
586 return 1;
587
588 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100589}
590
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200591/*****************************************************/
592/* functions below are for dynamic buffer management */
593/*****************************************************/
594
Willy Tarreau315d8072017-12-10 22:17:57 +0100595/* indicates whether or not the we may call the h2_recv() function to attempt
596 * to receive data into the buffer and/or demux pending data. The condition is
597 * a bit complex due to some API limits for now. The rules are the following :
598 * - if an error or a shutdown was detected on the connection and the buffer
599 * is empty, we must not attempt to receive
600 * - if the demux buf failed to be allocated, we must not try to receive and
601 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100602 * - if no flag indicates a blocking condition, we may attempt to receive,
603 * regardless of whether the demux buffer is full or not, so that only
604 * de demux part decides whether or not to block. This is needed because
605 * the connection API indeed prevents us from re-enabling receipt that is
606 * already enabled in a polled state, so we must always immediately stop
607 * as soon as the demux can't proceed so as never to hit an end of read
608 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100609 * - otherwise must may not attempt
610 */
611static inline int h2_recv_allowed(const struct h2c *h2c)
612{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200613 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100614 (h2c->st0 >= H2_CS_ERROR ||
615 h2c->conn->flags & CO_FL_ERROR ||
616 conn_xprt_read0_pending(h2c->conn)))
617 return 0;
618
619 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100620 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100621 return 1;
622
623 return 0;
624}
625
Willy Tarreau47b515a2018-12-21 16:09:41 +0100626/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200627static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100628{
629 if (!h2_recv_allowed(h2c))
630 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200631 if ((!consider_buffer || !b_data(&h2c->dbuf))
632 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100633 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200634 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100635}
636
637
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100638/* returns true if the front connection has too many conn_streams attached */
639static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200640{
Willy Tarreaua8754662018-12-23 20:43:58 +0100641 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200642}
643
Willy Tarreau44e973f2018-03-01 17:49:30 +0100644/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
645 * flags are used to figure what buffer was requested. It returns 1 if the
646 * allocation succeeds, in which case the connection is woken up, or 0 if it's
647 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200648 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100649static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200650{
651 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100652 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200653
Willy Tarreau44e973f2018-03-01 17:49:30 +0100654 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200655 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200656 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200657 return 1;
658 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200659
Willy Tarreau51330962019-05-26 09:38:07 +0200660 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100661 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200662
663 if (h2c->flags & H2_CF_DEM_MROOM) {
664 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200665 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200666 }
Willy Tarreau14398122017-09-22 14:26:04 +0200667 return 1;
668 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100669
670 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
671 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200672 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100673 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200674 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100675 return 1;
676 }
677
Willy Tarreau14398122017-09-22 14:26:04 +0200678 return 0;
679}
680
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200681static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200682{
683 struct buffer *buf = NULL;
684
Willy Tarreauc234ae32019-05-13 17:56:11 +0200685 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100686 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
687 h2c->buf_wait.target = h2c;
688 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100689 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100690 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100691 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200692 __conn_xprt_stop_recv(h2c->conn);
693 }
694 return buf;
695}
696
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200697static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200698{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200699 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100700 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200701 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200702 }
703}
704
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200705static inline void h2_release_mbuf(struct h2c *h2c)
706{
707 struct buffer *buf;
708 unsigned int count = 0;
709
710 while (b_size(buf = br_head_pick(h2c->mbuf))) {
711 b_free(buf);
712 count++;
713 }
714 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200715 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200716}
717
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100718/* returns the number of allocatable outgoing streams for the connection taking
719 * the last_sid and the reserved ones into account.
720 */
721static inline int h2_streams_left(const struct h2c *h2c)
722{
723 int ret;
724
725 /* consider the number of outgoing streams we're allowed to create before
726 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
727 * nb_reserved is the number of streams which don't yet have an ID.
728 */
729 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
730 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
731 if (ret < 0)
732 ret = 0;
733 return ret;
734}
735
Willy Tarreau00f18a32019-01-26 12:19:01 +0100736/* returns the number of streams in use on a connection to figure if it's
737 * idle or not. We check nb_cs and not nb_streams as the caller will want
738 * to know if it was the last one after a detach().
739 */
740static int h2_used_streams(struct connection *conn)
741{
742 struct h2c *h2c = conn->ctx;
743
744 return h2c->nb_cs;
745}
746
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100747/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100748static int h2_avail_streams(struct connection *conn)
749{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100750 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100751 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100752 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100753
Willy Tarreau6afec462019-01-28 06:40:19 +0100754 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
755 * streams on the connection.
756 */
757 if (h2c->last_sid >= 0)
758 return 0;
759
Willy Tarreauc61966f2019-10-31 15:10:03 +0100760 if (h2c->st0 >= H2_CS_ERROR)
761 return 0;
762
Willy Tarreau86949782019-01-31 10:42:05 +0100763 /* note: may be negative if a SETTINGS frame changes the limit */
764 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100765
766 /* we must also consider the limit imposed by stream IDs */
767 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100768 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100769 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100770 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
771 ret1 = MIN(ret1, ret2);
772 }
773 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100774}
775
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200776
Willy Tarreau62f52692017-10-08 23:01:42 +0200777/*****************************************************************/
778/* functions below are dedicated to the mux setup and management */
779/*****************************************************************/
780
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200781/* Initialize the mux once it's attached. For outgoing connections, the context
782 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200783 * connections from the fact that the context is still NULL (even during mux
784 * upgrades). <input> is always used as Input buffer and may contain data. It is
785 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200786 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200787static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
788 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200789{
790 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100791 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200792 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200793
Christopher Fauletf81ef032019-10-04 15:19:43 +0200794 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200795
Willy Tarreaubafbe012017-11-24 17:34:44 +0100796 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200797 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200798 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200799
Christopher Faulete9b70722019-04-08 10:46:02 +0200800 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200801 h2c->flags = H2_CF_IS_BACK;
802 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
803 if (tick_isset(prx->timeout.serverfin))
804 h2c->shut_timeout = prx->timeout.serverfin;
805 } else {
806 h2c->flags = H2_CF_NONE;
807 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
808 if (tick_isset(prx->timeout.clientfin))
809 h2c->shut_timeout = prx->timeout.clientfin;
810 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100811
Willy Tarreau0b37d652018-10-03 10:33:02 +0200812 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100813 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100814 if (tick_isset(h2c->timeout)) {
815 t = task_new(tid_bit);
816 if (!t)
817 goto fail;
818
819 h2c->task = t;
820 t->process = h2_timeout_task;
821 t->context = h2c;
822 t->expire = tick_add(now_ms, h2c->timeout);
823 }
Willy Tarreauea392822017-10-31 10:02:25 +0100824
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200825 h2c->wait_event.tasklet = tasklet_new();
826 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200827 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200828 h2c->wait_event.tasklet->process = h2_io_cb;
829 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100830 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200831
Willy Tarreau32218eb2017-09-22 08:07:25 +0200832 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
833 if (!h2c->ddht)
834 goto fail;
835
836 /* Initialise the context. */
837 h2c->st0 = H2_CS_PREFACE;
838 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100839 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200840 h2c->max_id = -1;
841 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100842 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200843 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100844 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200845 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100846 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100847 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200848
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200849 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200850 h2c->dsi = -1;
851 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100852
Willy Tarreau32218eb2017-09-22 08:07:25 +0200853 h2c->last_sid = -1;
854
Willy Tarreau51330962019-05-26 09:38:07 +0200855 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200856 h2c->miw = 65535; /* mux initial window size */
857 h2c->mws = 65535; /* mux window size */
858 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200859 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200860 LIST_INIT(&h2c->send_list);
861 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200862 LIST_INIT(&h2c->blocked_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200863 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100864 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200865
Christopher Fauletf81ef032019-10-04 15:19:43 +0200866 conn->ctx = h2c;
867
Willy Tarreau3f133572017-10-31 19:21:06 +0100868 if (t)
869 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100870
Willy Tarreau01b44822018-10-03 14:26:37 +0200871 if (h2c->flags & H2_CF_IS_BACK) {
872 /* FIXME: this is temporary, for outgoing connections we need
873 * to immediately allocate a stream until the code is modified
874 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +0200875 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +0200876 */
877 struct h2s *h2s;
878
Christopher Fauletf81ef032019-10-04 15:19:43 +0200879 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200880 if (!h2s)
881 goto fail_stream;
882 }
883
Willy Tarreau0f383582018-10-03 14:22:21 +0200884 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200885 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +0200886 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200887 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200888 fail_stream:
889 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200890 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200891 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200892 if (h2c->wait_event.tasklet)
893 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100894 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200895 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +0200896 conn->ctx = conn_ctx; /* restore saved ctx */
897 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200898 return -1;
899}
900
Willy Tarreau751f2d02018-10-05 09:35:00 +0200901/* returns the next allocatable outgoing stream ID for the H2 connection, or
902 * -1 if no more is allocatable.
903 */
904static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
905{
906 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100907
908 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200909 id = -1;
910 return id;
911}
912
Willy Tarreau2373acc2017-10-12 17:35:14 +0200913/* returns the stream associated with id <id> or NULL if not found */
914static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
915{
916 struct eb32_node *node;
917
Willy Tarreau751f2d02018-10-05 09:35:00 +0200918 if (id == 0)
919 return (struct h2s *)h2_closed_stream;
920
Willy Tarreau2a856182017-05-16 15:20:39 +0200921 if (id > h2c->max_id)
922 return (struct h2s *)h2_idle_stream;
923
Willy Tarreau2373acc2017-10-12 17:35:14 +0200924 node = eb32_lookup(&h2c->streams_by_id, id);
925 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200926 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200927
928 return container_of(node, struct h2s, by_id);
929}
930
Christopher Faulet73c12072019-04-08 11:23:22 +0200931/* release function. This one should be called to free all resources allocated
932 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200933 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200934static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200935{
Christopher Faulet61840e72019-04-15 09:33:32 +0200936 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200937
Willy Tarreau7838a792019-08-12 18:42:03 +0200938 TRACE_ENTER(H2_EV_H2C_END);
939
Willy Tarreau32218eb2017-09-22 08:07:25 +0200940 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200941 /* The connection must be aattached to this mux to be released */
942 if (h2c->conn && h2c->conn->ctx == h2c)
943 conn = h2c->conn;
944
Willy Tarreau7838a792019-08-12 18:42:03 +0200945 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200946 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200947
Willy Tarreau186e96e2019-05-28 17:21:18 +0200948 if (LIST_ADDED(&h2c->buf_wait.list)) {
949 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
950 LIST_DEL(&h2c->buf_wait.list);
951 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
952 }
Willy Tarreau14398122017-09-22 14:26:04 +0200953
Willy Tarreau44e973f2018-03-01 17:49:30 +0100954 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200955 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100956
Willy Tarreauea392822017-10-31 10:02:25 +0100957 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200958 h2c->task->context = NULL;
959 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100960 h2c->task = NULL;
961 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200962 if (h2c->wait_event.tasklet)
963 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +0200964 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100965 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +0200966 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100967
Willy Tarreaubafbe012017-11-24 17:34:44 +0100968 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200969 }
970
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200971 if (conn) {
972 conn->mux = NULL;
973 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +0200974 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200975
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200976 conn_stop_tracking(conn);
977 conn_full_close(conn);
978 if (conn->destroy_cb)
979 conn->destroy_cb(conn);
980 conn_free(conn);
981 }
Willy Tarreau7838a792019-08-12 18:42:03 +0200982
983 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +0200984}
985
986
Willy Tarreau71681172017-10-23 14:39:06 +0200987/******************************************************/
988/* functions below are for the H2 protocol processing */
989/******************************************************/
990
991/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100992static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200993{
994 return h2s ? h2s->id : 0;
995}
996
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200997/* returns the sum of the stream's own window size and the mux's initial
998 * window, which together form the stream's effective window size.
999 */
1000static inline int h2s_mws(const struct h2s *h2s)
1001{
1002 return h2s->sws + h2s->h2c->miw;
1003}
1004
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001005/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001006static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001007{
1008 if (h2c->msi < 0)
1009 return 0;
1010
1011 if (h2c->msi == h2s_id(h2s))
1012 return 0;
1013
1014 return 1;
1015}
1016
Willy Tarreau741d6df2017-10-17 08:00:59 +02001017/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001018static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001019{
Willy Tarreau7838a792019-08-12 18:42:03 +02001020 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn,,, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001021 h2c->errcode = err;
1022 h2c->st0 = H2_CS_ERROR;
1023}
1024
Willy Tarreau175cebb2019-01-24 10:02:24 +01001025/* marks an error on the stream. It may also update an already closed stream
1026 * (e.g. to report an error after an RST was received).
1027 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001028static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001029{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001030 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001031 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s,, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001032 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001033 if (h2s->st < H2_SS_ERROR)
1034 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001035 if (h2s->cs)
1036 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001037 }
1038}
1039
Willy Tarreau7e094452018-12-19 18:08:52 +01001040/* attempt to notify the data layer of recv availability */
1041static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1042{
1043 struct wait_event *sw;
1044
1045 if (h2s->recv_wait) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001046 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001047 sw = h2s->recv_wait;
1048 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001049 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001050 h2s->recv_wait = NULL;
1051 }
1052}
1053
1054/* attempt to notify the data layer of send availability */
1055static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1056{
1057 struct wait_event *sw;
1058
Willy Tarreauc234ae32019-05-13 17:56:11 +02001059 if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001060 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001061 sw = h2s->send_wait;
1062 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchardfd1e96d2019-03-25 14:04:25 +01001063 LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001064 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001065 }
1066}
1067
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001068/* alerts the data layer, trying to wake it up by all means, following
1069 * this sequence :
1070 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1071 * - if its subscribed to send, then it's woken up for send
1072 * - if it was subscribed to neither, its ->wake() callback is called
1073 * It is safe to call this function with a closed stream which doesn't have a
1074 * conn_stream anymore.
1075 */
1076static void __maybe_unused h2s_alert(struct h2s *h2s)
1077{
Willy Tarreau7838a792019-08-12 18:42:03 +02001078 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1079
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001080 if (h2s->recv_wait || h2s->send_wait) {
1081 h2s_notify_recv(h2s);
1082 h2s_notify_send(h2s);
1083 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001084 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1085 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001086 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001087 }
1088
1089 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001090}
1091
Willy Tarreaue4820742017-07-27 13:37:23 +02001092/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001093static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001094{
1095 uint8_t *out = frame;
1096
1097 *out = len >> 16;
1098 write_n16(out + 1, len);
1099}
1100
Willy Tarreau54c15062017-10-10 17:10:03 +02001101/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1102 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1103 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001104 * available in the buffer's input prior to calling this function. The buffer
1105 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001106 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001107static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001108 const struct buffer *b, int o)
1109{
Willy Tarreau591d4452018-06-15 17:21:00 +02001110 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 +02001111}
1112
Willy Tarreau1f094672017-11-20 21:27:45 +01001113static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001114{
Willy Tarreau591d4452018-06-15 17:21:00 +02001115 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001116}
1117
Willy Tarreau1f094672017-11-20 21:27:45 +01001118static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001119{
Willy Tarreau591d4452018-06-15 17:21:00 +02001120 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001121}
1122
Willy Tarreau1f094672017-11-20 21:27:45 +01001123static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001124{
Willy Tarreau591d4452018-06-15 17:21:00 +02001125 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001126}
1127
1128
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001129/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1130 * The algorithm is not obvious. It turns out that H2 headers are neither
1131 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1132 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001133 *
1134 * b0 b1 b2 b3 b4 b5..b8
1135 * +----------+---------+--------+----+----+----------------------+
1136 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1137 * +----------+---------+--------+----+----+----------------------+
1138 *
1139 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1140 * we get the sid properly aligned and ordered, and 16 bits of len properly
1141 * ordered as well. The type and flags can be extracted using bit shifts from
1142 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001143 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1144 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001145 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001146static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001147{
1148 uint64_t w;
1149
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001150 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001151 return 0;
1152
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001153 w = h2_get_n64(b, o + 1);
1154 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001155 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1156 h->ff = w >> 32;
1157 h->ft = w >> 40;
1158 h->len += w >> 48;
1159 return 1;
1160}
1161
1162/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1163 * h2_peek_frame_hdr() above.
1164 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001165static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001166{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001167 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001168}
1169
1170/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001171static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001172{
1173 int ret;
1174
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001175 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001176 if (ret > 0)
1177 h2_skip_frame_hdr(b);
1178 return ret;
1179}
1180
Willy Tarreaucb985a42019-10-07 16:56:34 +02001181
1182/* try to fragment the headers frame present at the beginning of buffer <b>,
1183 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1184 * success. Typical causes of failure include a buffer not large enough to
1185 * add extra frame headers. The existing frame size is read in the current
1186 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1187 * and its length will be adjusted. The stream ID for continuation frames will
1188 * be copied from the initial frame's.
1189 */
1190static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1191{
1192 size_t remain = b->data - 9;
1193 int extra_frames = (remain - 1) / mfs;
1194 size_t fsize;
1195 char *fptr;
1196 int frame;
1197
1198 if (b->data <= mfs + 9)
1199 return 1;
1200
1201 /* Too large a frame, we need to fragment it using CONTINUATION
1202 * frames. We start from the end and move tails as needed.
1203 */
1204 if (b->data + extra_frames * 9 > b->size)
1205 return 0;
1206
1207 for (frame = extra_frames; frame; frame--) {
1208 fsize = ((remain - 1) % mfs) + 1;
1209 remain -= fsize;
1210
1211 /* move data */
1212 fptr = b->area + 9 + remain + (frame - 1) * 9;
1213 memmove(fptr + 9, b->area + 9 + remain, fsize);
1214 b->data += 9;
1215
1216 /* write new frame header */
1217 h2_set_frame_size(fptr, fsize);
1218 fptr[3] = H2_FT_CONTINUATION;
1219 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1220 write_n32(fptr + 5, read_n32(b->area + 5));
1221 }
1222
1223 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1224 h2_set_frame_size(b->area, remain);
1225 return 1;
1226}
1227
1228
Willy Tarreau00dd0782018-03-01 16:31:34 +01001229/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1230 * its connection if the stream was not yet closed. Please use this exclusively
1231 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001232 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001233static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001234{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001235 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001236 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001237 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001238 if (!h2s->id)
1239 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001240 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001241 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1242 h2s_notify_recv(h2s);
1243 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001244 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001245 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001246 h2s->st = H2_SS_CLOSED;
1247}
1248
Willy Tarreau71049cc2018-03-28 13:56:39 +02001249/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001250/* h2s_destroy should only ever be called by the thread that owns the stream,
1251 * that means that a tasklet should be used if we want to destroy the h2s
1252 * from another thread
1253 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001254static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001255{
Willy Tarreau7838a792019-08-12 18:42:03 +02001256 struct connection *conn = h2s->h2c->conn;
1257
1258 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1259
Willy Tarreau0a10de62018-03-01 16:27:53 +01001260 h2s_close(h2s);
1261 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001262 if (b_size(&h2s->rxbuf)) {
1263 b_free(&h2s->rxbuf);
1264 offer_buffers(NULL, tasks_run_queue);
1265 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001266 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001267 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001268 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001269 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -08001270 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001271 * reference left would be in the h2c send_list/fctl_list, and if
1272 * we're in it, we're getting out anyway
1273 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001274 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc234ae32019-05-13 17:56:11 +02001275 if (LIST_ADDED(&h2s->sending_list)) {
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001276 /* It should be OK to call tasklet_remove_from_tasklet_list()
1277 * here, as only the thread responsible for the tasklet should
1278 * be called here.
1279 */
Willy Tarreau86eded62019-06-14 14:47:49 +02001280 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02001281 LIST_DEL_INIT(&h2s->sending_list);
1282 }
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001283 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001284 tasklet_free(h2s->wait_event.tasklet);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001285 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001286
1287 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001288}
1289
Willy Tarreaua8e49542018-10-03 18:53:55 +02001290/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1291 * stream tree. In case of error, nothing is added and NULL is returned. The
1292 * causes of errors can be any failed memory allocation. The caller is
1293 * responsible for checking if the connection may support an extra stream
1294 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001295 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001296static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001297{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001298 struct h2s *h2s;
1299
Willy Tarreau7838a792019-08-12 18:42:03 +02001300 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1301
Willy Tarreaubafbe012017-11-24 17:34:44 +01001302 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001303 if (!h2s)
1304 goto out;
1305
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001306 h2s->wait_event.tasklet = tasklet_new();
1307 if (!h2s->wait_event.tasklet) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001308 pool_free(pool_head_h2s, h2s);
1309 goto out;
1310 }
1311 h2s->send_wait = NULL;
1312 h2s->recv_wait = NULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001313 h2s->wait_event.tasklet->process = h2_deferred_shut;
1314 h2s->wait_event.tasklet->context = h2s;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001315 h2s->wait_event.events = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001316 LIST_INIT(&h2s->list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01001317 LIST_INIT(&h2s->sending_list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001318 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001319 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001320 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001321 h2s->flags = H2_SF_NONE;
1322 h2s->errcode = H2_ERR_NO_ERROR;
1323 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001324 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001325 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001326 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001327
1328 if (h2c->flags & H2_CF_IS_BACK) {
1329 h1m_init_req(&h2s->h1m);
1330 h2s->h1m.err_pos = -1; // don't care about errors on the request path
1331 h2s->h1m.flags |= H1_MF_TOLOWER;
1332 } else {
1333 h1m_init_res(&h2s->h1m);
1334 h2s->h1m.err_pos = -1; // don't care about errors on the response path
1335 h2s->h1m.flags |= H1_MF_TOLOWER;
1336 }
1337
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001338 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001339 if (id > 0)
1340 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001341 else
1342 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001343
1344 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001345 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001346 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001347
Willy Tarreau7838a792019-08-12 18:42:03 +02001348 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001349 return h2s;
1350
1351 out_free_h2s:
1352 pool_free(pool_head_h2s, h2s);
1353 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001354 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001355 return NULL;
1356}
1357
1358/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1359 * case of memory allocation error.
1360 */
1361static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1362{
1363 struct session *sess = h2c->conn->owner;
1364 struct conn_stream *cs;
1365 struct h2s *h2s;
1366
Willy Tarreau7838a792019-08-12 18:42:03 +02001367 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1368
Willy Tarreaua8e49542018-10-03 18:53:55 +02001369 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1370 goto out;
1371
1372 h2s = h2s_new(h2c, id);
1373 if (!h2s)
1374 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001375
1376 cs = cs_new(h2c->conn);
1377 if (!cs)
1378 goto out_close;
1379
Olivier Houchard746fb772018-12-15 19:42:00 +01001380 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001381 h2s->cs = cs;
1382 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001383 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001384
1385 if (stream_create_from_cs(cs) < 0)
1386 goto out_free_cs;
1387
Willy Tarreau590a0512018-09-05 11:56:48 +02001388 /* We want the accept date presented to the next stream to be the one
1389 * we have now, the handshake time to be null (since the next stream
1390 * is not delayed by a handshake), and the idle time to count since
1391 * right now.
1392 */
1393 sess->accept_date = date;
1394 sess->tv_accept = now;
1395 sess->t_handshake = 0;
1396
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001397 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001398 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001399 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001400 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001401 return h2s;
1402
1403 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001404 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001405 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001406 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001407 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001408 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001409 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001410 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001411 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001412 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001413}
1414
Willy Tarreau751f2d02018-10-05 09:35:00 +02001415/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1416 * and returns it, or NULL in case of memory allocation error or if the highest
1417 * possible stream ID was reached.
1418 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001419static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001420{
1421 struct h2s *h2s = NULL;
1422
Willy Tarreau7838a792019-08-12 18:42:03 +02001423 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1424
Willy Tarreau86949782019-01-31 10:42:05 +01001425 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001426 goto out;
1427
Willy Tarreaua80dca82019-01-24 17:08:28 +01001428 if (h2_streams_left(h2c) < 1)
1429 goto out;
1430
Willy Tarreau751f2d02018-10-05 09:35:00 +02001431 /* Defer choosing the ID until we send the first message to create the stream */
1432 h2s = h2s_new(h2c, 0);
1433 if (!h2s)
1434 goto out;
1435
1436 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001437 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001438 cs->ctx = h2s;
1439 h2c->nb_cs++;
1440
Willy Tarreau751f2d02018-10-05 09:35:00 +02001441 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001442 if (likely(h2s))
1443 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1444 else
1445 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001446 return h2s;
1447}
1448
Willy Tarreaube5b7152017-09-25 16:25:39 +02001449/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1450 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1451 * the various settings codes.
1452 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001453static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001454{
1455 struct buffer *res;
1456 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001457 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001458 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001459 int ret = 0;
1460
1461 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001462
1463 if (h2c_mux_busy(h2c, NULL)) {
1464 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001465 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001466 }
1467
Willy Tarreaube5b7152017-09-25 16:25:39 +02001468 chunk_init(&buf, buf_data, sizeof(buf_data));
1469 chunk_memcpy(&buf,
1470 "\x00\x00\x00" /* length : 0 for now */
1471 "\x04\x00" /* type : 4 (settings), flags : 0 */
1472 "\x00\x00\x00\x00", /* stream ID : 0 */
1473 9);
1474
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001475 if (h2c->flags & H2_CF_IS_BACK) {
1476 /* send settings_enable_push=0 */
1477 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1478 }
1479
Willy Tarreaube5b7152017-09-25 16:25:39 +02001480 if (h2_settings_header_table_size != 4096) {
1481 char str[6] = "\x00\x01"; /* header_table_size */
1482
1483 write_n32(str + 2, h2_settings_header_table_size);
1484 chunk_memcat(&buf, str, 6);
1485 }
1486
1487 if (h2_settings_initial_window_size != 65535) {
1488 char str[6] = "\x00\x04"; /* initial_window_size */
1489
1490 write_n32(str + 2, h2_settings_initial_window_size);
1491 chunk_memcat(&buf, str, 6);
1492 }
1493
1494 if (h2_settings_max_concurrent_streams != 0) {
1495 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1496
1497 /* Note: 0 means "unlimited" for haproxy's config but not for
1498 * the protocol, so never send this value!
1499 */
1500 write_n32(str + 2, h2_settings_max_concurrent_streams);
1501 chunk_memcat(&buf, str, 6);
1502 }
1503
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001504 mfs = h2_settings_max_frame_size;
1505 if (mfs > global.tune.bufsize)
1506 mfs = global.tune.bufsize;
1507
1508 if (!mfs)
1509 mfs = global.tune.bufsize;
1510
1511 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001512 char str[6] = "\x00\x05"; /* max_frame_size */
1513
1514 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1515 * match bufsize - rewrite size, but at the moment it seems
1516 * that clients don't take care of it.
1517 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001518 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001519 chunk_memcat(&buf, str, 6);
1520 }
1521
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001522 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001523
1524 res = br_tail(h2c->mbuf);
1525 retry:
1526 if (!h2_get_buf(h2c, res)) {
1527 h2c->flags |= H2_CF_MUX_MALLOC;
1528 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001529 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001530 }
1531
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001532 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001533 if (unlikely(ret <= 0)) {
1534 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001535 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1536 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001537 h2c->flags |= H2_CF_MUX_MFULL;
1538 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001539 }
1540 else {
1541 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001542 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001543 }
1544 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001545 out:
1546 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001547 return ret;
1548}
1549
Willy Tarreau52eed752017-09-22 15:05:09 +02001550/* Try to receive a connection preface, then upon success try to send our
1551 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1552 * missing data. It may return an error in h2c.
1553 */
1554static int h2c_frt_recv_preface(struct h2c *h2c)
1555{
1556 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001557 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001558
Willy Tarreau7838a792019-08-12 18:42:03 +02001559 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1560
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001561 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001562
1563 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001564 if (ret1 < 0)
1565 sess_log(h2c->conn->owner);
1566
Willy Tarreau52eed752017-09-22 15:05:09 +02001567 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1568 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001569 ret2 = 0;
1570 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001571 }
1572
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001573 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001574 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001575 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001576 out:
1577 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001578 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001579}
1580
Willy Tarreau01b44822018-10-03 14:26:37 +02001581/* Try to send a connection preface, then upon success try to send our
1582 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1583 * missing data. It may return an error in h2c.
1584 */
1585static int h2c_bck_send_preface(struct h2c *h2c)
1586{
1587 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001588 int ret = 0;
1589
1590 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001591
1592 if (h2c_mux_busy(h2c, NULL)) {
1593 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001594 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001595 }
1596
Willy Tarreaubcc45952019-05-26 10:05:50 +02001597 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001598 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001599 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001600 h2c->flags |= H2_CF_MUX_MALLOC;
1601 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001602 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001603 }
1604
1605 if (!b_data(res)) {
1606 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001607 ret = b_istput(res, ist(H2_CONN_PREFACE));
1608 if (unlikely(ret <= 0)) {
1609 if (!ret) {
1610 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1611 goto retry;
1612 h2c->flags |= H2_CF_MUX_MFULL;
1613 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001614 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001615 }
1616 else {
1617 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001618 ret = 0;
1619 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001620 }
1621 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001622 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001623 ret = h2c_send_settings(h2c);
1624 out:
1625 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1626 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001627}
1628
Willy Tarreau081d4722017-05-16 21:51:05 +02001629/* try to send a GOAWAY frame on the connection to report an error or a graceful
1630 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1631 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1632 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1633 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1634 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1635 * on unrecoverable failure. It will not attempt to send one again in this last
1636 * case so that it is safe to use h2c_error() to report such errors.
1637 */
1638static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1639{
1640 struct buffer *res;
1641 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001642 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001643
Willy Tarreau7838a792019-08-12 18:42:03 +02001644 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1645
1646 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1647 ret = 1; // claim that it worked
1648 goto out;
1649 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001650
1651 if (h2c_mux_busy(h2c, h2s)) {
1652 if (h2s)
1653 h2s->flags |= H2_SF_BLK_MBUSY;
1654 else
1655 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001656 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001657 }
1658
Willy Tarreau9c218e72019-05-26 10:08:28 +02001659 /* len: 8, type: 7, flags: none, sid: 0 */
1660 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1661
1662 if (h2c->last_sid < 0)
1663 h2c->last_sid = h2c->max_id;
1664
1665 write_n32(str + 9, h2c->last_sid);
1666 write_n32(str + 13, h2c->errcode);
1667
Willy Tarreaubcc45952019-05-26 10:05:50 +02001668 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001669 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001670 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001671 h2c->flags |= H2_CF_MUX_MALLOC;
1672 if (h2s)
1673 h2s->flags |= H2_SF_BLK_MROOM;
1674 else
1675 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001676 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001677 }
1678
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001679 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001680 if (unlikely(ret <= 0)) {
1681 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001682 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1683 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001684 h2c->flags |= H2_CF_MUX_MFULL;
1685 if (h2s)
1686 h2s->flags |= H2_SF_BLK_MROOM;
1687 else
1688 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001689 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001690 }
1691 else {
1692 /* we cannot report this error using GOAWAY, so we mark
1693 * it and claim a success.
1694 */
1695 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1696 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001697 ret = 1;
1698 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001699 }
1700 }
1701 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02001702 out:
1703 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001704 return ret;
1705}
1706
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001707/* Try to send an RST_STREAM frame on the connection for the indicated stream
1708 * during mux operations. This stream must be valid and cannot be closed
1709 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1710 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1711 * not yet.
1712 *
1713 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1714 * to write the message, it subscribes the stream to future notifications.
1715 */
1716static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1717{
1718 struct buffer *res;
1719 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001720 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001721
Willy Tarreau7838a792019-08-12 18:42:03 +02001722 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1723
1724 if (!h2s || h2s->st == H2_SS_CLOSED) {
1725 ret = 1;
1726 goto out;
1727 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001728
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001729 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1730 * RST_STREAM in response to a RST_STREAM frame.
1731 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001732 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001733 ret = 1;
1734 goto ignore;
1735 }
1736
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001737 if (h2c_mux_busy(h2c, h2s)) {
1738 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001739 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001740 }
1741
Willy Tarreau9c218e72019-05-26 10:08:28 +02001742 /* len: 4, type: 3, flags: none */
1743 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1744 write_n32(str + 5, h2s->id);
1745 write_n32(str + 9, h2s->errcode);
1746
Willy Tarreaubcc45952019-05-26 10:05:50 +02001747 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001748 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001749 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001750 h2c->flags |= H2_CF_MUX_MALLOC;
1751 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001752 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001753 }
1754
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001755 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001756 if (unlikely(ret <= 0)) {
1757 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001758 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1759 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001760 h2c->flags |= H2_CF_MUX_MFULL;
1761 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001762 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001763 }
1764 else {
1765 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001766 ret = 0;
1767 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001768 }
1769 }
1770
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001771 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001772 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001773 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001774 out:
1775 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001776 return ret;
1777}
1778
1779/* Try to send an RST_STREAM frame on the connection for the stream being
1780 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001781 * error code, even if the stream is one of the dummy ones, and will update
1782 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001783 *
1784 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1785 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001786 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001787 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001788 */
1789static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1790{
1791 struct buffer *res;
1792 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001793 int ret = 0;
1794
1795 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001796
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001797 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1798 * RST_STREAM in response to a RST_STREAM frame.
1799 */
1800 if (h2c->dft == H2_FT_RST_STREAM) {
1801 ret = 1;
1802 goto ignore;
1803 }
1804
Willy Tarreau27a84c92017-10-17 08:10:17 +02001805 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001806 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001807 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001808 }
1809
Willy Tarreau9c218e72019-05-26 10:08:28 +02001810 /* len: 4, type: 3, flags: none */
1811 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1812
1813 write_n32(str + 5, h2c->dsi);
1814 write_n32(str + 9, h2s->errcode);
1815
Willy Tarreaubcc45952019-05-26 10:05:50 +02001816 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001817 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001818 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001819 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001820 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001821 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001822 }
1823
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001824 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001825 if (unlikely(ret <= 0)) {
1826 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001827 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1828 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001829 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001830 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001831 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001832 }
1833 else {
1834 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001835 ret = 0;
1836 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001837 }
1838 }
1839
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001840 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001841 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001842 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001843 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001844 }
1845
Willy Tarreau7838a792019-08-12 18:42:03 +02001846 out:
1847 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001848 return ret;
1849}
1850
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001851/* try to send an empty DATA frame with the ES flag set to notify about the
1852 * end of stream and match a shutdown(write). If an ES was already sent as
1853 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1854 * on success or zero if nothing was done. In case of lack of room to write the
1855 * message, it subscribes the requesting stream to future notifications.
1856 */
1857static int h2_send_empty_data_es(struct h2s *h2s)
1858{
1859 struct h2c *h2c = h2s->h2c;
1860 struct buffer *res;
1861 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001862 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001863
Willy Tarreau7838a792019-08-12 18:42:03 +02001864 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
1865
1866 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
1867 ret = 1;
1868 goto out;
1869 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001870
1871 if (h2c_mux_busy(h2c, h2s)) {
1872 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001873 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001874 }
1875
Willy Tarreau9c218e72019-05-26 10:08:28 +02001876 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1877 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1878 write_n32(str + 5, h2s->id);
1879
Willy Tarreaubcc45952019-05-26 10:05:50 +02001880 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001881 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001882 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001883 h2c->flags |= H2_CF_MUX_MALLOC;
1884 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001885 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001886 }
1887
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001888 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001889 if (likely(ret > 0)) {
1890 h2s->flags |= H2_SF_ES_SENT;
1891 }
1892 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001893 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1894 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001895 h2c->flags |= H2_CF_MUX_MFULL;
1896 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001897 }
1898 else {
1899 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001900 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001901 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001902 out:
1903 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001904 return ret;
1905}
1906
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001907/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001908 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001909 * is automatically updated accordingly. If the stream is orphaned, it is
1910 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001911 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001912static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001913{
Willy Tarreau7838a792019-08-12 18:42:03 +02001914 struct h2c *h2c = h2s->h2c;
1915
1916 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
1917
Christopher Fauletf02ca002019-03-07 16:21:34 +01001918 if (!h2s->cs) {
1919 /* this stream was already orphaned */
1920 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001921 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001922 return;
1923 }
1924
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001925 if (conn_xprt_read0_pending(h2s->h2c->conn)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001926 if (h2s->st == H2_SS_OPEN)
1927 h2s->st = H2_SS_HREM;
1928 else if (h2s->st == H2_SS_HLOC)
1929 h2s_close(h2s);
1930 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001931
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001932 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1933 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1934 h2s->cs->flags |= CS_FL_ERR_PENDING;
1935 if (h2s->cs->flags & CS_FL_EOS)
1936 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001937
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001938 if (h2s->st < H2_SS_ERROR)
1939 h2s->st = H2_SS_ERROR;
1940 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001941
1942 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001943 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001944}
1945
1946/* wake the streams attached to the connection, whose id is greater than <last>
1947 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001948 */
Willy Tarreau23482912019-05-07 15:23:14 +02001949static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001950{
1951 struct eb32_node *node;
1952 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001953
Willy Tarreau7838a792019-08-12 18:42:03 +02001954 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
1955
Christopher Fauletf02ca002019-03-07 16:21:34 +01001956 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001957 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1958 while (node) {
1959 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001960 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001961 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001962 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001963
Christopher Fauletf02ca002019-03-07 16:21:34 +01001964 /* Wake all streams with unassigned ID (ID == 0) */
1965 node = eb32_lookup(&h2c->streams_by_id, 0);
1966 while (node) {
1967 h2s = container_of(node, struct h2s, by_id);
1968 if (h2s->id > 0)
1969 break;
1970 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001971 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001972 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001973
1974 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001975}
1976
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001977/* Wake up all blocked streams whose window size has become positive after the
1978 * mux's initial window was adjusted. This should be done after having processed
1979 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001980 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001981static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001982{
1983 struct h2s *h2s;
1984 struct eb32_node *node;
1985
Willy Tarreau7838a792019-08-12 18:42:03 +02001986 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
1987
Willy Tarreau3421aba2017-07-27 15:41:03 +02001988 node = eb32_first(&h2c->streams_by_id);
1989 while (node) {
1990 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001991 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001992 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001993 LIST_DEL_INIT(&h2s->list);
1994 if (h2s->send_wait)
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001995 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001996 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001997 node = eb32_next(node);
1998 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001999
2000 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002001}
2002
2003/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2004 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002005 * return an error in h2c. The caller must have already verified frame length
2006 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002007 */
2008static int h2c_handle_settings(struct h2c *h2c)
2009{
2010 unsigned int offset;
2011 int error;
2012
Willy Tarreau7838a792019-08-12 18:42:03 +02002013 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2014
Willy Tarreau3421aba2017-07-27 15:41:03 +02002015 if (h2c->dff & H2_F_SETTINGS_ACK) {
2016 if (h2c->dfl) {
2017 error = H2_ERR_FRAME_SIZE_ERROR;
2018 goto fail;
2019 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002020 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002021 }
2022
Willy Tarreau3421aba2017-07-27 15:41:03 +02002023 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002024 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002025 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002026
2027 /* parse the frame */
2028 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002029 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2030 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002031
2032 switch (type) {
2033 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2034 /* we need to update all existing streams with the
2035 * difference from the previous iws.
2036 */
2037 if (arg < 0) { // RFC7540#6.5.2
2038 error = H2_ERR_FLOW_CONTROL_ERROR;
2039 goto fail;
2040 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002041 h2c->miw = arg;
2042 break;
2043 case H2_SETTINGS_MAX_FRAME_SIZE:
2044 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
2045 error = H2_ERR_PROTOCOL_ERROR;
2046 goto fail;
2047 }
2048 h2c->mfs = arg;
2049 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002050 case H2_SETTINGS_ENABLE_PUSH:
2051 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
2052 error = H2_ERR_PROTOCOL_ERROR;
2053 goto fail;
2054 }
2055 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002056 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2057 if (h2c->flags & H2_CF_IS_BACK) {
2058 /* the limit is only for the backend; for the frontend it is our limit */
2059 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2060 arg = h2_settings_max_concurrent_streams;
2061 h2c->streams_limit = arg;
2062 }
2063 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002064 }
2065 }
2066
2067 /* need to ACK this frame now */
2068 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002069 done:
2070 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002071 return 1;
2072 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002073 if (!(h2c->flags & H2_CF_IS_BACK))
2074 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002075 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002076 out0:
2077 TRACE_DEVEL("leaving with missing data or error", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002078 return 0;
2079}
2080
2081/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2082 * success or one of the h2_status values.
2083 */
2084static int h2c_ack_settings(struct h2c *h2c)
2085{
2086 struct buffer *res;
2087 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002088 int ret = 0;
2089
2090 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002091
2092 if (h2c_mux_busy(h2c, NULL)) {
2093 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002094 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002095 }
2096
Willy Tarreau9c218e72019-05-26 10:08:28 +02002097 memcpy(str,
2098 "\x00\x00\x00" /* length : 0 (no data) */
2099 "\x04" "\x01" /* type : 4, flags : ACK */
2100 "\x00\x00\x00\x00" /* stream ID */, 9);
2101
Willy Tarreaubcc45952019-05-26 10:05:50 +02002102 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002103 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002104 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002105 h2c->flags |= H2_CF_MUX_MALLOC;
2106 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002107 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002108 }
2109
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002110 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002111 if (unlikely(ret <= 0)) {
2112 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002113 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2114 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002115 h2c->flags |= H2_CF_MUX_MFULL;
2116 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002117 }
2118 else {
2119 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002120 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002121 }
2122 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002123 out:
2124 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002125 return ret;
2126}
2127
Willy Tarreaucf68c782017-10-10 17:11:41 +02002128/* processes a PING frame and schedules an ACK if needed. The caller must pass
2129 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002130 * missing data. The caller must have already verified frame length
2131 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002132 */
2133static int h2c_handle_ping(struct h2c *h2c)
2134{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002135 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002136 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002137 h2c->st0 = H2_CS_FRAME_A;
2138 return 1;
2139}
2140
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002141/* Try to send a window update for stream id <sid> and value <increment>.
2142 * Returns > 0 on success or zero on missing room or failure. It may return an
2143 * error in h2c.
2144 */
2145static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2146{
2147 struct buffer *res;
2148 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002149 int ret = 0;
2150
2151 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002152
2153 if (h2c_mux_busy(h2c, NULL)) {
2154 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002155 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002156 }
2157
Willy Tarreau9c218e72019-05-26 10:08:28 +02002158 /* length: 4, type: 8, flags: none */
2159 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2160 write_n32(str + 5, sid);
2161 write_n32(str + 9, increment);
2162
Willy Tarreaubcc45952019-05-26 10:05:50 +02002163 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002164 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002165 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002166 h2c->flags |= H2_CF_MUX_MALLOC;
2167 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002168 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002169 }
2170
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002171 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002172 if (unlikely(ret <= 0)) {
2173 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002174 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2175 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002176 h2c->flags |= H2_CF_MUX_MFULL;
2177 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002178 }
2179 else {
2180 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002181 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002182 }
2183 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002184 out:
2185 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002186 return ret;
2187}
2188
2189/* try to send pending window update for the connection. It's safe to call it
2190 * with no pending updates. Returns > 0 on success or zero on missing room or
2191 * failure. It may return an error in h2c.
2192 */
2193static int h2c_send_conn_wu(struct h2c *h2c)
2194{
2195 int ret = 1;
2196
Willy Tarreau7838a792019-08-12 18:42:03 +02002197 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2198
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002199 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002200 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002201
Willy Tarreau97aaa672018-12-23 09:49:04 +01002202 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2203 /* increase the advertised connection window to 2G on
2204 * first update.
2205 */
2206 h2c->flags |= H2_CF_WINDOW_OPENED;
2207 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2208 }
2209
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002210 /* send WU for the connection */
2211 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2212 if (ret > 0)
2213 h2c->rcvd_c = 0;
2214
Willy Tarreau7838a792019-08-12 18:42:03 +02002215 out:
2216 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002217 return ret;
2218}
2219
2220/* try to send pending window update for the current dmux stream. It's safe to
2221 * call it with no pending updates. Returns > 0 on success or zero on missing
2222 * room or failure. It may return an error in h2c.
2223 */
2224static int h2c_send_strm_wu(struct h2c *h2c)
2225{
2226 int ret = 1;
2227
Willy Tarreau7838a792019-08-12 18:42:03 +02002228 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2229
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002230 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002231 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002232
2233 /* send WU for the stream */
2234 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2235 if (ret > 0)
2236 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002237 out:
2238 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002239 return ret;
2240}
2241
Willy Tarreaucf68c782017-10-10 17:11:41 +02002242/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2243 * success, 0 on missing data or one of the h2_status values.
2244 */
2245static int h2c_ack_ping(struct h2c *h2c)
2246{
2247 struct buffer *res;
2248 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002249 int ret = 0;
2250
2251 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002252
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002253 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002254 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002255
2256 if (h2c_mux_busy(h2c, NULL)) {
2257 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002258 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002259 }
2260
Willy Tarreaucf68c782017-10-10 17:11:41 +02002261 memcpy(str,
2262 "\x00\x00\x08" /* length : 8 (same payload) */
2263 "\x06" "\x01" /* type : 6, flags : ACK */
2264 "\x00\x00\x00\x00" /* stream ID */, 9);
2265
2266 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002267 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002268
Willy Tarreau9c218e72019-05-26 10:08:28 +02002269 res = br_tail(h2c->mbuf);
2270 retry:
2271 if (!h2_get_buf(h2c, res)) {
2272 h2c->flags |= H2_CF_MUX_MALLOC;
2273 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002274 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002275 }
2276
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002277 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002278 if (unlikely(ret <= 0)) {
2279 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002280 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2281 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002282 h2c->flags |= H2_CF_MUX_MFULL;
2283 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002284 }
2285 else {
2286 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002287 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002288 }
2289 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002290 out:
2291 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002292 return ret;
2293}
2294
Willy Tarreau26f95952017-07-27 17:18:30 +02002295/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2296 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002297 * h2c or h2s. The caller must have already verified frame length and stream ID
2298 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002299 */
2300static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2301{
2302 int32_t inc;
2303 int error;
2304
Willy Tarreau7838a792019-08-12 18:42:03 +02002305 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2306
Willy Tarreau26f95952017-07-27 17:18:30 +02002307 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002308 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002309 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002310
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002311 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002312
2313 if (h2c->dsi != 0) {
2314 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002315
2316 /* it's not an error to receive WU on a closed stream */
2317 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002318 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002319
2320 if (!inc) {
2321 error = H2_ERR_PROTOCOL_ERROR;
2322 goto strm_err;
2323 }
2324
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002325 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002326 error = H2_ERR_FLOW_CONTROL_ERROR;
2327 goto strm_err;
2328 }
2329
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002330 h2s->sws += inc;
2331 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002332 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002333 LIST_DEL_INIT(&h2s->list);
2334 if (h2s->send_wait)
Olivier Houcharddddfe312018-10-10 18:51:00 +02002335 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002336 }
2337 }
2338 else {
2339 /* connection window update */
2340 if (!inc) {
2341 error = H2_ERR_PROTOCOL_ERROR;
2342 goto conn_err;
2343 }
2344
2345 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2346 error = H2_ERR_FLOW_CONTROL_ERROR;
2347 goto conn_err;
2348 }
2349
2350 h2c->mws += inc;
2351 }
2352
Willy Tarreau7838a792019-08-12 18:42:03 +02002353 done:
2354 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002355 return 1;
2356
2357 conn_err:
2358 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002359 out0:
2360 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002361 return 0;
2362
2363 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002364 h2s_error(h2s, error);
2365 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002366 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002367 return 0;
2368}
2369
Willy Tarreaue96b0922017-10-30 00:28:29 +01002370/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002371 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2372 * have already verified frame length and stream ID validity. Described in
2373 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002374 */
2375static int h2c_handle_goaway(struct h2c *h2c)
2376{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002377 int last;
2378
Willy Tarreau7838a792019-08-12 18:42:03 +02002379 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002380 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002381 if (b_data(&h2c->dbuf) < h2c->dfl) {
2382 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002383 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002384 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002385
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002386 last = h2_get_n32(&h2c->dbuf, 0);
2387 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002388 if (h2c->last_sid < 0)
2389 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002390 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002391 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002392 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002393}
2394
Willy Tarreau92153fc2017-12-03 19:46:19 +01002395/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002396 * invalid. Returns > 0 on success or zero on missing data. It may return an
2397 * error in h2c. The caller must have already verified frame length and stream
2398 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002399 */
2400static int h2c_handle_priority(struct h2c *h2c)
2401{
Willy Tarreau7838a792019-08-12 18:42:03 +02002402 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2403
Willy Tarreau92153fc2017-12-03 19:46:19 +01002404 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002405 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002406 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002407 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002408 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002409
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002410 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002411 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01002412 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002413 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002414 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002415 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002416 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002417 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002418}
2419
Willy Tarreaucd234e92017-08-18 10:59:39 +02002420/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002421 * Returns > 0 on success or zero on missing data. The caller must have already
2422 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002423 */
2424static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2425{
Willy Tarreau7838a792019-08-12 18:42:03 +02002426 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2427
Willy Tarreaucd234e92017-08-18 10:59:39 +02002428 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002429 if (b_data(&h2c->dbuf) < h2c->dfl) {
2430 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002431 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002432 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002433
2434 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002435 if (h2s->st == H2_SS_CLOSED) {
2436 TRACE_DEVEL("leaving on stream closed", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002437 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002438 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002439
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002440 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002441 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002442
2443 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002444 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002445 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002446 }
2447
2448 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002449 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002450 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002451}
2452
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002453/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2454 * It may return an error in h2c or h2s. The caller must consider that the
2455 * return value is the new h2s in case one was allocated (most common case).
2456 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002457 * errors here are reported as connection errors since it's impossible to
2458 * recover from such errors after the compression context has been altered.
2459 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002460static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002461{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002462 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002463 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002464 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002465 int error;
2466
Willy Tarreau7838a792019-08-12 18:42:03 +02002467 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2468
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002469 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002470 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002471
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002472 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002473 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002474
2475 /* now either the frame is complete or the buffer is complete */
2476 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002477 /* The stream exists/existed, this must be a trailers frame */
2478 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002479 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2480 /* unrecoverable error ? */
2481 if (h2c->st0 >= H2_CS_ERROR)
2482 goto out;
2483
2484 if (error == 0)
2485 goto out; // missing data
2486
2487 if (error < 0) {
2488 /* Failed to decode this frame (e.g. too large request)
2489 * but the HPACK decompressor is still synchronized.
2490 */
2491 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2492 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002493 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002494 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002495 goto done;
2496 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002497 /* the connection was already killed by an RST, let's consume
2498 * the data and send another RST.
2499 */
2500 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2501 h2s = (struct h2s*)h2_error_stream;
2502 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002503 }
2504 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2505 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2506 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002507 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002508 goto conn_err;
2509 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002510 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2511 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002512
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002513 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002514
Willy Tarreau25919232019-01-03 14:48:18 +01002515 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002516 if (h2c->st0 >= H2_CS_ERROR)
2517 goto out;
2518
Willy Tarreau25919232019-01-03 14:48:18 +01002519 if (error <= 0) {
2520 if (error == 0)
2521 goto out; // missing data
2522
2523 /* Failed to decode this stream (e.g. too large request)
2524 * but the HPACK decompressor is still synchronized.
2525 */
2526 h2s = (struct h2s*)h2_error_stream;
2527 goto send_rst;
2528 }
2529
Willy Tarreau22de8d32018-09-05 19:55:58 +02002530 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002531 * positively from h2c_frt_stream_new(), the stream will report the error,
2532 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002533 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002534 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002535 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002536 h2s = (struct h2s*)h2_refused_stream;
2537 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002538 }
2539
2540 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002541 h2s->rxbuf = rxbuf;
2542 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002543 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002544
Willy Tarreau88d138e2019-01-02 19:38:14 +01002545 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002546 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002547 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002548
2549 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002550 if (h2s->st == H2_SS_OPEN)
2551 h2s->st = H2_SS_HREM;
2552 else
2553 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002554 }
2555
Willy Tarreau3a429f02019-01-03 11:41:50 +01002556 /* update the max stream ID if the request is being processed */
2557 if (h2s->id > h2c->max_id)
2558 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002559
Willy Tarreau8fecec22019-08-30 07:29:53 +02002560 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn,, &rxbuf);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002561 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002562
2563 conn_err:
2564 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002565 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002566
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002567 out:
2568 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002569 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002570 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002571
2572 send_rst:
2573 /* make the demux send an RST for the current stream. We may only
2574 * do this if we're certain that the HEADERS frame was properly
2575 * decompressed so that the HPACK decoder is still kept up to date.
2576 */
2577 h2_release_buf(h2c, &rxbuf);
2578 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002579
2580 TRACE_USER("rejected H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn,, &rxbuf);
2581 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002582 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002583}
2584
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002585/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2586 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2587 * errors here are reported as connection errors since it's impossible to
2588 * recover from such errors after the compression context has been altered.
2589 */
2590static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2591{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002592 struct buffer rxbuf = BUF_NULL;
2593 unsigned long long body_len = 0;
2594 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002595 int error;
2596
Willy Tarreau7838a792019-08-12 18:42:03 +02002597 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2598
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002599 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002600 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002601
2602 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002603 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002604
Christopher Faulet6884aa32019-09-23 15:28:20 +02002605 if (h2s->st != H2_SS_CLOSED) {
2606 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2607 }
2608 else {
2609 /* the connection was already killed by an RST, let's consume
2610 * the data and send another RST.
2611 */
2612 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002613 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002614 h2c->st0 = H2_CS_FRAME_E;
2615 goto send_rst;
2616 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002617
Willy Tarreau25919232019-01-03 14:48:18 +01002618 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002619 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002620 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002621
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002622 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2623 /* RFC7540#5.1 */
2624 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2625 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002626 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002627 }
2628
Willy Tarreau25919232019-01-03 14:48:18 +01002629 if (error <= 0) {
2630 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002631 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002632
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002633 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002634 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002635 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002636 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002637 }
2638
Christopher Fauletfa922f02019-05-07 10:55:17 +02002639 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002640 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002641
Willy Tarreau927b88b2019-03-04 08:03:25 +01002642 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002643 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002644 else if (h2s->flags & H2_SF_ES_RCVD) {
2645 if (h2s->st == H2_SS_OPEN)
2646 h2s->st = H2_SS_HREM;
2647 else if (h2s->st == H2_SS_HLOC)
2648 h2s_close(h2s);
2649 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002650
Willy Tarreau8fecec22019-08-30 07:29:53 +02002651 TRACE_USER("rcvd H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn,, &h2s->rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002652 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002653 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002654 fail:
2655 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2656 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002657
2658 send_rst:
2659 /* make the demux send an RST for the current stream. We may only
2660 * do this if we're certain that the HEADERS frame was properly
2661 * decompressed so that the HPACK decoder is still kept up to date.
2662 */
2663 h2_release_buf(h2c, &rxbuf);
2664 h2c->st0 = H2_CS_FRAME_E;
2665
2666 TRACE_USER("rejected H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn,, &rxbuf);
2667 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2668 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002669}
2670
Willy Tarreau454f9052017-10-26 19:40:35 +02002671/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2672 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2673 */
2674static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2675{
2676 int error;
2677
Willy Tarreau7838a792019-08-12 18:42:03 +02002678 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2679
Willy Tarreau454f9052017-10-26 19:40:35 +02002680 /* note that empty DATA frames are perfectly valid and sometimes used
2681 * to signal an end of stream (with the ES flag).
2682 */
2683
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002684 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002685 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002686
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002687 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002688 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002689
2690 /* now either the frame is complete or the buffer is complete */
2691
Willy Tarreau454f9052017-10-26 19:40:35 +02002692 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2693 /* RFC7540#6.1 */
2694 error = H2_ERR_STREAM_CLOSED;
2695 goto strm_err;
2696 }
2697
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002698 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002699 /* RFC7540#8.1.2 */
2700 error = H2_ERR_PROTOCOL_ERROR;
2701 goto strm_err;
2702 }
2703
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002704 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002705 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002706
Willy Tarreau454f9052017-10-26 19:40:35 +02002707 /* call the upper layers to process the frame, then let the upper layer
2708 * notify the stream about any change.
2709 */
2710 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002711 /* The upper layer has already closed, this may happen on
2712 * 4xx/redirects during POST, or when receiving a response
2713 * from an H2 server after the client has aborted.
2714 */
2715 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002716 goto strm_err;
2717 }
2718
Willy Tarreau8f650c32017-11-21 19:36:21 +01002719 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002720 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002721
Willy Tarreau721c9742017-11-07 11:05:42 +01002722 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002723 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002724 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002725 }
2726
2727 /* check for completion : the callee will change this to FRAME_A or
2728 * FRAME_H once done.
2729 */
2730 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002731 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002732
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002733 /* last frame */
2734 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002735 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002736 if (h2s->st == H2_SS_OPEN)
2737 h2s->st = H2_SS_HREM;
2738 else
2739 h2s_close(h2s);
2740
Willy Tarreau1915ca22019-01-24 11:49:37 +01002741 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2742 /* RFC7540#8.1.2 */
2743 error = H2_ERR_PROTOCOL_ERROR;
2744 goto strm_err;
2745 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002746 }
2747
Willy Tarreau7838a792019-08-12 18:42:03 +02002748 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002749 return 1;
2750
Willy Tarreau454f9052017-10-26 19:40:35 +02002751 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002752 h2s_error(h2s, error);
2753 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002754 fail:
2755 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002756 return 0;
2757}
2758
Willy Tarreau63864812019-08-07 14:25:20 +02002759/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2760 * valid for the current stream state. This is needed only after parsing the
2761 * frame header but in practice it can be performed at any time during
2762 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2763 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2764 */
2765static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2766{
Willy Tarreau7838a792019-08-12 18:42:03 +02002767 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2768
Willy Tarreau63864812019-08-07 14:25:20 +02002769 if (h2s->st == H2_SS_IDLE &&
2770 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2771 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2772 * this state MUST be treated as a connection error
2773 */
2774 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002775 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02002776 /* only log if no other stream can report the error */
2777 sess_log(h2c->conn->owner);
2778 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002779 TRACE_DEVEL("leaving in error (idle&!hdrs&!prio)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002780 return 0;
2781 }
2782
Willy Tarreau57a18162019-11-24 14:57:53 +01002783 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2784 /* only PUSH_PROMISE would be permitted here */
2785 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2786 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
2787 return 0;
2788 }
2789
Willy Tarreau63864812019-08-07 14:25:20 +02002790 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2791 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2792 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2793 * this state MUST be treated as a stream error.
2794 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2795 * PUSH_PROMISE/CONTINUATION cause connection errors.
2796 */
2797 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2798 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2799 else
2800 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002801 TRACE_DEVEL("leaving in error (hrem&!wu&!rst&!prio)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002802 return 0;
2803 }
2804
2805 /* Below the management of frames received in closed state is a
2806 * bit hackish because the spec makes strong differences between
2807 * streams closed by receiving RST, sending RST, and seeing ES
2808 * in both directions. In addition to this, the creation of a
2809 * new stream reusing the identifier of a closed one will be
2810 * detected here. Given that we cannot keep track of all closed
2811 * streams forever, we consider that unknown closed streams were
2812 * closed on RST received, which allows us to respond with an
2813 * RST without breaking the connection (eg: to abort a transfer).
2814 * Some frames have to be silently ignored as well.
2815 */
2816 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2817 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2818 /* #5.1.1: The identifier of a newly
2819 * established stream MUST be numerically
2820 * greater than all streams that the initiating
2821 * endpoint has opened or reserved. This
2822 * governs streams that are opened using a
2823 * HEADERS frame and streams that are reserved
2824 * using PUSH_PROMISE. An endpoint that
2825 * receives an unexpected stream identifier
2826 * MUST respond with a connection error.
2827 */
2828 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002829 TRACE_DEVEL("leaving in error (closed&hdrmask)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002830 return 0;
2831 }
2832
Willy Tarreau4c08f122019-09-26 08:47:15 +02002833 if (h2s->flags & H2_SF_RST_RCVD &&
2834 !(h2_ft_bit(h2c->dft) & (H2_FT_HDR_MASK | H2_FT_RST_STREAM_BIT | H2_FT_PRIORITY_BIT | H2_FT_WINDOW_UPDATE_BIT))) {
Willy Tarreau63864812019-08-07 14:25:20 +02002835 /* RFC7540#5.1:closed: an endpoint that
2836 * receives any frame other than PRIORITY after
2837 * receiving a RST_STREAM MUST treat that as a
2838 * stream error of type STREAM_CLOSED.
2839 *
2840 * Note that old streams fall into this category
2841 * and will lead to an RST being sent.
2842 *
2843 * However, we cannot generalize this to all frame types. Those
2844 * carrying compression state must still be processed before
2845 * being dropped or we'll desynchronize the decoder. This can
2846 * happen with request trailers received after sending an
2847 * RST_STREAM, or with header/trailers responses received after
2848 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02002849 *
2850 * In addition, since our CLOSED streams always carry the
2851 * RST_RCVD bit, we don't want to accidently catch valid
2852 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02002853 */
2854 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2855 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002856 TRACE_DEVEL("leaving in error (rst_rcvd&!hdrmask)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002857 return 0;
2858 }
2859
2860 /* RFC7540#5.1:closed: if this state is reached as a
2861 * result of sending a RST_STREAM frame, the peer that
2862 * receives the RST_STREAM might have already sent
2863 * frames on the stream that cannot be withdrawn. An
2864 * endpoint MUST ignore frames that it receives on
2865 * closed streams after it has sent a RST_STREAM
2866 * frame. An endpoint MAY choose to limit the period
2867 * over which it ignores frames and treat frames that
2868 * arrive after this time as being in error.
2869 */
2870 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
2871 /* RFC7540#5.1:closed: any frame other than
2872 * PRIO/WU/RST in this state MUST be treated as
2873 * a connection error
2874 */
2875 if (h2c->dft != H2_FT_RST_STREAM &&
2876 h2c->dft != H2_FT_PRIORITY &&
2877 h2c->dft != H2_FT_WINDOW_UPDATE) {
2878 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002879 TRACE_DEVEL("leaving in error (rst_sent&!rst&!prio&!wu)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002880 return 0;
2881 }
2882 }
2883 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002884 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002885 return 1;
2886}
2887
Willy Tarreaubc933932017-10-09 16:21:43 +02002888/* process Rx frames to be demultiplexed */
2889static void h2_process_demux(struct h2c *h2c)
2890{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002891 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002892 struct h2_fh hdr;
2893 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002894 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002895
Willy Tarreau7838a792019-08-12 18:42:03 +02002896 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2897
Willy Tarreau081d4722017-05-16 21:51:05 +02002898 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002899 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02002900
2901 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2902 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002903 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02002904 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02002905 goto out;
2906
Willy Tarreau52eed752017-09-22 15:05:09 +02002907 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2908 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002909 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002910 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002911 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002912 sess_log(h2c->conn->owner);
2913 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002914 goto fail;
2915 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002916 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002917
2918 h2c->max_id = 0;
2919 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002920 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002921 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002922
2923 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002924 /* ensure that what is pending is a valid SETTINGS frame
2925 * without an ACK.
2926 */
Willy Tarreau7838a792019-08-12 18:42:03 +02002927 TRACE_STATE("expecting settings", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002928 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002929 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002930 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002931 TRACE_PROTO("failed to receive settings", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_SETTINGS|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002932 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002933 if (!(h2c->flags & H2_CF_IS_BACK))
2934 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002935 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002936 goto fail;
2937 }
2938
2939 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2940 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002941 TRACE_PROTO("unexpected frame type or flags", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_SETTINGS|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002942 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2943 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002944 if (!(h2c->flags & H2_CF_IS_BACK))
2945 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002946 goto fail;
2947 }
2948
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002949 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002950 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002951 TRACE_PROTO("invalid settings frame length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_SETTINGS|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002952 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2953 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002954 if (!(h2c->flags & H2_CF_IS_BACK))
2955 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002956 goto fail;
2957 }
2958
Willy Tarreau3bf69182018-12-21 15:34:50 +01002959 /* that's OK, switch to FRAME_P to process it. This is
2960 * a SETTINGS frame whose header has already been
2961 * deleted above.
2962 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002963 padlen = 0;
2964 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002965 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002966 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002967
2968 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02002969 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002970 int ret = 0;
2971
Willy Tarreau7838a792019-08-12 18:42:03 +02002972 if (!b_data(&h2c->dbuf)) {
2973 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
2974 break;
2975 }
2976
2977 if (h2c->st0 >= H2_CS_ERROR) {
2978 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002979 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02002980 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002981
2982 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02002983 h2c->rcvd_s = 0;
2984
Willy Tarreau7838a792019-08-12 18:42:03 +02002985 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002986 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002987 break;
2988
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002989 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002990 TRACE_PROTO("invalid H2 frame length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002991 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002992 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02002993 /* only log if no other stream can report the error */
2994 sess_log(h2c->conn->owner);
2995 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002996 break;
2997 }
2998
Christopher Fauletdd2a5622019-06-18 12:22:38 +02002999 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003000 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3001 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3002 * we read the pad length and drop it from the remaining
3003 * payload (one byte + the 9 remaining ones = 10 total
3004 * removed), so we have a frame payload starting after the
3005 * pad len. Flow controlled frames (DATA) also count the
3006 * padlen in the flow control, so it must be adjusted.
3007 */
3008 if (hdr.len < 1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003009 TRACE_PROTO("invalid H2 padded frame length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003010 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003011 if (!(h2c->flags & H2_CF_IS_BACK))
3012 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003013 goto fail;
3014 }
3015 hdr.len--;
3016
3017 if (b_data(&h2c->dbuf) < 10)
3018 break; // missing padlen
3019
3020 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3021
3022 if (padlen > hdr.len) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003023 TRACE_PROTO("invalid H2 padding length", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003024 /* RFC7540#6.1 : pad length = length of
3025 * frame payload or greater => error.
3026 */
3027 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003028 if (!(h2c->flags & H2_CF_IS_BACK))
3029 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003030 goto fail;
3031 }
3032
3033 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3034 h2c->rcvd_c++;
3035 h2c->rcvd_s++;
3036 }
3037 b_del(&h2c->dbuf, 1);
3038 }
3039 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003040
3041 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003042 h2c->dfl = hdr.len;
3043 h2c->dsi = hdr.sid;
3044 h2c->dft = hdr.ft;
3045 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003046 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003047 TRACE_STATE("rcvd H2 frame header, switching to FRAME_P state", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003048 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003049
3050 /* check for minimum basic frame format validity */
3051 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3052 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003053 TRACE_PROTO("received invalid H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003054 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003055 if (!(h2c->flags & H2_CF_IS_BACK))
3056 sess_log(h2c->conn->owner);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003057 goto fail;
3058 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003059 }
3060
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003061 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3062 * H2_CS_FRAME_P indicates an incomplete previous operation
3063 * (most often the first attempt) and requires some validity
3064 * checks for the frame and the current state. The two other
3065 * ones are set after completion (or abortion) and must skip
3066 * validity checks.
3067 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003068 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3069
Willy Tarreau567beb82018-12-18 16:52:44 +01003070 if (tmp_h2s != h2s && h2s && h2s->cs &&
3071 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003072 conn_xprt_read0_pending(h2c->conn) ||
3073 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003074 (h2s->flags & H2_SF_ES_RCVD) ||
3075 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003076 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003077 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003078 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003079 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003080 }
3081 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003082
Willy Tarreau63864812019-08-07 14:25:20 +02003083 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003084 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3085 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003086 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003087 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003088
Willy Tarreau7e98c052017-10-10 15:56:59 +02003089 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003090 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003091 if (h2c->st0 == H2_CS_FRAME_P) {
3092 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003093 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003094 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003095
Willy Tarreau7838a792019-08-12 18:42:03 +02003096 if (h2c->st0 == H2_CS_FRAME_A) {
3097 TRACE_PROTO("sending H2 SETTINGS ACK frame", H2_EV_TX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003098 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003099 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003100 break;
3101
Willy Tarreaucf68c782017-10-10 17:11:41 +02003102 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003103 if (h2c->st0 == H2_CS_FRAME_P) {
3104 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003105 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003106 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003107
Willy Tarreau7838a792019-08-12 18:42:03 +02003108 if (h2c->st0 == H2_CS_FRAME_A) {
3109 TRACE_PROTO("sending H2 PING ACK frame", H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003110 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003111 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003112 break;
3113
Willy Tarreau26f95952017-07-27 17:18:30 +02003114 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003115 if (h2c->st0 == H2_CS_FRAME_P) {
3116 TRACE_PROTO("receiving H2 WINDOW_UPDATE frame", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn, h2s);
Willy Tarreau26f95952017-07-27 17:18:30 +02003117 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003118 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003119 break;
3120
Willy Tarreau61290ec2017-10-17 08:19:21 +02003121 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01003122 /* RFC7540#6.10: CONTINUATION may only be preceeded by
3123 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3124 * frames' parsers consume all following CONTINUATION
3125 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003126 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003127 TRACE_PROTO("received unexpected H2 CONTINUATION frame", H2_EV_RX_FRAME|H2_EV_RX_CONT|H2_EV_H2C_ERR, h2c->conn, h2s);
Willy Tarreauea18f862018-12-22 20:19:26 +01003128 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003129 if (!(h2c->flags & H2_CF_IS_BACK))
3130 sess_log(h2c->conn->owner);
Willy Tarreauea18f862018-12-22 20:19:26 +01003131 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003132
Willy Tarreau13278b42017-10-13 19:23:14 +02003133 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003134 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003135 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003136 if (h2c->flags & H2_CF_IS_BACK)
3137 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3138 else
3139 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003140 if (tmp_h2s) {
3141 h2s = tmp_h2s;
3142 ret = 1;
3143 }
3144 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003145 break;
3146
Willy Tarreau454f9052017-10-26 19:40:35 +02003147 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003148 if (h2c->st0 == H2_CS_FRAME_P) {
3149 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003150 ret = h2c_frt_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003151 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003152
Willy Tarreau7838a792019-08-12 18:42:03 +02003153 if (h2c->st0 == H2_CS_FRAME_A) {
3154 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003155 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003156 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003157 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003158
Willy Tarreau92153fc2017-12-03 19:46:19 +01003159 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003160 if (h2c->st0 == H2_CS_FRAME_P) {
3161 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003162 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003163 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003164 break;
3165
Willy Tarreaucd234e92017-08-18 10:59:39 +02003166 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003167 if (h2c->st0 == H2_CS_FRAME_P) {
3168 TRACE_PROTO("receiving H2 RST_STREAM frame", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003169 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003170 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02003171 break;
3172
Willy Tarreaue96b0922017-10-30 00:28:29 +01003173 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003174 if (h2c->st0 == H2_CS_FRAME_P) {
3175 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003176 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003177 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01003178 break;
3179
Willy Tarreau1c661982017-10-30 13:52:01 +01003180 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003181 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003182 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003183 /* drop frames that we ignore. They may be larger than
3184 * the buffer so we drain all of their contents until
3185 * we reach the end.
3186 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003187 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3188 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003189 h2c->dfl -= ret;
3190 ret = h2c->dfl == 0;
3191 }
3192
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003193 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003194 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003195 if (h2s->st == H2_SS_ERROR) {
3196 TRACE_STATE("stream error, switching to FRAME_E", H2_EV_RX_FRAME|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreaua20a5192017-12-27 11:02:06 +01003197 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003198 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003199
Willy Tarreau7838a792019-08-12 18:42:03 +02003200 if (h2c->st0 == H2_CS_FRAME_E) {
3201 TRACE_PROTO("sending H2 RST_STREAM frame", H2_EV_TX_FRAME|H2_EV_TX_RST|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreaua20a5192017-12-27 11:02:06 +01003202 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003203 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003204
Willy Tarreau7e98c052017-10-10 15:56:59 +02003205 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003206 if (ret <= 0) {
3207 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003208 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003209 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003210
3211 if (h2c->st0 != H2_CS_FRAME_H) {
Christopher Faulet5112a602019-09-26 16:38:28 +02003212 TRACE_DEVEL("stream error, skip frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
3213 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3214 b_del(&h2c->dbuf, ret);
3215 h2c->dfl -= ret;
3216 if (!h2c->dfl) {
3217 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3218 h2c->st0 = H2_CS_FRAME_H;
3219 h2c->dsi = -1;
3220 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003221 }
3222 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003223
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003224 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003225 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3226 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003227 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003228 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003229
Willy Tarreau52eed752017-09-22 15:05:09 +02003230 fail:
3231 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01003232 if (h2s && h2s->cs &&
3233 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003234 conn_xprt_read0_pending(h2c->conn) ||
3235 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003236 (h2s->flags & H2_SF_ES_RCVD) ||
3237 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003238 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003239 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003240 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003241 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003242 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003243
Willy Tarreau7838a792019-08-12 18:42:03 +02003244 if (old_iw != h2c->miw) {
3245 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003246 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003247 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003248
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003249 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003250 out:
3251 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreaubc933932017-10-09 16:21:43 +02003252}
3253
3254/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3255 * the end.
3256 */
3257static int h2_process_mux(struct h2c *h2c)
3258{
Olivier Houchard998410a2019-04-15 19:23:37 +02003259 struct h2s *h2s, *h2s_back;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003260
Willy Tarreau7838a792019-08-12 18:42:03 +02003261 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3262
Willy Tarreau01b44822018-10-03 14:26:37 +02003263 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3264 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3265 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3266 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003267 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003268 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003269 goto fail;
3270 }
3271 h2c->st0 = H2_CS_SETTINGS1;
3272 }
3273 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003274 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003275 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003276 }
3277
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003278 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003279 if (h2c->rcvd_s > 0 &&
3280 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3281 h2c_send_strm_wu(h2c) < 0)
3282 goto fail;
3283
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003284 if (h2c->rcvd_c > 0 &&
3285 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3286 h2c_send_conn_wu(h2c) < 0)
3287 goto fail;
3288
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003289 /* First we always process the flow control list because the streams
3290 * waiting there were already elected for immediate emission but were
3291 * blocked just on this.
3292 */
3293
Olivier Houchard998410a2019-04-15 19:23:37 +02003294 list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003295 if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3296 h2c->st0 >= H2_CS_ERROR)
3297 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003298
Willy Tarreauc234ae32019-05-13 17:56:11 +02003299 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003300 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003301
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003302 h2s->flags &= ~H2_SF_BLK_ANY;
Olivier Houchard998410a2019-04-15 19:23:37 +02003303 /* For some reason, the upper layer failed to subsribe again,
3304 * so remove it from the send_list
3305 */
3306 if (!h2s->send_wait) {
3307 LIST_DEL_INIT(&h2s->list);
3308 continue;
3309 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003310 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01003311 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003312 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003313 }
3314
Olivier Houchard998410a2019-04-15 19:23:37 +02003315 list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003316 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
3317 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003318
Willy Tarreauc234ae32019-05-13 17:56:11 +02003319 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003320 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003321
Olivier Houchard998410a2019-04-15 19:23:37 +02003322 /* For some reason, the upper layer failed to subsribe again,
3323 * so remove it from the send_list
3324 */
3325 if (!h2s->send_wait) {
3326 LIST_DEL_INIT(&h2s->list);
3327 continue;
3328 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003329 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003330 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01003331 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003332 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003333 }
3334
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003335 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003336 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003337 if (h2c->st0 == H2_CS_ERROR) {
3338 if (h2c->max_id >= 0) {
3339 h2c_send_goaway_error(h2c, NULL);
3340 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003341 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003342 }
3343
3344 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3345 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003346 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003347 done:
3348 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3349 return 1;
3350 out0:
3351 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3352 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003353}
3354
Willy Tarreau62f52692017-10-08 23:01:42 +02003355
Willy Tarreau479998a2018-11-18 06:30:59 +01003356/* Attempt to read data, and subscribe if none available.
3357 * The function returns 1 if data has been received, otherwise zero.
3358 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003359static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003360{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003361 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003362 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003363 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003364 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003365
Willy Tarreau7838a792019-08-12 18:42:03 +02003366 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3367
3368 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3369 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003370 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003371 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003372
Willy Tarreau7838a792019-08-12 18:42:03 +02003373 if (!h2_recv_allowed(h2c)) {
3374 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003375 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003376 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003377
Willy Tarreau44e973f2018-03-01 17:49:30 +01003378 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003379 if (!buf) {
3380 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003381 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003382 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003383 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003384
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003385 b_realign_if_empty(buf);
3386 if (!b_data(buf)) {
3387 /* try to pre-align the buffer like the
3388 * rxbufs will be to optimize memory copies. We'll make
3389 * sure that the frame header lands at the end of the
3390 * HTX block to alias it upon recv. We cannot use the
3391 * head because rcv_buf() will realign the buffer if
3392 * it's empty. Thus we cheat and pretend we already
3393 * have a few bytes there.
3394 */
3395 max = buf_room_for_htx_data(buf) + 9;
3396 buf->head = sizeof(struct htx) - 9;
3397 }
3398 else
3399 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003400
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003401 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003402
Willy Tarreau7838a792019-08-12 18:42:03 +02003403 if (max && !ret && h2_recv_allowed(h2c)) {
3404 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003405 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003406 } else if (ret)
3407 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn,,, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003408
Olivier Houcharda1411e62018-08-17 18:42:48 +02003409 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003410 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003411 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003412 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003413 }
3414
Willy Tarreau7838a792019-08-12 18:42:03 +02003415 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003416 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003417 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003418 }
3419
3420 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003421 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003422}
3423
Willy Tarreau479998a2018-11-18 06:30:59 +01003424/* Try to send data if possible.
3425 * The function returns 1 if data have been sent, otherwise zero.
3426 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003427static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003428{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003429 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003430 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003431 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003432
Willy Tarreau7838a792019-08-12 18:42:03 +02003433 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003434
Willy Tarreau7838a792019-08-12 18:42:03 +02003435 if (conn->flags & CO_FL_ERROR) {
3436 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3437 return 1;
3438 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003439
Willy Tarreaua2af5122017-10-09 11:56:46 +02003440 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
3441 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003442 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003443 }
3444
Willy Tarreaubc933932017-10-09 16:21:43 +02003445 /* This loop is quite simple : it tries to fill as much as it can from
3446 * pending streams into the existing buffer until it's reportedly full
3447 * or the end of send requests is reached. Then it tries to send this
3448 * buffer's contents out, marks it not full if at least one byte could
3449 * be sent, and tries again.
3450 *
3451 * The snd_buf() function normally takes a "flags" argument which may
3452 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3453 * data immediately comes and CO_SFL_STREAMER to indicate that the
3454 * connection is streaming lots of data (used to increase TLS record
3455 * size at the expense of latency). The former can be sent any time
3456 * there's a buffer full flag, as it indicates at least one stream
3457 * attempted to send and failed so there are pending data. An
3458 * alternative would be to set it as long as there's an active stream
3459 * but that would be problematic for ACKs until we have an absolute
3460 * guarantee that all waiters have at least one byte to send. The
3461 * latter should possibly not be set for now.
3462 */
3463
3464 done = 0;
3465 while (!done) {
3466 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003467 unsigned int released = 0;
3468 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003469
3470 /* fill as much as we can into the current buffer */
3471 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3472 done = h2_process_mux(h2c);
3473
Olivier Houchard2b094432019-01-29 18:28:36 +01003474 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003475 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003476
Willy Tarreaubc933932017-10-09 16:21:43 +02003477 if (conn->flags & CO_FL_ERROR)
3478 break;
3479
3480 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3481 flags |= CO_SFL_MSG_MORE;
3482
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003483 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3484 if (b_data(buf)) {
3485 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003486 if (!ret) {
3487 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003488 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003489 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003490 sent = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003491 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn,, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003492 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003493 if (b_data(buf)) {
3494 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003495 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003496 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003497 }
3498 b_free(buf);
3499 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003500 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003501
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003502 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003503 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003504
Willy Tarreaubc933932017-10-09 16:21:43 +02003505 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003506 if (sent)
3507 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003508 }
3509
Willy Tarreaua2af5122017-10-09 11:56:46 +02003510 if (conn->flags & CO_FL_SOCK_WR_SH) {
3511 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003512 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003513 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003514 /* We're not full anymore, so we can wake any task that are waiting
3515 * for us.
3516 */
Willy Tarreaucec60052019-09-25 07:57:31 +02003517 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01003518 struct h2s *h2s;
3519
3520 list_for_each_entry(h2s, &h2c->send_list, list) {
3521 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
3522 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003523
Willy Tarreauc234ae32019-05-13 17:56:11 +02003524 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003525 continue;
3526
Olivier Houchard998410a2019-04-15 19:23:37 +02003527 /* For some reason, the upper layer failed to subsribe again,
3528 * so remove it from the send_list
3529 */
3530 if (!h2s->send_wait) {
3531 LIST_DEL_INIT(&h2s->list);
3532 continue;
3533 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01003534 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003535 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau7838a792019-08-12 18:42:03 +02003536 TRACE_DEVEL("waking up pending stream", H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003537 tasklet_wakeup(h2s->send_wait->tasklet);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003538 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02003539 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003540 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003541 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003542 if (!br_data(h2c->mbuf)) {
3543 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003544 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003545 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003546schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003547 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3548 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003549 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003550 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003551
Willy Tarreau7838a792019-08-12 18:42:03 +02003552 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003553 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003554}
3555
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003556/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003557static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
3558{
3559 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003560 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003561
Willy Tarreau7838a792019-08-12 18:42:03 +02003562 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3563
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003564 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003565 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003566 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003567 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003568 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02003569 h2_process(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003570
3571 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003572 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003573}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003574
Willy Tarreau62f52692017-10-08 23:01:42 +02003575/* callback called on any event by the connection handler.
3576 * It applies changes and returns zero, or < 0 if it wants immediate
3577 * destruction of the connection (which normally doesn not happen in h2).
3578 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003579static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003580{
Olivier Houchard7505f942018-08-21 18:10:44 +02003581 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003582
Willy Tarreau7838a792019-08-12 18:42:03 +02003583 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3584
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003585 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003586 h2_process_demux(h2c);
3587
3588 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003589 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003590
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003591 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003592 h2c->flags &= ~H2_CF_DEM_DFULL;
3593 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003594 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003595
Willy Tarreau0b37d652018-10-03 10:33:02 +02003596 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003597 /* frontend is stopping, reload likely in progress, let's try
3598 * to announce a graceful shutdown if not yet done. We don't
3599 * care if it fails, it will be tried again later.
3600 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003601 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003602 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3603 if (h2c->last_sid < 0)
3604 h2c->last_sid = (1U << 31) - 1;
3605 h2c_send_goaway_error(h2c, NULL);
3606 }
3607 }
3608
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003609 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003610 * If we received early data, and the handshake is done, wake
3611 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003612 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003613 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3614 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3615 struct eb32_node *node;
3616 struct h2s *h2s;
3617
3618 h2c->flags |= H2_CF_WAIT_FOR_HS;
3619 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3620
3621 while (node) {
3622 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003623 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003624 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003625 node = eb32_next(node);
3626 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003627 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003628
Willy Tarreau26bd7612017-10-09 16:47:04 +02003629 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003630 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3631 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3632 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003633 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003634
3635 if (eb_is_empty(&h2c->streams_by_id)) {
3636 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003637 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003638 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003639 return -1;
3640 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003641
3642 /* connections in error must be removed from the idle lists */
3643 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3644 MT_LIST_DEL((struct mt_list *)&conn->list);
3645 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3646 }
3647 else if (h2c->st0 == H2_CS_ERROR) {
3648 /* connections in error must be removed from the idle lists */
3649 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3650 MT_LIST_DEL((struct mt_list *)&conn->list);
3651 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003652 }
3653
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003654 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003655 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003656
Olivier Houchard53216e72018-10-10 15:46:36 +02003657 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3658 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3659 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003660 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003661 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3662 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003663 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003664
Willy Tarreau3f133572017-10-31 19:21:06 +01003665 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003666 if (h2c_may_expire(h2c))
3667 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3668 else
3669 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003670 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003671 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003672
Olivier Houchard7505f942018-08-21 18:10:44 +02003673 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003674 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003675 return 0;
3676}
3677
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003678/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003679static int h2_wake(struct connection *conn)
3680{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003681 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003682 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003683
Willy Tarreau7838a792019-08-12 18:42:03 +02003684 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3685 ret = h2_process(h2c);
3686 TRACE_LEAVE(H2_EV_H2C_WAKE);
3687 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003688}
3689
Willy Tarreauea392822017-10-31 10:02:25 +01003690/* Connection timeout management. The principle is that if there's no receipt
3691 * nor sending for a certain amount of time, the connection is closed. If the
3692 * MUX buffer still has lying data or is not allocatable, the connection is
3693 * immediately killed. If it's allocatable and empty, we attempt to send a
3694 * GOAWAY frame.
3695 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003696static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003697{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003698 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003699 int expired = tick_is_expired(t->expire, now_ms);
3700
Willy Tarreau7838a792019-08-12 18:42:03 +02003701 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3702
3703 if (!expired && h2c) {
3704 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreauea392822017-10-31 10:02:25 +01003705 return t;
Willy Tarreau7838a792019-08-12 18:42:03 +02003706 }
Willy Tarreauea392822017-10-31 10:02:25 +01003707
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003708 if (h2c && !h2c_may_expire(h2c)) {
3709 /* we do still have streams but all of them are idle, waiting
3710 * for the data layer, so we must not enforce the timeout here.
3711 */
3712 t->expire = TICK_ETERNITY;
3713 return t;
3714 }
3715
Olivier Houchard3f795f72019-04-17 22:51:06 +02003716 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003717
3718 if (!h2c) {
3719 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003720 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02003721 return NULL;
3722 }
3723
3724 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003725 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003726 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003727
Willy Tarreau662fafc2019-05-26 09:43:07 +02003728 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003729 /* don't even try to send a GOAWAY, the buffer is stuck */
3730 h2c->flags |= H2_CF_GOAWAY_FAILED;
3731 }
3732
3733 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003734 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003735 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3736 h2c->flags |= H2_CF_GOAWAY_FAILED;
3737
Willy Tarreau662fafc2019-05-26 09:43:07 +02003738 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003739 unsigned int released = 0;
3740 struct buffer *buf;
3741
3742 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3743 if (b_data(buf)) {
3744 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3745 if (!ret)
3746 break;
3747 b_del(buf, ret);
3748 if (b_data(buf))
3749 break;
3750 b_free(buf);
3751 released++;
3752 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003753 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003754
3755 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003756 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003757 }
Willy Tarreauea392822017-10-31 10:02:25 +01003758
Willy Tarreau4481e262019-10-31 15:36:30 +01003759 /* in any case this connection must not be considered idle anymore */
3760 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3761 MT_LIST_DEL((struct mt_list *)&h2c->conn->list);
3762 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3763
Willy Tarreau0975f112018-03-29 15:22:59 +02003764 /* either we can release everything now or it will be done later once
3765 * the last stream closes.
3766 */
3767 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003768 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003769
Willy Tarreau7838a792019-08-12 18:42:03 +02003770 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01003771 return NULL;
3772}
3773
3774
Willy Tarreau62f52692017-10-08 23:01:42 +02003775/*******************************************/
3776/* functions below are used by the streams */
3777/*******************************************/
3778
3779/*
3780 * Attach a new stream to a connection
3781 * (Used for outgoing connections)
3782 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003783static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003784{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003785 struct conn_stream *cs;
3786 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003787 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003788
Willy Tarreau7838a792019-08-12 18:42:03 +02003789 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003790 cs = cs_new(conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003791 if (!cs) {
3792 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003793 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003794 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01003795 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003796 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003797 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003798 cs_free(cs);
3799 return NULL;
3800 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003801 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003802 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003803}
3804
Willy Tarreaufafd3982018-11-18 21:29:20 +01003805/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3806 * We have to scan because we may have some orphan streams. It might be
3807 * beneficial to scan backwards from the end to reduce the likeliness to find
3808 * orphans.
3809 */
3810static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3811{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003812 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003813 struct h2s *h2s;
3814 struct eb32_node *node;
3815
3816 node = eb32_first(&h2c->streams_by_id);
3817 while (node) {
3818 h2s = container_of(node, struct h2s, by_id);
3819 if (h2s->cs)
3820 return h2s->cs;
3821 node = eb32_next(node);
3822 }
3823 return NULL;
3824}
3825
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003826static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3827{
3828 int ret = 0;
3829 struct h2c *h2c = conn->ctx;
3830
3831 switch (mux_ctl) {
3832 case MUX_STATUS:
3833 /* Only consider the mux to be ready if we're done with
3834 * the preface and settings, and we had no error.
3835 */
3836 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
3837 ret |= MUX_STATUS_READY;
3838 return ret;
3839 default:
3840 return -1;
3841 }
3842}
3843
Willy Tarreau62f52692017-10-08 23:01:42 +02003844/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003845 * Destroy the mux and the associated connection, if it is no longer used
3846 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003847static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003848{
Christopher Faulet73c12072019-04-08 11:23:22 +02003849 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003850
Willy Tarreau7838a792019-08-12 18:42:03 +02003851 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003852 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003853 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003854 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01003855}
3856
3857/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003858 * Detach the stream from the connection and possibly release the connection.
3859 */
3860static void h2_detach(struct conn_stream *cs)
3861{
Willy Tarreau60935142017-10-16 18:11:19 +02003862 struct h2s *h2s = cs->ctx;
3863 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003864 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003865
Willy Tarreau7838a792019-08-12 18:42:03 +02003866 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
3867
Willy Tarreau60935142017-10-16 18:11:19 +02003868 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003869 if (!h2s) {
3870 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02003871 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003872 }
Willy Tarreau60935142017-10-16 18:11:19 +02003873
Olivier Houchard998410a2019-04-15 19:23:37 +02003874 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003875 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003876 h2s->send_wait != &h2s->wait_event) {
Olivier Houchard5a3671d2019-10-11 16:33:49 +02003877 /*
3878 * Calling tasklet_remove_from_tasklet_list() here is fine,
3879 * as only the thread responsible for the tasklet should
3880 * call h2_detach().
3881 */
Willy Tarreau86eded62019-06-14 14:47:49 +02003882 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003883 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003884 /*
3885 * At this point, the stream_interface is supposed to have called
3886 * h2_unsubscribe(), so the only way there's still a
3887 * subscription that came from the stream_interface (as we
3888 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3889 * without the stream_interface involved) is that we subscribed
3890 * for sending, we woke the tasklet up and removed the
3891 * SUB_RETRY_SEND flag, so the stream_interface would not
3892 * know it has to unsubscribe for send, but the tasklet hasn't
3893 * run yet. Make sure to handle that by explicitely setting
3894 * send_wait to NULL, as nothing else will do it for us.
3895 */
3896 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003897 }
3898
Olivier Houchardf502aca2018-12-14 19:42:40 +01003899 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003900 h2c = h2s->h2c;
3901 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003902 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003903 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3904 !h2_frt_has_too_many_cs(h2c)) {
3905 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003906 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003907 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003908 }
Willy Tarreau60935142017-10-16 18:11:19 +02003909
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003910 /* this stream may be blocked waiting for some data to leave (possibly
3911 * an ES or RST frame), so orphan it in this case.
3912 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003913 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003914 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003915 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) && (h2s->send_wait || h2s->recv_wait)) {
3916 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003917 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003918 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003919
Willy Tarreau45f752e2017-10-30 15:44:59 +01003920 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3921 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3922 /* unblock the connection if it was blocked on this
3923 * stream.
3924 */
3925 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3926 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003927 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003928 }
3929
Willy Tarreau71049cc2018-03-28 13:56:39 +02003930 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003931
Christopher Faulet9b79a102019-07-15 11:22:56 +02003932 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003933 if (!(h2c->conn->flags &
3934 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3935 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003936 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003937 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3938 h2c->conn->owner = NULL;
3939 if (eb_is_empty(&h2c->streams_by_id)) {
3940 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3941 /* The server doesn't want it, let's kill the connection right away */
3942 h2c->conn->mux->destroy(h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003943 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
Olivier Houchard351411f2018-12-27 17:20:54 +01003944 return;
3945 }
3946 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003947 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003948 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletb2d930e2019-09-26 16:15:10 +02003949 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003950 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
Willy Tarreaufe1c9082019-08-30 14:57:17 +02003951 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003952 return;
Christopher Fauletb2d930e2019-09-26 16:15:10 +02003953 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003954 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003955 /* Never ever allow to reuse a connection from a non-reuse backend */
3956 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3957 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003958 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003959 struct server *srv = objt_server(h2c->conn->target);
3960
3961 if (srv) {
3962 if (h2c->conn->flags & CO_FL_PRIVATE)
3963 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3964 else
3965 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3966 }
3967
3968 }
3969 }
3970 }
3971
Willy Tarreaue323f342018-03-28 13:51:45 +02003972 /* We don't want to close right now unless we're removing the
3973 * last stream, and either the connection is in error, or it
3974 * reached the ID already specified in a GOAWAY frame received
3975 * or sent (as seen by last_sid >= 0).
3976 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003977 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003978 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02003979 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003980 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003981 }
3982 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003983 if (h2c_may_expire(h2c))
3984 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3985 else
3986 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003987 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02003988 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02003989 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003990 else
3991 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003992}
3993
Willy Tarreau88bdba32019-05-13 18:17:53 +02003994/* Performs a synchronous or asynchronous shutr(). */
3995static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003996{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003997 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003998 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003999
Willy Tarreauf983d002019-05-14 10:40:21 +02004000 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004001 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004002
Willy Tarreau7838a792019-08-12 18:42:03 +02004003 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4004
Willy Tarreau18059042019-01-31 19:12:48 +01004005 /* a connstream may require us to immediately kill the whole connection
4006 * for example because of a "tcp-request content reject" rule that is
4007 * normally used to limit abuse. In this case we schedule a goaway to
4008 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004009 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004010 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004011 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004012 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004013 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4014 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4015 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004016 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4017 /* Nothing was never sent for this stream, so reset with
4018 * REFUSED_STREAM error to let the client retry the
4019 * request.
4020 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004021 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004022 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4023 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004024 else {
4025 /* a final response was already provided, we don't want this
4026 * stream anymore. This may happen when the server responds
4027 * before the end of an upload and closes quickly (redirect,
4028 * deny, ...)
4029 */
4030 h2s_error(h2s, H2_ERR_CANCEL);
4031 }
Willy Tarreau18059042019-01-31 19:12:48 +01004032
Willy Tarreau90c32322017-11-24 08:00:30 +01004033 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004034 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004035 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004036
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004037 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004038 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004039 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004040 done:
4041 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004042 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004043 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004044add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02004045 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004046 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004047 if (h2s->flags & H2_SF_BLK_MFCTL) {
4048 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
4049 h2s->send_wait = sw;
4050 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
4051 h2s->send_wait = sw;
4052 LIST_ADDQ(&h2c->send_list, &h2s->list);
4053 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004054 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004055 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004056 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004057 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004058 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004059}
4060
Willy Tarreau88bdba32019-05-13 18:17:53 +02004061/* Performs a synchronous or asynchronous shutw(). */
4062static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004063{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004064 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004065 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004066
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004067 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004068 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004069
Willy Tarreau7838a792019-08-12 18:42:03 +02004070 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4071
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004072 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004073 /* we can cleanly close using an empty data frame only after headers */
4074
4075 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4076 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004077 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004078
4079 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004080 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004081 else
4082 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004083 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004084 /* a connstream may require us to immediately kill the whole connection
4085 * for example because of a "tcp-request content reject" rule that is
4086 * normally used to limit abuse. In this case we schedule a goaway to
4087 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004088 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004089 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004090 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004091 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004092 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4093 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4094 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004095 else {
4096 /* Nothing was never sent for this stream, so reset with
4097 * REFUSED_STREAM error to let the client retry the
4098 * request.
4099 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004100 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004101 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4102 }
Willy Tarreau18059042019-01-31 19:12:48 +01004103
Willy Tarreau90c32322017-11-24 08:00:30 +01004104 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004105 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004106 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004107
Willy Tarreau00dd0782018-03-01 16:31:34 +01004108 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004109 }
4110
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004111 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004112 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004113
4114 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4115
Willy Tarreau88bdba32019-05-13 18:17:53 +02004116 done:
4117 h2s->flags &= ~H2_SF_WANT_SHUTW;
4118 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004119
4120 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02004121 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004122 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004123 if (h2s->flags & H2_SF_BLK_MFCTL) {
4124 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
4125 h2s->send_wait = sw;
4126 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
4127 h2s->send_wait = sw;
4128 LIST_ADDQ(&h2c->send_list, &h2s->list);
4129 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004130 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004131 /* let the handler know we want to shutw */
4132 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau7838a792019-08-12 18:42:03 +02004133 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004134 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004135}
4136
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004137/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004138 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4139 * and prevented the last frame from being emitted.
4140 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004141static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
4142{
4143 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004144 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004145
Willy Tarreau7838a792019-08-12 18:42:03 +02004146 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4147
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004148 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004149 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004150 h2_do_shutw(h2s);
4151
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004152 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004153 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004154
Willy Tarreau88bdba32019-05-13 18:17:53 +02004155 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004156 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004157 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004158
Willy Tarreau88bdba32019-05-13 18:17:53 +02004159 if (!h2s->cs) {
4160 h2s_destroy(h2s);
4161 if (h2c_is_dead(h2c))
4162 h2_release(h2c);
4163 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004164 }
4165
Willy Tarreau7838a792019-08-12 18:42:03 +02004166 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004167 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02004168}
4169
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004170/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004171static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4172{
4173 struct h2s *h2s = cs->ctx;
4174
Willy Tarreau7838a792019-08-12 18:42:03 +02004175 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004176 if (cs->flags & CS_FL_KILL_CONN)
4177 h2s->flags |= H2_SF_KILL_CONN;
4178
Willy Tarreau7838a792019-08-12 18:42:03 +02004179 if (mode)
4180 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004181
Willy Tarreau7838a792019-08-12 18:42:03 +02004182 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004183}
4184
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004185/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004186static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4187{
4188 struct h2s *h2s = cs->ctx;
4189
Willy Tarreau7838a792019-08-12 18:42:03 +02004190 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004191 if (cs->flags & CS_FL_KILL_CONN)
4192 h2s->flags |= H2_SF_KILL_CONN;
4193
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004194 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004195 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004196}
4197
Christopher Faulet9b79a102019-07-15 11:22:56 +02004198/* Decode the payload of a HEADERS frame and produce the HTX request or response
4199 * depending on the connection's side. Returns a positive value on success, a
4200 * negative value on failure, or 0 if it couldn't proceed. May report connection
4201 * errors in h2c->errcode if the frame is non-decodable and the connection
4202 * unrecoverable. In absence of connection error when a failure is reported, the
4203 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004204 *
4205 * The function may fold CONTINUATION frames into the initial HEADERS frame
4206 * by removing padding and next frame header, then moving the CONTINUATION
4207 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4208 * leaving a hole between the main frame and the beginning of the next one.
4209 * The possibly remaining incomplete or next frame at the end may be moved
4210 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4211 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4212 *
4213 * A buffer at the beginning of processing may look like this :
4214 *
4215 * ,---.---------.-----.--------------.--------------.------.---.
4216 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4217 * `---^---------^-----^--------------^--------------^------^---'
4218 * | | <-----> | |
4219 * area | dpl | wrap
4220 * |<--------------> |
4221 * | dfl |
4222 * |<-------------------------------------------------->|
4223 * head data
4224 *
4225 * Padding is automatically overwritten when folding, participating to the
4226 * hole size after dfl :
4227 *
4228 * ,---.------------------------.-----.--------------.------.---.
4229 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4230 * `---^------------------------^-----^--------------^------^---'
4231 * | | <-----> | |
4232 * area | hole | wrap
4233 * |<-----------------------> |
4234 * | dfl |
4235 * |<-------------------------------------------------->|
4236 * head data
4237 *
4238 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4239 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4240 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004241 *
4242 * The <flags> field must point to either the stream's flags or to a copy of it
4243 * so that the function can update the following flags :
4244 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004245 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004246 *
4247 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4248 * decoding, in order to detect if we're dealing with a headers or a trailers
4249 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004250 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01004251static 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 +02004252{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004253 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004254 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004255 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004256 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004257 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004258 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004259 int flen; // header frame len
4260 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004261 int ret = 0;
4262 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004263 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004264
Willy Tarreau7838a792019-08-12 18:42:03 +02004265 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4266
Willy Tarreauea18f862018-12-22 20:19:26 +01004267next_frame:
4268 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4269 goto leave; // incomplete input frame
4270
4271 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4272 * this case, we'll try to paste it immediately after the initial
4273 * HEADERS frame payload and kill any possible padding. The initial
4274 * frame's length will be increased to represent the concatenation
4275 * of the two frames. The next frame is read from position <tlen>
4276 * and written at position <flen> (minus padding if some is present).
4277 */
4278 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4279 struct h2_fh hdr;
4280 int clen; // CONTINUATION frame's payload length
4281
Willy Tarreau7838a792019-08-12 18:42:03 +02004282 TRACE_STATE("EH missing, expecting continuation frame", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_HDR, h2c->conn);
Willy Tarreauea18f862018-12-22 20:19:26 +01004283 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4284 /* no more data, the buffer may be full, either due to
4285 * too large a frame or because of too large a hole that
4286 * we're going to compact at the end.
4287 */
4288 goto leave;
4289 }
4290
4291 if (hdr.ft != H2_FT_CONTINUATION) {
4292 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004293 TRACE_STATE("not continuation!", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_HDR|H2_EV_RX_CONT|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreauea18f862018-12-22 20:19:26 +01004294 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4295 goto fail;
4296 }
4297
4298 if (hdr.sid != h2c->dsi) {
4299 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004300 TRACE_STATE("different stream ID!", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_HDR|H2_EV_RX_CONT|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreauea18f862018-12-22 20:19:26 +01004301 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4302 goto fail;
4303 }
4304
4305 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4306 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004307 TRACE_STATE("too large frame!", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_HDR|H2_EV_RX_CONT|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreauea18f862018-12-22 20:19:26 +01004308 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4309 goto fail;
4310 }
4311
4312 /* detect when we must stop aggragating frames */
4313 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4314
4315 /* Take as much as we can of the CONTINUATION frame's payload */
4316 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4317 if (clen > hdr.len)
4318 clen = hdr.len;
4319
4320 /* Move the frame's payload over the padding, hole and frame
4321 * header. At least one of hole or dpl is null (see diagrams
4322 * above). The hole moves after the new aggragated frame.
4323 */
4324 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4325 h2c->dfl += clen - h2c->dpl;
4326 hole += h2c->dpl + 9;
4327 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004328 TRACE_STATE("waiting for next continuation frame", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_RX_CONT|H2_EV_RX_HDR, h2c->conn);
Willy Tarreauea18f862018-12-22 20:19:26 +01004329 goto next_frame;
4330 }
4331
4332 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004333
Willy Tarreau13278b42017-10-13 19:23:14 +02004334 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004335 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004336 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004337 copy = alloc_trash_chunk();
4338 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004339 TRACE_DEVEL("failed to allocate temporary buffer", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_ERR, h2c->conn);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004340 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4341 goto fail;
4342 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004343 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4344 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4345 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004346 }
4347
Willy Tarreau13278b42017-10-13 19:23:14 +02004348 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4349 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004350 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004351 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004352 TRACE_STATE("invalid stream dependency!", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004353 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004354 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004355 }
4356
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004357 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004358 TRACE_STATE("frame too short for priority!", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004359 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4360 goto fail;
4361 }
4362
Willy Tarreau13278b42017-10-13 19:23:14 +02004363 hdrs += 5; // stream dep = 4, weight = 1
4364 flen -= 5;
4365 }
4366
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004367 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004368 TRACE_STATE("waiting for h2c rxbuf allocation", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau937f7602018-02-26 15:22:17 +01004369 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004370 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004371 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004372
Willy Tarreau937f7602018-02-26 15:22:17 +01004373 /* we can't retry a failed decompression operation so we must be very
4374 * careful not to take any risks. In practice the output buffer is
4375 * always empty except maybe for trailers, in which case we simply have
4376 * to wait for the upper layer to finish consuming what is available.
4377 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004378 htx = htx_from_buf(rxbuf);
4379 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004380 TRACE_STATE("waiting for room in h2c rxbuf", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_BLK, h2c->conn);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004381 h2c->flags |= H2_CF_DEM_SFULL;
4382 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004383 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004384
Willy Tarreau25919232019-01-03 14:48:18 +01004385 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004386 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4387 sizeof(list)/sizeof(list[0]), tmp);
4388 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004389 TRACE_STATE("failed to decompress HPACK", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004390 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4391 goto fail;
4392 }
4393
Willy Tarreau25919232019-01-03 14:48:18 +01004394 /* The PACK decompressor was updated, let's update the input buffer and
4395 * the parser's state to commit these changes and allow us to later
4396 * fail solely on the stream if needed.
4397 */
4398 b_del(&h2c->dbuf, h2c->dfl + hole);
4399 h2c->dfl = hole = 0;
4400 h2c->st0 = H2_CS_FRAME_H;
4401
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004402 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004403 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004404
Willy Tarreau88d138e2019-01-02 19:38:14 +01004405 if (*flags & H2_SF_HEADERS_RCVD)
4406 goto trailers;
4407
4408 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004409 if (h2c->flags & H2_CF_IS_BACK)
4410 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
4411 else
4412 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004413
4414 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004415 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004416 TRACE_STATE("request headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004417 goto fail;
4418 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004419
Willy Tarreau174b06a2018-04-25 18:13:58 +02004420 if (msgf & H2_MSGF_BODY) {
4421 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004422 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004423 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004424 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004425 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004426 }
4427
Willy Tarreau88d138e2019-01-02 19:38:14 +01004428 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004429 /* indicate that a HEADERS frame was received for this stream, except
4430 * for 1xx responses. For 1xx responses, another HEADERS frame is
4431 * expected.
4432 */
4433 if (!(msgf & H2_MSGF_RSP_1XX))
4434 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004435
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02004436 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004437 /* Mark the end of message using EOM */
Willy Tarreau7838a792019-08-12 18:42:03 +02004438 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4439 TRACE_STATE("failed to append HTX EOM block into rxbuf", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR, h2c->conn);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004440 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004441 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004442 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004443
Willy Tarreau86277d42019-01-02 15:36:11 +01004444 /* success */
4445 ret = 1;
4446
Willy Tarreau68dd9852017-07-03 14:44:26 +02004447 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004448 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004449 * move the remaining data over it.
4450 */
4451 if (hole) {
4452 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4453 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4454 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4455 b_sub(&h2c->dbuf, hole);
4456 }
4457
Willy Tarreau97215ca2019-04-29 10:20:21 +02004458 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004459 /* too large frames */
4460 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004461 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004462 }
4463
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004464 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004465 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004466 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004467 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004468 return ret;
4469
Willy Tarreau68dd9852017-07-03 14:44:26 +02004470 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004471 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004472 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004473
4474 trailers:
4475 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004476 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4477 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004478 TRACE_STATE("missing EH on trailers frame", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004479 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4480 goto fail;
4481 }
4482
Christopher Faulet9b79a102019-07-15 11:22:56 +02004483 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004484 if (h2_make_htx_trailers(list, htx) <= 0) {
4485 TRACE_STATE("failed to append HTX trailers into rxbuf", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR, h2c->conn);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004486 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004487 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004488 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004489}
4490
Christopher Faulet9b79a102019-07-15 11:22:56 +02004491/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004492 * parser state is automatically updated. Returns > 0 if it could completely
4493 * send the current frame, 0 if it couldn't complete, in which case
4494 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4495 * DATA frame can return 0 as a valid result). Stream errors are reported in
4496 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4497 * have checked the frame header and ensured that the frame was complete or the
4498 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004499 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004500static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004501{
4502 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004503 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004504 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004505 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004506 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004507 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004508
Willy Tarreau7838a792019-08-12 18:42:03 +02004509 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4510
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004511 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004512
Olivier Houchard638b7992018-08-16 15:41:52 +02004513 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004514 if (!csbuf) {
4515 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004516 TRACE_STATE("waiting for an h2s rxbuf", H2_EV_RX_FRAME|H2_EV_RX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004517 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004518 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004519 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004520
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004521try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004522 flen = h2c->dfl - h2c->dpl;
4523 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004524 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004525
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004526 if (flen > b_data(&h2c->dbuf)) {
4527 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004528 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004529 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004530 }
4531
Christopher Faulet9b79a102019-07-15 11:22:56 +02004532 block = htx_free_data_space(htx);
4533 if (!block) {
4534 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004535 TRACE_STATE("h2s rxbuf is full", H2_EV_RX_FRAME|H2_EV_RX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004536 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004537 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004538 if (flen > block)
4539 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004540
Christopher Faulet9b79a102019-07-15 11:22:56 +02004541 /* here, flen is the max we can copy into the output buffer */
4542 block = b_contig_data(&h2c->dbuf, 0);
4543 if (flen > block)
4544 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004545
Christopher Faulet9b79a102019-07-15 11:22:56 +02004546 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau7838a792019-08-12 18:42:03 +02004547 TRACE_DATA("move some data to h2s rxbuf", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s,, (void *)(long)sent);
Willy Tarreau454f9052017-10-26 19:40:35 +02004548
Christopher Faulet9b79a102019-07-15 11:22:56 +02004549 b_del(&h2c->dbuf, sent);
4550 h2c->dfl -= sent;
4551 h2c->rcvd_c += sent;
4552 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004553
Christopher Faulet9b79a102019-07-15 11:22:56 +02004554 if (h2s->flags & H2_SF_DATA_CLEN) {
4555 h2s->body_len -= sent;
4556 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004557 }
4558
Christopher Faulet9b79a102019-07-15 11:22:56 +02004559 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004560 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004561 TRACE_STATE("h2s rxbuf is full", H2_EV_RX_FRAME|H2_EV_RX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004562 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004563 }
4564
Christopher Faulet9b79a102019-07-15 11:22:56 +02004565 goto try_again;
4566
Willy Tarreau4a28da12018-01-04 14:41:00 +01004567 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004568 /* here we're done with the frame, all the payload (except padding) was
4569 * transferred.
4570 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004571
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004572 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004573 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004574 TRACE_STATE("h2s rxbuf is full, failed to add EOM", H2_EV_RX_FRAME|H2_EV_RX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004575 h2c->flags |= H2_CF_DEM_SFULL;
4576 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004577 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004578 }
4579
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004580 h2c->rcvd_c += h2c->dpl;
4581 h2c->rcvd_s += h2c->dpl;
4582 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004583 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004584 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004585 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004586 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004587 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004588 if (htx)
4589 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004590 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004591 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004592}
4593
Willy Tarreau115e83b2018-12-01 19:17:53 +01004594/* Try to send a HEADERS frame matching HTX response present in HTX message
4595 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4596 * must check the stream's status to detect any error which might have happened
4597 * subsequently to a successful send. The htx blocks are automatically removed
4598 * from the message. The htx message is assumed to be valid since produced from
4599 * the internal code, hence it contains a start line, an optional series of
4600 * header blocks and an end of header, otherwise an invalid frame could be
4601 * emitted and the resulting htx message could be left in an inconsistent state.
4602 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004603static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004604{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004605 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004606 struct h2c *h2c = h2s->h2c;
4607 struct htx_blk *blk;
4608 struct htx_blk *blk_end;
4609 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004610 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004611 struct htx_sl *sl;
4612 enum htx_blk_type type;
4613 int es_now = 0;
4614 int ret = 0;
4615 int hdr;
4616 int idx;
4617
Willy Tarreau7838a792019-08-12 18:42:03 +02004618 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4619
Willy Tarreau115e83b2018-12-01 19:17:53 +01004620 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004621 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004622 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004623 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004624 return 0;
4625 }
4626
Willy Tarreau115e83b2018-12-01 19:17:53 +01004627 /* determine the first block which must not be deleted, blk_end may
4628 * be NULL if all blocks have to be deleted.
4629 */
4630 idx = htx_get_head(htx);
4631 blk_end = NULL;
4632 while (idx != -1) {
4633 type = htx_get_blk_type(htx_get_blk(htx, idx));
4634 idx = htx_get_next(htx, idx);
4635 if (type == HTX_BLK_EOH) {
4636 if (idx != -1)
4637 blk_end = htx_get_blk(htx, idx);
4638 break;
4639 }
4640 }
4641
4642 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004643 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004644 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004645 ALREADY_CHECKED(blk);
4646 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004647 h2s->status = sl->info.res.status;
Willy Tarreau7838a792019-08-12 18:42:03 +02004648 if (h2s->status < 100 || h2s->status > 999) {
4649 TRACE_PROTO("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreauaafdf582018-12-10 18:06:40 +01004650 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004651 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004652
4653 /* and the rest of the headers, that we dump starting at header 0 */
4654 hdr = 0;
4655
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004656 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004657 while ((idx = htx_get_next(htx, idx)) != -1) {
4658 blk = htx_get_blk(htx, idx);
4659 type = htx_get_blk_type(blk);
4660
4661 if (type == HTX_BLK_UNUSED)
4662 continue;
4663
4664 if (type != HTX_BLK_HDR)
4665 break;
4666
Willy Tarreau7838a792019-08-12 18:42:03 +02004667 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4668 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004669 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004670 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004671
4672 list[hdr].n = htx_get_blk_name(htx, blk);
4673 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004674 hdr++;
4675 }
4676
4677 /* marker for end of headers */
4678 list[hdr].n = ist("");
4679
4680 if (h2s->status == 204 || h2s->status == 304) {
4681 /* no contents, claim c-len is present and set to zero */
4682 es_now = 1;
4683 }
4684
Willy Tarreau9c218e72019-05-26 10:08:28 +02004685 mbuf = br_tail(h2c->mbuf);
4686 retry:
4687 if (!h2_get_buf(h2c, mbuf)) {
4688 h2c->flags |= H2_CF_MUX_MALLOC;
4689 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004690 TRACE_STATE("waiting for room in output buffer", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004691 return 0;
4692 }
4693
Willy Tarreau115e83b2018-12-01 19:17:53 +01004694 chunk_reset(&outbuf);
4695
4696 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004697 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4698 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004699 break;
4700 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004701 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004702 }
4703
4704 if (outbuf.size < 9)
4705 goto full;
4706
4707 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4708 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4709 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4710 outbuf.data = 9;
4711
4712 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004713 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004714 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004715 goto realign_again;
4716 goto full;
4717 }
4718
4719 /* encode all headers, stop at empty name */
4720 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4721 /* these ones do not exist in H2 and must be dropped. */
4722 if (isteq(list[hdr].n, ist("connection")) ||
4723 isteq(list[hdr].n, ist("proxy-connection")) ||
4724 isteq(list[hdr].n, ist("keep-alive")) ||
4725 isteq(list[hdr].n, ist("upgrade")) ||
4726 isteq(list[hdr].n, ist("transfer-encoding")))
4727 continue;
4728
Christopher Faulet86d144c2019-08-14 16:32:25 +02004729 /* Skip all pseudo-headers */
4730 if (*(list[hdr].n.ptr) == ':')
4731 continue;
4732
Willy Tarreau115e83b2018-12-01 19:17:53 +01004733 if (isteq(list[hdr].n, ist("")))
4734 break; // end
4735
4736 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4737 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004738 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004739 goto realign_again;
4740 goto full;
4741 }
4742 }
4743
Willy Tarreaucb985a42019-10-07 16:56:34 +02004744 /* update the frame's size */
4745 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4746
4747 if (outbuf.data > h2c->mfs + 9) {
4748 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
4749 /* output full */
4750 if (b_space_wraps(mbuf))
4751 goto realign_again;
4752 goto full;
4753 }
4754 }
4755
Christopher Faulet0b465482019-02-19 15:14:23 +01004756 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004757 * FIXME: we should also set it when we know for sure that the
4758 * content-length is zero as well as on 204/304
4759 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004760 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4761 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004762 es_now = 1;
4763
Willy Tarreau927b88b2019-03-04 08:03:25 +01004764 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004765 es_now = 1;
4766
Willy Tarreau115e83b2018-12-01 19:17:53 +01004767 if (es_now)
4768 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4769
4770 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004771 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004772 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004773
4774 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4775 * 1xx responses, another HEADERS frame is expected.
4776 */
4777 if (h2s->status >= 200 || h2s->status == 101)
4778 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004779
Willy Tarreau115e83b2018-12-01 19:17:53 +01004780 if (es_now) {
4781 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02004782 TRACE_PROTO("setting ES on HEADERS frame", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004783 if (h2s->st == H2_SS_OPEN)
4784 h2s->st = H2_SS_HLOC;
4785 else
4786 h2s_close(h2s);
4787 }
4788
4789 /* OK we could properly deliver the response */
4790
4791 /* remove all header blocks including the EOH and compute the
4792 * corresponding size.
4793 *
4794 * FIXME: We should remove everything when es_now is set.
4795 */
4796 ret = 0;
4797 idx = htx_get_head(htx);
4798 blk = htx_get_blk(htx, idx);
4799 while (blk != blk_end) {
4800 ret += htx_get_blksz(blk);
4801 blk = htx_remove_blk(htx, blk);
4802 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004803
Christopher Faulet316934d2019-05-15 14:22:48 +02004804 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4805 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004806 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004807 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004808 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004809 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004810 return ret;
4811 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004812 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4813 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004814 h2c->flags |= H2_CF_MUX_MFULL;
4815 h2s->flags |= H2_SF_BLK_MROOM;
4816 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004817 TRACE_STATE("mux buffer full", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004818 goto end;
4819 fail:
4820 /* unparsable HTX messages, too large ones to be produced in the local
4821 * list etc go here (unrecoverable errors).
4822 */
4823 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4824 ret = 0;
4825 goto end;
4826}
4827
Willy Tarreau80739692018-10-05 11:35:57 +02004828/* Try to send a HEADERS frame matching HTX request present in HTX message
4829 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4830 * must check the stream's status to detect any error which might have happened
4831 * subsequently to a successful send. The htx blocks are automatically removed
4832 * from the message. The htx message is assumed to be valid since produced from
4833 * the internal code, hence it contains a start line, an optional series of
4834 * header blocks and an end of header, otherwise an invalid frame could be
4835 * emitted and the resulting htx message could be left in an inconsistent state.
4836 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004837static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02004838{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004839 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004840 struct h2c *h2c = h2s->h2c;
4841 struct htx_blk *blk;
4842 struct htx_blk *blk_end;
4843 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004844 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004845 struct htx_sl *sl;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004846 struct ist meth, uri, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004847 enum htx_blk_type type;
4848 int es_now = 0;
4849 int ret = 0;
4850 int hdr;
4851 int idx;
4852
Willy Tarreau7838a792019-08-12 18:42:03 +02004853 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4854
Willy Tarreau80739692018-10-05 11:35:57 +02004855 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004856 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004857 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004858 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004859 return 0;
4860 }
4861
Willy Tarreau80739692018-10-05 11:35:57 +02004862 /* determine the first block which must not be deleted, blk_end may
4863 * be NULL if all blocks have to be deleted.
4864 */
4865 idx = htx_get_head(htx);
4866 blk_end = NULL;
4867 while (idx != -1) {
4868 type = htx_get_blk_type(htx_get_blk(htx, idx));
4869 idx = htx_get_next(htx, idx);
4870 if (type == HTX_BLK_EOH) {
4871 if (idx != -1)
4872 blk_end = htx_get_blk(htx, idx);
4873 break;
4874 }
4875 }
4876
4877 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004878 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004879 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004880 ALREADY_CHECKED(blk);
4881 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004882 meth = htx_sl_req_meth(sl);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004883 uri = htx_sl_req_uri(sl);
4884 if (unlikely(uri.len == 0)) {
4885 TRACE_PROTO("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
4886 goto fail;
4887 }
Willy Tarreau80739692018-10-05 11:35:57 +02004888
4889 /* and the rest of the headers, that we dump starting at header 0 */
4890 hdr = 0;
4891
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004892 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004893 while ((idx = htx_get_next(htx, idx)) != -1) {
4894 blk = htx_get_blk(htx, idx);
4895 type = htx_get_blk_type(blk);
4896
4897 if (type == HTX_BLK_UNUSED)
4898 continue;
4899
4900 if (type != HTX_BLK_HDR)
4901 break;
4902
Willy Tarreau7838a792019-08-12 18:42:03 +02004903 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4904 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004905 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004906 }
Willy Tarreau80739692018-10-05 11:35:57 +02004907
4908 list[hdr].n = htx_get_blk_name(htx, blk);
4909 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02004910
4911 /* Skip header if same name is used to add the server name */
4912 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
4913 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
4914 continue;
4915
Willy Tarreau80739692018-10-05 11:35:57 +02004916 hdr++;
4917 }
4918
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02004919 /* Now add the server name to a header (if requested) */
4920 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
4921 struct server *srv = objt_server(h2c->conn->target);
4922
4923 if (srv) {
4924 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
4925 list[hdr].v = ist(srv->id);
4926 hdr++;
4927 }
4928 }
4929
Willy Tarreau80739692018-10-05 11:35:57 +02004930 /* marker for end of headers */
4931 list[hdr].n = ist("");
4932
Willy Tarreau9c218e72019-05-26 10:08:28 +02004933 mbuf = br_tail(h2c->mbuf);
4934 retry:
4935 if (!h2_get_buf(h2c, mbuf)) {
4936 h2c->flags |= H2_CF_MUX_MALLOC;
4937 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004938 TRACE_STATE("waiting for room in output buffer", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau9c218e72019-05-26 10:08:28 +02004939 return 0;
4940 }
4941
Willy Tarreau80739692018-10-05 11:35:57 +02004942 chunk_reset(&outbuf);
4943
4944 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004945 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4946 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004947 break;
4948 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004949 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004950 }
4951
4952 if (outbuf.size < 9)
4953 goto full;
4954
4955 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4956 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4957 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4958 outbuf.data = 9;
4959
4960 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004961 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004962 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004963 goto realign_again;
4964 goto full;
4965 }
4966
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004967 auth = ist(NULL);
4968
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004969 /* RFC7540 #8.3: the CONNECT method must have :
4970 * - :authority set to the URI part (host:port)
4971 * - :method set to CONNECT
4972 * - :scheme and :path omitted
4973 */
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004974 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT)) {
4975 auth = uri;
4976
4977 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4978 /* output full */
4979 if (b_space_wraps(mbuf))
4980 goto realign_again;
4981 goto full;
4982 }
4983 } else {
4984 /* other methods need a :scheme. If an authority is known from
4985 * the request line, it must be sent, otherwise only host is
4986 * sent. Host is never sent as the authority.
4987 */
4988 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02004989
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004990 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
4991 /* the URI seems to start with a scheme */
4992 int len = 1;
4993
4994 while (len < uri.len && uri.ptr[len] != ':')
4995 len++;
4996
4997 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
4998 /* make the uri start at the authority now */
4999 scheme.ptr = uri.ptr;
5000 scheme.len = len,
5001 uri.ptr += len + 3;
5002 uri.len -= len + 3;
5003
5004 /* find the auth part of the URI */
5005 auth.ptr = uri.ptr;
5006 auth.len = 0;
5007 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5008 auth.len++;
5009
5010 uri.ptr += auth.len;
5011 uri.len -= auth.len;
5012 }
5013 }
5014
5015 if (!scheme.len) {
5016 /* no explicit scheme, we're using an origin-form URI,
5017 * probably from an H1 request transcoded to H2 via an
5018 * external layer, then received as H2 without authority.
5019 * So we have to look up the scheme from the HTX flags.
5020 * In such a case only http and https are possible, and
5021 * https is the default (sent by browsers).
5022 */
5023 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5024 scheme = ist("http");
5025 else
5026 scheme = ist("https");
5027 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005028
5029 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005030 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005031 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005032 goto realign_again;
5033 goto full;
5034 }
Willy Tarreau80739692018-10-05 11:35:57 +02005035
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005036 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005037 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005038 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005039 goto realign_again;
5040 goto full;
5041 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005042
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005043 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5044 * be sent as '/' or '*'.
5045 */
5046 if (unlikely(!uri.len)) {
5047 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5048 uri = ist("*");
5049 else
5050 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005051 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005052
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005053 if (!hpack_encode_path(&outbuf, uri)) {
5054 /* output full */
5055 if (b_space_wraps(mbuf))
5056 goto realign_again;
5057 goto full;
5058 }
Willy Tarreau80739692018-10-05 11:35:57 +02005059 }
5060
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005061 /* encode all headers, stop at empty name. Host is only sent if we
5062 * do not provide an authority.
5063 */
Willy Tarreau80739692018-10-05 11:35:57 +02005064 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5065 /* these ones do not exist in H2 and must be dropped. */
5066 if (isteq(list[hdr].n, ist("connection")) ||
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005067 (auth.len && isteq(list[hdr].n, ist("host"))) ||
Willy Tarreau80739692018-10-05 11:35:57 +02005068 isteq(list[hdr].n, ist("proxy-connection")) ||
5069 isteq(list[hdr].n, ist("keep-alive")) ||
5070 isteq(list[hdr].n, ist("upgrade")) ||
5071 isteq(list[hdr].n, ist("transfer-encoding")))
5072 continue;
5073
Christopher Faulet86d144c2019-08-14 16:32:25 +02005074 /* Skip all pseudo-headers */
5075 if (*(list[hdr].n.ptr) == ':')
5076 continue;
5077
Willy Tarreau80739692018-10-05 11:35:57 +02005078 if (isteq(list[hdr].n, ist("")))
5079 break; // end
5080
5081 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5082 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005083 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005084 goto realign_again;
5085 goto full;
5086 }
5087 }
5088
Willy Tarreaucb985a42019-10-07 16:56:34 +02005089 /* update the frame's size */
5090 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5091
5092 if (outbuf.data > h2c->mfs + 9) {
5093 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5094 /* output full */
5095 if (b_space_wraps(mbuf))
5096 goto realign_again;
5097 goto full;
5098 }
5099 }
5100
Willy Tarreau80739692018-10-05 11:35:57 +02005101 /* we may need to add END_STREAM if we have no body :
5102 * - request already closed, or :
5103 * - no transfer-encoding, and :
5104 * - no content-length or content-length:0
5105 * Fixme: this doesn't take into account CONNECT requests.
5106 */
5107 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
5108 es_now = 1;
5109
5110 if (sl->flags & HTX_SL_F_BODYLESS)
5111 es_now = 1;
5112
Willy Tarreau927b88b2019-03-04 08:03:25 +01005113 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02005114 es_now = 1;
5115
Willy Tarreau80739692018-10-05 11:35:57 +02005116 if (es_now)
5117 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5118
5119 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005120 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005121 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005122 h2s->flags |= H2_SF_HEADERS_SENT;
5123 h2s->st = H2_SS_OPEN;
5124
Willy Tarreau80739692018-10-05 11:35:57 +02005125 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005126 TRACE_PROTO("setting ES on HEADERS frame", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02005127 // trim any possibly pending data (eg: inconsistent content-length)
5128 h2s->flags |= H2_SF_ES_SENT;
5129 h2s->st = H2_SS_HLOC;
5130 }
5131
5132 /* remove all header blocks including the EOH and compute the
5133 * corresponding size.
5134 *
5135 * FIXME: We should remove everything when es_now is set.
5136 */
5137 ret = 0;
5138 idx = htx_get_head(htx);
5139 blk = htx_get_blk(htx, idx);
5140 while (blk != blk_end) {
5141 ret += htx_get_blksz(blk);
5142 blk = htx_remove_blk(htx, blk);
5143 }
5144
Christopher Faulet316934d2019-05-15 14:22:48 +02005145 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5146 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02005147 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005148 }
Willy Tarreau80739692018-10-05 11:35:57 +02005149
5150 end:
5151 return ret;
5152 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005153 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5154 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005155 h2c->flags |= H2_CF_MUX_MFULL;
5156 h2s->flags |= H2_SF_BLK_MROOM;
5157 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005158 TRACE_STATE("mux buffer full", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005159 goto end;
5160 fail:
5161 /* unparsable HTX messages, too large ones to be produced in the local
5162 * list etc go here (unrecoverable errors).
5163 */
5164 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5165 ret = 0;
5166 goto end;
5167}
5168
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005169/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005170 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5171 * caller must check the stream's status to detect any error which might have
5172 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02005173 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005174 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005175static size_t h2s_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005176{
5177 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005178 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005179 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005180 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005181 size_t total = 0;
5182 int es_now = 0;
5183 int bsize; /* htx block size */
5184 int fsize; /* h2 frame size */
5185 struct htx_blk *blk;
5186 enum htx_blk_type type;
5187 int idx;
5188
Willy Tarreau7838a792019-08-12 18:42:03 +02005189 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5190
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005191 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005192 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005193 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005194 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005195 goto end;
5196 }
5197
Willy Tarreau98de12a2018-12-12 07:03:00 +01005198 htx = htx_from_buf(buf);
5199
Christopher Faulet54b5e212019-06-04 10:08:28 +02005200 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5201 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5202 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005203 */
5204
5205 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005206 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005207 goto end;
5208
5209 idx = htx_get_head(htx);
5210 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005211 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005212 bsize = htx_get_blksz(blk);
5213 fsize = bsize;
5214
Christopher Faulet54b5e212019-06-04 10:08:28 +02005215 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005216 if (h2s->flags & H2_SF_ES_SENT) {
5217 /* ES already sent */
5218 htx_remove_blk(htx, blk);
5219 total++; // EOM counts as one byte
5220 count--;
5221 goto end;
5222 }
5223 }
5224 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005225 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005226
Willy Tarreau9c218e72019-05-26 10:08:28 +02005227 mbuf = br_tail(h2c->mbuf);
5228 retry:
5229 if (!h2_get_buf(h2c, mbuf)) {
5230 h2c->flags |= H2_CF_MUX_MALLOC;
5231 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005232 TRACE_STATE("waiting for room in output buffer", H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau9c218e72019-05-26 10:08:28 +02005233 goto end;
5234 }
5235
Willy Tarreau98de12a2018-12-12 07:03:00 +01005236 /* Perform some optimizations to reduce the number of buffer copies.
5237 * First, if the mux's buffer is empty and the htx area contains
5238 * exactly one data block of the same size as the requested count, and
5239 * this count fits within the frame size, the stream's window size, and
5240 * the connection's window size, then it's possible to simply swap the
5241 * caller's buffer with the mux's output buffer and adjust offsets and
5242 * length to match the entire DATA HTX block in the middle. In this
5243 * case we perform a true zero-copy operation from end-to-end. This is
5244 * the situation that happens all the time with large files. Second, if
5245 * this is not possible, but the mux's output buffer is empty, we still
5246 * have an opportunity to avoid the copy to the intermediary buffer, by
5247 * making the intermediary buffer's area point to the output buffer's
5248 * area. In this case we want to skip the HTX header to make sure that
5249 * copies remain aligned and that this operation remains possible all
5250 * the time. This goes for headers, data blocks and any data extracted
5251 * from the HTX blocks.
5252 */
5253 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005254 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005255 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005256 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005257
Willy Tarreaubcc45952019-05-26 10:05:50 +02005258 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005259 /* Too bad there are data left there. We're willing to memcpy/memmove
5260 * up to 1/4 of the buffer, which means that it's OK to copy a large
5261 * frame into a buffer containing few data if it needs to be realigned,
5262 * and that it's also OK to copy few data without realigning. Otherwise
5263 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005264 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005265 if (fsize + 9 <= b_room(mbuf) &&
5266 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005267 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5268 TRACE_STATE("small data present in output buffer, appending", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005269 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005270 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005271
Willy Tarreau9c218e72019-05-26 10:08:28 +02005272 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5273 goto retry;
5274
Willy Tarreau98de12a2018-12-12 07:03:00 +01005275 h2c->flags |= H2_CF_MUX_MFULL;
5276 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005277 TRACE_STATE("too large data present in output buffer, waiting for emptiness", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005278 goto end;
5279 }
5280
5281 /* map an H2 frame to the HTX block so that we can put the
5282 * frame header there.
5283 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005284 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5285 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005286
5287 /* prepend an H2 DATA frame header just before the DATA block */
5288 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5289 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5290 h2_set_frame_size(outbuf.area, fsize);
5291
5292 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005293 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005294 h2c->mws -= fsize;
5295
5296 /* and exchange with our old area */
5297 buf->area = old_area;
5298 buf->data = buf->head = 0;
5299 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005300
5301 TRACE_PROTO("sent H2 DATA frame (zero-copy)", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005302 goto end;
5303 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005304
Willy Tarreau98de12a2018-12-12 07:03:00 +01005305 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005306 /* for DATA and EOM we'll have to emit a frame, even if empty */
5307
5308 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005309 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5310 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005311 break;
5312 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005313 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005314 }
5315
5316 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005317 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5318 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005319 h2c->flags |= H2_CF_MUX_MFULL;
5320 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005321 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005322 goto end;
5323 }
5324
5325 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5326 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5327 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5328 outbuf.data = 9;
5329
5330 /* we have in <fsize> the exact number of bytes we need to copy from
5331 * the HTX buffer. We need to check this against the connection's and
5332 * the stream's send windows, and to ensure that this fits in the max
5333 * frame size and in the buffer's available space minus 9 bytes (for
5334 * the frame header). The connection's flow control is applied last so
5335 * that we can use a separate list of streams which are immediately
5336 * unblocked on window opening. Note: we don't implement padding.
5337 */
5338
5339 /* EOM is presented with bsize==1 but would lead to the emission of an
5340 * empty frame, thus we force it to zero here.
5341 */
5342 if (type == HTX_BLK_EOM)
5343 bsize = fsize = 0;
5344
5345 if (!fsize)
5346 goto send_empty;
5347
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005348 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005349 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005350 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005351 LIST_DEL_INIT(&h2s->list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005352 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005353 TRACE_STATE("stream window <=0, flow-controlled", H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_H2S_FCTL, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005354 goto end;
5355 }
5356
Willy Tarreauee573762018-12-04 15:25:57 +01005357 if (fsize > count)
5358 fsize = count;
5359
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005360 if (fsize > h2s_mws(h2s))
5361 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005362
5363 if (h2c->mfs && fsize > h2c->mfs)
5364 fsize = h2c->mfs; // >0
5365
5366 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005367 /* It doesn't fit at once. If it at least fits once split and
5368 * the amount of data to move is low, let's defragment the
5369 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005370 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005371 if (b_space_wraps(mbuf) &&
5372 (fsize + 9 <= b_room(mbuf)) &&
5373 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005374 goto realign_again;
5375 fsize = outbuf.size - 9;
5376
5377 if (fsize <= 0) {
5378 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005379 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5380 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005381 h2c->flags |= H2_CF_MUX_MFULL;
5382 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005383 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005384 goto end;
5385 }
5386 }
5387
5388 if (h2c->mws <= 0) {
5389 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005390 TRACE_STATE("connection window <=0, stream flow-controlled", H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_H2C_FCTL, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005391 goto end;
5392 }
5393
5394 if (fsize > h2c->mws)
5395 fsize = h2c->mws;
5396
5397 /* now let's copy this this into the output buffer */
5398 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005399 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005400 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005401 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005402
5403 send_empty:
5404 /* update the frame's size */
5405 h2_set_frame_size(outbuf.area, fsize);
5406
5407 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5408 * meeting EOM. We should optimize this later.
5409 */
5410 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005411 total++; // EOM counts as one byte
5412 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005413 es_now = 1;
5414 }
5415
5416 if (es_now)
5417 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5418
5419 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005420 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005421
5422 /* consume incoming HTX block, including EOM */
5423 total += fsize;
5424 if (fsize == bsize) {
5425 htx_remove_blk(htx, blk);
Willy Tarreau7838a792019-08-12 18:42:03 +02005426 if (fsize) {
5427 TRACE_DEVEL("more data available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005428 goto new_frame;
Willy Tarreau7838a792019-08-12 18:42:03 +02005429 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005430 } else {
5431 /* we've truncated this block */
5432 htx_cut_data_blk(htx, blk, fsize);
5433 }
5434
5435 if (es_now) {
5436 if (h2s->st == H2_SS_OPEN)
5437 h2s->st = H2_SS_HLOC;
5438 else
5439 h2s_close(h2s);
5440
5441 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005442 TRACE_PROTO("ES flag set on outgoing frame", H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005443 }
5444
5445 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005446 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005447 return total;
5448}
5449
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005450/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5451 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5452 * processed. The caller must check the stream's status to detect any error
5453 * which might have happened subsequently to a successful send. The htx blocks
5454 * are automatically removed from the message. The htx message is assumed to be
5455 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005456 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005457 * as a single frame. The ES flag is always set.
5458 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005459static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005460{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005461 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005462 struct h2c *h2c = h2s->h2c;
5463 struct htx_blk *blk;
5464 struct htx_blk *blk_end;
5465 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005466 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005467 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005468 int ret = 0;
5469 int hdr;
5470 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005471
Willy Tarreau7838a792019-08-12 18:42:03 +02005472 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5473
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005474 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005475 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005476 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005477 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005478 goto end;
5479 }
5480
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005481 /* determine the first block which must not be deleted, blk_end may
5482 * be NULL if all blocks have to be deleted. also get trailers.
5483 */
5484 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005485 blk_end = NULL;
5486
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005487 hdr = 0;
5488 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005489 blk = htx_get_blk(htx, idx);
5490 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005491 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005492 if (type == HTX_BLK_UNUSED)
5493 continue;
5494
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005495 if (type == HTX_BLK_EOT) {
5496 if (idx != -1)
5497 blk_end = blk;
5498 break;
5499 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005500 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005501 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005502
Willy Tarreau7838a792019-08-12 18:42:03 +02005503 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5504 TRACE_PROTO("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005505 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005506 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005507
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005508 list[hdr].n = htx_get_blk_name(htx, blk);
5509 list[hdr].v = htx_get_blk_value(htx, blk);
5510 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005511 }
5512
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005513 /* marker for end of trailers */
5514 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005515
Willy Tarreau9c218e72019-05-26 10:08:28 +02005516 mbuf = br_tail(h2c->mbuf);
5517 retry:
5518 if (!h2_get_buf(h2c, mbuf)) {
5519 h2c->flags |= H2_CF_MUX_MALLOC;
5520 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005521 TRACE_STATE("waiting for room in output buffer", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau9c218e72019-05-26 10:08:28 +02005522 goto end;
5523 }
5524
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005525 chunk_reset(&outbuf);
5526
5527 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005528 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5529 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005530 break;
5531 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005532 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005533 }
5534
5535 if (outbuf.size < 9)
5536 goto full;
5537
5538 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5539 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5540 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5541 outbuf.data = 9;
5542
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005543 /* encode all headers */
5544 for (idx = 0; idx < hdr; idx++) {
5545 /* these ones do not exist in H2 or must not appear in
5546 * trailers and must be dropped.
5547 */
5548 if (isteq(list[idx].n, ist("host")) ||
5549 isteq(list[idx].n, ist("content-length")) ||
5550 isteq(list[idx].n, ist("connection")) ||
5551 isteq(list[idx].n, ist("proxy-connection")) ||
5552 isteq(list[idx].n, ist("keep-alive")) ||
5553 isteq(list[idx].n, ist("upgrade")) ||
5554 isteq(list[idx].n, ist("te")) ||
5555 isteq(list[idx].n, ist("transfer-encoding")))
5556 continue;
5557
Christopher Faulet86d144c2019-08-14 16:32:25 +02005558 /* Skip all pseudo-headers */
5559 if (*(list[idx].n.ptr) == ':')
5560 continue;
5561
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005562 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5563 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005564 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005565 goto realign_again;
5566 goto full;
5567 }
5568 }
5569
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005570 if (outbuf.data == 9) {
5571 /* here we have a problem, we have nothing to emit (either we
5572 * received an empty trailers block followed or we removed its
5573 * contents above). Because of this we can't send a HEADERS
5574 * frame, so we have to cheat and instead send an empty DATA
5575 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005576 */
5577 outbuf.area[3] = H2_FT_DATA;
5578 outbuf.area[4] = H2_F_DATA_END_STREAM;
5579 }
5580
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005581 /* update the frame's size */
5582 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5583
Willy Tarreau572d9f52019-10-11 16:58:37 +02005584 if (outbuf.data > h2c->mfs + 9) {
5585 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5586 /* output full */
5587 if (b_space_wraps(mbuf))
5588 goto realign_again;
5589 goto full;
5590 }
5591 }
5592
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005593 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005594 TRACE_PROTO("sent H2 trailers HEADERS frame", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005595 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005596 h2s->flags |= H2_SF_ES_SENT;
5597
5598 if (h2s->st == H2_SS_OPEN)
5599 h2s->st = H2_SS_HLOC;
5600 else
5601 h2s_close(h2s);
5602
5603 /* OK we could properly deliver the response */
5604 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005605 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005606 ret = 0;
5607 idx = htx_get_head(htx);
5608 blk = htx_get_blk(htx, idx);
5609 while (blk != blk_end) {
5610 ret += htx_get_blksz(blk);
5611 blk = htx_remove_blk(htx, blk);
5612 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005613
5614 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5615 ret += htx_get_blksz(blk_end);
5616 htx_remove_blk(htx, blk_end);
5617 }
5618
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005619 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005620 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005621 return ret;
5622 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005623 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5624 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005625 h2c->flags |= H2_CF_MUX_MFULL;
5626 h2s->flags |= H2_SF_BLK_MROOM;
5627 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005628 TRACE_STATE("mux buffer full", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005629 goto end;
5630 fail:
5631 /* unparsable HTX messages, too large ones to be produced in the local
5632 * list etc go here (unrecoverable errors).
5633 */
5634 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5635 ret = 0;
5636 goto end;
5637}
5638
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005639/* Called from the upper layer, to subscribe to events, such as being able to send.
5640 * The <param> argument here is supposed to be a pointer to a wait_event struct
5641 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5642 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5643 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5644 * returns 0 except for the error above.
5645 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005646static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5647{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005648 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005649 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005650 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005651
Willy Tarreau7838a792019-08-12 18:42:03 +02005652 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005653 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005654 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005655 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005656 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5657 sw->events |= SUB_RETRY_RECV;
5658 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005659 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005660 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005661 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005662 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchard6ff20392018-07-17 18:46:31 +02005663 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005664 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5665 sw->events |= SUB_RETRY_SEND;
5666 h2s->send_wait = sw;
5667 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5668 !LIST_ADDED(&h2s->list)) {
5669 if (h2s->flags & H2_SF_BLK_MFCTL)
5670 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5671 else
5672 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005673 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005674 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005675 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005676 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005677 if (event_type != 0)
5678 return -1;
5679 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005680}
5681
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005682/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5683 * The <param> argument here is supposed to be a pointer to the same wait_event
5684 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5685 * It always returns zero.
5686 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005687static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5688{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005689 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005690 struct h2s *h2s = cs->ctx;
5691
Willy Tarreau7838a792019-08-12 18:42:03 +02005692 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005693 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005694 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005695 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005696 BUG_ON(h2s->recv_wait != sw);
5697 sw->events &= ~SUB_RETRY_RECV;
5698 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005699 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005700 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005701 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005702 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005703 BUG_ON(h2s->send_wait != sw);
5704 LIST_DEL(&h2s->list);
5705 LIST_INIT(&h2s->list);
5706 sw->events &= ~SUB_RETRY_SEND;
5707 /* We were about to send, make sure it does not happen */
5708 if (LIST_ADDED(&h2s->sending_list) &&
5709 h2s->send_wait != &h2s->wait_event) {
Olivier Houchard5a3671d2019-10-11 16:33:49 +02005710 /* This call should be ok, as only the thread responsible
5711 * for the tasklet should call unsubscribe.
5712 */
Willy Tarreau86eded62019-06-14 14:47:49 +02005713 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005714 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005715 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005716 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005717 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005718 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005719 return 0;
5720}
5721
5722
Olivier Houchard511efea2018-08-16 15:30:32 +02005723/* Called from the upper layer, to receive data */
5724static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5725{
Olivier Houchard638b7992018-08-16 15:41:52 +02005726 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005727 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005728 struct htx *h2s_htx = NULL;
5729 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005730 size_t ret = 0;
5731
Willy Tarreau7838a792019-08-12 18:42:03 +02005732 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
5733
Olivier Houchard511efea2018-08-16 15:30:32 +02005734 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005735 h2s_htx = htx_from_buf(&h2s->rxbuf);
5736 if (htx_is_empty(h2s_htx)) {
5737 /* Here htx_to_buf() will set buffer data to 0 because
5738 * the HTX is empty.
5739 */
5740 htx_to_buf(h2s_htx, &h2s->rxbuf);
5741 goto end;
5742 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005743
Christopher Faulet9b79a102019-07-15 11:22:56 +02005744 ret = h2s_htx->data;
5745 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005746
Christopher Faulet9b79a102019-07-15 11:22:56 +02005747 /* <buf> is empty and the message is small enough, swap the
5748 * buffers. */
5749 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005750 htx_to_buf(buf_htx, buf);
5751 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005752 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5753 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01005754 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005755
5756 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
5757
5758 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
5759 buf_htx->flags |= HTX_FL_PARSING_ERROR;
5760 if (htx_is_empty(buf_htx))
5761 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01005762 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005763
Christopher Faulet9b79a102019-07-15 11:22:56 +02005764 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
5765 htx_to_buf(buf_htx, buf);
5766 htx_to_buf(h2s_htx, &h2s->rxbuf);
5767 ret -= h2s_htx->data;
5768
Christopher Faulet37070b22019-02-14 15:12:14 +01005769 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005770 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005771 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005772 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005773 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005774 if (h2s->flags & H2_SF_ES_RCVD)
5775 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02005776 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005777 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005778 if (cs->flags & CS_FL_ERR_PENDING)
5779 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005780 if (b_size(&h2s->rxbuf)) {
5781 b_free(&h2s->rxbuf);
5782 offer_buffers(NULL, tasks_run_queue);
5783 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005784 }
5785
Willy Tarreau082f5592018-11-25 08:03:32 +01005786 if (ret && h2c->dsi == h2s->id) {
5787 /* demux is blocking on this stream's buffer */
5788 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005789 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005790 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005791
Willy Tarreau7838a792019-08-12 18:42:03 +02005792 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02005793 return ret;
5794}
5795
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005796/* stops all senders of this connection for example when the mux buffer is full.
5797 * They are moved from the sending_list to either fctl_list or send_list.
5798 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005799static void h2_stop_senders(struct h2c *h2c)
5800{
5801 struct h2s *h2s, *h2s_back;
5802
Olivier Houchardd360ac62019-03-22 17:37:16 +01005803 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5804 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchard5a3671d2019-10-11 16:33:49 +02005805 /* XXX: This won't work when/if streams are running on different
5806 * threads, so we will have to find another way to prevent
5807 * tasklets to run when we can no longer send data. The best
5808 * may be to only wake enough tasklets to fill the buffer.
5809 */
Willy Tarreau86eded62019-06-14 14:47:49 +02005810 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005811 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005812 }
5813}
5814
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005815/* Called from the upper layer, to send data from buffer <buf> for no more than
5816 * <count> bytes. Returns the number of bytes effectively sent. Some status
5817 * flags may be updated on the conn_stream.
5818 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005819static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005820{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005821 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005822 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005823 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005824 struct htx *htx;
5825 struct htx_blk *blk;
5826 enum htx_blk_type btype;
5827 uint32_t bsize;
5828 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005829
Willy Tarreau7838a792019-08-12 18:42:03 +02005830 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
5831
Olivier Houchardd360ac62019-03-22 17:37:16 +01005832 /* If we were not just woken because we wanted to send but couldn't,
5833 * and there's somebody else that is waiting to send, do nothing,
5834 * we will subscribe later and be put at the end of the list
5835 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005836 if (!LIST_ADDED(&h2s->sending_list) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02005837 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
5838 TRACE_DEVEL("other streams already waiting, going to the queue and leaving", H2_EV_H2S_SEND|H2_EV_H2S_BLK, h2s->h2c->conn, h2s);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005839 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005840 }
Olivier Houchard998410a2019-04-15 19:23:37 +02005841 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005842
Olivier Houchard998410a2019-04-15 19:23:37 +02005843 /* We couldn't set it to NULL before, because we needed it in case
5844 * we had to cancel the tasklet
5845 */
5846 h2s->send_wait = NULL;
5847
Willy Tarreau7838a792019-08-12 18:42:03 +02005848 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
5849 TRACE_DEVEL("connection not ready, leaving", H2_EV_H2S_SEND|H2_EV_H2S_BLK, h2s->h2c->conn, h2s);
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005850 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005851 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005852
Willy Tarreaucab22952019-10-31 15:48:18 +01005853 if (h2s->h2c->st0 >= H2_CS_ERROR) {
5854 cs->flags |= CS_FL_ERROR;
5855 TRACE_DEVEL("connection is in error, leaving in error", H2_EV_H2S_SEND|H2_EV_H2S_BLK|H2_EV_H2S_ERR|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
5856 return 0;
5857 }
5858
Christopher Faulet9b79a102019-07-15 11:22:56 +02005859 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005860
Willy Tarreau0bad0432018-06-14 16:54:01 +02005861 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005862 h2s->flags |= H2_SF_OUTGOING_DATA;
5863
Willy Tarreau751f2d02018-10-05 09:35:00 +02005864 if (h2s->id == 0) {
5865 int32_t id = h2c_get_next_sid(h2s->h2c);
5866
5867 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005868 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02005869 TRACE_DEVEL("couldn't get a stream ID, leaving in error", H2_EV_H2S_SEND|H2_EV_H2S_BLK|H2_EV_H2S_ERR|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02005870 return 0;
5871 }
5872
5873 eb32_delete(&h2s->by_id);
5874 h2s->by_id.key = h2s->id = id;
5875 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005876 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005877 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5878 }
5879
Christopher Faulet9b79a102019-07-15 11:22:56 +02005880 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
5881 count && !htx_is_empty(htx)) {
5882 idx = htx_get_head(htx);
5883 blk = htx_get_blk(htx, idx);
5884 btype = htx_get_blk_type(blk);
5885 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005886
Christopher Faulet9b79a102019-07-15 11:22:56 +02005887 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005888 case HTX_BLK_REQ_SL:
5889 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005890 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02005891 if (ret > 0) {
5892 total += ret;
5893 count -= ret;
5894 if (ret < bsize)
5895 goto done;
5896 }
5897 break;
5898
Willy Tarreau115e83b2018-12-01 19:17:53 +01005899 case HTX_BLK_RES_SL:
5900 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005901 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005902 if (ret > 0) {
5903 total += ret;
5904 count -= ret;
5905 if (ret < bsize)
5906 goto done;
5907 }
5908 break;
5909
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005910 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005911 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005912 /* all these cause the emission of a DATA frame (possibly empty).
5913 * This EOM necessarily is one before trailers, as the EOM following
5914 * trailers would have been consumed by the trailers parser.
5915 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005916 ret = h2s_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005917 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005918 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005919 total += ret;
5920 count -= ret;
5921 if (ret < bsize)
5922 goto done;
5923 }
5924 break;
5925
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005926 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005927 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005928 /* This is the first trailers block, all the subsequent ones AND
5929 * the EOM will be swallowed by the parser.
5930 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005931 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005932 if (ret > 0) {
5933 total += ret;
5934 count -= ret;
5935 if (ret < bsize)
5936 goto done;
5937 }
5938 break;
5939
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005940 default:
5941 htx_remove_blk(htx, blk);
5942 total += bsize;
5943 count -= bsize;
5944 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005945 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005946 }
5947
Christopher Faulet9b79a102019-07-15 11:22:56 +02005948 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005949 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005950 /* trim any possibly pending data after we close (extra CR-LF,
5951 * unprocessed trailers, abnormal extra data, ...)
5952 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005953 total += count;
5954 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005955 }
5956
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005957 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005958 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005959 TRACE_DEVEL("reporting RST/error to the app-layer stream", H2_EV_H2S_SEND|H2_EV_H2S_ERR|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Willy Tarreauec988c72018-12-19 18:00:29 +01005960 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005961 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005962 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005963 }
5964
Christopher Faulet9b79a102019-07-15 11:22:56 +02005965 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02005966
5967 /* The mux is full, cancel the pending tasks */
5968 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005969 (h2s->flags & H2_SF_BLK_MBUSY)) {
5970 TRACE_DEVEL("mux full, stopping senders", H2_EV_H2S_SEND|H2_EV_H2C_BLK|H2_EV_H2S_BLK, h2s->h2c->conn, h2s);
Olivier Houchardd846c262018-10-19 17:24:29 +02005971 h2_stop_senders(h2s->h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02005972 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005973
Olivier Houchard7505f942018-08-21 18:10:44 +02005974 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005975 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau7838a792019-08-12 18:42:03 +02005976 TRACE_DEVEL("data queued, waking up h2c sender", H2_EV_H2S_SEND|H2_EV_H2C_SEND, h2s->h2c->conn, h2s);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005977 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005978
Olivier Houchard7505f942018-08-21 18:10:44 +02005979 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005980 /* If we're waiting for flow control, and we got a shutr on the
5981 * connection, we will never be unlocked, so add an error on
5982 * the conn_stream.
5983 */
5984 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5985 !b_data(&h2s->h2c->dbuf) &&
5986 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005987 TRACE_DEVEL("fctl with shutr, reporting error to app-layer", H2_EV_H2S_SEND|H2_EV_STRM_SEND|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005988 if (cs->flags & CS_FL_EOS)
5989 cs->flags |= CS_FL_ERROR;
5990 else
5991 cs->flags |= CS_FL_ERR_PENDING;
5992 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005993
5994 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL)) {
5995 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005996 LIST_DEL_INIT(&h2s->list);
5997 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005998
Willy Tarreau7838a792019-08-12 18:42:03 +02005999 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006000 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006001}
6002
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006003/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02006004static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006005{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006006 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006007 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006008 struct eb32_node *node;
6009 int fctl_cnt = 0;
6010 int send_cnt = 0;
6011 int tree_cnt = 0;
6012 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006013 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006014
6015 if (!h2c)
6016 return;
6017
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006018 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006019 fctl_cnt++;
6020
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006021 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006022 send_cnt++;
6023
Willy Tarreau3af37712018-12-18 14:34:41 +01006024 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006025 node = eb32_first(&h2c->streams_by_id);
6026 while (node) {
6027 h2s = container_of(node, struct h2s, by_id);
6028 tree_cnt++;
6029 if (!h2s->cs)
6030 orph_cnt++;
6031 node = eb32_next(node);
6032 }
6033
Willy Tarreau60f62682019-05-26 11:32:27 +02006034 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006035 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006036 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006037 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006038 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6039 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006040 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006041 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006042 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006043 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6044 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6045 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006046 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6047 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6048 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006049 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6050 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006051
6052 if (h2s) {
Willy Tarreauab2ec452019-08-30 07:07:08 +02006053 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s.flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
6054 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006055 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6056 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6057 h2s->cs);
6058 if (h2s->cs)
6059 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
6060 h2s->cs->flags, h2s->cs->data);
6061 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006062}
Willy Tarreau62f52692017-10-08 23:01:42 +02006063
6064/*******************************************************/
6065/* functions below are dedicated to the config parsers */
6066/*******************************************************/
6067
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006068/* config parser for global "tune.h2.header-table-size" */
6069static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
6070 struct proxy *defpx, const char *file, int line,
6071 char **err)
6072{
6073 if (too_many_args(1, args, err, NULL))
6074 return -1;
6075
6076 h2_settings_header_table_size = atoi(args[1]);
6077 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6078 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6079 return -1;
6080 }
6081 return 0;
6082}
Willy Tarreau62f52692017-10-08 23:01:42 +02006083
Willy Tarreaue6baec02017-07-27 11:45:11 +02006084/* config parser for global "tune.h2.initial-window-size" */
6085static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
6086 struct proxy *defpx, const char *file, int line,
6087 char **err)
6088{
6089 if (too_many_args(1, args, err, NULL))
6090 return -1;
6091
6092 h2_settings_initial_window_size = atoi(args[1]);
6093 if (h2_settings_initial_window_size < 0) {
6094 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6095 return -1;
6096 }
6097 return 0;
6098}
6099
Willy Tarreau5242ef82017-07-27 11:47:28 +02006100/* config parser for global "tune.h2.max-concurrent-streams" */
6101static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
6102 struct proxy *defpx, const char *file, int line,
6103 char **err)
6104{
6105 if (too_many_args(1, args, err, NULL))
6106 return -1;
6107
6108 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006109 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006110 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6111 return -1;
6112 }
6113 return 0;
6114}
6115
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006116/* config parser for global "tune.h2.max-frame-size" */
6117static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
6118 struct proxy *defpx, const char *file, int line,
6119 char **err)
6120{
6121 if (too_many_args(1, args, err, NULL))
6122 return -1;
6123
6124 h2_settings_max_frame_size = atoi(args[1]);
6125 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6126 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6127 return -1;
6128 }
6129 return 0;
6130}
6131
Willy Tarreau62f52692017-10-08 23:01:42 +02006132
6133/****************************************/
6134/* MUX initialization and instanciation */
6135/***************************************/
6136
6137/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006138static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006139 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006140 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006141 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006142 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006143 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006144 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006145 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006146 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006147 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006148 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006149 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006150 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006151 .shutr = h2_shutr,
6152 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006153 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006154 .show_fd = h2_show_fd,
Christopher Faulet9b79a102019-07-15 11:22:56 +02006155 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Willy Tarreau62f52692017-10-08 23:01:42 +02006156 .name = "H2",
6157};
6158
Christopher Faulet32f61c02018-04-10 14:33:41 +02006159static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006160 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006161
Willy Tarreau0108d902018-11-25 19:14:37 +01006162INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6163
Willy Tarreau62f52692017-10-08 23:01:42 +02006164/* config keyword parsers */
6165static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006166 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006167 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006168 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006169 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006170 { 0, NULL, NULL }
6171}};
6172
Willy Tarreau0108d902018-11-25 19:14:37 +01006173INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);