blob: c4edd406164127116eb77c73f730dd02399e4f47 [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) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100135 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200136 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200137};
138
Willy Tarreau18312642017-10-11 07:57:07 +0200139/* H2 stream state, in h2s->st */
140enum h2_ss {
141 H2_SS_IDLE = 0, // idle
142 H2_SS_RLOC, // reserved(local)
143 H2_SS_RREM, // reserved(remote)
144 H2_SS_OPEN, // open
145 H2_SS_HREM, // half-closed(remote)
146 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200147 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200148 H2_SS_CLOSED, // closed
149 H2_SS_ENTRIES // must be last
150} __attribute__((packed));
151
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200152#define H2_SS_MASK(state) (1UL << (state))
153#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
154#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
155#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
156#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
157#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
158#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
159#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
160#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200161
Willy Tarreau18312642017-10-11 07:57:07 +0200162/* HTTP/2 stream flags (32 bit), in h2s->flags */
163#define H2_SF_NONE 0x00000000
164#define H2_SF_ES_RCVD 0x00000001
165#define H2_SF_ES_SENT 0x00000002
166
167#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
168#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
169
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200170/* stream flags indicating the reason the stream is blocked */
171#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200172#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
173#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
174#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200175#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
176
Willy Tarreau454f9052017-10-26 19:40:35 +0200177/* stream flags indicating how data is supposed to be sent */
178#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Willy Tarreaud9464162020-01-10 18:25:07 +0100179/* unused flags: 0x00000200, 0x00000400 */
Willy Tarreau454f9052017-10-26 19:40:35 +0200180
Willy Tarreaud9464162020-01-10 18:25:07 +0100181#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100182#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100183#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100184
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100185#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
186
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200187#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
188#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200189#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200190
191
Willy Tarreau18312642017-10-11 07:57:07 +0200192/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
193 * it is being processed in the internal HTTP representation (H1 for now).
194 */
195struct h2s {
196 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100197 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200198 struct h2c *h2c;
Willy Tarreaua40704a2018-09-11 13:52:04 +0200199 struct h1m h1m; /* request or response parser state for H1 */
Willy Tarreau18312642017-10-11 07:57:07 +0200200 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200201 int32_t id; /* stream ID */
202 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200203 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200204 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
205 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200206 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100207 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200208 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreau749f5ca2019-03-21 19:19:36 +0100209 struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
210 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 +0200211 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100212 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
213 * in case there's no other subscription to do it */
Willy Tarreau18312642017-10-11 07:57:07 +0200214};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200215
Willy Tarreauc6405142017-09-21 20:23:50 +0200216/* descriptor for an h2 frame header */
217struct h2_fh {
218 uint32_t len; /* length, host order, 24 bits */
219 uint32_t sid; /* stream id, host order, 31 bits */
220 uint8_t ft; /* frame type */
221 uint8_t ff; /* frame flags */
222};
223
Willy Tarreau12ae2122019-08-08 18:23:12 +0200224/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200225static void h2_trace(enum trace_level level, uint64_t mask, \
226 const struct trace_source *src,
227 const struct ist where, const struct ist func,
228 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200229
230/* The event representation is split like this :
231 * strm - application layer
232 * h2s - internal H2 stream
233 * h2c - internal H2 connection
234 * conn - external connection
235 *
236 */
237static const struct trace_event h2_trace_events[] = {
238#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200239 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200240#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200241 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200243 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200245 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200246#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200247 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200248#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200249 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200250#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200251 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200252#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200253 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200254#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200255 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200256#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200257 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200258#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .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 +0200260#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200272#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200278#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200280#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .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 +0200286#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200298#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200300#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200304#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200306#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342 { }
343};
344
345static const struct name_desc h2_trace_lockon_args[4] = {
346 /* arg1 */ { /* already used by the connection */ },
347 /* arg2 */ { .name="h2s", .desc="H2 stream" },
348 /* arg3 */ { },
349 /* arg4 */ { }
350};
351
352static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200353#define H2_VERB_CLEAN 1
354 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
355#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200356 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200357#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200358 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200359#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200360 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200361#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200362 { .name="complete", .desc="add full data dump when available" },
363 { /* end */ }
364};
365
366static struct trace_source trace_h2 = {
367 .name = IST("h2"),
368 .desc = "HTTP/2 multiplexer",
369 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200370 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200371 .known_events = h2_trace_events,
372 .lockon_args = h2_trace_lockon_args,
373 .decoding = h2_trace_decoding,
374 .report_events = ~0, // report everything by default
375};
376
377#define TRACE_SOURCE &trace_h2
378INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
379
Willy Tarreau8ceae722018-11-26 11:58:30 +0100380/* the h2c connection pool */
381DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
382
383/* the h2s stream pool */
384DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
385
Willy Tarreaudc572362018-12-12 08:08:05 +0100386/* The default connection window size is 65535, it may only be enlarged using
387 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
388 * we'll pretend we already received the difference between the two to send
389 * an equivalent window update to enlarge it to 2G-1.
390 */
391#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
392
Willy Tarreau455d5682019-05-24 19:42:18 +0200393/* maximum amount of data we're OK with re-aligning for buffer optimizations */
394#define MAX_DATA_REALIGN 1024
395
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200396/* a few settings from the global section */
397static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200398static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100399static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100400static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200401
Willy Tarreau2a856182017-05-16 15:20:39 +0200402/* a dmumy closed stream */
403static const struct h2s *h2_closed_stream = &(const struct h2s){
404 .cs = NULL,
405 .h2c = NULL,
406 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100407 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100408 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200409 .id = 0,
410};
411
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100412/* a dmumy closed stream returning a PROTOCOL_ERROR error */
413static const struct h2s *h2_error_stream = &(const struct h2s){
414 .cs = NULL,
415 .h2c = NULL,
416 .st = H2_SS_CLOSED,
417 .errcode = H2_ERR_PROTOCOL_ERROR,
418 .flags = 0,
419 .id = 0,
420};
421
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100422/* a dmumy closed stream returning a REFUSED_STREAM error */
423static const struct h2s *h2_refused_stream = &(const struct h2s){
424 .cs = NULL,
425 .h2c = NULL,
426 .st = H2_SS_CLOSED,
427 .errcode = H2_ERR_REFUSED_STREAM,
428 .flags = 0,
429 .id = 0,
430};
431
Willy Tarreau2a856182017-05-16 15:20:39 +0200432/* and a dummy idle stream for use with any unannounced stream */
433static const struct h2s *h2_idle_stream = &(const struct h2s){
434 .cs = NULL,
435 .h2c = NULL,
436 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100437 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200438 .id = 0,
439};
440
Olivier Houchard9f6af332018-05-25 14:04:04 +0200441static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200442static int h2_send(struct h2c *h2c);
443static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200444static int h2_process(struct h2c *h2c);
Olivier Houchard29fb89d2018-08-02 18:56:36 +0200445static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100446static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100447static 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 +0100448static int h2_frt_transfer_data(struct h2s *h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +0200449static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100450static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100451static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200452
Willy Tarreauab2ec452019-08-30 07:07:08 +0200453/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
454static inline const char *h2c_st_to_str(enum h2_cs st)
455{
456 switch (st) {
457 case H2_CS_PREFACE: return "PRF";
458 case H2_CS_SETTINGS1: return "STG";
459 case H2_CS_FRAME_H: return "FRH";
460 case H2_CS_FRAME_P: return "FRP";
461 case H2_CS_FRAME_A: return "FRA";
462 case H2_CS_FRAME_E: return "FRE";
463 case H2_CS_ERROR: return "ERR";
464 case H2_CS_ERROR2: return "ER2";
465 default: return "???";
466 }
467}
468
469/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
470static inline const char *h2s_st_to_str(enum h2_ss st)
471{
472 switch (st) {
473 case H2_SS_IDLE: return "IDL"; // idle
474 case H2_SS_RLOC: return "RSL"; // reserved local
475 case H2_SS_RREM: return "RSR"; // reserved remote
476 case H2_SS_OPEN: return "OPN"; // open
477 case H2_SS_HREM: return "HCR"; // half-closed remote
478 case H2_SS_HLOC: return "HCL"; // half-closed local
479 case H2_SS_ERROR : return "ERR"; // error
480 case H2_SS_CLOSED: return "CLO"; // closed
481 default: return "???";
482 }
483}
484
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200485/* the H2 traces always expect that arg1, if non-null, is of type connection
486 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
487 * that arg3, if non-null, is either of type htx for tx headers, or of type
488 * buffer for everything else.
489 */
490static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
491 const struct ist where, const struct ist func,
492 const void *a1, const void *a2, const void *a3, const void *a4)
493{
494 const struct connection *conn = a1;
495 const struct h2c *h2c = conn ? conn->ctx : NULL;
496 const struct h2s *h2s = a2;
497 const struct buffer *buf = a3;
498 const struct htx *htx;
499 int pos;
500
501 if (!h2c) // nothing to add
502 return;
503
Willy Tarreau17104d42019-08-30 07:12:55 +0200504 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200505 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
506
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100507 if (h2c->errcode)
508 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
509
Willy Tarreau73db4342019-09-25 07:28:44 +0200510 if (h2c->dsi >= 0 &&
511 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
512 chunk_appendf(&trace_buf, " dft=%s/%02x", h2_ft_str(h2c->dft), h2c->dff);
513 }
514
515 if (h2s) {
516 if (h2s->id <= 0)
517 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
518 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100519 if (h2s->id && h2s->errcode)
520 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200521 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200522 }
523
524 /* Let's dump decoded requests and responses right after parsing. They
525 * are traced at level USER with a few recognizable flags.
526 */
527 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
528 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
529 htx = htxbuf(buf); // recv req/res
530 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
531 htx = a3; // send req/res
532 else
533 htx = NULL;
534
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200535 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200536 const struct htx_blk *blk = htx_get_blk(htx, pos);
537 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
538 enum htx_blk_type type = htx_get_blk_type(blk);
539
540 if (type == HTX_BLK_REQ_SL)
541 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200542 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200543 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
544 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
545 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
546 else if (type == HTX_BLK_RES_SL)
547 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200548 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200549 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
550 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
551 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
552 }
553}
554
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200555/* returns true if the connection is allowed to expire, false otherwise. A
556 * connection may expire when:
557 * - it has no stream
558 * - it has data in the mux buffer
559 * - it has streams in the blocked list
560 * - it has streams in the fctl list
561 * - it has streams in the send list
562 * Otherwise it means some streams are waiting in the data layer and it should
563 * not expire.
564 */
565static inline int h2c_may_expire(const struct h2c *h2c)
566{
567 return eb_is_empty(&h2c->streams_by_id) ||
568 br_data(h2c->mbuf) ||
569 !LIST_ISEMPTY(&h2c->blocked_list) ||
570 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100571 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200572}
573
Olivier Houchard7a977432019-03-21 15:47:13 +0100574static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200575h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100576{
577 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
578 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
579 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
580 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200581 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100582 (conn_xprt_read0_pending(h2c->conn) ||
583 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
584 return 1;
585
586 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100587}
588
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200589/*****************************************************/
590/* functions below are for dynamic buffer management */
591/*****************************************************/
592
Willy Tarreau315d8072017-12-10 22:17:57 +0100593/* indicates whether or not the we may call the h2_recv() function to attempt
594 * to receive data into the buffer and/or demux pending data. The condition is
595 * a bit complex due to some API limits for now. The rules are the following :
596 * - if an error or a shutdown was detected on the connection and the buffer
597 * is empty, we must not attempt to receive
598 * - if the demux buf failed to be allocated, we must not try to receive and
599 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100600 * - if no flag indicates a blocking condition, we may attempt to receive,
601 * regardless of whether the demux buffer is full or not, so that only
602 * de demux part decides whether or not to block. This is needed because
603 * the connection API indeed prevents us from re-enabling receipt that is
604 * already enabled in a polled state, so we must always immediately stop
605 * as soon as the demux can't proceed so as never to hit an end of read
606 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100607 * - otherwise must may not attempt
608 */
609static inline int h2_recv_allowed(const struct h2c *h2c)
610{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200611 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100612 (h2c->st0 >= H2_CS_ERROR ||
613 h2c->conn->flags & CO_FL_ERROR ||
614 conn_xprt_read0_pending(h2c->conn)))
615 return 0;
616
617 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100618 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100619 return 1;
620
621 return 0;
622}
623
Willy Tarreau47b515a2018-12-21 16:09:41 +0100624/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200625static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100626{
627 if (!h2_recv_allowed(h2c))
628 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200629 if ((!consider_buffer || !b_data(&h2c->dbuf))
630 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100631 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200632 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100633}
634
635
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100636/* returns true if the front connection has too many conn_streams attached */
637static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200638{
Willy Tarreaua8754662018-12-23 20:43:58 +0100639 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200640}
641
Willy Tarreau44e973f2018-03-01 17:49:30 +0100642/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
643 * flags are used to figure what buffer was requested. It returns 1 if the
644 * allocation succeeds, in which case the connection is woken up, or 0 if it's
645 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200646 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100647static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200648{
649 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100650 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200651
Willy Tarreau44e973f2018-03-01 17:49:30 +0100652 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200653 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200654 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200655 return 1;
656 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200657
Willy Tarreau51330962019-05-26 09:38:07 +0200658 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100659 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200660
661 if (h2c->flags & H2_CF_DEM_MROOM) {
662 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200663 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200664 }
Willy Tarreau14398122017-09-22 14:26:04 +0200665 return 1;
666 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100667
668 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
669 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200670 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100671 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200672 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100673 return 1;
674 }
675
Willy Tarreau14398122017-09-22 14:26:04 +0200676 return 0;
677}
678
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200679static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200680{
681 struct buffer *buf = NULL;
682
Willy Tarreauc234ae32019-05-13 17:56:11 +0200683 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100684 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
685 h2c->buf_wait.target = h2c;
686 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100687 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100688 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100689 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200690 __conn_xprt_stop_recv(h2c->conn);
691 }
692 return buf;
693}
694
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200695static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200696{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200697 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100698 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200699 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200700 }
701}
702
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200703static inline void h2_release_mbuf(struct h2c *h2c)
704{
705 struct buffer *buf;
706 unsigned int count = 0;
707
708 while (b_size(buf = br_head_pick(h2c->mbuf))) {
709 b_free(buf);
710 count++;
711 }
712 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200713 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200714}
715
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100716/* returns the number of allocatable outgoing streams for the connection taking
717 * the last_sid and the reserved ones into account.
718 */
719static inline int h2_streams_left(const struct h2c *h2c)
720{
721 int ret;
722
723 /* consider the number of outgoing streams we're allowed to create before
724 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
725 * nb_reserved is the number of streams which don't yet have an ID.
726 */
727 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
728 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
729 if (ret < 0)
730 ret = 0;
731 return ret;
732}
733
Willy Tarreau00f18a32019-01-26 12:19:01 +0100734/* returns the number of streams in use on a connection to figure if it's
735 * idle or not. We check nb_cs and not nb_streams as the caller will want
736 * to know if it was the last one after a detach().
737 */
738static int h2_used_streams(struct connection *conn)
739{
740 struct h2c *h2c = conn->ctx;
741
742 return h2c->nb_cs;
743}
744
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100745/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100746static int h2_avail_streams(struct connection *conn)
747{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100748 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100749 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100750 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100751
Willy Tarreau6afec462019-01-28 06:40:19 +0100752 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
753 * streams on the connection.
754 */
755 if (h2c->last_sid >= 0)
756 return 0;
757
Willy Tarreauc61966f2019-10-31 15:10:03 +0100758 if (h2c->st0 >= H2_CS_ERROR)
759 return 0;
760
Willy Tarreau86949782019-01-31 10:42:05 +0100761 /* note: may be negative if a SETTINGS frame changes the limit */
762 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100763
764 /* we must also consider the limit imposed by stream IDs */
765 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100766 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100767 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100768 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
769 ret1 = MIN(ret1, ret2);
770 }
771 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100772}
773
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200774
Willy Tarreau62f52692017-10-08 23:01:42 +0200775/*****************************************************************/
776/* functions below are dedicated to the mux setup and management */
777/*****************************************************************/
778
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200779/* Initialize the mux once it's attached. For outgoing connections, the context
780 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200781 * connections from the fact that the context is still NULL (even during mux
782 * upgrades). <input> is always used as Input buffer and may contain data. It is
783 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200784 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200785static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
786 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200787{
788 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100789 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200790 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200791
Christopher Fauletf81ef032019-10-04 15:19:43 +0200792 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200793
Willy Tarreaubafbe012017-11-24 17:34:44 +0100794 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200795 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200796 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200797
Christopher Faulete9b70722019-04-08 10:46:02 +0200798 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200799 h2c->flags = H2_CF_IS_BACK;
800 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
801 if (tick_isset(prx->timeout.serverfin))
802 h2c->shut_timeout = prx->timeout.serverfin;
803 } else {
804 h2c->flags = H2_CF_NONE;
805 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
806 if (tick_isset(prx->timeout.clientfin))
807 h2c->shut_timeout = prx->timeout.clientfin;
808 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100809
Willy Tarreau0b37d652018-10-03 10:33:02 +0200810 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100811 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100812 if (tick_isset(h2c->timeout)) {
813 t = task_new(tid_bit);
814 if (!t)
815 goto fail;
816
817 h2c->task = t;
818 t->process = h2_timeout_task;
819 t->context = h2c;
820 t->expire = tick_add(now_ms, h2c->timeout);
821 }
Willy Tarreauea392822017-10-31 10:02:25 +0100822
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200823 h2c->wait_event.tasklet = tasklet_new();
824 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200825 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200826 h2c->wait_event.tasklet->process = h2_io_cb;
827 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100828 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200829
Willy Tarreau32218eb2017-09-22 08:07:25 +0200830 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
831 if (!h2c->ddht)
832 goto fail;
833
834 /* Initialise the context. */
835 h2c->st0 = H2_CS_PREFACE;
836 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100837 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200838 h2c->max_id = -1;
839 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100840 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200841 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100842 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200843 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100844 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100845 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200846
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200847 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200848 h2c->dsi = -1;
849 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100850
Willy Tarreau32218eb2017-09-22 08:07:25 +0200851 h2c->last_sid = -1;
852
Willy Tarreau51330962019-05-26 09:38:07 +0200853 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200854 h2c->miw = 65535; /* mux initial window size */
855 h2c->mws = 65535; /* mux window size */
856 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200857 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200858 LIST_INIT(&h2c->send_list);
859 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200860 LIST_INIT(&h2c->blocked_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100861 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200862
Christopher Fauletf81ef032019-10-04 15:19:43 +0200863 conn->ctx = h2c;
864
Willy Tarreau3f133572017-10-31 19:21:06 +0100865 if (t)
866 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100867
Willy Tarreau01b44822018-10-03 14:26:37 +0200868 if (h2c->flags & H2_CF_IS_BACK) {
869 /* FIXME: this is temporary, for outgoing connections we need
870 * to immediately allocate a stream until the code is modified
871 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +0200872 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +0200873 */
874 struct h2s *h2s;
875
Christopher Fauletf81ef032019-10-04 15:19:43 +0200876 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200877 if (!h2s)
878 goto fail_stream;
879 }
880
Willy Tarreau0f383582018-10-03 14:22:21 +0200881 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200882 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +0200883 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200884 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200885 fail_stream:
886 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200887 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200888 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200889 if (h2c->wait_event.tasklet)
890 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100891 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200892 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +0200893 conn->ctx = conn_ctx; /* restore saved ctx */
894 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200895 return -1;
896}
897
Willy Tarreau751f2d02018-10-05 09:35:00 +0200898/* returns the next allocatable outgoing stream ID for the H2 connection, or
899 * -1 if no more is allocatable.
900 */
901static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
902{
903 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100904
905 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200906 id = -1;
907 return id;
908}
909
Willy Tarreau2373acc2017-10-12 17:35:14 +0200910/* returns the stream associated with id <id> or NULL if not found */
911static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
912{
913 struct eb32_node *node;
914
Willy Tarreau751f2d02018-10-05 09:35:00 +0200915 if (id == 0)
916 return (struct h2s *)h2_closed_stream;
917
Willy Tarreau2a856182017-05-16 15:20:39 +0200918 if (id > h2c->max_id)
919 return (struct h2s *)h2_idle_stream;
920
Willy Tarreau2373acc2017-10-12 17:35:14 +0200921 node = eb32_lookup(&h2c->streams_by_id, id);
922 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200923 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200924
925 return container_of(node, struct h2s, by_id);
926}
927
Christopher Faulet73c12072019-04-08 11:23:22 +0200928/* release function. This one should be called to free all resources allocated
929 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200930 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200931static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200932{
Christopher Faulet61840e72019-04-15 09:33:32 +0200933 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200934
Willy Tarreau7838a792019-08-12 18:42:03 +0200935 TRACE_ENTER(H2_EV_H2C_END);
936
Willy Tarreau32218eb2017-09-22 08:07:25 +0200937 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200938 /* The connection must be aattached to this mux to be released */
939 if (h2c->conn && h2c->conn->ctx == h2c)
940 conn = h2c->conn;
941
Willy Tarreau7838a792019-08-12 18:42:03 +0200942 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200943 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200944
Willy Tarreau186e96e2019-05-28 17:21:18 +0200945 if (LIST_ADDED(&h2c->buf_wait.list)) {
946 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
947 LIST_DEL(&h2c->buf_wait.list);
948 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
949 }
Willy Tarreau14398122017-09-22 14:26:04 +0200950
Willy Tarreau44e973f2018-03-01 17:49:30 +0100951 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200952 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100953
Willy Tarreauea392822017-10-31 10:02:25 +0100954 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200955 h2c->task->context = NULL;
956 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100957 h2c->task = NULL;
958 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200959 if (h2c->wait_event.tasklet)
960 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +0200961 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100962 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +0200963 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100964
Willy Tarreaubafbe012017-11-24 17:34:44 +0100965 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200966 }
967
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200968 if (conn) {
969 conn->mux = NULL;
970 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +0200971 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200972
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200973 conn_stop_tracking(conn);
974 conn_full_close(conn);
975 if (conn->destroy_cb)
976 conn->destroy_cb(conn);
977 conn_free(conn);
978 }
Willy Tarreau7838a792019-08-12 18:42:03 +0200979
980 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +0200981}
982
983
Willy Tarreau71681172017-10-23 14:39:06 +0200984/******************************************************/
985/* functions below are for the H2 protocol processing */
986/******************************************************/
987
988/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100989static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200990{
991 return h2s ? h2s->id : 0;
992}
993
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200994/* returns the sum of the stream's own window size and the mux's initial
995 * window, which together form the stream's effective window size.
996 */
997static inline int h2s_mws(const struct h2s *h2s)
998{
999 return h2s->sws + h2s->h2c->miw;
1000}
1001
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001002/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001003static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001004{
1005 if (h2c->msi < 0)
1006 return 0;
1007
1008 if (h2c->msi == h2s_id(h2s))
1009 return 0;
1010
1011 return 1;
1012}
1013
Willy Tarreau741d6df2017-10-17 08:00:59 +02001014/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001015static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001016{
Willy Tarreau7838a792019-08-12 18:42:03 +02001017 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn,,, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001018 h2c->errcode = err;
1019 h2c->st0 = H2_CS_ERROR;
1020}
1021
Willy Tarreau175cebb2019-01-24 10:02:24 +01001022/* marks an error on the stream. It may also update an already closed stream
1023 * (e.g. to report an error after an RST was received).
1024 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001025static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001026{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001027 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001028 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s,, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001029 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001030 if (h2s->st < H2_SS_ERROR)
1031 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001032 if (h2s->cs)
1033 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001034 }
1035}
1036
Willy Tarreau7e094452018-12-19 18:08:52 +01001037/* attempt to notify the data layer of recv availability */
1038static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1039{
1040 struct wait_event *sw;
1041
1042 if (h2s->recv_wait) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001043 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001044 sw = h2s->recv_wait;
1045 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001046 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001047 h2s->recv_wait = NULL;
1048 }
1049}
1050
1051/* attempt to notify the data layer of send availability */
1052static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1053{
1054 struct wait_event *sw;
1055
Willy Tarreaud9464162020-01-10 18:25:07 +01001056 if (h2s->send_wait) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001057 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001058 sw = h2s->send_wait;
Willy Tarreaud9464162020-01-10 18:25:07 +01001059 h2s->send_wait = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001060 sw->events &= ~SUB_RETRY_SEND;
Willy Tarreaud9464162020-01-10 18:25:07 +01001061 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001062 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001063 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001064 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1065 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1066 tasklet_wakeup(h2s->shut_tl);
1067 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001068}
1069
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001070/* alerts the data layer, trying to wake it up by all means, following
1071 * this sequence :
1072 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1073 * - if its subscribed to send, then it's woken up for send
1074 * - if it was subscribed to neither, its ->wake() callback is called
1075 * It is safe to call this function with a closed stream which doesn't have a
1076 * conn_stream anymore.
1077 */
1078static void __maybe_unused h2s_alert(struct h2s *h2s)
1079{
Willy Tarreau7838a792019-08-12 18:42:03 +02001080 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1081
Willy Tarreau5723f292020-01-10 15:16:57 +01001082 if (h2s->recv_wait || h2s->send_wait ||
1083 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001084 h2s_notify_recv(h2s);
1085 h2s_notify_send(h2s);
1086 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001087 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1088 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001089 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001090 }
1091
1092 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001093}
1094
Willy Tarreaue4820742017-07-27 13:37:23 +02001095/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001096static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001097{
1098 uint8_t *out = frame;
1099
1100 *out = len >> 16;
1101 write_n16(out + 1, len);
1102}
1103
Willy Tarreau54c15062017-10-10 17:10:03 +02001104/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1105 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1106 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001107 * available in the buffer's input prior to calling this function. The buffer
1108 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001109 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001110static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001111 const struct buffer *b, int o)
1112{
Willy Tarreau591d4452018-06-15 17:21:00 +02001113 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 +02001114}
1115
Willy Tarreau1f094672017-11-20 21:27:45 +01001116static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001117{
Willy Tarreau591d4452018-06-15 17:21:00 +02001118 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001119}
1120
Willy Tarreau1f094672017-11-20 21:27:45 +01001121static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001122{
Willy Tarreau591d4452018-06-15 17:21:00 +02001123 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001124}
1125
Willy Tarreau1f094672017-11-20 21:27:45 +01001126static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001127{
Willy Tarreau591d4452018-06-15 17:21:00 +02001128 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001129}
1130
1131
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001132/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1133 * The algorithm is not obvious. It turns out that H2 headers are neither
1134 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1135 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001136 *
1137 * b0 b1 b2 b3 b4 b5..b8
1138 * +----------+---------+--------+----+----+----------------------+
1139 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1140 * +----------+---------+--------+----+----+----------------------+
1141 *
1142 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1143 * we get the sid properly aligned and ordered, and 16 bits of len properly
1144 * ordered as well. The type and flags can be extracted using bit shifts from
1145 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001146 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1147 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001148 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001149static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001150{
1151 uint64_t w;
1152
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001153 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001154 return 0;
1155
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001156 w = h2_get_n64(b, o + 1);
1157 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001158 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1159 h->ff = w >> 32;
1160 h->ft = w >> 40;
1161 h->len += w >> 48;
1162 return 1;
1163}
1164
1165/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1166 * h2_peek_frame_hdr() above.
1167 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001168static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001169{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001170 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001171}
1172
1173/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001174static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001175{
1176 int ret;
1177
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001178 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001179 if (ret > 0)
1180 h2_skip_frame_hdr(b);
1181 return ret;
1182}
1183
Willy Tarreaucb985a42019-10-07 16:56:34 +02001184
1185/* try to fragment the headers frame present at the beginning of buffer <b>,
1186 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1187 * success. Typical causes of failure include a buffer not large enough to
1188 * add extra frame headers. The existing frame size is read in the current
1189 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1190 * and its length will be adjusted. The stream ID for continuation frames will
1191 * be copied from the initial frame's.
1192 */
1193static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1194{
1195 size_t remain = b->data - 9;
1196 int extra_frames = (remain - 1) / mfs;
1197 size_t fsize;
1198 char *fptr;
1199 int frame;
1200
1201 if (b->data <= mfs + 9)
1202 return 1;
1203
1204 /* Too large a frame, we need to fragment it using CONTINUATION
1205 * frames. We start from the end and move tails as needed.
1206 */
1207 if (b->data + extra_frames * 9 > b->size)
1208 return 0;
1209
1210 for (frame = extra_frames; frame; frame--) {
1211 fsize = ((remain - 1) % mfs) + 1;
1212 remain -= fsize;
1213
1214 /* move data */
1215 fptr = b->area + 9 + remain + (frame - 1) * 9;
1216 memmove(fptr + 9, b->area + 9 + remain, fsize);
1217 b->data += 9;
1218
1219 /* write new frame header */
1220 h2_set_frame_size(fptr, fsize);
1221 fptr[3] = H2_FT_CONTINUATION;
1222 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1223 write_n32(fptr + 5, read_n32(b->area + 5));
1224 }
1225
1226 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1227 h2_set_frame_size(b->area, remain);
1228 return 1;
1229}
1230
1231
Willy Tarreau00dd0782018-03-01 16:31:34 +01001232/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1233 * its connection if the stream was not yet closed. Please use this exclusively
1234 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001235 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001236static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001237{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001238 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001239 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001240 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001241 if (!h2s->id)
1242 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001243 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001244 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1245 h2s_notify_recv(h2s);
1246 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001247 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001248 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001249 h2s->st = H2_SS_CLOSED;
1250}
1251
Willy Tarreau71049cc2018-03-28 13:56:39 +02001252/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001253/* h2s_destroy should only ever be called by the thread that owns the stream,
1254 * that means that a tasklet should be used if we want to destroy the h2s
1255 * from another thread
1256 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001257static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001258{
Willy Tarreau7838a792019-08-12 18:42:03 +02001259 struct connection *conn = h2s->h2c->conn;
1260
1261 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1262
Willy Tarreau0a10de62018-03-01 16:27:53 +01001263 h2s_close(h2s);
1264 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001265 if (b_size(&h2s->rxbuf)) {
1266 b_free(&h2s->rxbuf);
1267 offer_buffers(NULL, tasks_run_queue);
1268 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001269 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001270 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001271 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001272 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -08001273 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001274 * reference left would be in the h2c send_list/fctl_list, and if
1275 * we're in it, we're getting out anyway
1276 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001277 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001278
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001279 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001280 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001281 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001282
1283 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001284}
1285
Willy Tarreaua8e49542018-10-03 18:53:55 +02001286/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1287 * stream tree. In case of error, nothing is added and NULL is returned. The
1288 * causes of errors can be any failed memory allocation. The caller is
1289 * responsible for checking if the connection may support an extra stream
1290 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001291 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001292static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001293{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001294 struct h2s *h2s;
1295
Willy Tarreau7838a792019-08-12 18:42:03 +02001296 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1297
Willy Tarreaubafbe012017-11-24 17:34:44 +01001298 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001299 if (!h2s)
1300 goto out;
1301
Willy Tarreau5723f292020-01-10 15:16:57 +01001302 h2s->shut_tl = tasklet_new();
1303 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001304 pool_free(pool_head_h2s, h2s);
1305 goto out;
1306 }
1307 h2s->send_wait = NULL;
1308 h2s->recv_wait = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001309 h2s->shut_tl->process = h2_deferred_shut;
1310 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001311 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001312 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001313 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001314 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001315 h2s->flags = H2_SF_NONE;
1316 h2s->errcode = H2_ERR_NO_ERROR;
1317 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001318 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001319 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001320 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001321
1322 if (h2c->flags & H2_CF_IS_BACK) {
1323 h1m_init_req(&h2s->h1m);
1324 h2s->h1m.err_pos = -1; // don't care about errors on the request path
1325 h2s->h1m.flags |= H1_MF_TOLOWER;
1326 } else {
1327 h1m_init_res(&h2s->h1m);
1328 h2s->h1m.err_pos = -1; // don't care about errors on the response path
1329 h2s->h1m.flags |= H1_MF_TOLOWER;
1330 }
1331
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001332 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001333 if (id > 0)
1334 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001335 else
1336 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001337
1338 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001339 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001340 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001341
Willy Tarreau7838a792019-08-12 18:42:03 +02001342 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001343 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001344 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001345 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001346 return NULL;
1347}
1348
1349/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1350 * case of memory allocation error.
1351 */
1352static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1353{
1354 struct session *sess = h2c->conn->owner;
1355 struct conn_stream *cs;
1356 struct h2s *h2s;
1357
Willy Tarreau7838a792019-08-12 18:42:03 +02001358 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1359
Willy Tarreaua8e49542018-10-03 18:53:55 +02001360 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1361 goto out;
1362
1363 h2s = h2s_new(h2c, id);
1364 if (!h2s)
1365 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001366
1367 cs = cs_new(h2c->conn);
1368 if (!cs)
1369 goto out_close;
1370
Olivier Houchard746fb772018-12-15 19:42:00 +01001371 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001372 h2s->cs = cs;
1373 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001374 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001375
1376 if (stream_create_from_cs(cs) < 0)
1377 goto out_free_cs;
1378
Willy Tarreau590a0512018-09-05 11:56:48 +02001379 /* We want the accept date presented to the next stream to be the one
1380 * we have now, the handshake time to be null (since the next stream
1381 * is not delayed by a handshake), and the idle time to count since
1382 * right now.
1383 */
1384 sess->accept_date = date;
1385 sess->tv_accept = now;
1386 sess->t_handshake = 0;
1387
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001388 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001389 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001390 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001391 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001392 return h2s;
1393
1394 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001395 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001396 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001397 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001398 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001399 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001400 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001401 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001402 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001403 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001404}
1405
Willy Tarreau751f2d02018-10-05 09:35:00 +02001406/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1407 * and returns it, or NULL in case of memory allocation error or if the highest
1408 * possible stream ID was reached.
1409 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001410static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001411{
1412 struct h2s *h2s = NULL;
1413
Willy Tarreau7838a792019-08-12 18:42:03 +02001414 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1415
Willy Tarreau86949782019-01-31 10:42:05 +01001416 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001417 goto out;
1418
Willy Tarreaua80dca82019-01-24 17:08:28 +01001419 if (h2_streams_left(h2c) < 1)
1420 goto out;
1421
Willy Tarreau751f2d02018-10-05 09:35:00 +02001422 /* Defer choosing the ID until we send the first message to create the stream */
1423 h2s = h2s_new(h2c, 0);
1424 if (!h2s)
1425 goto out;
1426
1427 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001428 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001429 cs->ctx = h2s;
1430 h2c->nb_cs++;
1431
Willy Tarreau751f2d02018-10-05 09:35:00 +02001432 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001433 if (likely(h2s))
1434 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1435 else
1436 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001437 return h2s;
1438}
1439
Willy Tarreaube5b7152017-09-25 16:25:39 +02001440/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1441 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1442 * the various settings codes.
1443 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001444static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001445{
1446 struct buffer *res;
1447 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001448 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001449 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001450 int ret = 0;
1451
1452 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001453
1454 if (h2c_mux_busy(h2c, NULL)) {
1455 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001456 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001457 }
1458
Willy Tarreaube5b7152017-09-25 16:25:39 +02001459 chunk_init(&buf, buf_data, sizeof(buf_data));
1460 chunk_memcpy(&buf,
1461 "\x00\x00\x00" /* length : 0 for now */
1462 "\x04\x00" /* type : 4 (settings), flags : 0 */
1463 "\x00\x00\x00\x00", /* stream ID : 0 */
1464 9);
1465
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001466 if (h2c->flags & H2_CF_IS_BACK) {
1467 /* send settings_enable_push=0 */
1468 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1469 }
1470
Willy Tarreaube5b7152017-09-25 16:25:39 +02001471 if (h2_settings_header_table_size != 4096) {
1472 char str[6] = "\x00\x01"; /* header_table_size */
1473
1474 write_n32(str + 2, h2_settings_header_table_size);
1475 chunk_memcat(&buf, str, 6);
1476 }
1477
1478 if (h2_settings_initial_window_size != 65535) {
1479 char str[6] = "\x00\x04"; /* initial_window_size */
1480
1481 write_n32(str + 2, h2_settings_initial_window_size);
1482 chunk_memcat(&buf, str, 6);
1483 }
1484
1485 if (h2_settings_max_concurrent_streams != 0) {
1486 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1487
1488 /* Note: 0 means "unlimited" for haproxy's config but not for
1489 * the protocol, so never send this value!
1490 */
1491 write_n32(str + 2, h2_settings_max_concurrent_streams);
1492 chunk_memcat(&buf, str, 6);
1493 }
1494
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001495 mfs = h2_settings_max_frame_size;
1496 if (mfs > global.tune.bufsize)
1497 mfs = global.tune.bufsize;
1498
1499 if (!mfs)
1500 mfs = global.tune.bufsize;
1501
1502 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001503 char str[6] = "\x00\x05"; /* max_frame_size */
1504
1505 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1506 * match bufsize - rewrite size, but at the moment it seems
1507 * that clients don't take care of it.
1508 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001509 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001510 chunk_memcat(&buf, str, 6);
1511 }
1512
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001513 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001514
1515 res = br_tail(h2c->mbuf);
1516 retry:
1517 if (!h2_get_buf(h2c, res)) {
1518 h2c->flags |= H2_CF_MUX_MALLOC;
1519 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001520 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001521 }
1522
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001523 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001524 if (unlikely(ret <= 0)) {
1525 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001526 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1527 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001528 h2c->flags |= H2_CF_MUX_MFULL;
1529 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001530 }
1531 else {
1532 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001533 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001534 }
1535 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001536 out:
1537 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001538 return ret;
1539}
1540
Willy Tarreau52eed752017-09-22 15:05:09 +02001541/* Try to receive a connection preface, then upon success try to send our
1542 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1543 * missing data. It may return an error in h2c.
1544 */
1545static int h2c_frt_recv_preface(struct h2c *h2c)
1546{
1547 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001548 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001549
Willy Tarreau7838a792019-08-12 18:42:03 +02001550 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1551
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001552 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001553
1554 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001555 if (ret1 < 0)
1556 sess_log(h2c->conn->owner);
1557
Willy Tarreau52eed752017-09-22 15:05:09 +02001558 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1559 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001560 ret2 = 0;
1561 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001562 }
1563
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001564 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001565 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001566 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001567 out:
1568 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001569 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001570}
1571
Willy Tarreau01b44822018-10-03 14:26:37 +02001572/* Try to send a connection preface, then upon success try to send our
1573 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1574 * missing data. It may return an error in h2c.
1575 */
1576static int h2c_bck_send_preface(struct h2c *h2c)
1577{
1578 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001579 int ret = 0;
1580
1581 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001582
1583 if (h2c_mux_busy(h2c, NULL)) {
1584 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001585 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001586 }
1587
Willy Tarreaubcc45952019-05-26 10:05:50 +02001588 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001589 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001590 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001591 h2c->flags |= H2_CF_MUX_MALLOC;
1592 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001593 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001594 }
1595
1596 if (!b_data(res)) {
1597 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001598 ret = b_istput(res, ist(H2_CONN_PREFACE));
1599 if (unlikely(ret <= 0)) {
1600 if (!ret) {
1601 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1602 goto retry;
1603 h2c->flags |= H2_CF_MUX_MFULL;
1604 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001605 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001606 }
1607 else {
1608 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001609 ret = 0;
1610 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001611 }
1612 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001613 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001614 ret = h2c_send_settings(h2c);
1615 out:
1616 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1617 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001618}
1619
Willy Tarreau081d4722017-05-16 21:51:05 +02001620/* try to send a GOAWAY frame on the connection to report an error or a graceful
1621 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1622 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1623 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1624 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1625 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1626 * on unrecoverable failure. It will not attempt to send one again in this last
1627 * case so that it is safe to use h2c_error() to report such errors.
1628 */
1629static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1630{
1631 struct buffer *res;
1632 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001633 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001634
Willy Tarreau7838a792019-08-12 18:42:03 +02001635 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1636
1637 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1638 ret = 1; // claim that it worked
1639 goto out;
1640 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001641
1642 if (h2c_mux_busy(h2c, h2s)) {
1643 if (h2s)
1644 h2s->flags |= H2_SF_BLK_MBUSY;
1645 else
1646 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001647 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001648 }
1649
Willy Tarreau9c218e72019-05-26 10:08:28 +02001650 /* len: 8, type: 7, flags: none, sid: 0 */
1651 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1652
1653 if (h2c->last_sid < 0)
1654 h2c->last_sid = h2c->max_id;
1655
1656 write_n32(str + 9, h2c->last_sid);
1657 write_n32(str + 13, h2c->errcode);
1658
Willy Tarreaubcc45952019-05-26 10:05:50 +02001659 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001660 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001661 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001662 h2c->flags |= H2_CF_MUX_MALLOC;
1663 if (h2s)
1664 h2s->flags |= H2_SF_BLK_MROOM;
1665 else
1666 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001667 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001668 }
1669
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001670 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001671 if (unlikely(ret <= 0)) {
1672 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001673 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1674 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001675 h2c->flags |= H2_CF_MUX_MFULL;
1676 if (h2s)
1677 h2s->flags |= H2_SF_BLK_MROOM;
1678 else
1679 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001680 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001681 }
1682 else {
1683 /* we cannot report this error using GOAWAY, so we mark
1684 * it and claim a success.
1685 */
1686 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1687 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001688 ret = 1;
1689 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001690 }
1691 }
1692 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02001693 out:
1694 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001695 return ret;
1696}
1697
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001698/* Try to send an RST_STREAM frame on the connection for the indicated stream
1699 * during mux operations. This stream must be valid and cannot be closed
1700 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1701 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1702 * not yet.
1703 *
1704 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1705 * to write the message, it subscribes the stream to future notifications.
1706 */
1707static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1708{
1709 struct buffer *res;
1710 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001711 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001712
Willy Tarreau7838a792019-08-12 18:42:03 +02001713 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1714
1715 if (!h2s || h2s->st == H2_SS_CLOSED) {
1716 ret = 1;
1717 goto out;
1718 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001719
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001720 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1721 * RST_STREAM in response to a RST_STREAM frame.
1722 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001723 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001724 ret = 1;
1725 goto ignore;
1726 }
1727
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001728 if (h2c_mux_busy(h2c, h2s)) {
1729 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001730 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001731 }
1732
Willy Tarreau9c218e72019-05-26 10:08:28 +02001733 /* len: 4, type: 3, flags: none */
1734 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1735 write_n32(str + 5, h2s->id);
1736 write_n32(str + 9, h2s->errcode);
1737
Willy Tarreaubcc45952019-05-26 10:05:50 +02001738 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001739 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001740 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001741 h2c->flags |= H2_CF_MUX_MALLOC;
1742 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001743 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001744 }
1745
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001746 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001747 if (unlikely(ret <= 0)) {
1748 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001749 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1750 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001751 h2c->flags |= H2_CF_MUX_MFULL;
1752 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001753 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001754 }
1755 else {
1756 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001757 ret = 0;
1758 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001759 }
1760 }
1761
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001762 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001763 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001764 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001765 out:
1766 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001767 return ret;
1768}
1769
1770/* Try to send an RST_STREAM frame on the connection for the stream being
1771 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001772 * error code, even if the stream is one of the dummy ones, and will update
1773 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001774 *
1775 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1776 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001777 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001778 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001779 */
1780static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1781{
1782 struct buffer *res;
1783 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001784 int ret = 0;
1785
1786 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001787
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001788 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1789 * RST_STREAM in response to a RST_STREAM frame.
1790 */
1791 if (h2c->dft == H2_FT_RST_STREAM) {
1792 ret = 1;
1793 goto ignore;
1794 }
1795
Willy Tarreau27a84c92017-10-17 08:10:17 +02001796 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001797 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001798 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001799 }
1800
Willy Tarreau9c218e72019-05-26 10:08:28 +02001801 /* len: 4, type: 3, flags: none */
1802 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1803
1804 write_n32(str + 5, h2c->dsi);
1805 write_n32(str + 9, h2s->errcode);
1806
Willy Tarreaubcc45952019-05-26 10:05:50 +02001807 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001808 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001809 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001810 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001811 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001812 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001813 }
1814
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001815 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001816 if (unlikely(ret <= 0)) {
1817 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001818 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1819 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001820 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001821 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001822 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001823 }
1824 else {
1825 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001826 ret = 0;
1827 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001828 }
1829 }
1830
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001831 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001832 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001833 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001834 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001835 }
1836
Willy Tarreau7838a792019-08-12 18:42:03 +02001837 out:
1838 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001839 return ret;
1840}
1841
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001842/* try to send an empty DATA frame with the ES flag set to notify about the
1843 * end of stream and match a shutdown(write). If an ES was already sent as
1844 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1845 * on success or zero if nothing was done. In case of lack of room to write the
1846 * message, it subscribes the requesting stream to future notifications.
1847 */
1848static int h2_send_empty_data_es(struct h2s *h2s)
1849{
1850 struct h2c *h2c = h2s->h2c;
1851 struct buffer *res;
1852 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001853 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001854
Willy Tarreau7838a792019-08-12 18:42:03 +02001855 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
1856
1857 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
1858 ret = 1;
1859 goto out;
1860 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001861
1862 if (h2c_mux_busy(h2c, h2s)) {
1863 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001864 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001865 }
1866
Willy Tarreau9c218e72019-05-26 10:08:28 +02001867 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1868 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1869 write_n32(str + 5, h2s->id);
1870
Willy Tarreaubcc45952019-05-26 10:05:50 +02001871 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001872 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001873 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001874 h2c->flags |= H2_CF_MUX_MALLOC;
1875 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001876 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001877 }
1878
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001879 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001880 if (likely(ret > 0)) {
1881 h2s->flags |= H2_SF_ES_SENT;
1882 }
1883 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001884 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1885 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001886 h2c->flags |= H2_CF_MUX_MFULL;
1887 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001888 }
1889 else {
1890 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001891 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001892 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001893 out:
1894 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001895 return ret;
1896}
1897
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001898/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001899 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001900 * is automatically updated accordingly. If the stream is orphaned, it is
1901 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001902 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001903static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001904{
Willy Tarreau7838a792019-08-12 18:42:03 +02001905 struct h2c *h2c = h2s->h2c;
1906
1907 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
1908
Christopher Fauletf02ca002019-03-07 16:21:34 +01001909 if (!h2s->cs) {
1910 /* this stream was already orphaned */
1911 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001912 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001913 return;
1914 }
1915
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001916 if (conn_xprt_read0_pending(h2s->h2c->conn)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001917 if (h2s->st == H2_SS_OPEN)
1918 h2s->st = H2_SS_HREM;
1919 else if (h2s->st == H2_SS_HLOC)
1920 h2s_close(h2s);
1921 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001922
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001923 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1924 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1925 h2s->cs->flags |= CS_FL_ERR_PENDING;
1926 if (h2s->cs->flags & CS_FL_EOS)
1927 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001928
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001929 if (h2s->st < H2_SS_ERROR)
1930 h2s->st = H2_SS_ERROR;
1931 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001932
1933 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001934 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001935}
1936
1937/* wake the streams attached to the connection, whose id is greater than <last>
1938 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001939 */
Willy Tarreau23482912019-05-07 15:23:14 +02001940static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001941{
1942 struct eb32_node *node;
1943 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001944
Willy Tarreau7838a792019-08-12 18:42:03 +02001945 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
1946
Christopher Fauletf02ca002019-03-07 16:21:34 +01001947 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001948 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1949 while (node) {
1950 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001951 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001952 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001953 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001954
Christopher Fauletf02ca002019-03-07 16:21:34 +01001955 /* Wake all streams with unassigned ID (ID == 0) */
1956 node = eb32_lookup(&h2c->streams_by_id, 0);
1957 while (node) {
1958 h2s = container_of(node, struct h2s, by_id);
1959 if (h2s->id > 0)
1960 break;
1961 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001962 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001963 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001964
1965 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001966}
1967
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001968/* Wake up all blocked streams whose window size has become positive after the
1969 * mux's initial window was adjusted. This should be done after having processed
1970 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001971 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001972static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001973{
1974 struct h2s *h2s;
1975 struct eb32_node *node;
1976
Willy Tarreau7838a792019-08-12 18:42:03 +02001977 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
1978
Willy Tarreau3421aba2017-07-27 15:41:03 +02001979 node = eb32_first(&h2c->streams_by_id);
1980 while (node) {
1981 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001982 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001983 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001984 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001985 if (h2s->send_wait || h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001986 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001987 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001988 node = eb32_next(node);
1989 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001990
1991 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001992}
1993
1994/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1995 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001996 * return an error in h2c. The caller must have already verified frame length
1997 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001998 */
1999static int h2c_handle_settings(struct h2c *h2c)
2000{
2001 unsigned int offset;
2002 int error;
2003
Willy Tarreau7838a792019-08-12 18:42:03 +02002004 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2005
Willy Tarreau3421aba2017-07-27 15:41:03 +02002006 if (h2c->dff & H2_F_SETTINGS_ACK) {
2007 if (h2c->dfl) {
2008 error = H2_ERR_FRAME_SIZE_ERROR;
2009 goto fail;
2010 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002011 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002012 }
2013
Willy Tarreau3421aba2017-07-27 15:41:03 +02002014 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002015 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002016 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002017
2018 /* parse the frame */
2019 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002020 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2021 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002022
2023 switch (type) {
2024 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2025 /* we need to update all existing streams with the
2026 * difference from the previous iws.
2027 */
2028 if (arg < 0) { // RFC7540#6.5.2
2029 error = H2_ERR_FLOW_CONTROL_ERROR;
2030 goto fail;
2031 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002032 h2c->miw = arg;
2033 break;
2034 case H2_SETTINGS_MAX_FRAME_SIZE:
2035 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
2036 error = H2_ERR_PROTOCOL_ERROR;
2037 goto fail;
2038 }
2039 h2c->mfs = arg;
2040 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002041 case H2_SETTINGS_ENABLE_PUSH:
2042 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
2043 error = H2_ERR_PROTOCOL_ERROR;
2044 goto fail;
2045 }
2046 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002047 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2048 if (h2c->flags & H2_CF_IS_BACK) {
2049 /* the limit is only for the backend; for the frontend it is our limit */
2050 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2051 arg = h2_settings_max_concurrent_streams;
2052 h2c->streams_limit = arg;
2053 }
2054 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002055 }
2056 }
2057
2058 /* need to ACK this frame now */
2059 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002060 done:
2061 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002062 return 1;
2063 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002064 if (!(h2c->flags & H2_CF_IS_BACK))
2065 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002066 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002067 out0:
2068 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 +02002069 return 0;
2070}
2071
2072/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2073 * success or one of the h2_status values.
2074 */
2075static int h2c_ack_settings(struct h2c *h2c)
2076{
2077 struct buffer *res;
2078 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002079 int ret = 0;
2080
2081 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002082
2083 if (h2c_mux_busy(h2c, NULL)) {
2084 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002085 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002086 }
2087
Willy Tarreau9c218e72019-05-26 10:08:28 +02002088 memcpy(str,
2089 "\x00\x00\x00" /* length : 0 (no data) */
2090 "\x04" "\x01" /* type : 4, flags : ACK */
2091 "\x00\x00\x00\x00" /* stream ID */, 9);
2092
Willy Tarreaubcc45952019-05-26 10:05:50 +02002093 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002094 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002095 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002096 h2c->flags |= H2_CF_MUX_MALLOC;
2097 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002098 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002099 }
2100
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002101 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002102 if (unlikely(ret <= 0)) {
2103 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002104 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2105 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002106 h2c->flags |= H2_CF_MUX_MFULL;
2107 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002108 }
2109 else {
2110 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002111 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002112 }
2113 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002114 out:
2115 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002116 return ret;
2117}
2118
Willy Tarreaucf68c782017-10-10 17:11:41 +02002119/* processes a PING frame and schedules an ACK if needed. The caller must pass
2120 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002121 * missing data. The caller must have already verified frame length
2122 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002123 */
2124static int h2c_handle_ping(struct h2c *h2c)
2125{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002126 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002127 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002128 h2c->st0 = H2_CS_FRAME_A;
2129 return 1;
2130}
2131
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002132/* Try to send a window update for stream id <sid> and value <increment>.
2133 * Returns > 0 on success or zero on missing room or failure. It may return an
2134 * error in h2c.
2135 */
2136static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2137{
2138 struct buffer *res;
2139 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002140 int ret = 0;
2141
2142 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002143
2144 if (h2c_mux_busy(h2c, NULL)) {
2145 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002146 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002147 }
2148
Willy Tarreau9c218e72019-05-26 10:08:28 +02002149 /* length: 4, type: 8, flags: none */
2150 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2151 write_n32(str + 5, sid);
2152 write_n32(str + 9, increment);
2153
Willy Tarreaubcc45952019-05-26 10:05:50 +02002154 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002155 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002156 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002157 h2c->flags |= H2_CF_MUX_MALLOC;
2158 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002159 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002160 }
2161
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002162 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002163 if (unlikely(ret <= 0)) {
2164 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002165 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2166 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002167 h2c->flags |= H2_CF_MUX_MFULL;
2168 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002169 }
2170 else {
2171 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002172 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002173 }
2174 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002175 out:
2176 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002177 return ret;
2178}
2179
2180/* try to send pending window update for the connection. It's safe to call it
2181 * with no pending updates. Returns > 0 on success or zero on missing room or
2182 * failure. It may return an error in h2c.
2183 */
2184static int h2c_send_conn_wu(struct h2c *h2c)
2185{
2186 int ret = 1;
2187
Willy Tarreau7838a792019-08-12 18:42:03 +02002188 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2189
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002190 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002191 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002192
Willy Tarreau97aaa672018-12-23 09:49:04 +01002193 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2194 /* increase the advertised connection window to 2G on
2195 * first update.
2196 */
2197 h2c->flags |= H2_CF_WINDOW_OPENED;
2198 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2199 }
2200
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002201 /* send WU for the connection */
2202 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2203 if (ret > 0)
2204 h2c->rcvd_c = 0;
2205
Willy Tarreau7838a792019-08-12 18:42:03 +02002206 out:
2207 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002208 return ret;
2209}
2210
2211/* try to send pending window update for the current dmux stream. It's safe to
2212 * call it with no pending updates. Returns > 0 on success or zero on missing
2213 * room or failure. It may return an error in h2c.
2214 */
2215static int h2c_send_strm_wu(struct h2c *h2c)
2216{
2217 int ret = 1;
2218
Willy Tarreau7838a792019-08-12 18:42:03 +02002219 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2220
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002221 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002222 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002223
2224 /* send WU for the stream */
2225 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2226 if (ret > 0)
2227 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002228 out:
2229 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002230 return ret;
2231}
2232
Willy Tarreaucf68c782017-10-10 17:11:41 +02002233/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2234 * success, 0 on missing data or one of the h2_status values.
2235 */
2236static int h2c_ack_ping(struct h2c *h2c)
2237{
2238 struct buffer *res;
2239 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002240 int ret = 0;
2241
2242 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002243
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002244 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002245 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002246
2247 if (h2c_mux_busy(h2c, NULL)) {
2248 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002249 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002250 }
2251
Willy Tarreaucf68c782017-10-10 17:11:41 +02002252 memcpy(str,
2253 "\x00\x00\x08" /* length : 8 (same payload) */
2254 "\x06" "\x01" /* type : 6, flags : ACK */
2255 "\x00\x00\x00\x00" /* stream ID */, 9);
2256
2257 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002258 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002259
Willy Tarreau9c218e72019-05-26 10:08:28 +02002260 res = br_tail(h2c->mbuf);
2261 retry:
2262 if (!h2_get_buf(h2c, res)) {
2263 h2c->flags |= H2_CF_MUX_MALLOC;
2264 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002265 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002266 }
2267
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002268 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002269 if (unlikely(ret <= 0)) {
2270 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002271 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2272 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002273 h2c->flags |= H2_CF_MUX_MFULL;
2274 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002275 }
2276 else {
2277 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002278 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002279 }
2280 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002281 out:
2282 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002283 return ret;
2284}
2285
Willy Tarreau26f95952017-07-27 17:18:30 +02002286/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2287 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002288 * h2c or h2s. The caller must have already verified frame length and stream ID
2289 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002290 */
2291static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2292{
2293 int32_t inc;
2294 int error;
2295
Willy Tarreau7838a792019-08-12 18:42:03 +02002296 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2297
Willy Tarreau26f95952017-07-27 17:18:30 +02002298 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002299 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002300 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002301
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002302 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002303
2304 if (h2c->dsi != 0) {
2305 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002306
2307 /* it's not an error to receive WU on a closed stream */
2308 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002309 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002310
2311 if (!inc) {
2312 error = H2_ERR_PROTOCOL_ERROR;
2313 goto strm_err;
2314 }
2315
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002316 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002317 error = H2_ERR_FLOW_CONTROL_ERROR;
2318 goto strm_err;
2319 }
2320
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002321 h2s->sws += inc;
2322 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002323 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002324 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01002325 if (h2s->send_wait || h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Olivier Houcharddddfe312018-10-10 18:51:00 +02002326 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002327 }
2328 }
2329 else {
2330 /* connection window update */
2331 if (!inc) {
2332 error = H2_ERR_PROTOCOL_ERROR;
2333 goto conn_err;
2334 }
2335
2336 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2337 error = H2_ERR_FLOW_CONTROL_ERROR;
2338 goto conn_err;
2339 }
2340
2341 h2c->mws += inc;
2342 }
2343
Willy Tarreau7838a792019-08-12 18:42:03 +02002344 done:
2345 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002346 return 1;
2347
2348 conn_err:
2349 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002350 out0:
2351 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 +02002352 return 0;
2353
2354 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002355 h2s_error(h2s, error);
2356 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002357 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002358 return 0;
2359}
2360
Willy Tarreaue96b0922017-10-30 00:28:29 +01002361/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002362 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2363 * have already verified frame length and stream ID validity. Described in
2364 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002365 */
2366static int h2c_handle_goaway(struct h2c *h2c)
2367{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002368 int last;
2369
Willy Tarreau7838a792019-08-12 18:42:03 +02002370 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002371 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002372 if (b_data(&h2c->dbuf) < h2c->dfl) {
2373 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002374 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002375 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002376
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002377 last = h2_get_n32(&h2c->dbuf, 0);
2378 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002379 if (h2c->last_sid < 0)
2380 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002381 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002382 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002383 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002384}
2385
Willy Tarreau92153fc2017-12-03 19:46:19 +01002386/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002387 * invalid. Returns > 0 on success or zero on missing data. It may return an
2388 * error in h2c. The caller must have already verified frame length and stream
2389 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002390 */
2391static int h2c_handle_priority(struct h2c *h2c)
2392{
Willy Tarreau7838a792019-08-12 18:42:03 +02002393 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2394
Willy Tarreau92153fc2017-12-03 19:46:19 +01002395 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002396 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002397 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002398 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002399 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002400
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002401 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002402 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01002403 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002404 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002405 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002406 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002407 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002408 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002409}
2410
Willy Tarreaucd234e92017-08-18 10:59:39 +02002411/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002412 * Returns > 0 on success or zero on missing data. The caller must have already
2413 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002414 */
2415static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2416{
Willy Tarreau7838a792019-08-12 18:42:03 +02002417 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2418
Willy Tarreaucd234e92017-08-18 10:59:39 +02002419 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002420 if (b_data(&h2c->dbuf) < h2c->dfl) {
2421 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 +02002422 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002423 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002424
2425 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002426 if (h2s->st == H2_SS_CLOSED) {
2427 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 +02002428 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002429 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002430
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002431 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002432 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002433
2434 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002435 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002436 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002437 }
2438
2439 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002440 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002441 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002442}
2443
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002444/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2445 * It may return an error in h2c or h2s. The caller must consider that the
2446 * return value is the new h2s in case one was allocated (most common case).
2447 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002448 * errors here are reported as connection errors since it's impossible to
2449 * recover from such errors after the compression context has been altered.
2450 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002451static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002452{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002453 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002454 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002455 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002456 int error;
2457
Willy Tarreau7838a792019-08-12 18:42:03 +02002458 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2459
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002460 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002461 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002462
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002463 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002464 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002465
2466 /* now either the frame is complete or the buffer is complete */
2467 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002468 /* The stream exists/existed, this must be a trailers frame */
2469 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002470 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2471 /* unrecoverable error ? */
2472 if (h2c->st0 >= H2_CS_ERROR)
2473 goto out;
2474
2475 if (error == 0)
2476 goto out; // missing data
2477
2478 if (error < 0) {
2479 /* Failed to decode this frame (e.g. too large request)
2480 * but the HPACK decompressor is still synchronized.
2481 */
2482 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2483 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002484 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002485 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002486 goto done;
2487 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002488 /* the connection was already killed by an RST, let's consume
2489 * the data and send another RST.
2490 */
2491 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2492 h2s = (struct h2s*)h2_error_stream;
2493 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002494 }
2495 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2496 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2497 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002498 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002499 goto conn_err;
2500 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002501 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2502 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002503
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002504 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002505
Willy Tarreau25919232019-01-03 14:48:18 +01002506 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002507 if (h2c->st0 >= H2_CS_ERROR)
2508 goto out;
2509
Willy Tarreau25919232019-01-03 14:48:18 +01002510 if (error <= 0) {
2511 if (error == 0)
2512 goto out; // missing data
2513
2514 /* Failed to decode this stream (e.g. too large request)
2515 * but the HPACK decompressor is still synchronized.
2516 */
2517 h2s = (struct h2s*)h2_error_stream;
2518 goto send_rst;
2519 }
2520
Willy Tarreau22de8d32018-09-05 19:55:58 +02002521 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002522 * positively from h2c_frt_stream_new(), the stream will report the error,
2523 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002524 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002525 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002526 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002527 h2s = (struct h2s*)h2_refused_stream;
2528 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002529 }
2530
2531 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002532 h2s->rxbuf = rxbuf;
2533 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002534 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002535
Willy Tarreau88d138e2019-01-02 19:38:14 +01002536 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002537 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002538 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002539
2540 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002541 if (h2s->st == H2_SS_OPEN)
2542 h2s->st = H2_SS_HREM;
2543 else
2544 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002545 }
2546
Willy Tarreau3a429f02019-01-03 11:41:50 +01002547 /* update the max stream ID if the request is being processed */
2548 if (h2s->id > h2c->max_id)
2549 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002550
Willy Tarreau8fecec22019-08-30 07:29:53 +02002551 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 +01002552 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002553
2554 conn_err:
2555 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002556 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002557
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002558 out:
2559 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002560 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 +01002561 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002562
2563 send_rst:
2564 /* make the demux send an RST for the current stream. We may only
2565 * do this if we're certain that the HEADERS frame was properly
2566 * decompressed so that the HPACK decoder is still kept up to date.
2567 */
2568 h2_release_buf(h2c, &rxbuf);
2569 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002570
2571 TRACE_USER("rejected H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn,, &rxbuf);
2572 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002573 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002574}
2575
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002576/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2577 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2578 * errors here are reported as connection errors since it's impossible to
2579 * recover from such errors after the compression context has been altered.
2580 */
2581static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2582{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002583 struct buffer rxbuf = BUF_NULL;
2584 unsigned long long body_len = 0;
2585 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002586 int error;
2587
Willy Tarreau7838a792019-08-12 18:42:03 +02002588 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2589
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002590 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002592
2593 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002594 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002595
Christopher Faulet6884aa32019-09-23 15:28:20 +02002596 if (h2s->st != H2_SS_CLOSED) {
2597 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
2598 }
2599 else {
2600 /* the connection was already killed by an RST, let's consume
2601 * the data and send another RST.
2602 */
2603 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002604 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002605 h2c->st0 = H2_CS_FRAME_E;
2606 goto send_rst;
2607 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002608
Willy Tarreau25919232019-01-03 14:48:18 +01002609 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002610 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002611 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002612
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002613 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2614 /* RFC7540#5.1 */
2615 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2616 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002617 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002618 }
2619
Willy Tarreau25919232019-01-03 14:48:18 +01002620 if (error <= 0) {
2621 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002622 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002623
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002624 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002625 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002626 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002627 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002628 }
2629
Christopher Fauletfa922f02019-05-07 10:55:17 +02002630 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002631 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002632
Willy Tarreau927b88b2019-03-04 08:03:25 +01002633 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002634 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002635 else if (h2s->flags & H2_SF_ES_RCVD) {
2636 if (h2s->st == H2_SS_OPEN)
2637 h2s->st = H2_SS_HREM;
2638 else if (h2s->st == H2_SS_HLOC)
2639 h2s_close(h2s);
2640 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002641
Willy Tarreau8fecec22019-08-30 07:29:53 +02002642 TRACE_USER("rcvd H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn,, &h2s->rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002643 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002644 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002645 fail:
2646 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2647 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002648
2649 send_rst:
2650 /* make the demux send an RST for the current stream. We may only
2651 * do this if we're certain that the HEADERS frame was properly
2652 * decompressed so that the HPACK decoder is still kept up to date.
2653 */
2654 h2_release_buf(h2c, &rxbuf);
2655 h2c->st0 = H2_CS_FRAME_E;
2656
2657 TRACE_USER("rejected H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn,, &rxbuf);
2658 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2659 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002660}
2661
Willy Tarreau454f9052017-10-26 19:40:35 +02002662/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2663 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2664 */
2665static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2666{
2667 int error;
2668
Willy Tarreau7838a792019-08-12 18:42:03 +02002669 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2670
Willy Tarreau454f9052017-10-26 19:40:35 +02002671 /* note that empty DATA frames are perfectly valid and sometimes used
2672 * to signal an end of stream (with the ES flag).
2673 */
2674
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002675 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002676 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002677
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002678 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002679 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002680
2681 /* now either the frame is complete or the buffer is complete */
2682
Willy Tarreau454f9052017-10-26 19:40:35 +02002683 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2684 /* RFC7540#6.1 */
2685 error = H2_ERR_STREAM_CLOSED;
2686 goto strm_err;
2687 }
2688
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002689 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002690 /* RFC7540#8.1.2 */
2691 error = H2_ERR_PROTOCOL_ERROR;
2692 goto strm_err;
2693 }
2694
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002695 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002696 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002697
Willy Tarreau454f9052017-10-26 19:40:35 +02002698 /* call the upper layers to process the frame, then let the upper layer
2699 * notify the stream about any change.
2700 */
2701 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002702 /* The upper layer has already closed, this may happen on
2703 * 4xx/redirects during POST, or when receiving a response
2704 * from an H2 server after the client has aborted.
2705 */
2706 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002707 goto strm_err;
2708 }
2709
Willy Tarreau8f650c32017-11-21 19:36:21 +01002710 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002711 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002712
Willy Tarreau721c9742017-11-07 11:05:42 +01002713 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002714 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002715 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002716 }
2717
2718 /* check for completion : the callee will change this to FRAME_A or
2719 * FRAME_H once done.
2720 */
2721 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002722 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002723
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002724 /* last frame */
2725 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002726 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002727 if (h2s->st == H2_SS_OPEN)
2728 h2s->st = H2_SS_HREM;
2729 else
2730 h2s_close(h2s);
2731
Willy Tarreau1915ca22019-01-24 11:49:37 +01002732 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2733 /* RFC7540#8.1.2 */
2734 error = H2_ERR_PROTOCOL_ERROR;
2735 goto strm_err;
2736 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002737 }
2738
Willy Tarreau7838a792019-08-12 18:42:03 +02002739 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002740 return 1;
2741
Willy Tarreau454f9052017-10-26 19:40:35 +02002742 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002743 h2s_error(h2s, error);
2744 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002745 fail:
2746 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 +02002747 return 0;
2748}
2749
Willy Tarreau63864812019-08-07 14:25:20 +02002750/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2751 * valid for the current stream state. This is needed only after parsing the
2752 * frame header but in practice it can be performed at any time during
2753 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2754 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2755 */
2756static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2757{
Willy Tarreau7838a792019-08-12 18:42:03 +02002758 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2759
Willy Tarreau63864812019-08-07 14:25:20 +02002760 if (h2s->st == H2_SS_IDLE &&
2761 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2762 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2763 * this state MUST be treated as a connection error
2764 */
2765 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002766 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02002767 /* only log if no other stream can report the error */
2768 sess_log(h2c->conn->owner);
2769 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002770 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 +02002771 return 0;
2772 }
2773
Willy Tarreau57a18162019-11-24 14:57:53 +01002774 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
2775 /* only PUSH_PROMISE would be permitted here */
2776 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2777 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
2778 return 0;
2779 }
2780
Willy Tarreau63864812019-08-07 14:25:20 +02002781 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2782 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2783 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2784 * this state MUST be treated as a stream error.
2785 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2786 * PUSH_PROMISE/CONTINUATION cause connection errors.
2787 */
2788 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2789 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2790 else
2791 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002792 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 +02002793 return 0;
2794 }
2795
2796 /* Below the management of frames received in closed state is a
2797 * bit hackish because the spec makes strong differences between
2798 * streams closed by receiving RST, sending RST, and seeing ES
2799 * in both directions. In addition to this, the creation of a
2800 * new stream reusing the identifier of a closed one will be
2801 * detected here. Given that we cannot keep track of all closed
2802 * streams forever, we consider that unknown closed streams were
2803 * closed on RST received, which allows us to respond with an
2804 * RST without breaking the connection (eg: to abort a transfer).
2805 * Some frames have to be silently ignored as well.
2806 */
2807 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2808 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2809 /* #5.1.1: The identifier of a newly
2810 * established stream MUST be numerically
2811 * greater than all streams that the initiating
2812 * endpoint has opened or reserved. This
2813 * governs streams that are opened using a
2814 * HEADERS frame and streams that are reserved
2815 * using PUSH_PROMISE. An endpoint that
2816 * receives an unexpected stream identifier
2817 * MUST respond with a connection error.
2818 */
2819 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002820 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 +02002821 return 0;
2822 }
2823
Willy Tarreau4c08f122019-09-26 08:47:15 +02002824 if (h2s->flags & H2_SF_RST_RCVD &&
2825 !(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 +02002826 /* RFC7540#5.1:closed: an endpoint that
2827 * receives any frame other than PRIORITY after
2828 * receiving a RST_STREAM MUST treat that as a
2829 * stream error of type STREAM_CLOSED.
2830 *
2831 * Note that old streams fall into this category
2832 * and will lead to an RST being sent.
2833 *
2834 * However, we cannot generalize this to all frame types. Those
2835 * carrying compression state must still be processed before
2836 * being dropped or we'll desynchronize the decoder. This can
2837 * happen with request trailers received after sending an
2838 * RST_STREAM, or with header/trailers responses received after
2839 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02002840 *
2841 * In addition, since our CLOSED streams always carry the
2842 * RST_RCVD bit, we don't want to accidently catch valid
2843 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02002844 */
2845 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2846 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002847 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 +02002848 return 0;
2849 }
2850
2851 /* RFC7540#5.1:closed: if this state is reached as a
2852 * result of sending a RST_STREAM frame, the peer that
2853 * receives the RST_STREAM might have already sent
2854 * frames on the stream that cannot be withdrawn. An
2855 * endpoint MUST ignore frames that it receives on
2856 * closed streams after it has sent a RST_STREAM
2857 * frame. An endpoint MAY choose to limit the period
2858 * over which it ignores frames and treat frames that
2859 * arrive after this time as being in error.
2860 */
2861 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
2862 /* RFC7540#5.1:closed: any frame other than
2863 * PRIO/WU/RST in this state MUST be treated as
2864 * a connection error
2865 */
2866 if (h2c->dft != H2_FT_RST_STREAM &&
2867 h2c->dft != H2_FT_PRIORITY &&
2868 h2c->dft != H2_FT_WINDOW_UPDATE) {
2869 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002870 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 +02002871 return 0;
2872 }
2873 }
2874 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002875 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002876 return 1;
2877}
2878
Willy Tarreaubc933932017-10-09 16:21:43 +02002879/* process Rx frames to be demultiplexed */
2880static void h2_process_demux(struct h2c *h2c)
2881{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002882 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002883 struct h2_fh hdr;
2884 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002885 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002886
Willy Tarreau7838a792019-08-12 18:42:03 +02002887 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2888
Willy Tarreau081d4722017-05-16 21:51:05 +02002889 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002890 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02002891
2892 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2893 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002894 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02002895 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02002896 goto out;
2897
Willy Tarreau52eed752017-09-22 15:05:09 +02002898 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2899 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002900 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002901 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002902 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002903 sess_log(h2c->conn->owner);
2904 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002905 goto fail;
2906 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002907 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002908
2909 h2c->max_id = 0;
2910 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002911 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002912 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002913
2914 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002915 /* ensure that what is pending is a valid SETTINGS frame
2916 * without an ACK.
2917 */
Willy Tarreau7838a792019-08-12 18:42:03 +02002918 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 +02002919 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002920 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002921 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002922 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 +02002923 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002924 if (!(h2c->flags & H2_CF_IS_BACK))
2925 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002926 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002927 goto fail;
2928 }
2929
2930 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2931 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002932 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 +02002933 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2934 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002935 if (!(h2c->flags & H2_CF_IS_BACK))
2936 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002937 goto fail;
2938 }
2939
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002940 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002941 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002942 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 +02002943 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2944 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002945 if (!(h2c->flags & H2_CF_IS_BACK))
2946 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002947 goto fail;
2948 }
2949
Willy Tarreau3bf69182018-12-21 15:34:50 +01002950 /* that's OK, switch to FRAME_P to process it. This is
2951 * a SETTINGS frame whose header has already been
2952 * deleted above.
2953 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002954 padlen = 0;
2955 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002956 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002957 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002958
2959 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02002960 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002961 int ret = 0;
2962
Willy Tarreau7838a792019-08-12 18:42:03 +02002963 if (!b_data(&h2c->dbuf)) {
2964 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
2965 break;
2966 }
2967
2968 if (h2c->st0 >= H2_CS_ERROR) {
2969 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002970 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02002971 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002972
2973 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02002974 h2c->rcvd_s = 0;
2975
Willy Tarreau7838a792019-08-12 18:42:03 +02002976 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002977 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002978 break;
2979
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002980 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002981 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 +02002982 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002983 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02002984 /* only log if no other stream can report the error */
2985 sess_log(h2c->conn->owner);
2986 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002987 break;
2988 }
2989
Christopher Fauletdd2a5622019-06-18 12:22:38 +02002990 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002991 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2992 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2993 * we read the pad length and drop it from the remaining
2994 * payload (one byte + the 9 remaining ones = 10 total
2995 * removed), so we have a frame payload starting after the
2996 * pad len. Flow controlled frames (DATA) also count the
2997 * padlen in the flow control, so it must be adjusted.
2998 */
2999 if (hdr.len < 1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003000 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 +01003001 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003002 if (!(h2c->flags & H2_CF_IS_BACK))
3003 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003004 goto fail;
3005 }
3006 hdr.len--;
3007
3008 if (b_data(&h2c->dbuf) < 10)
3009 break; // missing padlen
3010
3011 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3012
3013 if (padlen > hdr.len) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003014 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 +01003015 /* RFC7540#6.1 : pad length = length of
3016 * frame payload or greater => error.
3017 */
3018 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003019 if (!(h2c->flags & H2_CF_IS_BACK))
3020 sess_log(h2c->conn->owner);
Willy Tarreau3bf69182018-12-21 15:34:50 +01003021 goto fail;
3022 }
3023
3024 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3025 h2c->rcvd_c++;
3026 h2c->rcvd_s++;
3027 }
3028 b_del(&h2c->dbuf, 1);
3029 }
3030 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003031
3032 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003033 h2c->dfl = hdr.len;
3034 h2c->dsi = hdr.sid;
3035 h2c->dft = hdr.ft;
3036 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003037 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003038 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 +02003039 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003040
3041 /* check for minimum basic frame format validity */
3042 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3043 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003044 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 +01003045 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003046 if (!(h2c->flags & H2_CF_IS_BACK))
3047 sess_log(h2c->conn->owner);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003048 goto fail;
3049 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003050 }
3051
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003052 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3053 * H2_CS_FRAME_P indicates an incomplete previous operation
3054 * (most often the first attempt) and requires some validity
3055 * checks for the frame and the current state. The two other
3056 * ones are set after completion (or abortion) and must skip
3057 * validity checks.
3058 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003059 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3060
Willy Tarreau567beb82018-12-18 16:52:44 +01003061 if (tmp_h2s != h2s && h2s && h2s->cs &&
3062 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003063 conn_xprt_read0_pending(h2c->conn) ||
3064 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003065 (h2s->flags & H2_SF_ES_RCVD) ||
3066 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003067 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003068 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 +01003069 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003070 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003071 }
3072 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003073
Willy Tarreau63864812019-08-07 14:25:20 +02003074 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003075 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3076 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003077 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003078 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003079
Willy Tarreau7e98c052017-10-10 15:56:59 +02003080 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003081 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003082 if (h2c->st0 == H2_CS_FRAME_P) {
3083 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003084 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003085 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003086
Willy Tarreau7838a792019-08-12 18:42:03 +02003087 if (h2c->st0 == H2_CS_FRAME_A) {
3088 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 +02003089 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003090 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003091 break;
3092
Willy Tarreaucf68c782017-10-10 17:11:41 +02003093 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003094 if (h2c->st0 == H2_CS_FRAME_P) {
3095 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003096 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003097 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003098
Willy Tarreau7838a792019-08-12 18:42:03 +02003099 if (h2c->st0 == H2_CS_FRAME_A) {
3100 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 +02003101 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003102 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003103 break;
3104
Willy Tarreau26f95952017-07-27 17:18:30 +02003105 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003106 if (h2c->st0 == H2_CS_FRAME_P) {
3107 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 +02003108 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003109 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003110 break;
3111
Willy Tarreau61290ec2017-10-17 08:19:21 +02003112 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01003113 /* RFC7540#6.10: CONTINUATION may only be preceeded by
3114 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3115 * frames' parsers consume all following CONTINUATION
3116 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003117 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003118 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 +01003119 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003120 if (!(h2c->flags & H2_CF_IS_BACK))
3121 sess_log(h2c->conn->owner);
Willy Tarreauea18f862018-12-22 20:19:26 +01003122 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003123
Willy Tarreau13278b42017-10-13 19:23:14 +02003124 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003125 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003126 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003127 if (h2c->flags & H2_CF_IS_BACK)
3128 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3129 else
3130 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003131 if (tmp_h2s) {
3132 h2s = tmp_h2s;
3133 ret = 1;
3134 }
3135 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003136 break;
3137
Willy Tarreau454f9052017-10-26 19:40:35 +02003138 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003139 if (h2c->st0 == H2_CS_FRAME_P) {
3140 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003141 ret = h2c_frt_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003142 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003143
Willy Tarreau7838a792019-08-12 18:42:03 +02003144 if (h2c->st0 == H2_CS_FRAME_A) {
3145 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 +02003146 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003147 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003148 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003149
Willy Tarreau92153fc2017-12-03 19:46:19 +01003150 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003151 if (h2c->st0 == H2_CS_FRAME_P) {
3152 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003153 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003154 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003155 break;
3156
Willy Tarreaucd234e92017-08-18 10:59:39 +02003157 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003158 if (h2c->st0 == H2_CS_FRAME_P) {
3159 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 +02003160 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003161 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02003162 break;
3163
Willy Tarreaue96b0922017-10-30 00:28:29 +01003164 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003165 if (h2c->st0 == H2_CS_FRAME_P) {
3166 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003167 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003168 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01003169 break;
3170
Willy Tarreau1c661982017-10-30 13:52:01 +01003171 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003172 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003173 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003174 /* drop frames that we ignore. They may be larger than
3175 * the buffer so we drain all of their contents until
3176 * we reach the end.
3177 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003178 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3179 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003180 h2c->dfl -= ret;
3181 ret = h2c->dfl == 0;
3182 }
3183
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003184 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003185 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003186 if (h2s->st == H2_SS_ERROR) {
3187 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 +01003188 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003189 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003190
Willy Tarreau7838a792019-08-12 18:42:03 +02003191 if (h2c->st0 == H2_CS_FRAME_E) {
3192 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 +01003193 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003194 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003195
Willy Tarreau7e98c052017-10-10 15:56:59 +02003196 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003197 if (ret <= 0) {
3198 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003199 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003200 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003201
3202 if (h2c->st0 != H2_CS_FRAME_H) {
Christopher Faulet5112a602019-09-26 16:38:28 +02003203 TRACE_DEVEL("stream error, skip frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
3204 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3205 b_del(&h2c->dbuf, ret);
3206 h2c->dfl -= ret;
3207 if (!h2c->dfl) {
3208 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3209 h2c->st0 = H2_CS_FRAME_H;
3210 h2c->dsi = -1;
3211 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003212 }
3213 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003214
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003215 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003216 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3217 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003218 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003219 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003220
Willy Tarreau52eed752017-09-22 15:05:09 +02003221 fail:
3222 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01003223 if (h2s && h2s->cs &&
3224 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003225 conn_xprt_read0_pending(h2c->conn) ||
3226 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003227 (h2s->flags & H2_SF_ES_RCVD) ||
3228 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003229 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003230 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 +01003231 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003232 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003233 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003234
Willy Tarreau7838a792019-08-12 18:42:03 +02003235 if (old_iw != h2c->miw) {
3236 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003237 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003238 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003239
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003240 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003241 out:
3242 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreaubc933932017-10-09 16:21:43 +02003243}
3244
Willy Tarreau989539b2020-01-10 17:01:29 +01003245/* resume each h2s eligible for sending in list head <head> */
3246static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3247{
3248 struct h2s *h2s, *h2s_back;
3249
3250 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3251
3252 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3253 if (h2c->mws <= 0 ||
3254 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3255 h2c->st0 >= H2_CS_ERROR)
3256 break;
3257
3258 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003259
Willy Tarreaud9464162020-01-10 18:25:07 +01003260 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003261 continue;
3262
Willy Tarreau5723f292020-01-10 15:16:57 +01003263 /* If the sender changed his mind and unsubscribed, let's just
3264 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003265 */
Willy Tarreau5723f292020-01-10 15:16:57 +01003266 if (!h2s->send_wait &&
3267 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003268 LIST_DEL_INIT(&h2s->list);
3269 continue;
3270 }
3271
Willy Tarreau5723f292020-01-10 15:16:57 +01003272 if (h2s->send_wait) {
3273 h2s->send_wait->events &= ~SUB_RETRY_SEND;
3274 h2s->flags |= H2_SF_NOTIFIED;
3275 tasklet_wakeup(h2s->send_wait->tasklet);
3276 h2s->send_wait = NULL;
3277 }
3278 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3279 tasklet_wakeup(h2s->shut_tl);
3280 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003281 }
3282
3283 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3284}
3285
Willy Tarreaubc933932017-10-09 16:21:43 +02003286/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3287 * the end.
3288 */
3289static int h2_process_mux(struct h2c *h2c)
3290{
Willy Tarreau7838a792019-08-12 18:42:03 +02003291 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3292
Willy Tarreau01b44822018-10-03 14:26:37 +02003293 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3294 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3295 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3296 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003297 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003298 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003299 goto fail;
3300 }
3301 h2c->st0 = H2_CS_SETTINGS1;
3302 }
3303 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003304 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003305 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003306 }
3307
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003308 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003309 if (h2c->rcvd_s > 0 &&
3310 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3311 h2c_send_strm_wu(h2c) < 0)
3312 goto fail;
3313
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003314 if (h2c->rcvd_c > 0 &&
3315 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3316 h2c_send_conn_wu(h2c) < 0)
3317 goto fail;
3318
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003319 /* First we always process the flow control list because the streams
3320 * waiting there were already elected for immediate emission but were
3321 * blocked just on this.
3322 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003323 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3324 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003325
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003326 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003327 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003328 if (h2c->st0 == H2_CS_ERROR) {
3329 if (h2c->max_id >= 0) {
3330 h2c_send_goaway_error(h2c, NULL);
3331 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003332 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003333 }
3334
3335 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3336 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003337 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003338 done:
3339 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3340 return 1;
3341 out0:
3342 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3343 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003344}
3345
Willy Tarreau62f52692017-10-08 23:01:42 +02003346
Willy Tarreau479998a2018-11-18 06:30:59 +01003347/* Attempt to read data, and subscribe if none available.
3348 * The function returns 1 if data has been received, otherwise zero.
3349 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003350static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003351{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003352 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003353 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003354 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003355 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003356
Willy Tarreau7838a792019-08-12 18:42:03 +02003357 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3358
3359 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3360 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003361 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003362 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003363
Willy Tarreau7838a792019-08-12 18:42:03 +02003364 if (!h2_recv_allowed(h2c)) {
3365 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003366 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003367 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003368
Willy Tarreau44e973f2018-03-01 17:49:30 +01003369 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003370 if (!buf) {
3371 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003372 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003373 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003374 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003375
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003376 b_realign_if_empty(buf);
3377 if (!b_data(buf)) {
3378 /* try to pre-align the buffer like the
3379 * rxbufs will be to optimize memory copies. We'll make
3380 * sure that the frame header lands at the end of the
3381 * HTX block to alias it upon recv. We cannot use the
3382 * head because rcv_buf() will realign the buffer if
3383 * it's empty. Thus we cheat and pretend we already
3384 * have a few bytes there.
3385 */
3386 max = buf_room_for_htx_data(buf) + 9;
3387 buf->head = sizeof(struct htx) - 9;
3388 }
3389 else
3390 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003391
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003392 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003393
Willy Tarreau7838a792019-08-12 18:42:03 +02003394 if (max && !ret && h2_recv_allowed(h2c)) {
3395 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003396 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003397 } else if (ret)
3398 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn,,, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003399
Olivier Houcharda1411e62018-08-17 18:42:48 +02003400 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003401 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003402 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003403 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003404 }
3405
Willy Tarreau7838a792019-08-12 18:42:03 +02003406 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003407 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003408 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003409 }
3410
3411 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003412 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003413}
3414
Willy Tarreau479998a2018-11-18 06:30:59 +01003415/* Try to send data if possible.
3416 * The function returns 1 if data have been sent, otherwise zero.
3417 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003418static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003419{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003420 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003421 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003422 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003423
Willy Tarreau7838a792019-08-12 18:42:03 +02003424 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003425
Willy Tarreau7838a792019-08-12 18:42:03 +02003426 if (conn->flags & CO_FL_ERROR) {
3427 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3428 return 1;
3429 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003430
Willy Tarreaua2af5122017-10-09 11:56:46 +02003431 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
3432 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003433 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003434 }
3435
Willy Tarreaubc933932017-10-09 16:21:43 +02003436 /* This loop is quite simple : it tries to fill as much as it can from
3437 * pending streams into the existing buffer until it's reportedly full
3438 * or the end of send requests is reached. Then it tries to send this
3439 * buffer's contents out, marks it not full if at least one byte could
3440 * be sent, and tries again.
3441 *
3442 * The snd_buf() function normally takes a "flags" argument which may
3443 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3444 * data immediately comes and CO_SFL_STREAMER to indicate that the
3445 * connection is streaming lots of data (used to increase TLS record
3446 * size at the expense of latency). The former can be sent any time
3447 * there's a buffer full flag, as it indicates at least one stream
3448 * attempted to send and failed so there are pending data. An
3449 * alternative would be to set it as long as there's an active stream
3450 * but that would be problematic for ACKs until we have an absolute
3451 * guarantee that all waiters have at least one byte to send. The
3452 * latter should possibly not be set for now.
3453 */
3454
3455 done = 0;
3456 while (!done) {
3457 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003458 unsigned int released = 0;
3459 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003460
3461 /* fill as much as we can into the current buffer */
3462 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3463 done = h2_process_mux(h2c);
3464
Olivier Houchard2b094432019-01-29 18:28:36 +01003465 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003466 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003467
Willy Tarreaubc933932017-10-09 16:21:43 +02003468 if (conn->flags & CO_FL_ERROR)
3469 break;
3470
3471 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3472 flags |= CO_SFL_MSG_MORE;
3473
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003474 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3475 if (b_data(buf)) {
3476 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003477 if (!ret) {
3478 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003479 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003480 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003481 sent = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003482 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn,, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003483 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003484 if (b_data(buf)) {
3485 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003486 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003487 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003488 }
3489 b_free(buf);
3490 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003491 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003492
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003493 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003494 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003495
Willy Tarreaubc933932017-10-09 16:21:43 +02003496 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003497 if (sent)
3498 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003499 }
3500
Willy Tarreaua2af5122017-10-09 11:56:46 +02003501 if (conn->flags & CO_FL_SOCK_WR_SH) {
3502 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003503 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003504 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003505 /* We're not full anymore, so we can wake any task that are waiting
3506 * for us.
3507 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003508 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3509 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003510
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003511 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003512 if (!br_data(h2c->mbuf)) {
3513 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003514 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003515 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003516schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003517 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3518 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003519 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003520 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003521
Willy Tarreau7838a792019-08-12 18:42:03 +02003522 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003523 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003524}
3525
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003526/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003527static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
3528{
3529 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003530 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003531
Willy Tarreau7838a792019-08-12 18:42:03 +02003532 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3533
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003534 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003535 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003536 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003537 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003538 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02003539 h2_process(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003540
3541 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003542 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003543}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003544
Willy Tarreau62f52692017-10-08 23:01:42 +02003545/* callback called on any event by the connection handler.
3546 * It applies changes and returns zero, or < 0 if it wants immediate
3547 * destruction of the connection (which normally doesn not happen in h2).
3548 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003549static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003550{
Olivier Houchard7505f942018-08-21 18:10:44 +02003551 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003552
Willy Tarreau7838a792019-08-12 18:42:03 +02003553 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3554
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003555 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003556 h2_process_demux(h2c);
3557
3558 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003559 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003560
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003561 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003562 h2c->flags &= ~H2_CF_DEM_DFULL;
3563 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003564 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003565
Willy Tarreau0b37d652018-10-03 10:33:02 +02003566 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003567 /* frontend is stopping, reload likely in progress, let's try
3568 * to announce a graceful shutdown if not yet done. We don't
3569 * care if it fails, it will be tried again later.
3570 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003571 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003572 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3573 if (h2c->last_sid < 0)
3574 h2c->last_sid = (1U << 31) - 1;
3575 h2c_send_goaway_error(h2c, NULL);
3576 }
3577 }
3578
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003579 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003580 * If we received early data, and the handshake is done, wake
3581 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003582 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003583 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3584 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3585 struct eb32_node *node;
3586 struct h2s *h2s;
3587
3588 h2c->flags |= H2_CF_WAIT_FOR_HS;
3589 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3590
3591 while (node) {
3592 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003593 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003594 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003595 node = eb32_next(node);
3596 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003597 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003598
Willy Tarreau26bd7612017-10-09 16:47:04 +02003599 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003600 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3601 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3602 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003603 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003604
3605 if (eb_is_empty(&h2c->streams_by_id)) {
3606 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003607 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003608 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003609 return -1;
3610 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003611
3612 /* connections in error must be removed from the idle lists */
3613 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3614 MT_LIST_DEL((struct mt_list *)&conn->list);
3615 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3616 }
3617 else if (h2c->st0 == H2_CS_ERROR) {
3618 /* connections in error must be removed from the idle lists */
3619 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3620 MT_LIST_DEL((struct mt_list *)&conn->list);
3621 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003622 }
3623
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003624 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003625 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003626
Olivier Houchard53216e72018-10-10 15:46:36 +02003627 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3628 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3629 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003630 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003631 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3632 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003633 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003634
Willy Tarreau3f133572017-10-31 19:21:06 +01003635 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003636 if (h2c_may_expire(h2c))
3637 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3638 else
3639 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003640 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003641 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003642
Olivier Houchard7505f942018-08-21 18:10:44 +02003643 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003644 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003645 return 0;
3646}
3647
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003648/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003649static int h2_wake(struct connection *conn)
3650{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003651 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003652 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003653
Willy Tarreau7838a792019-08-12 18:42:03 +02003654 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3655 ret = h2_process(h2c);
3656 TRACE_LEAVE(H2_EV_H2C_WAKE);
3657 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003658}
3659
Willy Tarreauea392822017-10-31 10:02:25 +01003660/* Connection timeout management. The principle is that if there's no receipt
3661 * nor sending for a certain amount of time, the connection is closed. If the
3662 * MUX buffer still has lying data or is not allocatable, the connection is
3663 * immediately killed. If it's allocatable and empty, we attempt to send a
3664 * GOAWAY frame.
3665 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003666static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003667{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003668 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003669 int expired = tick_is_expired(t->expire, now_ms);
3670
Willy Tarreau7838a792019-08-12 18:42:03 +02003671 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3672
3673 if (!expired && h2c) {
3674 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreauea392822017-10-31 10:02:25 +01003675 return t;
Willy Tarreau7838a792019-08-12 18:42:03 +02003676 }
Willy Tarreauea392822017-10-31 10:02:25 +01003677
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003678 if (h2c && !h2c_may_expire(h2c)) {
3679 /* we do still have streams but all of them are idle, waiting
3680 * for the data layer, so we must not enforce the timeout here.
3681 */
3682 t->expire = TICK_ETERNITY;
3683 return t;
3684 }
3685
Olivier Houchard3f795f72019-04-17 22:51:06 +02003686 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003687
3688 if (!h2c) {
3689 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003690 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02003691 return NULL;
3692 }
3693
3694 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003695 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003696 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003697
Willy Tarreau662fafc2019-05-26 09:43:07 +02003698 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003699 /* don't even try to send a GOAWAY, the buffer is stuck */
3700 h2c->flags |= H2_CF_GOAWAY_FAILED;
3701 }
3702
3703 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003704 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003705 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3706 h2c->flags |= H2_CF_GOAWAY_FAILED;
3707
Willy Tarreau662fafc2019-05-26 09:43:07 +02003708 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003709 unsigned int released = 0;
3710 struct buffer *buf;
3711
3712 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3713 if (b_data(buf)) {
3714 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3715 if (!ret)
3716 break;
3717 b_del(buf, ret);
3718 if (b_data(buf))
3719 break;
3720 b_free(buf);
3721 released++;
3722 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003723 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003724
3725 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003726 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003727 }
Willy Tarreauea392822017-10-31 10:02:25 +01003728
Willy Tarreau4481e262019-10-31 15:36:30 +01003729 /* in any case this connection must not be considered idle anymore */
3730 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]);
3731 MT_LIST_DEL((struct mt_list *)&h2c->conn->list);
3732 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]);
3733
Willy Tarreau0975f112018-03-29 15:22:59 +02003734 /* either we can release everything now or it will be done later once
3735 * the last stream closes.
3736 */
3737 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003738 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003739
Willy Tarreau7838a792019-08-12 18:42:03 +02003740 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01003741 return NULL;
3742}
3743
3744
Willy Tarreau62f52692017-10-08 23:01:42 +02003745/*******************************************/
3746/* functions below are used by the streams */
3747/*******************************************/
3748
3749/*
3750 * Attach a new stream to a connection
3751 * (Used for outgoing connections)
3752 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003753static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003754{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003755 struct conn_stream *cs;
3756 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003757 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003758
Willy Tarreau7838a792019-08-12 18:42:03 +02003759 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003760 cs = cs_new(conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003761 if (!cs) {
3762 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003763 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003764 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01003765 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003766 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003767 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003768 cs_free(cs);
3769 return NULL;
3770 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003771 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003772 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003773}
3774
Willy Tarreaufafd3982018-11-18 21:29:20 +01003775/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3776 * We have to scan because we may have some orphan streams. It might be
3777 * beneficial to scan backwards from the end to reduce the likeliness to find
3778 * orphans.
3779 */
3780static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3781{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003782 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003783 struct h2s *h2s;
3784 struct eb32_node *node;
3785
3786 node = eb32_first(&h2c->streams_by_id);
3787 while (node) {
3788 h2s = container_of(node, struct h2s, by_id);
3789 if (h2s->cs)
3790 return h2s->cs;
3791 node = eb32_next(node);
3792 }
3793 return NULL;
3794}
3795
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02003796static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
3797{
3798 int ret = 0;
3799 struct h2c *h2c = conn->ctx;
3800
3801 switch (mux_ctl) {
3802 case MUX_STATUS:
3803 /* Only consider the mux to be ready if we're done with
3804 * the preface and settings, and we had no error.
3805 */
3806 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
3807 ret |= MUX_STATUS_READY;
3808 return ret;
3809 default:
3810 return -1;
3811 }
3812}
3813
Willy Tarreau62f52692017-10-08 23:01:42 +02003814/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003815 * Destroy the mux and the associated connection, if it is no longer used
3816 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003817static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003818{
Christopher Faulet73c12072019-04-08 11:23:22 +02003819 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003820
Willy Tarreau7838a792019-08-12 18:42:03 +02003821 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003822 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003823 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003824 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01003825}
3826
3827/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003828 * Detach the stream from the connection and possibly release the connection.
3829 */
3830static void h2_detach(struct conn_stream *cs)
3831{
Willy Tarreau60935142017-10-16 18:11:19 +02003832 struct h2s *h2s = cs->ctx;
3833 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003834 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003835
Willy Tarreau7838a792019-08-12 18:42:03 +02003836 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
3837
Willy Tarreau60935142017-10-16 18:11:19 +02003838 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003839 if (!h2s) {
3840 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02003841 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003842 }
Willy Tarreau60935142017-10-16 18:11:19 +02003843
Willy Tarreaud9464162020-01-10 18:25:07 +01003844 /* there's no txbuf so we're certain not to be able to send anything */
3845 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02003846
Olivier Houchardf502aca2018-12-14 19:42:40 +01003847 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003848 h2c = h2s->h2c;
3849 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003850 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003851 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3852 !h2_frt_has_too_many_cs(h2c)) {
3853 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003854 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003855 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003856 }
Willy Tarreau60935142017-10-16 18:11:19 +02003857
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003858 /* this stream may be blocked waiting for some data to leave (possibly
3859 * an ES or RST frame), so orphan it in this case.
3860 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003861 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003862 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01003863 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
3864 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->send_wait || h2s->recv_wait)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003865 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003866 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003867 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003868
Willy Tarreau45f752e2017-10-30 15:44:59 +01003869 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3870 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3871 /* unblock the connection if it was blocked on this
3872 * stream.
3873 */
3874 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3875 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003876 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003877 }
3878
Willy Tarreau71049cc2018-03-28 13:56:39 +02003879 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003880
Christopher Faulet9b79a102019-07-15 11:22:56 +02003881 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003882 if (!(h2c->conn->flags &
3883 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3884 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003885 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003886 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3887 h2c->conn->owner = NULL;
3888 if (eb_is_empty(&h2c->streams_by_id)) {
3889 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3890 /* The server doesn't want it, let's kill the connection right away */
3891 h2c->conn->mux->destroy(h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003892 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
Olivier Houchard351411f2018-12-27 17:20:54 +01003893 return;
3894 }
3895 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003896 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003897 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletb2d930e2019-09-26 16:15:10 +02003898 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003899 /* 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 +02003900 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003901 return;
Christopher Fauletb2d930e2019-09-26 16:15:10 +02003902 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003903 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003904 /* Never ever allow to reuse a connection from a non-reuse backend */
3905 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3906 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003907 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003908 struct server *srv = objt_server(h2c->conn->target);
3909
3910 if (srv) {
3911 if (h2c->conn->flags & CO_FL_PRIVATE)
3912 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3913 else
3914 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3915 }
3916
3917 }
3918 }
3919 }
3920
Willy Tarreaue323f342018-03-28 13:51:45 +02003921 /* We don't want to close right now unless we're removing the
3922 * last stream, and either the connection is in error, or it
3923 * reached the ID already specified in a GOAWAY frame received
3924 * or sent (as seen by last_sid >= 0).
3925 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003926 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003927 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02003928 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003929 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003930 }
3931 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02003932 if (h2c_may_expire(h2c))
3933 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3934 else
3935 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02003936 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02003937 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02003938 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003939 else
3940 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003941}
3942
Willy Tarreau88bdba32019-05-13 18:17:53 +02003943/* Performs a synchronous or asynchronous shutr(). */
3944static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003945{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003946 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003947
Willy Tarreauf983d002019-05-14 10:40:21 +02003948 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003949 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003950
Willy Tarreau7838a792019-08-12 18:42:03 +02003951 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
3952
Willy Tarreau18059042019-01-31 19:12:48 +01003953 /* a connstream may require us to immediately kill the whole connection
3954 * for example because of a "tcp-request content reject" rule that is
3955 * normally used to limit abuse. In this case we schedule a goaway to
3956 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003957 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003958 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003959 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003960 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01003961 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3962 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3963 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003964 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3965 /* Nothing was never sent for this stream, so reset with
3966 * REFUSED_STREAM error to let the client retry the
3967 * request.
3968 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003969 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01003970 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3971 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003972 else {
3973 /* a final response was already provided, we don't want this
3974 * stream anymore. This may happen when the server responds
3975 * before the end of an upload and closes quickly (redirect,
3976 * deny, ...)
3977 */
3978 h2s_error(h2s, H2_ERR_CANCEL);
3979 }
Willy Tarreau18059042019-01-31 19:12:48 +01003980
Willy Tarreau90c32322017-11-24 08:00:30 +01003981 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003982 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003983 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003984
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003985 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003986 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003987 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003988 done:
3989 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02003990 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003991 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003992add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01003993 /* Let the handler know we want to shutr, and add ourselves to the
3994 * most relevant list if not yet done. h2_deferred_shut() will be
3995 * automatically called via the shut_tl tasklet when there's room
3996 * again.
3997 */
3998 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003999 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004000 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004001 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004002 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004003 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004004 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004005 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004006 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004007}
4008
Willy Tarreau88bdba32019-05-13 18:17:53 +02004009/* Performs a synchronous or asynchronous shutw(). */
4010static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004011{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004012 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004013
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004014 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004015 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004016
Willy Tarreau7838a792019-08-12 18:42:03 +02004017 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4018
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004019 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004020 /* we can cleanly close using an empty data frame only after headers */
4021
4022 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4023 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004024 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004025
4026 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004027 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004028 else
4029 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004030 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004031 /* a connstream may require us to immediately kill the whole connection
4032 * for example because of a "tcp-request content reject" rule that is
4033 * normally used to limit abuse. In this case we schedule a goaway to
4034 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004035 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004036 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004037 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004038 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004039 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4040 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4041 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004042 else {
4043 /* Nothing was never sent for this stream, so reset with
4044 * REFUSED_STREAM error to let the client retry the
4045 * request.
4046 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004047 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004048 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4049 }
Willy Tarreau18059042019-01-31 19:12:48 +01004050
Willy Tarreau90c32322017-11-24 08:00:30 +01004051 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004052 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004053 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004054
Willy Tarreau00dd0782018-03-01 16:31:34 +01004055 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004056 }
4057
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004058 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004059 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004060
4061 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4062
Willy Tarreau88bdba32019-05-13 18:17:53 +02004063 done:
4064 h2s->flags &= ~H2_SF_WANT_SHUTW;
4065 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004066
4067 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004068 /* Let the handler know we want to shutw, and add ourselves to the
4069 * most relevant list if not yet done. h2_deferred_shut() will be
4070 * automatically called via the shut_tl tasklet when there's room
4071 * again.
4072 */
4073 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreauc234ae32019-05-13 17:56:11 +02004074 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004075 if (h2s->flags & H2_SF_BLK_MFCTL)
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004076 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004077 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Olivier Houchardfa8aa862018-10-10 18:25:41 +02004078 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004079 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004080 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004081 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004082}
4083
Willy Tarreau5723f292020-01-10 15:16:57 +01004084/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004085 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4086 * and prevented the last frame from being emitted.
4087 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004088static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
4089{
4090 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004091 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004092
Willy Tarreau7838a792019-08-12 18:42:03 +02004093 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4094
Willy Tarreau5723f292020-01-10 15:16:57 +01004095 if (h2s->flags & H2_SF_NOTIFIED) {
4096 /* some data processing remains to be done first */
4097 goto end;
4098 }
4099
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004100 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004101 h2_do_shutw(h2s);
4102
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004103 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004104 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004105
Willy Tarreau88bdba32019-05-13 18:17:53 +02004106 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004107 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004108 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004109
Willy Tarreau88bdba32019-05-13 18:17:53 +02004110 if (!h2s->cs) {
4111 h2s_destroy(h2s);
4112 if (h2c_is_dead(h2c))
4113 h2_release(h2c);
4114 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004115 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004116 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004117 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004118 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02004119}
4120
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004121/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004122static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4123{
4124 struct h2s *h2s = cs->ctx;
4125
Willy Tarreau7838a792019-08-12 18:42:03 +02004126 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004127 if (cs->flags & CS_FL_KILL_CONN)
4128 h2s->flags |= H2_SF_KILL_CONN;
4129
Willy Tarreau7838a792019-08-12 18:42:03 +02004130 if (mode)
4131 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004132
Willy Tarreau7838a792019-08-12 18:42:03 +02004133 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004134}
4135
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004136/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004137static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4138{
4139 struct h2s *h2s = cs->ctx;
4140
Willy Tarreau7838a792019-08-12 18:42:03 +02004141 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004142 if (cs->flags & CS_FL_KILL_CONN)
4143 h2s->flags |= H2_SF_KILL_CONN;
4144
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004145 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004146 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004147}
4148
Christopher Faulet9b79a102019-07-15 11:22:56 +02004149/* Decode the payload of a HEADERS frame and produce the HTX request or response
4150 * depending on the connection's side. Returns a positive value on success, a
4151 * negative value on failure, or 0 if it couldn't proceed. May report connection
4152 * errors in h2c->errcode if the frame is non-decodable and the connection
4153 * unrecoverable. In absence of connection error when a failure is reported, the
4154 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004155 *
4156 * The function may fold CONTINUATION frames into the initial HEADERS frame
4157 * by removing padding and next frame header, then moving the CONTINUATION
4158 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4159 * leaving a hole between the main frame and the beginning of the next one.
4160 * The possibly remaining incomplete or next frame at the end may be moved
4161 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4162 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4163 *
4164 * A buffer at the beginning of processing may look like this :
4165 *
4166 * ,---.---------.-----.--------------.--------------.------.---.
4167 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4168 * `---^---------^-----^--------------^--------------^------^---'
4169 * | | <-----> | |
4170 * area | dpl | wrap
4171 * |<--------------> |
4172 * | dfl |
4173 * |<-------------------------------------------------->|
4174 * head data
4175 *
4176 * Padding is automatically overwritten when folding, participating to the
4177 * hole size after dfl :
4178 *
4179 * ,---.------------------------.-----.--------------.------.---.
4180 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4181 * `---^------------------------^-----^--------------^------^---'
4182 * | | <-----> | |
4183 * area | hole | wrap
4184 * |<-----------------------> |
4185 * | dfl |
4186 * |<-------------------------------------------------->|
4187 * head data
4188 *
4189 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4190 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4191 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004192 *
4193 * The <flags> field must point to either the stream's flags or to a copy of it
4194 * so that the function can update the following flags :
4195 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004196 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004197 *
4198 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4199 * decoding, in order to detect if we're dealing with a headers or a trailers
4200 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004201 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01004202static 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 +02004203{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004204 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004205 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004206 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004207 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004208 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004209 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004210 int flen; // header frame len
4211 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004212 int ret = 0;
4213 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004214 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004215
Willy Tarreau7838a792019-08-12 18:42:03 +02004216 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4217
Willy Tarreauea18f862018-12-22 20:19:26 +01004218next_frame:
4219 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4220 goto leave; // incomplete input frame
4221
4222 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4223 * this case, we'll try to paste it immediately after the initial
4224 * HEADERS frame payload and kill any possible padding. The initial
4225 * frame's length will be increased to represent the concatenation
4226 * of the two frames. The next frame is read from position <tlen>
4227 * and written at position <flen> (minus padding if some is present).
4228 */
4229 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4230 struct h2_fh hdr;
4231 int clen; // CONTINUATION frame's payload length
4232
Willy Tarreau7838a792019-08-12 18:42:03 +02004233 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 +01004234 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4235 /* no more data, the buffer may be full, either due to
4236 * too large a frame or because of too large a hole that
4237 * we're going to compact at the end.
4238 */
4239 goto leave;
4240 }
4241
4242 if (hdr.ft != H2_FT_CONTINUATION) {
4243 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004244 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 +01004245 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4246 goto fail;
4247 }
4248
4249 if (hdr.sid != h2c->dsi) {
4250 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004251 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 +01004252 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4253 goto fail;
4254 }
4255
4256 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4257 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004258 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 +01004259 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4260 goto fail;
4261 }
4262
4263 /* detect when we must stop aggragating frames */
4264 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4265
4266 /* Take as much as we can of the CONTINUATION frame's payload */
4267 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4268 if (clen > hdr.len)
4269 clen = hdr.len;
4270
4271 /* Move the frame's payload over the padding, hole and frame
4272 * header. At least one of hole or dpl is null (see diagrams
4273 * above). The hole moves after the new aggragated frame.
4274 */
4275 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4276 h2c->dfl += clen - h2c->dpl;
4277 hole += h2c->dpl + 9;
4278 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004279 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 +01004280 goto next_frame;
4281 }
4282
4283 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004284
Willy Tarreau13278b42017-10-13 19:23:14 +02004285 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004286 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004287 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004288 copy = alloc_trash_chunk();
4289 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004290 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 +02004291 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4292 goto fail;
4293 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004294 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4295 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4296 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004297 }
4298
Willy Tarreau13278b42017-10-13 19:23:14 +02004299 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4300 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004301 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004302 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004303 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 +01004304 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004305 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004306 }
4307
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004308 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004309 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 +01004310 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4311 goto fail;
4312 }
4313
Willy Tarreau13278b42017-10-13 19:23:14 +02004314 hdrs += 5; // stream dep = 4, weight = 1
4315 flen -= 5;
4316 }
4317
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004318 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004319 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 +01004320 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004321 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004322 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004323
Willy Tarreau937f7602018-02-26 15:22:17 +01004324 /* we can't retry a failed decompression operation so we must be very
4325 * careful not to take any risks. In practice the output buffer is
4326 * always empty except maybe for trailers, in which case we simply have
4327 * to wait for the upper layer to finish consuming what is available.
4328 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004329 htx = htx_from_buf(rxbuf);
4330 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004331 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 +02004332 h2c->flags |= H2_CF_DEM_SFULL;
4333 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004334 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004335
Willy Tarreau25919232019-01-03 14:48:18 +01004336 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004337 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4338 sizeof(list)/sizeof(list[0]), tmp);
4339 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004340 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 +01004341 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4342 goto fail;
4343 }
4344
Willy Tarreau25919232019-01-03 14:48:18 +01004345 /* The PACK decompressor was updated, let's update the input buffer and
4346 * the parser's state to commit these changes and allow us to later
4347 * fail solely on the stream if needed.
4348 */
4349 b_del(&h2c->dbuf, h2c->dfl + hole);
4350 h2c->dfl = hole = 0;
4351 h2c->st0 = H2_CS_FRAME_H;
4352
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004353 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004354 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004355
Willy Tarreau88d138e2019-01-02 19:38:14 +01004356 if (*flags & H2_SF_HEADERS_RCVD)
4357 goto trailers;
4358
4359 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004360 if (h2c->flags & H2_CF_IS_BACK)
4361 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
4362 else
4363 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004364
4365 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004366 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004367 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 +01004368 goto fail;
4369 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004370
Willy Tarreau174b06a2018-04-25 18:13:58 +02004371 if (msgf & H2_MSGF_BODY) {
4372 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004373 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004374 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004375 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004376 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004377 }
4378
Willy Tarreau88d138e2019-01-02 19:38:14 +01004379 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004380 /* indicate that a HEADERS frame was received for this stream, except
4381 * for 1xx responses. For 1xx responses, another HEADERS frame is
4382 * expected.
4383 */
4384 if (!(msgf & H2_MSGF_RSP_1XX))
4385 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004386
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02004387 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004388 /* Mark the end of message using EOM */
Willy Tarreau7838a792019-08-12 18:42:03 +02004389 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4390 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 +02004391 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004392 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004393 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004394
Willy Tarreau86277d42019-01-02 15:36:11 +01004395 /* success */
4396 ret = 1;
4397
Willy Tarreau68dd9852017-07-03 14:44:26 +02004398 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004399 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004400 * move the remaining data over it.
4401 */
4402 if (hole) {
4403 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4404 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4405 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4406 b_sub(&h2c->dbuf, hole);
4407 }
4408
Willy Tarreau97215ca2019-04-29 10:20:21 +02004409 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004410 /* too large frames */
4411 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004412 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004413 }
4414
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004415 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004416 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004417 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004418 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004419 return ret;
4420
Willy Tarreau68dd9852017-07-03 14:44:26 +02004421 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004422 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004423 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004424
4425 trailers:
4426 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004427 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4428 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004429 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 +01004430 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4431 goto fail;
4432 }
4433
Christopher Faulet9b79a102019-07-15 11:22:56 +02004434 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004435 if (h2_make_htx_trailers(list, htx) <= 0) {
4436 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 +02004437 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004438 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004439 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004440}
4441
Christopher Faulet9b79a102019-07-15 11:22:56 +02004442/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004443 * parser state is automatically updated. Returns > 0 if it could completely
4444 * send the current frame, 0 if it couldn't complete, in which case
4445 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4446 * DATA frame can return 0 as a valid result). Stream errors are reported in
4447 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4448 * have checked the frame header and ensured that the frame was complete or the
4449 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004450 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004451static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004452{
4453 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004454 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004455 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004456 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004457 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004458 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004459
Willy Tarreau7838a792019-08-12 18:42:03 +02004460 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4461
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004462 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004463
Olivier Houchard638b7992018-08-16 15:41:52 +02004464 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004465 if (!csbuf) {
4466 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004467 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 +01004468 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004469 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004470 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004471
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004472try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004473 flen = h2c->dfl - h2c->dpl;
4474 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004475 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004476
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004477 if (flen > b_data(&h2c->dbuf)) {
4478 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004479 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004480 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004481 }
4482
Christopher Faulet9b79a102019-07-15 11:22:56 +02004483 block = htx_free_data_space(htx);
4484 if (!block) {
4485 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004486 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 +02004487 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004488 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004489 if (flen > block)
4490 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004491
Christopher Faulet9b79a102019-07-15 11:22:56 +02004492 /* here, flen is the max we can copy into the output buffer */
4493 block = b_contig_data(&h2c->dbuf, 0);
4494 if (flen > block)
4495 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004496
Christopher Faulet9b79a102019-07-15 11:22:56 +02004497 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau7838a792019-08-12 18:42:03 +02004498 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 +02004499
Christopher Faulet9b79a102019-07-15 11:22:56 +02004500 b_del(&h2c->dbuf, sent);
4501 h2c->dfl -= sent;
4502 h2c->rcvd_c += sent;
4503 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004504
Christopher Faulet9b79a102019-07-15 11:22:56 +02004505 if (h2s->flags & H2_SF_DATA_CLEN) {
4506 h2s->body_len -= sent;
4507 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004508 }
4509
Christopher Faulet9b79a102019-07-15 11:22:56 +02004510 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004511 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004512 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 +01004513 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004514 }
4515
Christopher Faulet9b79a102019-07-15 11:22:56 +02004516 goto try_again;
4517
Willy Tarreau4a28da12018-01-04 14:41:00 +01004518 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004519 /* here we're done with the frame, all the payload (except padding) was
4520 * transferred.
4521 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004522
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004523 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004524 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004525 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 +02004526 h2c->flags |= H2_CF_DEM_SFULL;
4527 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004528 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004529 }
4530
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004531 h2c->rcvd_c += h2c->dpl;
4532 h2c->rcvd_s += h2c->dpl;
4533 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004534 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004535 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004536 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004537 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004538 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004539 if (htx)
4540 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004541 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004542 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004543}
4544
Willy Tarreau115e83b2018-12-01 19:17:53 +01004545/* Try to send a HEADERS frame matching HTX response present in HTX message
4546 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4547 * must check the stream's status to detect any error which might have happened
4548 * subsequently to a successful send. The htx blocks are automatically removed
4549 * from the message. The htx message is assumed to be valid since produced from
4550 * the internal code, hence it contains a start line, an optional series of
4551 * header blocks and an end of header, otherwise an invalid frame could be
4552 * emitted and the resulting htx message could be left in an inconsistent state.
4553 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004554static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004555{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004556 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004557 struct h2c *h2c = h2s->h2c;
4558 struct htx_blk *blk;
4559 struct htx_blk *blk_end;
4560 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004561 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004562 struct htx_sl *sl;
4563 enum htx_blk_type type;
4564 int es_now = 0;
4565 int ret = 0;
4566 int hdr;
4567 int idx;
4568
Willy Tarreau7838a792019-08-12 18:42:03 +02004569 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4570
Willy Tarreau115e83b2018-12-01 19:17:53 +01004571 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004572 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004573 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004574 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004575 return 0;
4576 }
4577
Willy Tarreau115e83b2018-12-01 19:17:53 +01004578 /* determine the first block which must not be deleted, blk_end may
4579 * be NULL if all blocks have to be deleted.
4580 */
4581 idx = htx_get_head(htx);
4582 blk_end = NULL;
4583 while (idx != -1) {
4584 type = htx_get_blk_type(htx_get_blk(htx, idx));
4585 idx = htx_get_next(htx, idx);
4586 if (type == HTX_BLK_EOH) {
4587 if (idx != -1)
4588 blk_end = htx_get_blk(htx, idx);
4589 break;
4590 }
4591 }
4592
4593 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004594 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004595 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004596 ALREADY_CHECKED(blk);
4597 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004598 h2s->status = sl->info.res.status;
Willy Tarreau7838a792019-08-12 18:42:03 +02004599 if (h2s->status < 100 || h2s->status > 999) {
4600 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 +01004601 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004602 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004603
4604 /* and the rest of the headers, that we dump starting at header 0 */
4605 hdr = 0;
4606
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004607 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004608 while ((idx = htx_get_next(htx, idx)) != -1) {
4609 blk = htx_get_blk(htx, idx);
4610 type = htx_get_blk_type(blk);
4611
4612 if (type == HTX_BLK_UNUSED)
4613 continue;
4614
4615 if (type != HTX_BLK_HDR)
4616 break;
4617
Willy Tarreau7838a792019-08-12 18:42:03 +02004618 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4619 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 +01004620 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004621 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004622
4623 list[hdr].n = htx_get_blk_name(htx, blk);
4624 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004625 hdr++;
4626 }
4627
4628 /* marker for end of headers */
4629 list[hdr].n = ist("");
4630
4631 if (h2s->status == 204 || h2s->status == 304) {
4632 /* no contents, claim c-len is present and set to zero */
4633 es_now = 1;
4634 }
4635
Willy Tarreau9c218e72019-05-26 10:08:28 +02004636 mbuf = br_tail(h2c->mbuf);
4637 retry:
4638 if (!h2_get_buf(h2c, mbuf)) {
4639 h2c->flags |= H2_CF_MUX_MALLOC;
4640 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004641 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 +02004642 return 0;
4643 }
4644
Willy Tarreau115e83b2018-12-01 19:17:53 +01004645 chunk_reset(&outbuf);
4646
4647 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004648 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4649 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004650 break;
4651 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004652 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004653 }
4654
4655 if (outbuf.size < 9)
4656 goto full;
4657
4658 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4659 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4660 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4661 outbuf.data = 9;
4662
4663 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004664 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004665 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004666 goto realign_again;
4667 goto full;
4668 }
4669
4670 /* encode all headers, stop at empty name */
4671 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4672 /* these ones do not exist in H2 and must be dropped. */
4673 if (isteq(list[hdr].n, ist("connection")) ||
4674 isteq(list[hdr].n, ist("proxy-connection")) ||
4675 isteq(list[hdr].n, ist("keep-alive")) ||
4676 isteq(list[hdr].n, ist("upgrade")) ||
4677 isteq(list[hdr].n, ist("transfer-encoding")))
4678 continue;
4679
Christopher Faulet86d144c2019-08-14 16:32:25 +02004680 /* Skip all pseudo-headers */
4681 if (*(list[hdr].n.ptr) == ':')
4682 continue;
4683
Willy Tarreau115e83b2018-12-01 19:17:53 +01004684 if (isteq(list[hdr].n, ist("")))
4685 break; // end
4686
4687 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4688 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004689 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004690 goto realign_again;
4691 goto full;
4692 }
4693 }
4694
Willy Tarreaucb985a42019-10-07 16:56:34 +02004695 /* update the frame's size */
4696 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4697
4698 if (outbuf.data > h2c->mfs + 9) {
4699 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
4700 /* output full */
4701 if (b_space_wraps(mbuf))
4702 goto realign_again;
4703 goto full;
4704 }
4705 }
4706
Christopher Faulet0b465482019-02-19 15:14:23 +01004707 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004708 * FIXME: we should also set it when we know for sure that the
4709 * content-length is zero as well as on 204/304
4710 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004711 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4712 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004713 es_now = 1;
4714
Willy Tarreau927b88b2019-03-04 08:03:25 +01004715 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004716 es_now = 1;
4717
Willy Tarreau115e83b2018-12-01 19:17:53 +01004718 if (es_now)
4719 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4720
4721 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004722 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004723 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004724
4725 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4726 * 1xx responses, another HEADERS frame is expected.
4727 */
4728 if (h2s->status >= 200 || h2s->status == 101)
4729 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004730
Willy Tarreau115e83b2018-12-01 19:17:53 +01004731 if (es_now) {
4732 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02004733 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 +01004734 if (h2s->st == H2_SS_OPEN)
4735 h2s->st = H2_SS_HLOC;
4736 else
4737 h2s_close(h2s);
4738 }
4739
4740 /* OK we could properly deliver the response */
4741
4742 /* remove all header blocks including the EOH and compute the
4743 * corresponding size.
4744 *
4745 * FIXME: We should remove everything when es_now is set.
4746 */
4747 ret = 0;
4748 idx = htx_get_head(htx);
4749 blk = htx_get_blk(htx, idx);
4750 while (blk != blk_end) {
4751 ret += htx_get_blksz(blk);
4752 blk = htx_remove_blk(htx, blk);
4753 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004754
Christopher Faulet316934d2019-05-15 14:22:48 +02004755 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4756 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004757 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004758 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004759 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004760 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004761 return ret;
4762 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004763 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4764 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004765 h2c->flags |= H2_CF_MUX_MFULL;
4766 h2s->flags |= H2_SF_BLK_MROOM;
4767 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004768 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 +01004769 goto end;
4770 fail:
4771 /* unparsable HTX messages, too large ones to be produced in the local
4772 * list etc go here (unrecoverable errors).
4773 */
4774 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4775 ret = 0;
4776 goto end;
4777}
4778
Willy Tarreau80739692018-10-05 11:35:57 +02004779/* Try to send a HEADERS frame matching HTX request present in HTX message
4780 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4781 * must check the stream's status to detect any error which might have happened
4782 * subsequently to a successful send. The htx blocks are automatically removed
4783 * from the message. The htx message is assumed to be valid since produced from
4784 * the internal code, hence it contains a start line, an optional series of
4785 * header blocks and an end of header, otherwise an invalid frame could be
4786 * emitted and the resulting htx message could be left in an inconsistent state.
4787 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004788static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02004789{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004790 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004791 struct h2c *h2c = h2s->h2c;
4792 struct htx_blk *blk;
4793 struct htx_blk *blk_end;
4794 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004795 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004796 struct htx_sl *sl;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004797 struct ist meth, uri, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004798 enum htx_blk_type type;
4799 int es_now = 0;
4800 int ret = 0;
4801 int hdr;
4802 int idx;
4803
Willy Tarreau7838a792019-08-12 18:42:03 +02004804 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4805
Willy Tarreau80739692018-10-05 11:35:57 +02004806 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004807 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004808 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004809 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004810 return 0;
4811 }
4812
Willy Tarreau80739692018-10-05 11:35:57 +02004813 /* determine the first block which must not be deleted, blk_end may
4814 * be NULL if all blocks have to be deleted.
4815 */
4816 idx = htx_get_head(htx);
4817 blk_end = NULL;
4818 while (idx != -1) {
4819 type = htx_get_blk_type(htx_get_blk(htx, idx));
4820 idx = htx_get_next(htx, idx);
4821 if (type == HTX_BLK_EOH) {
4822 if (idx != -1)
4823 blk_end = htx_get_blk(htx, idx);
4824 break;
4825 }
4826 }
4827
4828 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004829 blk = htx_get_head_blk(htx);
Christopher Fauletea009732019-11-18 15:50:25 +01004830 BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004831 ALREADY_CHECKED(blk);
4832 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004833 meth = htx_sl_req_meth(sl);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004834 uri = htx_sl_req_uri(sl);
4835 if (unlikely(uri.len == 0)) {
4836 TRACE_PROTO("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
4837 goto fail;
4838 }
Willy Tarreau80739692018-10-05 11:35:57 +02004839
4840 /* and the rest of the headers, that we dump starting at header 0 */
4841 hdr = 0;
4842
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004843 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004844 while ((idx = htx_get_next(htx, idx)) != -1) {
4845 blk = htx_get_blk(htx, idx);
4846 type = htx_get_blk_type(blk);
4847
4848 if (type == HTX_BLK_UNUSED)
4849 continue;
4850
4851 if (type != HTX_BLK_HDR)
4852 break;
4853
Willy Tarreau7838a792019-08-12 18:42:03 +02004854 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4855 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 +02004856 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004857 }
Willy Tarreau80739692018-10-05 11:35:57 +02004858
4859 list[hdr].n = htx_get_blk_name(htx, blk);
4860 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02004861
4862 /* Skip header if same name is used to add the server name */
4863 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
4864 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
4865 continue;
4866
Willy Tarreau80739692018-10-05 11:35:57 +02004867 hdr++;
4868 }
4869
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02004870 /* Now add the server name to a header (if requested) */
4871 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
4872 struct server *srv = objt_server(h2c->conn->target);
4873
4874 if (srv) {
4875 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
4876 list[hdr].v = ist(srv->id);
4877 hdr++;
4878 }
4879 }
4880
Willy Tarreau80739692018-10-05 11:35:57 +02004881 /* marker for end of headers */
4882 list[hdr].n = ist("");
4883
Willy Tarreau9c218e72019-05-26 10:08:28 +02004884 mbuf = br_tail(h2c->mbuf);
4885 retry:
4886 if (!h2_get_buf(h2c, mbuf)) {
4887 h2c->flags |= H2_CF_MUX_MALLOC;
4888 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004889 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 +02004890 return 0;
4891 }
4892
Willy Tarreau80739692018-10-05 11:35:57 +02004893 chunk_reset(&outbuf);
4894
4895 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004896 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4897 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004898 break;
4899 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004900 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004901 }
4902
4903 if (outbuf.size < 9)
4904 goto full;
4905
4906 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4907 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4908 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4909 outbuf.data = 9;
4910
4911 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004912 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004913 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004914 goto realign_again;
4915 goto full;
4916 }
4917
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004918 auth = ist(NULL);
4919
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004920 /* RFC7540 #8.3: the CONNECT method must have :
4921 * - :authority set to the URI part (host:port)
4922 * - :method set to CONNECT
4923 * - :scheme and :path omitted
4924 */
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004925 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT)) {
4926 auth = uri;
4927
4928 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4929 /* output full */
4930 if (b_space_wraps(mbuf))
4931 goto realign_again;
4932 goto full;
4933 }
4934 } else {
4935 /* other methods need a :scheme. If an authority is known from
4936 * the request line, it must be sent, otherwise only host is
4937 * sent. Host is never sent as the authority.
4938 */
4939 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02004940
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004941 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
4942 /* the URI seems to start with a scheme */
4943 int len = 1;
4944
4945 while (len < uri.len && uri.ptr[len] != ':')
4946 len++;
4947
4948 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
4949 /* make the uri start at the authority now */
4950 scheme.ptr = uri.ptr;
4951 scheme.len = len,
4952 uri.ptr += len + 3;
4953 uri.len -= len + 3;
4954
4955 /* find the auth part of the URI */
4956 auth.ptr = uri.ptr;
4957 auth.len = 0;
4958 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
4959 auth.len++;
4960
4961 uri.ptr += auth.len;
4962 uri.len -= auth.len;
4963 }
4964 }
4965
4966 if (!scheme.len) {
4967 /* no explicit scheme, we're using an origin-form URI,
4968 * probably from an H1 request transcoded to H2 via an
4969 * external layer, then received as H2 without authority.
4970 * So we have to look up the scheme from the HTX flags.
4971 * In such a case only http and https are possible, and
4972 * https is the default (sent by browsers).
4973 */
4974 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4975 scheme = ist("http");
4976 else
4977 scheme = ist("https");
4978 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02004979
4980 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004981 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004982 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004983 goto realign_again;
4984 goto full;
4985 }
Willy Tarreau80739692018-10-05 11:35:57 +02004986
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004987 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004988 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004989 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004990 goto realign_again;
4991 goto full;
4992 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004993
Willy Tarreaub8ce8902019-10-08 18:16:18 +02004994 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
4995 * be sent as '/' or '*'.
4996 */
4997 if (unlikely(!uri.len)) {
4998 if (sl->info.req.meth == HTTP_METH_OPTIONS)
4999 uri = ist("*");
5000 else
5001 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005002 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005003
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005004 if (!hpack_encode_path(&outbuf, uri)) {
5005 /* output full */
5006 if (b_space_wraps(mbuf))
5007 goto realign_again;
5008 goto full;
5009 }
Willy Tarreau80739692018-10-05 11:35:57 +02005010 }
5011
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005012 /* encode all headers, stop at empty name. Host is only sent if we
5013 * do not provide an authority.
5014 */
Willy Tarreau80739692018-10-05 11:35:57 +02005015 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5016 /* these ones do not exist in H2 and must be dropped. */
5017 if (isteq(list[hdr].n, ist("connection")) ||
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005018 (auth.len && isteq(list[hdr].n, ist("host"))) ||
Willy Tarreau80739692018-10-05 11:35:57 +02005019 isteq(list[hdr].n, ist("proxy-connection")) ||
5020 isteq(list[hdr].n, ist("keep-alive")) ||
5021 isteq(list[hdr].n, ist("upgrade")) ||
5022 isteq(list[hdr].n, ist("transfer-encoding")))
5023 continue;
5024
Christopher Faulet86d144c2019-08-14 16:32:25 +02005025 /* Skip all pseudo-headers */
5026 if (*(list[hdr].n.ptr) == ':')
5027 continue;
5028
Willy Tarreau80739692018-10-05 11:35:57 +02005029 if (isteq(list[hdr].n, ist("")))
5030 break; // end
5031
5032 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5033 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005034 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005035 goto realign_again;
5036 goto full;
5037 }
5038 }
5039
Willy Tarreaucb985a42019-10-07 16:56:34 +02005040 /* update the frame's size */
5041 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5042
5043 if (outbuf.data > h2c->mfs + 9) {
5044 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5045 /* output full */
5046 if (b_space_wraps(mbuf))
5047 goto realign_again;
5048 goto full;
5049 }
5050 }
5051
Willy Tarreau80739692018-10-05 11:35:57 +02005052 /* we may need to add END_STREAM if we have no body :
5053 * - request already closed, or :
5054 * - no transfer-encoding, and :
5055 * - no content-length or content-length:0
5056 * Fixme: this doesn't take into account CONNECT requests.
5057 */
5058 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
5059 es_now = 1;
5060
5061 if (sl->flags & HTX_SL_F_BODYLESS)
5062 es_now = 1;
5063
Willy Tarreau927b88b2019-03-04 08:03:25 +01005064 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02005065 es_now = 1;
5066
Willy Tarreau80739692018-10-05 11:35:57 +02005067 if (es_now)
5068 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5069
5070 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005071 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005072 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005073 h2s->flags |= H2_SF_HEADERS_SENT;
5074 h2s->st = H2_SS_OPEN;
5075
Willy Tarreau80739692018-10-05 11:35:57 +02005076 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005077 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 +02005078 // trim any possibly pending data (eg: inconsistent content-length)
5079 h2s->flags |= H2_SF_ES_SENT;
5080 h2s->st = H2_SS_HLOC;
5081 }
5082
5083 /* remove all header blocks including the EOH and compute the
5084 * corresponding size.
5085 *
5086 * FIXME: We should remove everything when es_now is set.
5087 */
5088 ret = 0;
5089 idx = htx_get_head(htx);
5090 blk = htx_get_blk(htx, idx);
5091 while (blk != blk_end) {
5092 ret += htx_get_blksz(blk);
5093 blk = htx_remove_blk(htx, blk);
5094 }
5095
Christopher Faulet316934d2019-05-15 14:22:48 +02005096 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5097 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02005098 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02005099 }
Willy Tarreau80739692018-10-05 11:35:57 +02005100
5101 end:
5102 return ret;
5103 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005104 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5105 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005106 h2c->flags |= H2_CF_MUX_MFULL;
5107 h2s->flags |= H2_SF_BLK_MROOM;
5108 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005109 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 +02005110 goto end;
5111 fail:
5112 /* unparsable HTX messages, too large ones to be produced in the local
5113 * list etc go here (unrecoverable errors).
5114 */
5115 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5116 ret = 0;
5117 goto end;
5118}
5119
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005120/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005121 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5122 * caller must check the stream's status to detect any error which might have
5123 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02005124 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005125 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005126static size_t h2s_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005127{
5128 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005129 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005130 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005131 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005132 size_t total = 0;
5133 int es_now = 0;
5134 int bsize; /* htx block size */
5135 int fsize; /* h2 frame size */
5136 struct htx_blk *blk;
5137 enum htx_blk_type type;
5138 int idx;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005139 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005140
Willy Tarreau7838a792019-08-12 18:42:03 +02005141 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5142
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005143 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005144 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005145 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005146 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005147 goto end;
5148 }
5149
Willy Tarreau98de12a2018-12-12 07:03:00 +01005150 htx = htx_from_buf(buf);
5151
Christopher Faulet54b5e212019-06-04 10:08:28 +02005152 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
5153 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
5154 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005155 */
5156
5157 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005158 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005159 goto end;
5160
5161 idx = htx_get_head(htx);
5162 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02005163 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005164 bsize = htx_get_blksz(blk);
5165 fsize = bsize;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005166 trunc_out = 0;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005167
Christopher Faulet54b5e212019-06-04 10:08:28 +02005168 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01005169 if (h2s->flags & H2_SF_ES_SENT) {
5170 /* ES already sent */
5171 htx_remove_blk(htx, blk);
5172 total++; // EOM counts as one byte
5173 count--;
5174 goto end;
5175 }
5176 }
5177 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005178 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005179
Willy Tarreau9c218e72019-05-26 10:08:28 +02005180 mbuf = br_tail(h2c->mbuf);
5181 retry:
5182 if (!h2_get_buf(h2c, mbuf)) {
5183 h2c->flags |= H2_CF_MUX_MALLOC;
5184 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005185 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 +02005186 goto end;
5187 }
5188
Willy Tarreau98de12a2018-12-12 07:03:00 +01005189 /* Perform some optimizations to reduce the number of buffer copies.
5190 * First, if the mux's buffer is empty and the htx area contains
5191 * exactly one data block of the same size as the requested count, and
5192 * this count fits within the frame size, the stream's window size, and
5193 * the connection's window size, then it's possible to simply swap the
5194 * caller's buffer with the mux's output buffer and adjust offsets and
5195 * length to match the entire DATA HTX block in the middle. In this
5196 * case we perform a true zero-copy operation from end-to-end. This is
5197 * the situation that happens all the time with large files. Second, if
5198 * this is not possible, but the mux's output buffer is empty, we still
5199 * have an opportunity to avoid the copy to the intermediary buffer, by
5200 * making the intermediary buffer's area point to the output buffer's
5201 * area. In this case we want to skip the HTX header to make sure that
5202 * copies remain aligned and that this operation remains possible all
5203 * the time. This goes for headers, data blocks and any data extracted
5204 * from the HTX blocks.
5205 */
5206 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005207 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005208 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005209 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005210
Willy Tarreaubcc45952019-05-26 10:05:50 +02005211 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005212 /* Too bad there are data left there. We're willing to memcpy/memmove
5213 * up to 1/4 of the buffer, which means that it's OK to copy a large
5214 * frame into a buffer containing few data if it needs to be realigned,
5215 * and that it's also OK to copy few data without realigning. Otherwise
5216 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005217 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005218 if (fsize + 9 <= b_room(mbuf) &&
5219 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005220 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5221 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 +01005222 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005223 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005224
Willy Tarreau9c218e72019-05-26 10:08:28 +02005225 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5226 goto retry;
5227
Willy Tarreau98de12a2018-12-12 07:03:00 +01005228 h2c->flags |= H2_CF_MUX_MFULL;
5229 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005230 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 +01005231 goto end;
5232 }
5233
5234 /* map an H2 frame to the HTX block so that we can put the
5235 * frame header there.
5236 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005237 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5238 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005239
5240 /* prepend an H2 DATA frame header just before the DATA block */
5241 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5242 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5243 h2_set_frame_size(outbuf.area, fsize);
5244
5245 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005246 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005247 h2c->mws -= fsize;
5248
5249 /* and exchange with our old area */
5250 buf->area = old_area;
5251 buf->data = buf->head = 0;
5252 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005253
5254 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 +01005255 goto end;
5256 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005257
Willy Tarreau98de12a2018-12-12 07:03:00 +01005258 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005259 /* for DATA and EOM we'll have to emit a frame, even if empty */
5260
5261 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005262 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5263 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005264 break;
5265 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005266 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005267 }
5268
5269 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005270 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5271 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005272 h2c->flags |= H2_CF_MUX_MFULL;
5273 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005274 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005275 goto end;
5276 }
5277
5278 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5279 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5280 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5281 outbuf.data = 9;
5282
5283 /* we have in <fsize> the exact number of bytes we need to copy from
5284 * the HTX buffer. We need to check this against the connection's and
5285 * the stream's send windows, and to ensure that this fits in the max
5286 * frame size and in the buffer's available space minus 9 bytes (for
5287 * the frame header). The connection's flow control is applied last so
5288 * that we can use a separate list of streams which are immediately
5289 * unblocked on window opening. Note: we don't implement padding.
5290 */
5291
5292 /* EOM is presented with bsize==1 but would lead to the emission of an
5293 * empty frame, thus we force it to zero here.
5294 */
5295 if (type == HTX_BLK_EOM)
5296 bsize = fsize = 0;
5297
5298 if (!fsize)
5299 goto send_empty;
5300
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005301 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005302 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005303 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005304 LIST_DEL_INIT(&h2s->list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005305 LIST_ADDQ(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005306 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 +01005307 goto end;
5308 }
5309
Willy Tarreauee573762018-12-04 15:25:57 +01005310 if (fsize > count)
5311 fsize = count;
5312
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005313 if (fsize > h2s_mws(h2s))
5314 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005315
5316 if (h2c->mfs && fsize > h2c->mfs)
5317 fsize = h2c->mfs; // >0
5318
5319 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005320 /* It doesn't fit at once. If it at least fits once split and
5321 * the amount of data to move is low, let's defragment the
5322 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005323 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005324 if (b_space_wraps(mbuf) &&
5325 (fsize + 9 <= b_room(mbuf)) &&
5326 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005327 goto realign_again;
5328 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005329 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005330
5331 if (fsize <= 0) {
5332 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005333 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5334 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005335 h2c->flags |= H2_CF_MUX_MFULL;
5336 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005337 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005338 goto end;
5339 }
5340 }
5341
5342 if (h2c->mws <= 0) {
5343 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005344 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 +01005345 goto end;
5346 }
5347
5348 if (fsize > h2c->mws)
5349 fsize = h2c->mws;
5350
5351 /* now let's copy this this into the output buffer */
5352 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005353 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005354 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005355 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005356
5357 send_empty:
5358 /* update the frame's size */
5359 h2_set_frame_size(outbuf.area, fsize);
5360
5361 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5362 * meeting EOM. We should optimize this later.
5363 */
5364 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005365 total++; // EOM counts as one byte
5366 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005367 es_now = 1;
5368 }
5369
5370 if (es_now)
5371 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5372
5373 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005374 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005375
5376 /* consume incoming HTX block, including EOM */
5377 total += fsize;
5378 if (fsize == bsize) {
5379 htx_remove_blk(htx, blk);
Willy Tarreau7838a792019-08-12 18:42:03 +02005380 if (fsize) {
5381 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 +01005382 goto new_frame;
Willy Tarreau7838a792019-08-12 18:42:03 +02005383 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005384 } else {
5385 /* we've truncated this block */
5386 htx_cut_data_blk(htx, blk, fsize);
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005387 if (trunc_out)
5388 goto new_frame;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005389 }
5390
5391 if (es_now) {
5392 if (h2s->st == H2_SS_OPEN)
5393 h2s->st = H2_SS_HLOC;
5394 else
5395 h2s_close(h2s);
5396
5397 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005398 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 +01005399 }
5400
5401 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005402 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005403 return total;
5404}
5405
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005406/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5407 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5408 * processed. The caller must check the stream's status to detect any error
5409 * which might have happened subsequently to a successful send. The htx blocks
5410 * are automatically removed from the message. The htx message is assumed to be
5411 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005412 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005413 * as a single frame. The ES flag is always set.
5414 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005415static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005416{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005417 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005418 struct h2c *h2c = h2s->h2c;
5419 struct htx_blk *blk;
5420 struct htx_blk *blk_end;
5421 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005422 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005423 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005424 int ret = 0;
5425 int hdr;
5426 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005427
Willy Tarreau7838a792019-08-12 18:42:03 +02005428 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5429
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005430 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005431 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005432 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005433 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005434 goto end;
5435 }
5436
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005437 /* determine the first block which must not be deleted, blk_end may
5438 * be NULL if all blocks have to be deleted. also get trailers.
5439 */
5440 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005441 blk_end = NULL;
5442
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005443 hdr = 0;
5444 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005445 blk = htx_get_blk(htx, idx);
5446 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005447 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005448 if (type == HTX_BLK_UNUSED)
5449 continue;
5450
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005451 if (type == HTX_BLK_EOT) {
5452 if (idx != -1)
5453 blk_end = blk;
5454 break;
5455 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005456 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005457 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005458
Willy Tarreau7838a792019-08-12 18:42:03 +02005459 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5460 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 +01005461 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005462 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005463
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005464 list[hdr].n = htx_get_blk_name(htx, blk);
5465 list[hdr].v = htx_get_blk_value(htx, blk);
5466 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005467 }
5468
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005469 /* marker for end of trailers */
5470 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005471
Willy Tarreau9c218e72019-05-26 10:08:28 +02005472 mbuf = br_tail(h2c->mbuf);
5473 retry:
5474 if (!h2_get_buf(h2c, mbuf)) {
5475 h2c->flags |= H2_CF_MUX_MALLOC;
5476 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005477 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 +02005478 goto end;
5479 }
5480
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005481 chunk_reset(&outbuf);
5482
5483 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005484 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5485 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005486 break;
5487 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005488 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005489 }
5490
5491 if (outbuf.size < 9)
5492 goto full;
5493
5494 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5495 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5496 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5497 outbuf.data = 9;
5498
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005499 /* encode all headers */
5500 for (idx = 0; idx < hdr; idx++) {
5501 /* these ones do not exist in H2 or must not appear in
5502 * trailers and must be dropped.
5503 */
5504 if (isteq(list[idx].n, ist("host")) ||
5505 isteq(list[idx].n, ist("content-length")) ||
5506 isteq(list[idx].n, ist("connection")) ||
5507 isteq(list[idx].n, ist("proxy-connection")) ||
5508 isteq(list[idx].n, ist("keep-alive")) ||
5509 isteq(list[idx].n, ist("upgrade")) ||
5510 isteq(list[idx].n, ist("te")) ||
5511 isteq(list[idx].n, ist("transfer-encoding")))
5512 continue;
5513
Christopher Faulet86d144c2019-08-14 16:32:25 +02005514 /* Skip all pseudo-headers */
5515 if (*(list[idx].n.ptr) == ':')
5516 continue;
5517
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005518 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5519 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005520 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005521 goto realign_again;
5522 goto full;
5523 }
5524 }
5525
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005526 if (outbuf.data == 9) {
5527 /* here we have a problem, we have nothing to emit (either we
5528 * received an empty trailers block followed or we removed its
5529 * contents above). Because of this we can't send a HEADERS
5530 * frame, so we have to cheat and instead send an empty DATA
5531 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005532 */
5533 outbuf.area[3] = H2_FT_DATA;
5534 outbuf.area[4] = H2_F_DATA_END_STREAM;
5535 }
5536
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005537 /* update the frame's size */
5538 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5539
Willy Tarreau572d9f52019-10-11 16:58:37 +02005540 if (outbuf.data > h2c->mfs + 9) {
5541 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5542 /* output full */
5543 if (b_space_wraps(mbuf))
5544 goto realign_again;
5545 goto full;
5546 }
5547 }
5548
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005549 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005550 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 +02005551 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005552 h2s->flags |= H2_SF_ES_SENT;
5553
5554 if (h2s->st == H2_SS_OPEN)
5555 h2s->st = H2_SS_HLOC;
5556 else
5557 h2s_close(h2s);
5558
5559 /* OK we could properly deliver the response */
5560 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005561 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005562 ret = 0;
5563 idx = htx_get_head(htx);
5564 blk = htx_get_blk(htx, idx);
5565 while (blk != blk_end) {
5566 ret += htx_get_blksz(blk);
5567 blk = htx_remove_blk(htx, blk);
5568 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005569
5570 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5571 ret += htx_get_blksz(blk_end);
5572 htx_remove_blk(htx, blk_end);
5573 }
5574
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005575 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005576 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005577 return ret;
5578 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005579 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5580 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005581 h2c->flags |= H2_CF_MUX_MFULL;
5582 h2s->flags |= H2_SF_BLK_MROOM;
5583 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005584 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 +01005585 goto end;
5586 fail:
5587 /* unparsable HTX messages, too large ones to be produced in the local
5588 * list etc go here (unrecoverable errors).
5589 */
5590 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5591 ret = 0;
5592 goto end;
5593}
5594
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005595/* Called from the upper layer, to subscribe to events, such as being able to send.
5596 * The <param> argument here is supposed to be a pointer to a wait_event struct
5597 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5598 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5599 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5600 * returns 0 except for the error above.
5601 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005602static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5603{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005604 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005605 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005606 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005607
Willy Tarreau7838a792019-08-12 18:42:03 +02005608 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005609 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005610 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005611 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005612 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5613 sw->events |= SUB_RETRY_RECV;
5614 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005615 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005616 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005617 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005618 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchard6ff20392018-07-17 18:46:31 +02005619 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005620 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5621 sw->events |= SUB_RETRY_SEND;
5622 h2s->send_wait = sw;
5623 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5624 !LIST_ADDED(&h2s->list)) {
5625 if (h2s->flags & H2_SF_BLK_MFCTL)
5626 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5627 else
5628 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005629 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005630 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005631 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005632 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005633 if (event_type != 0)
5634 return -1;
5635 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005636}
5637
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005638/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5639 * The <param> argument here is supposed to be a pointer to the same wait_event
5640 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5641 * It always returns zero.
5642 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005643static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5644{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005645 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005646 struct h2s *h2s = cs->ctx;
5647
Willy Tarreau7838a792019-08-12 18:42:03 +02005648 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005649 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005650 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005651 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005652 BUG_ON(h2s->recv_wait != sw);
5653 sw->events &= ~SUB_RETRY_RECV;
5654 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005655 }
Willy Tarreaud9464162020-01-10 18:25:07 +01005656
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005657 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005658 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005659 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005660 BUG_ON(h2s->send_wait != sw);
Willy Tarreau5723f292020-01-10 15:16:57 +01005661 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)))
5662 LIST_DEL_INIT(&h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02005663 sw->events &= ~SUB_RETRY_SEND;
Willy Tarreaud9464162020-01-10 18:25:07 +01005664 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchardf8338152019-05-14 17:50:32 +02005665 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005666 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005667 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005668 return 0;
5669}
5670
5671
Olivier Houchard511efea2018-08-16 15:30:32 +02005672/* Called from the upper layer, to receive data */
5673static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5674{
Olivier Houchard638b7992018-08-16 15:41:52 +02005675 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005676 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005677 struct htx *h2s_htx = NULL;
5678 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005679 size_t ret = 0;
5680
Willy Tarreau7838a792019-08-12 18:42:03 +02005681 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
5682
Olivier Houchard511efea2018-08-16 15:30:32 +02005683 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005684 h2s_htx = htx_from_buf(&h2s->rxbuf);
5685 if (htx_is_empty(h2s_htx)) {
5686 /* Here htx_to_buf() will set buffer data to 0 because
5687 * the HTX is empty.
5688 */
5689 htx_to_buf(h2s_htx, &h2s->rxbuf);
5690 goto end;
5691 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005692
Christopher Faulet9b79a102019-07-15 11:22:56 +02005693 ret = h2s_htx->data;
5694 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005695
Christopher Faulet9b79a102019-07-15 11:22:56 +02005696 /* <buf> is empty and the message is small enough, swap the
5697 * buffers. */
5698 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005699 htx_to_buf(buf_htx, buf);
5700 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005701 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5702 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01005703 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005704
5705 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
5706
5707 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
5708 buf_htx->flags |= HTX_FL_PARSING_ERROR;
5709 if (htx_is_empty(buf_htx))
5710 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01005711 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005712
Christopher Faulet9b79a102019-07-15 11:22:56 +02005713 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
5714 htx_to_buf(buf_htx, buf);
5715 htx_to_buf(h2s_htx, &h2s->rxbuf);
5716 ret -= h2s_htx->data;
5717
Christopher Faulet37070b22019-02-14 15:12:14 +01005718 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005719 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005720 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005721 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005722 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005723 if (h2s->flags & H2_SF_ES_RCVD)
5724 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02005725 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005726 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005727 if (cs->flags & CS_FL_ERR_PENDING)
5728 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005729 if (b_size(&h2s->rxbuf)) {
5730 b_free(&h2s->rxbuf);
5731 offer_buffers(NULL, tasks_run_queue);
5732 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005733 }
5734
Willy Tarreau082f5592018-11-25 08:03:32 +01005735 if (ret && h2c->dsi == h2s->id) {
5736 /* demux is blocking on this stream's buffer */
5737 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005738 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005739 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005740
Willy Tarreau7838a792019-08-12 18:42:03 +02005741 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02005742 return ret;
5743}
5744
Olivier Houchardd846c262018-10-19 17:24:29 +02005745
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005746/* Called from the upper layer, to send data from buffer <buf> for no more than
5747 * <count> bytes. Returns the number of bytes effectively sent. Some status
5748 * flags may be updated on the conn_stream.
5749 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005750static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005751{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005752 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005753 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005754 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005755 struct htx *htx;
5756 struct htx_blk *blk;
5757 enum htx_blk_type btype;
5758 uint32_t bsize;
5759 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005760
Willy Tarreau7838a792019-08-12 18:42:03 +02005761 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
5762
Olivier Houchardd360ac62019-03-22 17:37:16 +01005763 /* If we were not just woken because we wanted to send but couldn't,
5764 * and there's somebody else that is waiting to send, do nothing,
5765 * we will subscribe later and be put at the end of the list
5766 */
Willy Tarreaud9464162020-01-10 18:25:07 +01005767 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02005768 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
5769 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 +01005770 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005771 }
Willy Tarreaud9464162020-01-10 18:25:07 +01005772 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02005773
Willy Tarreau7838a792019-08-12 18:42:03 +02005774 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
5775 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 +02005776 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005777 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005778
Willy Tarreaucab22952019-10-31 15:48:18 +01005779 if (h2s->h2c->st0 >= H2_CS_ERROR) {
5780 cs->flags |= CS_FL_ERROR;
5781 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);
5782 return 0;
5783 }
5784
Christopher Faulet9b79a102019-07-15 11:22:56 +02005785 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005786
Willy Tarreau0bad0432018-06-14 16:54:01 +02005787 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005788 h2s->flags |= H2_SF_OUTGOING_DATA;
5789
Willy Tarreau751f2d02018-10-05 09:35:00 +02005790 if (h2s->id == 0) {
5791 int32_t id = h2c_get_next_sid(h2s->h2c);
5792
5793 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005794 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02005795 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 +02005796 return 0;
5797 }
5798
5799 eb32_delete(&h2s->by_id);
5800 h2s->by_id.key = h2s->id = id;
5801 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005802 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005803 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5804 }
5805
Christopher Faulet9b79a102019-07-15 11:22:56 +02005806 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
5807 count && !htx_is_empty(htx)) {
5808 idx = htx_get_head(htx);
5809 blk = htx_get_blk(htx, idx);
5810 btype = htx_get_blk_type(blk);
5811 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005812
Christopher Faulet9b79a102019-07-15 11:22:56 +02005813 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005814 case HTX_BLK_REQ_SL:
5815 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005816 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02005817 if (ret > 0) {
5818 total += ret;
5819 count -= ret;
5820 if (ret < bsize)
5821 goto done;
5822 }
5823 break;
5824
Willy Tarreau115e83b2018-12-01 19:17:53 +01005825 case HTX_BLK_RES_SL:
5826 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005827 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005828 if (ret > 0) {
5829 total += ret;
5830 count -= ret;
5831 if (ret < bsize)
5832 goto done;
5833 }
5834 break;
5835
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005836 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005837 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005838 /* all these cause the emission of a DATA frame (possibly empty).
5839 * This EOM necessarily is one before trailers, as the EOM following
5840 * trailers would have been consumed by the trailers parser.
5841 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005842 ret = h2s_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005843 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005844 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005845 total += ret;
5846 count -= ret;
5847 if (ret < bsize)
5848 goto done;
5849 }
5850 break;
5851
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005852 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005853 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005854 /* This is the first trailers block, all the subsequent ones AND
5855 * the EOM will be swallowed by the parser.
5856 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005857 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005858 if (ret > 0) {
5859 total += ret;
5860 count -= ret;
5861 if (ret < bsize)
5862 goto done;
5863 }
5864 break;
5865
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005866 default:
5867 htx_remove_blk(htx, blk);
5868 total += bsize;
5869 count -= bsize;
5870 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005871 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005872 }
5873
Christopher Faulet9b79a102019-07-15 11:22:56 +02005874 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005875 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005876 /* trim any possibly pending data after we close (extra CR-LF,
5877 * unprocessed trailers, abnormal extra data, ...)
5878 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005879 total += count;
5880 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005881 }
5882
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005883 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005884 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005885 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 +01005886 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005887 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005888 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005889 }
5890
Christopher Faulet9b79a102019-07-15 11:22:56 +02005891 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02005892
Olivier Houchard7505f942018-08-21 18:10:44 +02005893 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005894 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau7838a792019-08-12 18:42:03 +02005895 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 +02005896 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005897
Olivier Houchard7505f942018-08-21 18:10:44 +02005898 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005899 /* If we're waiting for flow control, and we got a shutr on the
5900 * connection, we will never be unlocked, so add an error on
5901 * the conn_stream.
5902 */
5903 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5904 !b_data(&h2s->h2c->dbuf) &&
5905 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005906 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 +01005907 if (cs->flags & CS_FL_EOS)
5908 cs->flags |= CS_FL_ERROR;
5909 else
5910 cs->flags |= CS_FL_ERR_PENDING;
5911 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005912
Willy Tarreau5723f292020-01-10 15:16:57 +01005913 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
5914 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005915 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005916 LIST_DEL_INIT(&h2s->list);
5917 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02005918
Willy Tarreau7838a792019-08-12 18:42:03 +02005919 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005920 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005921}
5922
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005923/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005924static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005925{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005926 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005927 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005928 struct eb32_node *node;
5929 int fctl_cnt = 0;
5930 int send_cnt = 0;
5931 int tree_cnt = 0;
5932 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005933 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005934
5935 if (!h2c)
5936 return;
5937
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005938 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005939 fctl_cnt++;
5940
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005941 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005942 send_cnt++;
5943
Willy Tarreau3af37712018-12-18 14:34:41 +01005944 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005945 node = eb32_first(&h2c->streams_by_id);
5946 while (node) {
5947 h2s = container_of(node, struct h2s, by_id);
5948 tree_cnt++;
5949 if (!h2s->cs)
5950 orph_cnt++;
5951 node = eb32_next(node);
5952 }
5953
Willy Tarreau60f62682019-05-26 11:32:27 +02005954 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005955 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02005956 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01005957 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005958 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5959 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02005960 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02005961 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005962 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005963 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5964 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5965 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005966 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5967 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5968 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005969 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5970 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005971
5972 if (h2s) {
Willy Tarreauab2ec452019-08-30 07:07:08 +02005973 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s.flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5974 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01005975 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5976 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5977 h2s->cs);
5978 if (h2s->cs)
5979 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5980 h2s->cs->flags, h2s->cs->data);
5981 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005982}
Willy Tarreau62f52692017-10-08 23:01:42 +02005983
5984/*******************************************************/
5985/* functions below are dedicated to the config parsers */
5986/*******************************************************/
5987
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005988/* config parser for global "tune.h2.header-table-size" */
5989static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5990 struct proxy *defpx, const char *file, int line,
5991 char **err)
5992{
5993 if (too_many_args(1, args, err, NULL))
5994 return -1;
5995
5996 h2_settings_header_table_size = atoi(args[1]);
5997 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5998 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5999 return -1;
6000 }
6001 return 0;
6002}
Willy Tarreau62f52692017-10-08 23:01:42 +02006003
Willy Tarreaue6baec02017-07-27 11:45:11 +02006004/* config parser for global "tune.h2.initial-window-size" */
6005static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
6006 struct proxy *defpx, const char *file, int line,
6007 char **err)
6008{
6009 if (too_many_args(1, args, err, NULL))
6010 return -1;
6011
6012 h2_settings_initial_window_size = atoi(args[1]);
6013 if (h2_settings_initial_window_size < 0) {
6014 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6015 return -1;
6016 }
6017 return 0;
6018}
6019
Willy Tarreau5242ef82017-07-27 11:47:28 +02006020/* config parser for global "tune.h2.max-concurrent-streams" */
6021static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
6022 struct proxy *defpx, const char *file, int line,
6023 char **err)
6024{
6025 if (too_many_args(1, args, err, NULL))
6026 return -1;
6027
6028 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006029 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006030 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6031 return -1;
6032 }
6033 return 0;
6034}
6035
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006036/* config parser for global "tune.h2.max-frame-size" */
6037static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
6038 struct proxy *defpx, const char *file, int line,
6039 char **err)
6040{
6041 if (too_many_args(1, args, err, NULL))
6042 return -1;
6043
6044 h2_settings_max_frame_size = atoi(args[1]);
6045 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6046 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6047 return -1;
6048 }
6049 return 0;
6050}
6051
Willy Tarreau62f52692017-10-08 23:01:42 +02006052
6053/****************************************/
6054/* MUX initialization and instanciation */
6055/***************************************/
6056
6057/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006058static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006059 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006060 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006061 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006062 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006063 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006064 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006065 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006066 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006067 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006068 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006069 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006070 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006071 .shutr = h2_shutr,
6072 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006073 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006074 .show_fd = h2_show_fd,
Christopher Faulet9b79a102019-07-15 11:22:56 +02006075 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Willy Tarreau62f52692017-10-08 23:01:42 +02006076 .name = "H2",
6077};
6078
Christopher Faulet32f61c02018-04-10 14:33:41 +02006079static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006080 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006081
Willy Tarreau0108d902018-11-25 19:14:37 +01006082INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6083
Willy Tarreau62f52692017-10-08 23:01:42 +02006084/* config keyword parsers */
6085static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006086 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006087 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006088 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006089 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006090 { 0, NULL, NULL }
6091}};
6092
Willy Tarreau0108d902018-11-25 19:14:37 +01006093INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);