blob: ddc19c176958ede15a17ae49456d10ae81945e3a [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
Willy Tarreaudfd3de82020-06-04 23:46:14 +020013#include <import/eb32tree.h>
Willy Tarreau63617db2021-10-06 18:23:40 +020014#include <import/ebmbtree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020017#include <haproxy/connection.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020018#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020019#include <haproxy/hpack-dec.h>
20#include <haproxy/hpack-enc.h>
21#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020022#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020023#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020025#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020026#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020027#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010028#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020029#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020030#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020031#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020032
33
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010034/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020035static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010036static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010037static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020038static const struct h2s *h2_idle_stream;
39
Willy Tarreau5ab6b572017-09-22 08:05:00 +020040/* Connection flags (32 bit), in h2c->flags */
41#define H2_CF_NONE 0x00000000
42
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020043/* Flags indicating why writing to the mux is blocked. */
44#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
45#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
46#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
47
Willy Tarreau315d8072017-12-10 22:17:57 +010048/* Flags indicating why writing to the demux is blocked.
49 * The first two ones directly affect the ability for the mux to receive data
50 * from the connection. The other ones affect the mux's ability to demux
51 * received data.
52 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020053#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
54#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010055
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020056#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
57#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
58#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
59#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020060#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
61#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Christopher Fauletb5f7b522021-07-26 12:06:53 +020062 // (SHORT_READ is also excluded)
63
Christopher Faulet47940c32021-11-10 17:50:10 +010064#define H2_CF_DEM_SHORT_READ 0x00000200 // demux blocked on incomplete frame
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020065
Willy Tarreau081d4722017-05-16 21:51:05 +020066/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020067#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
68#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
69#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 +020070#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010071#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
72#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
73#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020074
Amaury Denoyelle0df04362021-10-18 09:43:29 +020075#define H2_CF_RCVD_RFC8441 0x00100000 // settings from RFC8441 has been received indicating support for Extended CONNECT
76
Willy Tarreau5ab6b572017-09-22 08:05:00 +020077/* H2 connection state, in h2c->st0 */
78enum h2_cs {
79 H2_CS_PREFACE, // init done, waiting for connection preface
80 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
81 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
82 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010083 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
84 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020085 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
86 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
87 H2_CS_ENTRIES // must be last
88} __attribute__((packed));
89
Willy Tarreau51330962019-05-26 09:38:07 +020090
Willy Tarreau9c218e72019-05-26 10:08:28 +020091/* 32 buffers: one for the ring's root, rest for the mbuf itself */
92#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020093
Willy Tarreau5ab6b572017-09-22 08:05:00 +020094/* H2 connection descriptor */
95struct h2c {
96 struct connection *conn;
97
98 enum h2_cs st0; /* mux state */
99 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
100
101 /* 16 bit hole here */
102 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100103 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200104 int32_t max_id; /* highest ID known on this connection, <0 before preface */
105 uint32_t rcvd_c; /* newly received data to ACK for the connection */
106 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
107
108 /* states for the demux direction */
109 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200110 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200111
112 int32_t dsi; /* demux stream ID (<0 = idle) */
113 int32_t dfl; /* demux frame length (if dsi >= 0) */
114 int8_t dft; /* demux frame type (if dsi >= 0) */
115 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100116 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
117 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200118 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
119
120 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200121 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200122 int32_t msi; /* mux stream ID (<0 = idle) */
123 int32_t mfl; /* mux frame length (if dsi >= 0) */
124 int8_t mft; /* mux frame type (if dsi >= 0) */
125 int8_t mff; /* mux frame flags (if dsi >= 0) */
126 /* 16 bit hole here */
127 int32_t miw; /* mux initial window size for all new streams */
128 int32_t mws; /* mux window size. Can be negative. */
129 int32_t mfs; /* mux's max frame size */
130
Willy Tarreauea392822017-10-31 10:02:25 +0100131 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100132 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100133 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200134 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100135 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100136 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200137 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100138 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100139 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200140 struct eb_root streams_by_id; /* all active streams by their ID */
141 struct list send_list; /* list of blocked streams requesting to send */
142 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200143 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100144 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200145 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200146};
147
Willy Tarreau18312642017-10-11 07:57:07 +0200148/* H2 stream state, in h2s->st */
149enum h2_ss {
150 H2_SS_IDLE = 0, // idle
151 H2_SS_RLOC, // reserved(local)
152 H2_SS_RREM, // reserved(remote)
153 H2_SS_OPEN, // open
154 H2_SS_HREM, // half-closed(remote)
155 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200156 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200157 H2_SS_CLOSED, // closed
158 H2_SS_ENTRIES // must be last
159} __attribute__((packed));
160
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200161#define H2_SS_MASK(state) (1UL << (state))
162#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
163#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
164#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
165#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
166#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
167#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
168#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
169#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200170
Willy Tarreau18312642017-10-11 07:57:07 +0200171/* HTTP/2 stream flags (32 bit), in h2s->flags */
172#define H2_SF_NONE 0x00000000
173#define H2_SF_ES_RCVD 0x00000001
174#define H2_SF_ES_SENT 0x00000002
175
176#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
177#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
178
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200179/* stream flags indicating the reason the stream is blocked */
180#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200181#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
182#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
183#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200184#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
185
Willy Tarreau454f9052017-10-26 19:40:35 +0200186/* stream flags indicating how data is supposed to be sent */
187#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100188#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100189#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
190
Willy Tarreau454f9052017-10-26 19:40:35 +0200191
Willy Tarreaud9464162020-01-10 18:25:07 +0100192#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100193#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100194#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100195
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100196#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
197
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200198#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
199#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200200#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200201
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100202#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100203#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100204
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100205#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200206
Willy Tarreau18312642017-10-11 07:57:07 +0200207/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100208 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200209 */
210struct h2s {
211 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100212 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200213 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200214 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200215 int32_t id; /* stream ID */
216 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200217 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200218 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
219 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200220 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100221 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200222 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100223 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200224 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100225 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
226 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100227
228 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200229};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200230
Willy Tarreauc6405142017-09-21 20:23:50 +0200231/* descriptor for an h2 frame header */
232struct h2_fh {
233 uint32_t len; /* length, host order, 24 bits */
234 uint32_t sid; /* stream id, host order, 31 bits */
235 uint8_t ft; /* frame type */
236 uint8_t ff; /* frame flags */
237};
238
Willy Tarreau12ae2122019-08-08 18:23:12 +0200239/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200240static void h2_trace(enum trace_level level, uint64_t mask, \
241 const struct trace_source *src,
242 const struct ist where, const struct ist func,
243 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244
245/* The event representation is split like this :
246 * strm - application layer
247 * h2s - internal H2 stream
248 * h2c - internal H2 connection
249 * conn - external connection
250 *
251 */
252static const struct trace_event h2_trace_events[] = {
253#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200254 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200255#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200256 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200257#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .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 +0200275#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .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 +0200301#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200344 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200345#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200346 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200347#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200348 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200349#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200350 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200351#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200352 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200353#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200354 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200355#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200356 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357 { }
358};
359
360static const struct name_desc h2_trace_lockon_args[4] = {
361 /* arg1 */ { /* already used by the connection */ },
362 /* arg2 */ { .name="h2s", .desc="H2 stream" },
363 /* arg3 */ { },
364 /* arg4 */ { }
365};
366
367static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200368#define H2_VERB_CLEAN 1
369 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
370#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200371 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200372#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200373 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200374#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200375 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200376#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200377 { .name="complete", .desc="add full data dump when available" },
378 { /* end */ }
379};
380
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200381static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200382 .name = IST("h2"),
383 .desc = "HTTP/2 multiplexer",
384 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200385 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200386 .known_events = h2_trace_events,
387 .lockon_args = h2_trace_lockon_args,
388 .decoding = h2_trace_decoding,
389 .report_events = ~0, // report everything by default
390};
391
392#define TRACE_SOURCE &trace_h2
393INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
394
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100395/* h2 stats module */
396enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100397 H2_ST_HEADERS_RCVD,
398 H2_ST_DATA_RCVD,
399 H2_ST_SETTINGS_RCVD,
400 H2_ST_RST_STREAM_RCVD,
401 H2_ST_GOAWAY_RCVD,
402
Amaury Denoyellea8879232020-10-27 17:16:03 +0100403 H2_ST_CONN_PROTO_ERR,
404 H2_ST_STRM_PROTO_ERR,
405 H2_ST_RST_STREAM_RESP,
406 H2_ST_GOAWAY_RESP,
407
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100408 H2_ST_OPEN_CONN,
409 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100410 H2_ST_TOTAL_CONN,
411 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100412
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100413 H2_STATS_COUNT /* must be the last member of the enum */
414};
415
416static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100417 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100418 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100419 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100420 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100421 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100422 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100423 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100424 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100425 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100426 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100427
428 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
429 .desc = "Total number of connection protocol errors" },
430 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
431 .desc = "Total number of stream protocol errors" },
432 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100433 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100434 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100435 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100436
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100437 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
438 .desc = "Count of currently open connections" },
439 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
440 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100441 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100442 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100443 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100444 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100445};
446
447static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100448 long long headers_rcvd; /* total number of HEADERS frame received */
449 long long data_rcvd; /* total number of DATA frame received */
450 long long settings_rcvd; /* total number of SETTINGS frame received */
451 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
452 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100453
454 long long conn_proto_err; /* total number of protocol errors detected */
455 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100456 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
457 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100458
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100459 long long open_conns; /* count of currently open connections */
460 long long open_streams; /* count of currently open streams */
461 long long total_conns; /* total number of connections */
462 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100463} h2_counters;
464
465static void h2_fill_stats(void *data, struct field *stats)
466{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100467 struct h2_counters *counters = data;
468
469 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
470 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
471 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
472 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
473 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100474
475 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
476 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
477 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
478 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100479
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100480 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
481 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
482 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
483 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100484}
485
486static struct stats_module h2_stats_module = {
487 .name = "h2",
488 .fill_stats = h2_fill_stats,
489 .stats = h2_stats,
490 .stats_count = H2_STATS_COUNT,
491 .counters = &h2_counters,
492 .counters_size = sizeof(h2_counters),
493 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
494 .clearable = 1,
495};
496
497INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
498
Willy Tarreau8ceae722018-11-26 11:58:30 +0100499/* the h2c connection pool */
500DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
501
502/* the h2s stream pool */
503DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
504
Willy Tarreaudc572362018-12-12 08:08:05 +0100505/* The default connection window size is 65535, it may only be enlarged using
506 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
507 * we'll pretend we already received the difference between the two to send
508 * an equivalent window update to enlarge it to 2G-1.
509 */
510#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
511
Willy Tarreau455d5682019-05-24 19:42:18 +0200512/* maximum amount of data we're OK with re-aligning for buffer optimizations */
513#define MAX_DATA_REALIGN 1024
514
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200515/* a few settings from the global section */
516static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200517static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100518static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100519static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200520
Willy Tarreau2a856182017-05-16 15:20:39 +0200521/* a dmumy closed stream */
522static const struct h2s *h2_closed_stream = &(const struct h2s){
523 .cs = NULL,
524 .h2c = NULL,
525 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100526 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100527 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200528 .id = 0,
529};
530
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100531/* a dmumy closed stream returning a PROTOCOL_ERROR error */
532static const struct h2s *h2_error_stream = &(const struct h2s){
533 .cs = NULL,
534 .h2c = NULL,
535 .st = H2_SS_CLOSED,
536 .errcode = H2_ERR_PROTOCOL_ERROR,
537 .flags = 0,
538 .id = 0,
539};
540
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100541/* a dmumy closed stream returning a REFUSED_STREAM error */
542static const struct h2s *h2_refused_stream = &(const struct h2s){
543 .cs = NULL,
544 .h2c = NULL,
545 .st = H2_SS_CLOSED,
546 .errcode = H2_ERR_REFUSED_STREAM,
547 .flags = 0,
548 .id = 0,
549};
550
Willy Tarreau2a856182017-05-16 15:20:39 +0200551/* and a dummy idle stream for use with any unannounced stream */
552static const struct h2s *h2_idle_stream = &(const struct h2s){
553 .cs = NULL,
554 .h2c = NULL,
555 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100556 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200557 .id = 0,
558};
559
Willy Tarreau144f84a2021-03-02 16:09:26 +0100560struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200561static int h2_send(struct h2c *h2c);
562static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200563static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100564/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100565struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100566static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100567static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol);
Willy Tarreaua56a6de2018-02-26 15:59:07 +0100568static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100569struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100570static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100571static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200572
Willy Tarreauab2ec452019-08-30 07:07:08 +0200573/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
574static inline const char *h2c_st_to_str(enum h2_cs st)
575{
576 switch (st) {
577 case H2_CS_PREFACE: return "PRF";
578 case H2_CS_SETTINGS1: return "STG";
579 case H2_CS_FRAME_H: return "FRH";
580 case H2_CS_FRAME_P: return "FRP";
581 case H2_CS_FRAME_A: return "FRA";
582 case H2_CS_FRAME_E: return "FRE";
583 case H2_CS_ERROR: return "ERR";
584 case H2_CS_ERROR2: return "ER2";
585 default: return "???";
586 }
587}
588
589/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
590static inline const char *h2s_st_to_str(enum h2_ss st)
591{
592 switch (st) {
593 case H2_SS_IDLE: return "IDL"; // idle
594 case H2_SS_RLOC: return "RSL"; // reserved local
595 case H2_SS_RREM: return "RSR"; // reserved remote
596 case H2_SS_OPEN: return "OPN"; // open
597 case H2_SS_HREM: return "HCR"; // half-closed remote
598 case H2_SS_HLOC: return "HCL"; // half-closed local
599 case H2_SS_ERROR : return "ERR"; // error
600 case H2_SS_CLOSED: return "CLO"; // closed
601 default: return "???";
602 }
603}
604
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200605/* the H2 traces always expect that arg1, if non-null, is of type connection
606 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
607 * that arg3, if non-null, is either of type htx for tx headers, or of type
608 * buffer for everything else.
609 */
610static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
611 const struct ist where, const struct ist func,
612 const void *a1, const void *a2, const void *a3, const void *a4)
613{
614 const struct connection *conn = a1;
615 const struct h2c *h2c = conn ? conn->ctx : NULL;
616 const struct h2s *h2s = a2;
617 const struct buffer *buf = a3;
618 const struct htx *htx;
619 int pos;
620
621 if (!h2c) // nothing to add
622 return;
623
Willy Tarreau17104d42019-08-30 07:12:55 +0200624 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200625 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
626
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200627 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
628 conn_append_debug_info(&trace_buf, conn, " : ");
629
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100630 if (h2c->errcode)
631 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
632
Willy Tarreau73db4342019-09-25 07:28:44 +0200633 if (h2c->dsi >= 0 &&
634 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200635 chunk_appendf(&trace_buf, " dft=%s/%02x dfl=%d", h2_ft_str(h2c->dft), h2c->dff, h2c->dfl);
Willy Tarreau73db4342019-09-25 07:28:44 +0200636 }
637
638 if (h2s) {
639 if (h2s->id <= 0)
640 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
641 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100642 if (h2s->id && h2s->errcode)
643 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200644 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200645 }
646
647 /* Let's dump decoded requests and responses right after parsing. They
648 * are traced at level USER with a few recognizable flags.
649 */
650 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
651 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
652 htx = htxbuf(buf); // recv req/res
653 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
654 htx = a3; // send req/res
655 else
656 htx = NULL;
657
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200658 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200659 const struct htx_blk *blk = htx_get_blk(htx, pos);
660 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
661 enum htx_blk_type type = htx_get_blk_type(blk);
662
663 if (type == HTX_BLK_REQ_SL)
664 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200665 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200666 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
667 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
668 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
669 else if (type == HTX_BLK_RES_SL)
670 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200671 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200672 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
673 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
674 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
675 }
676}
677
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200678
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100679/* Detect a pending read0 for a H2 connection. It happens if a read0 was
680 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
681 * to parse pending data, confirming no more progress is possible because
682 * we're facing a truncated frame. The function returns 1 to report a read0
683 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200684 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100685static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200686{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100687 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200688}
689
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200690/* returns true if the connection is allowed to expire, false otherwise. A
691 * connection may expire when:
692 * - it has no stream
693 * - it has data in the mux buffer
694 * - it has streams in the blocked list
695 * - it has streams in the fctl list
696 * - it has streams in the send list
697 * Otherwise it means some streams are waiting in the data layer and it should
698 * not expire.
699 */
700static inline int h2c_may_expire(const struct h2c *h2c)
701{
702 return eb_is_empty(&h2c->streams_by_id) ||
703 br_data(h2c->mbuf) ||
704 !LIST_ISEMPTY(&h2c->blocked_list) ||
705 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100706 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200707}
708
Olivier Houchard7a977432019-03-21 15:47:13 +0100709static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200710h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100711{
712 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
713 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
714 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
715 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200716 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100717 (conn_xprt_read0_pending(h2c->conn) ||
718 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
719 return 1;
720
721 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100722}
723
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200724/*****************************************************/
725/* functions below are for dynamic buffer management */
726/*****************************************************/
727
Willy Tarreau315d8072017-12-10 22:17:57 +0100728/* indicates whether or not the we may call the h2_recv() function to attempt
729 * to receive data into the buffer and/or demux pending data. The condition is
730 * a bit complex due to some API limits for now. The rules are the following :
731 * - if an error or a shutdown was detected on the connection and the buffer
732 * is empty, we must not attempt to receive
733 * - if the demux buf failed to be allocated, we must not try to receive and
734 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100735 * - if no flag indicates a blocking condition, we may attempt to receive,
736 * regardless of whether the demux buffer is full or not, so that only
737 * de demux part decides whether or not to block. This is needed because
738 * the connection API indeed prevents us from re-enabling receipt that is
739 * already enabled in a polled state, so we must always immediately stop
740 * as soon as the demux can't proceed so as never to hit an end of read
741 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100742 * - otherwise must may not attempt
743 */
744static inline int h2_recv_allowed(const struct h2c *h2c)
745{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200746 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100747 (h2c->st0 >= H2_CS_ERROR ||
748 h2c->conn->flags & CO_FL_ERROR ||
749 conn_xprt_read0_pending(h2c->conn)))
750 return 0;
751
752 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100753 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100754 return 1;
755
756 return 0;
757}
758
Willy Tarreau47b515a2018-12-21 16:09:41 +0100759/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200760static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100761{
762 if (!h2_recv_allowed(h2c))
763 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200764 if ((!consider_buffer || !b_data(&h2c->dbuf))
765 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100766 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200767 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100768}
769
770
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100771/* returns true if the front connection has too many conn_streams attached */
772static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200773{
Willy Tarreaua8754662018-12-23 20:43:58 +0100774 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200775}
776
Willy Tarreau44e973f2018-03-01 17:49:30 +0100777/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
778 * flags are used to figure what buffer was requested. It returns 1 if the
779 * allocation succeeds, in which case the connection is woken up, or 0 if it's
780 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200781 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100782static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200783{
784 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100785 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200786
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100787 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200788 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200789 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200790 return 1;
791 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200792
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100793 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100794 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200795
796 if (h2c->flags & H2_CF_DEM_MROOM) {
797 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200798 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200799 }
Willy Tarreau14398122017-09-22 14:26:04 +0200800 return 1;
801 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100802
803 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
804 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100805 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100806 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200807 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100808 return 1;
809 }
810
Willy Tarreau14398122017-09-22 14:26:04 +0200811 return 0;
812}
813
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200814static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200815{
816 struct buffer *buf = NULL;
817
Willy Tarreau2b718102021-04-21 07:32:39 +0200818 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100819 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100820 h2c->buf_wait.target = h2c;
821 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200822 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200823 }
824 return buf;
825}
826
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200827static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200828{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200829 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100830 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100831 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200832 }
833}
834
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200835static inline void h2_release_mbuf(struct h2c *h2c)
836{
837 struct buffer *buf;
838 unsigned int count = 0;
839
840 while (b_size(buf = br_head_pick(h2c->mbuf))) {
841 b_free(buf);
842 count++;
843 }
844 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100845 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200846}
847
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100848/* returns the number of allocatable outgoing streams for the connection taking
849 * the last_sid and the reserved ones into account.
850 */
851static inline int h2_streams_left(const struct h2c *h2c)
852{
853 int ret;
854
855 /* consider the number of outgoing streams we're allowed to create before
856 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
857 * nb_reserved is the number of streams which don't yet have an ID.
858 */
859 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
860 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
861 if (ret < 0)
862 ret = 0;
863 return ret;
864}
865
Willy Tarreau00f18a32019-01-26 12:19:01 +0100866/* returns the number of streams in use on a connection to figure if it's
867 * idle or not. We check nb_cs and not nb_streams as the caller will want
868 * to know if it was the last one after a detach().
869 */
870static int h2_used_streams(struct connection *conn)
871{
872 struct h2c *h2c = conn->ctx;
873
874 return h2c->nb_cs;
875}
876
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100877/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100878static int h2_avail_streams(struct connection *conn)
879{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100880 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100881 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100882 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100883
Willy Tarreau6afec462019-01-28 06:40:19 +0100884 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
885 * streams on the connection.
886 */
887 if (h2c->last_sid >= 0)
888 return 0;
889
Willy Tarreauc61966f2019-10-31 15:10:03 +0100890 if (h2c->st0 >= H2_CS_ERROR)
891 return 0;
892
Willy Tarreau86949782019-01-31 10:42:05 +0100893 /* note: may be negative if a SETTINGS frame changes the limit */
894 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100895
896 /* we must also consider the limit imposed by stream IDs */
897 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100898 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100899 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100900 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
901 ret1 = MIN(ret1, ret2);
902 }
903 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100904}
905
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200906
Willy Tarreau62f52692017-10-08 23:01:42 +0200907/*****************************************************************/
908/* functions below are dedicated to the mux setup and management */
909/*****************************************************************/
910
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200911/* Initialize the mux once it's attached. For outgoing connections, the context
912 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200913 * connections from the fact that the context is still NULL (even during mux
914 * upgrades). <input> is always used as Input buffer and may contain data. It is
915 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200916 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200917static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
918 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200919{
920 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100921 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200922 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200923
Christopher Fauletf81ef032019-10-04 15:19:43 +0200924 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200925
Willy Tarreaubafbe012017-11-24 17:34:44 +0100926 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200927 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200928 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200929
Christopher Faulete9b70722019-04-08 10:46:02 +0200930 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200931 h2c->flags = H2_CF_IS_BACK;
932 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
933 if (tick_isset(prx->timeout.serverfin))
934 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100935
936 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
937 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200938 } else {
939 h2c->flags = H2_CF_NONE;
940 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
941 if (tick_isset(prx->timeout.clientfin))
942 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100943
944 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
945 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200946 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100947
Willy Tarreau0b37d652018-10-03 10:33:02 +0200948 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100949 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100950 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200951 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100952 if (!t)
953 goto fail;
954
955 h2c->task = t;
956 t->process = h2_timeout_task;
957 t->context = h2c;
958 t->expire = tick_add(now_ms, h2c->timeout);
959 }
Willy Tarreauea392822017-10-31 10:02:25 +0100960
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200961 h2c->wait_event.tasklet = tasklet_new();
962 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200963 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200964 h2c->wait_event.tasklet->process = h2_io_cb;
965 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100966 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200967 if (!conn_is_back(conn)) {
968 /* Connection might already be in the stopping_list if subject
969 * to h1->h2 upgrade.
970 */
971 if (!LIST_INLIST(&conn->stopping_list)) {
972 LIST_APPEND(&mux_stopping_data[tid].list,
973 &conn->stopping_list);
974 }
975 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200976
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200977 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200978 if (!h2c->ddht)
979 goto fail;
980
981 /* Initialise the context. */
982 h2c->st0 = H2_CS_PREFACE;
983 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100984 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200985 h2c->max_id = -1;
986 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100987 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200988 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100989 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200990 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100991 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100992 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200993
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200994 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200995 h2c->dsi = -1;
996 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100997
Willy Tarreau32218eb2017-09-22 08:07:25 +0200998 h2c->last_sid = -1;
999
Willy Tarreau51330962019-05-26 09:38:07 +02001000 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001001 h2c->miw = 65535; /* mux initial window size */
1002 h2c->mws = 65535; /* mux window size */
1003 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001004 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001005 LIST_INIT(&h2c->send_list);
1006 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001007 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001008 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001009
Christopher Fauletf81ef032019-10-04 15:19:43 +02001010 conn->ctx = h2c;
1011
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001012 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1013
Willy Tarreau3f133572017-10-31 19:21:06 +01001014 if (t)
1015 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001016
Willy Tarreau01b44822018-10-03 14:26:37 +02001017 if (h2c->flags & H2_CF_IS_BACK) {
1018 /* FIXME: this is temporary, for outgoing connections we need
1019 * to immediately allocate a stream until the code is modified
1020 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001021 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001022 */
1023 struct h2s *h2s;
1024
Christopher Fauletf81ef032019-10-04 15:19:43 +02001025 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001026 if (!h2s)
1027 goto fail_stream;
1028 }
1029
Willy Tarreau4781b152021-04-06 13:53:36 +02001030 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1031 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001032
Willy Tarreau0f383582018-10-03 14:22:21 +02001033 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001034 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001035 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001036 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001037 fail_stream:
1038 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001039 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001040 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001041 if (h2c->wait_event.tasklet)
1042 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001043 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001044 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001045 if (!conn_is_back(conn))
1046 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001047 conn->ctx = conn_ctx; /* restore saved ctx */
1048 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001049 return -1;
1050}
1051
Willy Tarreau751f2d02018-10-05 09:35:00 +02001052/* returns the next allocatable outgoing stream ID for the H2 connection, or
1053 * -1 if no more is allocatable.
1054 */
1055static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1056{
1057 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001058
1059 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001060 id = -1;
1061 return id;
1062}
1063
Willy Tarreau2373acc2017-10-12 17:35:14 +02001064/* returns the stream associated with id <id> or NULL if not found */
1065static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1066{
1067 struct eb32_node *node;
1068
Willy Tarreau751f2d02018-10-05 09:35:00 +02001069 if (id == 0)
1070 return (struct h2s *)h2_closed_stream;
1071
Willy Tarreau2a856182017-05-16 15:20:39 +02001072 if (id > h2c->max_id)
1073 return (struct h2s *)h2_idle_stream;
1074
Willy Tarreau2373acc2017-10-12 17:35:14 +02001075 node = eb32_lookup(&h2c->streams_by_id, id);
1076 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001077 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001078
1079 return container_of(node, struct h2s, by_id);
1080}
1081
Christopher Faulet73c12072019-04-08 11:23:22 +02001082/* release function. This one should be called to free all resources allocated
1083 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001084 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001085static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001086{
William Dauchy477757c2020-08-07 22:19:23 +02001087 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001088
Willy Tarreau7838a792019-08-12 18:42:03 +02001089 TRACE_ENTER(H2_EV_H2C_END);
1090
Willy Tarreau32218eb2017-09-22 08:07:25 +02001091 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001092 /* The connection must be aattached to this mux to be released */
1093 if (h2c->conn && h2c->conn->ctx == h2c)
1094 conn = h2c->conn;
1095
Willy Tarreau7838a792019-08-12 18:42:03 +02001096 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001097 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001098
Willy Tarreau2b718102021-04-21 07:32:39 +02001099 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001100 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001101
Willy Tarreau44e973f2018-03-01 17:49:30 +01001102 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001103 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001104
Willy Tarreauea392822017-10-31 10:02:25 +01001105 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001106 h2c->task->context = NULL;
1107 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001108 h2c->task = NULL;
1109 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001110 if (h2c->wait_event.tasklet)
1111 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001112 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001113 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001114 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001115
Willy Tarreau4781b152021-04-06 13:53:36 +02001116 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001117
Willy Tarreaubafbe012017-11-24 17:34:44 +01001118 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001119 }
1120
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001121 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001122 if (!conn_is_back(conn))
1123 LIST_DEL_INIT(&conn->stopping_list);
1124
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001125 conn->mux = NULL;
1126 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001127 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001128
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001129 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001130
1131 /* there might be a GOAWAY frame still pending in the TCP
1132 * stack, and if the peer continues to send (i.e. window
1133 * updates etc), this can result in losing the GOAWAY. For
1134 * this reason we try to drain anything received in between.
1135 */
1136 conn->flags |= CO_FL_WANT_DRAIN;
1137
1138 conn_xprt_shutw(conn);
1139 conn_xprt_close(conn);
1140 conn_sock_shutw(conn, !conn_is_back(conn));
1141 conn_ctrl_close(conn);
1142
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001143 if (conn->destroy_cb)
1144 conn->destroy_cb(conn);
1145 conn_free(conn);
1146 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001147
1148 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001149}
1150
1151
Willy Tarreau71681172017-10-23 14:39:06 +02001152/******************************************************/
1153/* functions below are for the H2 protocol processing */
1154/******************************************************/
1155
1156/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001157static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001158{
1159 return h2s ? h2s->id : 0;
1160}
1161
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001162/* returns the sum of the stream's own window size and the mux's initial
1163 * window, which together form the stream's effective window size.
1164 */
1165static inline int h2s_mws(const struct h2s *h2s)
1166{
1167 return h2s->sws + h2s->h2c->miw;
1168}
1169
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001170/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001171static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001172{
1173 if (h2c->msi < 0)
1174 return 0;
1175
1176 if (h2c->msi == h2s_id(h2s))
1177 return 0;
1178
1179 return 1;
1180}
1181
Willy Tarreau741d6df2017-10-17 08:00:59 +02001182/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001183static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001184{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001185 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001186 h2c->errcode = err;
1187 h2c->st0 = H2_CS_ERROR;
1188}
1189
Willy Tarreau175cebb2019-01-24 10:02:24 +01001190/* marks an error on the stream. It may also update an already closed stream
1191 * (e.g. to report an error after an RST was received).
1192 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001193static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001194{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001195 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001196 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001197 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001198 if (h2s->st < H2_SS_ERROR)
1199 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001200 if (h2s->cs)
1201 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001202 }
1203}
1204
Willy Tarreau7e094452018-12-19 18:08:52 +01001205/* attempt to notify the data layer of recv availability */
1206static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1207{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001208 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001209 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001210 tasklet_wakeup(h2s->subs->tasklet);
1211 h2s->subs->events &= ~SUB_RETRY_RECV;
1212 if (!h2s->subs->events)
1213 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001214 }
1215}
1216
1217/* attempt to notify the data layer of send availability */
1218static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1219{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001220 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001221 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001222 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001223 tasklet_wakeup(h2s->subs->tasklet);
1224 h2s->subs->events &= ~SUB_RETRY_SEND;
1225 if (!h2s->subs->events)
1226 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001227 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001228 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1229 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1230 tasklet_wakeup(h2s->shut_tl);
1231 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001232}
1233
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001234/* alerts the data layer, trying to wake it up by all means, following
1235 * this sequence :
1236 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1237 * - if its subscribed to send, then it's woken up for send
1238 * - if it was subscribed to neither, its ->wake() callback is called
1239 * It is safe to call this function with a closed stream which doesn't have a
1240 * conn_stream anymore.
1241 */
1242static void __maybe_unused h2s_alert(struct h2s *h2s)
1243{
Willy Tarreau7838a792019-08-12 18:42:03 +02001244 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1245
Willy Tarreauf96508a2020-01-10 11:12:48 +01001246 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001247 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001248 h2s_notify_recv(h2s);
1249 h2s_notify_send(h2s);
1250 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001251 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1252 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001253 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001254 }
1255
1256 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001257}
1258
Willy Tarreaue4820742017-07-27 13:37:23 +02001259/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001260static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001261{
1262 uint8_t *out = frame;
1263
1264 *out = len >> 16;
1265 write_n16(out + 1, len);
1266}
1267
Willy Tarreau54c15062017-10-10 17:10:03 +02001268/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1269 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1270 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001271 * available in the buffer's input prior to calling this function. The buffer
1272 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001273 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001274static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001275 const struct buffer *b, int o)
1276{
Willy Tarreau591d4452018-06-15 17:21:00 +02001277 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 +02001278}
1279
Willy Tarreau1f094672017-11-20 21:27:45 +01001280static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001281{
Willy Tarreau591d4452018-06-15 17:21:00 +02001282 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001283}
1284
Willy Tarreau1f094672017-11-20 21:27:45 +01001285static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001286{
Willy Tarreau591d4452018-06-15 17:21:00 +02001287 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001288}
1289
Willy Tarreau1f094672017-11-20 21:27:45 +01001290static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001291{
Willy Tarreau591d4452018-06-15 17:21:00 +02001292 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001293}
1294
1295
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001296/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1297 * The algorithm is not obvious. It turns out that H2 headers are neither
1298 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1299 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001300 *
1301 * b0 b1 b2 b3 b4 b5..b8
1302 * +----------+---------+--------+----+----+----------------------+
1303 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1304 * +----------+---------+--------+----+----+----------------------+
1305 *
1306 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1307 * we get the sid properly aligned and ordered, and 16 bits of len properly
1308 * ordered as well. The type and flags can be extracted using bit shifts from
1309 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001310 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1311 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001312 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001313static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001314{
1315 uint64_t w;
1316
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001317 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001318 return 0;
1319
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001320 w = h2_get_n64(b, o + 1);
1321 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001322 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1323 h->ff = w >> 32;
1324 h->ft = w >> 40;
1325 h->len += w >> 48;
1326 return 1;
1327}
1328
1329/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1330 * h2_peek_frame_hdr() above.
1331 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001332static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001333{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001334 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001335}
1336
1337/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001338static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001339{
1340 int ret;
1341
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001342 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001343 if (ret > 0)
1344 h2_skip_frame_hdr(b);
1345 return ret;
1346}
1347
Willy Tarreaucb985a42019-10-07 16:56:34 +02001348
1349/* try to fragment the headers frame present at the beginning of buffer <b>,
1350 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1351 * success. Typical causes of failure include a buffer not large enough to
1352 * add extra frame headers. The existing frame size is read in the current
1353 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1354 * and its length will be adjusted. The stream ID for continuation frames will
1355 * be copied from the initial frame's.
1356 */
1357static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1358{
1359 size_t remain = b->data - 9;
1360 int extra_frames = (remain - 1) / mfs;
1361 size_t fsize;
1362 char *fptr;
1363 int frame;
1364
1365 if (b->data <= mfs + 9)
1366 return 1;
1367
1368 /* Too large a frame, we need to fragment it using CONTINUATION
1369 * frames. We start from the end and move tails as needed.
1370 */
1371 if (b->data + extra_frames * 9 > b->size)
1372 return 0;
1373
1374 for (frame = extra_frames; frame; frame--) {
1375 fsize = ((remain - 1) % mfs) + 1;
1376 remain -= fsize;
1377
1378 /* move data */
1379 fptr = b->area + 9 + remain + (frame - 1) * 9;
1380 memmove(fptr + 9, b->area + 9 + remain, fsize);
1381 b->data += 9;
1382
1383 /* write new frame header */
1384 h2_set_frame_size(fptr, fsize);
1385 fptr[3] = H2_FT_CONTINUATION;
1386 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1387 write_n32(fptr + 5, read_n32(b->area + 5));
1388 }
1389
1390 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1391 h2_set_frame_size(b->area, remain);
1392 return 1;
1393}
1394
1395
Willy Tarreau00dd0782018-03-01 16:31:34 +01001396/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1397 * its connection if the stream was not yet closed. Please use this exclusively
1398 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001399 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001400static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001401{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001402 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001403 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001404 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001405 if (!h2s->id)
1406 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001407 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001408 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1409 h2s_notify_recv(h2s);
1410 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001411 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001412
Willy Tarreau7838a792019-08-12 18:42:03 +02001413 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001414 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001415 h2s->st = H2_SS_CLOSED;
1416}
1417
Willy Tarreau71049cc2018-03-28 13:56:39 +02001418/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001419/* h2s_destroy should only ever be called by the thread that owns the stream,
1420 * that means that a tasklet should be used if we want to destroy the h2s
1421 * from another thread
1422 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001423static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001424{
Willy Tarreau7838a792019-08-12 18:42:03 +02001425 struct connection *conn = h2s->h2c->conn;
1426
1427 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1428
Willy Tarreau0a10de62018-03-01 16:27:53 +01001429 h2s_close(h2s);
1430 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001431 if (b_size(&h2s->rxbuf)) {
1432 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001433 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001434 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001435
1436 if (h2s->subs)
1437 h2s->subs->events = 0;
1438
Joseph Herlantd77575d2018-11-25 10:54:45 -08001439 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001440 * reference left would be in the h2c send_list/fctl_list, and if
1441 * we're in it, we're getting out anyway
1442 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001443 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001444
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001445 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001446 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001447 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001448
1449 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001450}
1451
Willy Tarreaua8e49542018-10-03 18:53:55 +02001452/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1453 * stream tree. In case of error, nothing is added and NULL is returned. The
1454 * causes of errors can be any failed memory allocation. The caller is
1455 * responsible for checking if the connection may support an extra stream
1456 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001457 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001458static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001459{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001460 struct h2s *h2s;
1461
Willy Tarreau7838a792019-08-12 18:42:03 +02001462 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1463
Willy Tarreaubafbe012017-11-24 17:34:44 +01001464 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001465 if (!h2s)
1466 goto out;
1467
Willy Tarreau5723f292020-01-10 15:16:57 +01001468 h2s->shut_tl = tasklet_new();
1469 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001470 pool_free(pool_head_h2s, h2s);
1471 goto out;
1472 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001473 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001474 h2s->shut_tl->process = h2_deferred_shut;
1475 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001476 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001477 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001478 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001479 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001480 h2s->flags = H2_SF_NONE;
1481 h2s->errcode = H2_ERR_NO_ERROR;
1482 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001483 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001484 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001485 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001486 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001487
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001488 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001489 if (id > 0)
1490 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001491 else
1492 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001493
1494 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001495 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001496 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001497
Willy Tarreau4781b152021-04-06 13:53:36 +02001498 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1499 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001500
Willy Tarreau7838a792019-08-12 18:42:03 +02001501 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001502 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001503 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001504 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001505 return NULL;
1506}
1507
1508/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001509 * case of memory allocation error. <input> is used as input buffer for the new
1510 * stream. On success, it is transferred to the stream and the mux is no longer
1511 * responsible of it. On error, <input> is unchanged, thus the mux must still
1512 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001513 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001514static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001515{
1516 struct session *sess = h2c->conn->owner;
1517 struct conn_stream *cs;
1518 struct h2s *h2s;
1519
Willy Tarreau7838a792019-08-12 18:42:03 +02001520 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1521
Willy Tarreaua8e49542018-10-03 18:53:55 +02001522 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1523 goto out;
1524
1525 h2s = h2s_new(h2c, id);
1526 if (!h2s)
1527 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001528
Christopher Faulet236c93b2020-07-02 09:19:54 +02001529 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001530 if (!cs)
1531 goto out_close;
1532
Olivier Houchard746fb772018-12-15 19:42:00 +01001533 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001534 h2s->cs = cs;
1535 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001536 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001537
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001538 /* FIXME wrong analogy between ext-connect and websocket, this need to
1539 * be refine.
1540 */
1541 if (flags & H2_SF_EXT_CONNECT_RCVD)
1542 cs->flags |= CS_FL_WEBSOCKET;
1543
Christopher Faulet7d013e72020-12-15 16:56:50 +01001544 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001545 goto out_free_cs;
1546
Willy Tarreau590a0512018-09-05 11:56:48 +02001547 /* We want the accept date presented to the next stream to be the one
1548 * we have now, the handshake time to be null (since the next stream
1549 * is not delayed by a handshake), and the idle time to count since
1550 * right now.
1551 */
1552 sess->accept_date = date;
1553 sess->tv_accept = now;
1554 sess->t_handshake = 0;
1555
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001556 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001557 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001558 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001559 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001560 return h2s;
1561
1562 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001563 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001564 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001565 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001566 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001567 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001568 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001569 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001570 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001571 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001572}
1573
Willy Tarreau751f2d02018-10-05 09:35:00 +02001574/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1575 * and returns it, or NULL in case of memory allocation error or if the highest
1576 * possible stream ID was reached.
1577 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001578static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001579{
1580 struct h2s *h2s = NULL;
1581
Willy Tarreau7838a792019-08-12 18:42:03 +02001582 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1583
Willy Tarreau86949782019-01-31 10:42:05 +01001584 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001585 goto out;
1586
Willy Tarreaua80dca82019-01-24 17:08:28 +01001587 if (h2_streams_left(h2c) < 1)
1588 goto out;
1589
Willy Tarreau751f2d02018-10-05 09:35:00 +02001590 /* Defer choosing the ID until we send the first message to create the stream */
1591 h2s = h2s_new(h2c, 0);
1592 if (!h2s)
1593 goto out;
1594
1595 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001596 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001597 cs->ctx = h2s;
1598 h2c->nb_cs++;
1599
Willy Tarreau751f2d02018-10-05 09:35:00 +02001600 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001601 if (likely(h2s))
1602 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1603 else
1604 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001605 return h2s;
1606}
1607
Willy Tarreaube5b7152017-09-25 16:25:39 +02001608/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1609 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1610 * the various settings codes.
1611 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001612static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001613{
1614 struct buffer *res;
1615 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001616 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001617 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001618 int ret = 0;
1619
1620 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001621
1622 if (h2c_mux_busy(h2c, NULL)) {
1623 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001624 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001625 }
1626
Willy Tarreaube5b7152017-09-25 16:25:39 +02001627 chunk_init(&buf, buf_data, sizeof(buf_data));
1628 chunk_memcpy(&buf,
1629 "\x00\x00\x00" /* length : 0 for now */
1630 "\x04\x00" /* type : 4 (settings), flags : 0 */
1631 "\x00\x00\x00\x00", /* stream ID : 0 */
1632 9);
1633
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001634 if (h2c->flags & H2_CF_IS_BACK) {
1635 /* send settings_enable_push=0 */
1636 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1637 }
1638
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001639 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1640 * sent automatically unless disabled in the global config */
1641 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1642 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001643
Willy Tarreaube5b7152017-09-25 16:25:39 +02001644 if (h2_settings_header_table_size != 4096) {
1645 char str[6] = "\x00\x01"; /* header_table_size */
1646
1647 write_n32(str + 2, h2_settings_header_table_size);
1648 chunk_memcat(&buf, str, 6);
1649 }
1650
1651 if (h2_settings_initial_window_size != 65535) {
1652 char str[6] = "\x00\x04"; /* initial_window_size */
1653
1654 write_n32(str + 2, h2_settings_initial_window_size);
1655 chunk_memcat(&buf, str, 6);
1656 }
1657
1658 if (h2_settings_max_concurrent_streams != 0) {
1659 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1660
1661 /* Note: 0 means "unlimited" for haproxy's config but not for
1662 * the protocol, so never send this value!
1663 */
1664 write_n32(str + 2, h2_settings_max_concurrent_streams);
1665 chunk_memcat(&buf, str, 6);
1666 }
1667
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001668 mfs = h2_settings_max_frame_size;
1669 if (mfs > global.tune.bufsize)
1670 mfs = global.tune.bufsize;
1671
1672 if (!mfs)
1673 mfs = global.tune.bufsize;
1674
1675 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001676 char str[6] = "\x00\x05"; /* max_frame_size */
1677
1678 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1679 * match bufsize - rewrite size, but at the moment it seems
1680 * that clients don't take care of it.
1681 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001682 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001683 chunk_memcat(&buf, str, 6);
1684 }
1685
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001686 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001687
1688 res = br_tail(h2c->mbuf);
1689 retry:
1690 if (!h2_get_buf(h2c, res)) {
1691 h2c->flags |= H2_CF_MUX_MALLOC;
1692 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001693 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001694 }
1695
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001696 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001697 if (unlikely(ret <= 0)) {
1698 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001699 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1700 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001701 h2c->flags |= H2_CF_MUX_MFULL;
1702 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001703 }
1704 else {
1705 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001706 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001707 }
1708 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001709 out:
1710 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001711 return ret;
1712}
1713
Willy Tarreau52eed752017-09-22 15:05:09 +02001714/* Try to receive a connection preface, then upon success try to send our
1715 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1716 * missing data. It may return an error in h2c.
1717 */
1718static int h2c_frt_recv_preface(struct h2c *h2c)
1719{
1720 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001721 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001722
Willy Tarreau7838a792019-08-12 18:42:03 +02001723 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1724
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001725 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001726
1727 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001728 if (!ret1)
1729 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001730 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001731 TRACE_ERROR("I/O error or short read", H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02001732 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001733 if (b_data(&h2c->dbuf) ||
1734 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1735 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001736 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001737 ret2 = 0;
1738 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001739 }
1740
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001741 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001742 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001743 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001744 out:
1745 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001746 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001747}
1748
Willy Tarreau01b44822018-10-03 14:26:37 +02001749/* Try to send a connection preface, then upon success try to send our
1750 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1751 * missing data. It may return an error in h2c.
1752 */
1753static int h2c_bck_send_preface(struct h2c *h2c)
1754{
1755 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001756 int ret = 0;
1757
1758 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001759
1760 if (h2c_mux_busy(h2c, NULL)) {
1761 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001762 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001763 }
1764
Willy Tarreaubcc45952019-05-26 10:05:50 +02001765 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001766 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001767 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001768 h2c->flags |= H2_CF_MUX_MALLOC;
1769 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001770 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001771 }
1772
1773 if (!b_data(res)) {
1774 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001775 ret = b_istput(res, ist(H2_CONN_PREFACE));
1776 if (unlikely(ret <= 0)) {
1777 if (!ret) {
1778 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1779 goto retry;
1780 h2c->flags |= H2_CF_MUX_MFULL;
1781 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001782 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001783 }
1784 else {
1785 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001786 ret = 0;
1787 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001788 }
1789 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001790 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001791 ret = h2c_send_settings(h2c);
1792 out:
1793 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1794 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001795}
1796
Willy Tarreau081d4722017-05-16 21:51:05 +02001797/* try to send a GOAWAY frame on the connection to report an error or a graceful
1798 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1799 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1800 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1801 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1802 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1803 * on unrecoverable failure. It will not attempt to send one again in this last
1804 * case so that it is safe to use h2c_error() to report such errors.
1805 */
1806static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1807{
1808 struct buffer *res;
1809 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001810 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001811
Willy Tarreau7838a792019-08-12 18:42:03 +02001812 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1813
1814 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1815 ret = 1; // claim that it worked
1816 goto out;
1817 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001818
1819 if (h2c_mux_busy(h2c, h2s)) {
1820 if (h2s)
1821 h2s->flags |= H2_SF_BLK_MBUSY;
1822 else
1823 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001824 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001825 }
1826
Willy Tarreau9c218e72019-05-26 10:08:28 +02001827 /* len: 8, type: 7, flags: none, sid: 0 */
1828 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1829
1830 if (h2c->last_sid < 0)
1831 h2c->last_sid = h2c->max_id;
1832
1833 write_n32(str + 9, h2c->last_sid);
1834 write_n32(str + 13, h2c->errcode);
1835
Willy Tarreaubcc45952019-05-26 10:05:50 +02001836 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001837 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001838 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001839 h2c->flags |= H2_CF_MUX_MALLOC;
1840 if (h2s)
1841 h2s->flags |= H2_SF_BLK_MROOM;
1842 else
1843 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001844 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001845 }
1846
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001847 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001848 if (unlikely(ret <= 0)) {
1849 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001850 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1851 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001852 h2c->flags |= H2_CF_MUX_MFULL;
1853 if (h2s)
1854 h2s->flags |= H2_SF_BLK_MROOM;
1855 else
1856 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001857 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001858 }
1859 else {
1860 /* we cannot report this error using GOAWAY, so we mark
1861 * it and claim a success.
1862 */
1863 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1864 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001865 ret = 1;
1866 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001867 }
1868 }
1869 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001870
1871 /* some codes are not for real errors, just attempts to close cleanly */
1872 switch (h2c->errcode) {
1873 case H2_ERR_NO_ERROR:
1874 case H2_ERR_ENHANCE_YOUR_CALM:
1875 case H2_ERR_REFUSED_STREAM:
1876 case H2_ERR_CANCEL:
1877 break;
1878 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001879 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001880 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001881 out:
1882 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001883 return ret;
1884}
1885
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001886/* Try to send an RST_STREAM frame on the connection for the indicated stream
1887 * during mux operations. This stream must be valid and cannot be closed
1888 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1889 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1890 * not yet.
1891 *
1892 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1893 * to write the message, it subscribes the stream to future notifications.
1894 */
1895static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1896{
1897 struct buffer *res;
1898 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001899 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001900
Willy Tarreau7838a792019-08-12 18:42:03 +02001901 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1902
1903 if (!h2s || h2s->st == H2_SS_CLOSED) {
1904 ret = 1;
1905 goto out;
1906 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001907
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001908 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1909 * RST_STREAM in response to a RST_STREAM frame.
1910 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001911 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001912 ret = 1;
1913 goto ignore;
1914 }
1915
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001916 if (h2c_mux_busy(h2c, h2s)) {
1917 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001918 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001919 }
1920
Willy Tarreau9c218e72019-05-26 10:08:28 +02001921 /* len: 4, type: 3, flags: none */
1922 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1923 write_n32(str + 5, h2s->id);
1924 write_n32(str + 9, h2s->errcode);
1925
Willy Tarreaubcc45952019-05-26 10:05:50 +02001926 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001927 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001928 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001929 h2c->flags |= H2_CF_MUX_MALLOC;
1930 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001931 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001932 }
1933
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001934 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001935 if (unlikely(ret <= 0)) {
1936 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001937 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1938 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001939 h2c->flags |= H2_CF_MUX_MFULL;
1940 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001941 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001942 }
1943 else {
1944 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001945 ret = 0;
1946 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001947 }
1948 }
1949
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001950 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001951 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001952 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001953 out:
1954 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001955 return ret;
1956}
1957
1958/* Try to send an RST_STREAM frame on the connection for the stream being
1959 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001960 * error code, even if the stream is one of the dummy ones, and will update
1961 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001962 *
1963 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1964 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001965 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001966 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001967 */
1968static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1969{
1970 struct buffer *res;
1971 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001972 int ret = 0;
1973
1974 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001975
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001976 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1977 * RST_STREAM in response to a RST_STREAM frame.
1978 */
1979 if (h2c->dft == H2_FT_RST_STREAM) {
1980 ret = 1;
1981 goto ignore;
1982 }
1983
Willy Tarreau27a84c92017-10-17 08:10:17 +02001984 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001985 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001986 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001987 }
1988
Willy Tarreau9c218e72019-05-26 10:08:28 +02001989 /* len: 4, type: 3, flags: none */
1990 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1991
1992 write_n32(str + 5, h2c->dsi);
1993 write_n32(str + 9, h2s->errcode);
1994
Willy Tarreaubcc45952019-05-26 10:05:50 +02001995 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001996 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001997 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001998 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001999 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002000 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002001 }
2002
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002003 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002004 if (unlikely(ret <= 0)) {
2005 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002006 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2007 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002008 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002009 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002010 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002011 }
2012 else {
2013 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002014 ret = 0;
2015 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002016 }
2017 }
2018
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002019 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002020 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002021 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002022 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002023 }
2024
Willy Tarreau7838a792019-08-12 18:42:03 +02002025 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002026 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002027 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002028 return ret;
2029}
2030
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002031/* try to send an empty DATA frame with the ES flag set to notify about the
2032 * end of stream and match a shutdown(write). If an ES was already sent as
2033 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2034 * on success or zero if nothing was done. In case of lack of room to write the
2035 * message, it subscribes the requesting stream to future notifications.
2036 */
2037static int h2_send_empty_data_es(struct h2s *h2s)
2038{
2039 struct h2c *h2c = h2s->h2c;
2040 struct buffer *res;
2041 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002042 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002043
Willy Tarreau7838a792019-08-12 18:42:03 +02002044 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2045
2046 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2047 ret = 1;
2048 goto out;
2049 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002050
2051 if (h2c_mux_busy(h2c, h2s)) {
2052 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002053 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002054 }
2055
Willy Tarreau9c218e72019-05-26 10:08:28 +02002056 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2057 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2058 write_n32(str + 5, h2s->id);
2059
Willy Tarreaubcc45952019-05-26 10:05:50 +02002060 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002061 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002062 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002063 h2c->flags |= H2_CF_MUX_MALLOC;
2064 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002065 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002066 }
2067
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002068 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002069 if (likely(ret > 0)) {
2070 h2s->flags |= H2_SF_ES_SENT;
2071 }
2072 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002073 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2074 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002075 h2c->flags |= H2_CF_MUX_MFULL;
2076 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002077 }
2078 else {
2079 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002080 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002081 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002082 out:
2083 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002084 return ret;
2085}
2086
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002087/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002088 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002089 * is automatically updated accordingly. If the stream is orphaned, it is
2090 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002091 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002092static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002093{
Willy Tarreau7838a792019-08-12 18:42:03 +02002094 struct h2c *h2c = h2s->h2c;
2095
2096 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2097
Christopher Fauletf02ca002019-03-07 16:21:34 +01002098 if (!h2s->cs) {
2099 /* this stream was already orphaned */
2100 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002101 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002102 return;
2103 }
2104
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002105 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002106 if (h2s->st == H2_SS_OPEN)
2107 h2s->st = H2_SS_HREM;
2108 else if (h2s->st == H2_SS_HLOC)
2109 h2s_close(h2s);
2110 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002111
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002112 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2113 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2114 h2s->cs->flags |= CS_FL_ERR_PENDING;
2115 if (h2s->cs->flags & CS_FL_EOS)
2116 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002117
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002118 if (h2s->st < H2_SS_ERROR)
2119 h2s->st = H2_SS_ERROR;
2120 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002121
2122 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002123 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002124}
2125
2126/* wake the streams attached to the connection, whose id is greater than <last>
2127 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002128 */
Willy Tarreau23482912019-05-07 15:23:14 +02002129static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002130{
2131 struct eb32_node *node;
2132 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002133
Willy Tarreau7838a792019-08-12 18:42:03 +02002134 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2135
Christopher Fauletf02ca002019-03-07 16:21:34 +01002136 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002137 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2138 while (node) {
2139 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002140 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002141 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002142 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002143
Christopher Fauletf02ca002019-03-07 16:21:34 +01002144 /* Wake all streams with unassigned ID (ID == 0) */
2145 node = eb32_lookup(&h2c->streams_by_id, 0);
2146 while (node) {
2147 h2s = container_of(node, struct h2s, by_id);
2148 if (h2s->id > 0)
2149 break;
2150 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002151 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002152 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002153
2154 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002155}
2156
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002157/* Wake up all blocked streams whose window size has become positive after the
2158 * mux's initial window was adjusted. This should be done after having processed
2159 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002160 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002161static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002162{
2163 struct h2s *h2s;
2164 struct eb32_node *node;
2165
Willy Tarreau7838a792019-08-12 18:42:03 +02002166 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2167
Willy Tarreau3421aba2017-07-27 15:41:03 +02002168 node = eb32_first(&h2c->streams_by_id);
2169 while (node) {
2170 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002171 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002172 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002173 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002174 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2175 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002176 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002177 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002178 node = eb32_next(node);
2179 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002180
2181 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002182}
2183
2184/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2185 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002186 * return an error in h2c. The caller must have already verified frame length
2187 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002188 */
2189static int h2c_handle_settings(struct h2c *h2c)
2190{
2191 unsigned int offset;
2192 int error;
2193
Willy Tarreau7838a792019-08-12 18:42:03 +02002194 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2195
Willy Tarreau3421aba2017-07-27 15:41:03 +02002196 if (h2c->dff & H2_F_SETTINGS_ACK) {
2197 if (h2c->dfl) {
2198 error = H2_ERR_FRAME_SIZE_ERROR;
2199 goto fail;
2200 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002201 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002202 }
2203
Willy Tarreau3421aba2017-07-27 15:41:03 +02002204 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002205 if (b_data(&h2c->dbuf) < h2c->dfl) {
2206 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002207 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002208 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002209
2210 /* parse the frame */
2211 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002212 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2213 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002214
2215 switch (type) {
2216 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2217 /* we need to update all existing streams with the
2218 * difference from the previous iws.
2219 */
2220 if (arg < 0) { // RFC7540#6.5.2
2221 error = H2_ERR_FLOW_CONTROL_ERROR;
2222 goto fail;
2223 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002224 h2c->miw = arg;
2225 break;
2226 case H2_SETTINGS_MAX_FRAME_SIZE:
2227 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002228 TRACE_ERROR("MAX_FRAME_SIZE out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002229 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002230 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002231 goto fail;
2232 }
2233 h2c->mfs = arg;
2234 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002235 case H2_SETTINGS_ENABLE_PUSH:
2236 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002237 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002238 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002239 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002240 goto fail;
2241 }
2242 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002243 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2244 if (h2c->flags & H2_CF_IS_BACK) {
2245 /* the limit is only for the backend; for the frontend it is our limit */
2246 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2247 arg = h2_settings_max_concurrent_streams;
2248 h2c->streams_limit = arg;
2249 }
2250 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002251 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002252 if (arg == 1)
2253 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002254 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002255 }
2256 }
2257
2258 /* need to ACK this frame now */
2259 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002260 done:
2261 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002262 return 1;
2263 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002264 if (!(h2c->flags & H2_CF_IS_BACK))
2265 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002266 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002267 out0:
2268 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 +02002269 return 0;
2270}
2271
2272/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2273 * success or one of the h2_status values.
2274 */
2275static int h2c_ack_settings(struct h2c *h2c)
2276{
2277 struct buffer *res;
2278 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002279 int ret = 0;
2280
2281 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002282
2283 if (h2c_mux_busy(h2c, NULL)) {
2284 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002285 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002286 }
2287
Willy Tarreau9c218e72019-05-26 10:08:28 +02002288 memcpy(str,
2289 "\x00\x00\x00" /* length : 0 (no data) */
2290 "\x04" "\x01" /* type : 4, flags : ACK */
2291 "\x00\x00\x00\x00" /* stream ID */, 9);
2292
Willy Tarreaubcc45952019-05-26 10:05:50 +02002293 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002294 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002295 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002296 h2c->flags |= H2_CF_MUX_MALLOC;
2297 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002298 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002299 }
2300
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002301 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002302 if (unlikely(ret <= 0)) {
2303 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002304 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2305 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002306 h2c->flags |= H2_CF_MUX_MFULL;
2307 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002308 }
2309 else {
2310 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002311 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002312 }
2313 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002314 out:
2315 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002316 return ret;
2317}
2318
Willy Tarreaucf68c782017-10-10 17:11:41 +02002319/* processes a PING frame and schedules an ACK if needed. The caller must pass
2320 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002321 * missing data. The caller must have already verified frame length
2322 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002323 */
2324static int h2c_handle_ping(struct h2c *h2c)
2325{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002326 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002327 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002328 h2c->st0 = H2_CS_FRAME_A;
2329 return 1;
2330}
2331
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002332/* Try to send a window update for stream id <sid> and value <increment>.
2333 * Returns > 0 on success or zero on missing room or failure. It may return an
2334 * error in h2c.
2335 */
2336static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2337{
2338 struct buffer *res;
2339 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002340 int ret = 0;
2341
2342 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002343
2344 if (h2c_mux_busy(h2c, NULL)) {
2345 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002346 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002347 }
2348
Willy Tarreau9c218e72019-05-26 10:08:28 +02002349 /* length: 4, type: 8, flags: none */
2350 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2351 write_n32(str + 5, sid);
2352 write_n32(str + 9, increment);
2353
Willy Tarreaubcc45952019-05-26 10:05:50 +02002354 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002355 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002356 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002357 h2c->flags |= H2_CF_MUX_MALLOC;
2358 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002359 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002360 }
2361
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002362 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002363 if (unlikely(ret <= 0)) {
2364 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002365 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2366 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002367 h2c->flags |= H2_CF_MUX_MFULL;
2368 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002369 }
2370 else {
2371 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002372 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002373 }
2374 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002375 out:
2376 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002377 return ret;
2378}
2379
2380/* try to send pending window update for the connection. It's safe to call it
2381 * with no pending updates. Returns > 0 on success or zero on missing room or
2382 * failure. It may return an error in h2c.
2383 */
2384static int h2c_send_conn_wu(struct h2c *h2c)
2385{
2386 int ret = 1;
2387
Willy Tarreau7838a792019-08-12 18:42:03 +02002388 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2389
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002390 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002391 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002392
Willy Tarreau97aaa672018-12-23 09:49:04 +01002393 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2394 /* increase the advertised connection window to 2G on
2395 * first update.
2396 */
2397 h2c->flags |= H2_CF_WINDOW_OPENED;
2398 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2399 }
2400
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002401 /* send WU for the connection */
2402 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2403 if (ret > 0)
2404 h2c->rcvd_c = 0;
2405
Willy Tarreau7838a792019-08-12 18:42:03 +02002406 out:
2407 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002408 return ret;
2409}
2410
2411/* try to send pending window update for the current dmux stream. It's safe to
2412 * call it with no pending updates. Returns > 0 on success or zero on missing
2413 * room or failure. It may return an error in h2c.
2414 */
2415static int h2c_send_strm_wu(struct h2c *h2c)
2416{
2417 int ret = 1;
2418
Willy Tarreau7838a792019-08-12 18:42:03 +02002419 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2420
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002421 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002422 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002423
2424 /* send WU for the stream */
2425 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2426 if (ret > 0)
2427 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002428 out:
2429 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002430 return ret;
2431}
2432
Willy Tarreaucf68c782017-10-10 17:11:41 +02002433/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2434 * success, 0 on missing data or one of the h2_status values.
2435 */
2436static int h2c_ack_ping(struct h2c *h2c)
2437{
2438 struct buffer *res;
2439 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002440 int ret = 0;
2441
2442 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002443
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002444 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002445 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002446
2447 if (h2c_mux_busy(h2c, NULL)) {
2448 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002449 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002450 }
2451
Willy Tarreaucf68c782017-10-10 17:11:41 +02002452 memcpy(str,
2453 "\x00\x00\x08" /* length : 8 (same payload) */
2454 "\x06" "\x01" /* type : 6, flags : ACK */
2455 "\x00\x00\x00\x00" /* stream ID */, 9);
2456
2457 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002458 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002459
Willy Tarreau9c218e72019-05-26 10:08:28 +02002460 res = br_tail(h2c->mbuf);
2461 retry:
2462 if (!h2_get_buf(h2c, res)) {
2463 h2c->flags |= H2_CF_MUX_MALLOC;
2464 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002465 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002466 }
2467
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002468 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002469 if (unlikely(ret <= 0)) {
2470 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002471 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2472 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002473 h2c->flags |= H2_CF_MUX_MFULL;
2474 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002475 }
2476 else {
2477 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002478 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002479 }
2480 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002481 out:
2482 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002483 return ret;
2484}
2485
Willy Tarreau26f95952017-07-27 17:18:30 +02002486/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2487 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002488 * h2c or h2s. The caller must have already verified frame length and stream ID
2489 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002490 */
2491static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2492{
2493 int32_t inc;
2494 int error;
2495
Willy Tarreau7838a792019-08-12 18:42:03 +02002496 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2497
Willy Tarreau26f95952017-07-27 17:18:30 +02002498 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002499 if (b_data(&h2c->dbuf) < h2c->dfl) {
2500 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002501 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002502 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002503
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002504 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002505
2506 if (h2c->dsi != 0) {
2507 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002508
2509 /* it's not an error to receive WU on a closed stream */
2510 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002511 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002512
2513 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002514 TRACE_ERROR("stream WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn, h2s);
Willy Tarreau26f95952017-07-27 17:18:30 +02002515 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002516 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002517 goto strm_err;
2518 }
2519
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002520 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002521 TRACE_ERROR("stream WINDOW_UPDATE inc<0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn, h2s);
Willy Tarreau26f95952017-07-27 17:18:30 +02002522 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002523 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002524 goto strm_err;
2525 }
2526
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002527 h2s->sws += inc;
2528 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002529 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002530 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002531 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2532 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002533 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002534 }
2535 }
2536 else {
2537 /* connection window update */
2538 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002539 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002540 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002541 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002542 goto conn_err;
2543 }
2544
2545 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2546 error = H2_ERR_FLOW_CONTROL_ERROR;
2547 goto conn_err;
2548 }
2549
2550 h2c->mws += inc;
2551 }
2552
Willy Tarreau7838a792019-08-12 18:42:03 +02002553 done:
2554 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002555 return 1;
2556
2557 conn_err:
2558 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002559 out0:
2560 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 +02002561 return 0;
2562
2563 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002564 h2s_error(h2s, error);
2565 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002566 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002567 return 0;
2568}
2569
Willy Tarreaue96b0922017-10-30 00:28:29 +01002570/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002571 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2572 * have already verified frame length and stream ID validity. Described in
2573 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002574 */
2575static int h2c_handle_goaway(struct h2c *h2c)
2576{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002577 int last;
2578
Willy Tarreau7838a792019-08-12 18:42:03 +02002579 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002580 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002581 if (b_data(&h2c->dbuf) < h2c->dfl) {
2582 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002583 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002584 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002585 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002586
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002587 last = h2_get_n32(&h2c->dbuf, 0);
2588 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002589 if (h2c->last_sid < 0)
2590 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002591 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002592 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002593 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002594}
2595
Willy Tarreau92153fc2017-12-03 19:46:19 +01002596/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002597 * invalid. Returns > 0 on success or zero on missing data. It may return an
2598 * error in h2c. The caller must have already verified frame length and stream
2599 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002600 */
2601static int h2c_handle_priority(struct h2c *h2c)
2602{
Willy Tarreau7838a792019-08-12 18:42:03 +02002603 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2604
Willy Tarreau92153fc2017-12-03 19:46:19 +01002605 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002606 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002607 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002608 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002609 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002610 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002611
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002612 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002613 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002614 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002615 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002616 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002617 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002618 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002619 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002620 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002621 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002622}
2623
Willy Tarreaucd234e92017-08-18 10:59:39 +02002624/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002625 * Returns > 0 on success or zero on missing data. The caller must have already
2626 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002627 */
2628static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2629{
Willy Tarreau7838a792019-08-12 18:42:03 +02002630 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2631
Willy Tarreaucd234e92017-08-18 10:59:39 +02002632 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002633 if (b_data(&h2c->dbuf) < h2c->dfl) {
2634 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002635 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002636 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002637 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002638
2639 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002640 if (h2s->st == H2_SS_CLOSED) {
2641 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 +02002642 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002643 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002644
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002645 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002646 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002647
2648 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002649 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002650 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002651 }
2652
2653 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002654 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002655 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002656}
2657
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002658/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2659 * It may return an error in h2c or h2s. The caller must consider that the
2660 * return value is the new h2s in case one was allocated (most common case).
2661 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002662 * errors here are reported as connection errors since it's impossible to
2663 * recover from such errors after the compression context has been altered.
2664 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002665static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002666{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002667 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002668 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002669 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002670 int error;
2671
Willy Tarreau7838a792019-08-12 18:42:03 +02002672 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2673
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002674 if (!b_size(&h2c->dbuf)) {
2675 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002676 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002677 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002678
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002679 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2680 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002681 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002682 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002683
2684 /* now either the frame is complete or the buffer is complete */
2685 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002686 /* The stream exists/existed, this must be a trailers frame */
2687 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002688 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002689 /* unrecoverable error ? */
2690 if (h2c->st0 >= H2_CS_ERROR)
2691 goto out;
2692
Christopher Faulet485da0b2021-10-08 08:56:00 +02002693 if (error == 0) {
2694 /* Demux not blocked because of the stream, it is an incomplete frame */
2695 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2696 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002697 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002698 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002699
2700 if (error < 0) {
2701 /* Failed to decode this frame (e.g. too large request)
2702 * but the HPACK decompressor is still synchronized.
2703 */
2704 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2705 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002706 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002707 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002708 goto done;
2709 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002710 /* the connection was already killed by an RST, let's consume
2711 * the data and send another RST.
2712 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002713 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002714 h2s = (struct h2s*)h2_error_stream;
2715 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002716 }
2717 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2718 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2719 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002720 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002721 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002722 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002723 goto conn_err;
2724 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002725 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2726 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002727
Amaury Denoyelle74162742020-12-11 17:53:05 +01002728 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002729
Willy Tarreau25919232019-01-03 14:48:18 +01002730 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002731 if (h2c->st0 >= H2_CS_ERROR)
2732 goto out;
2733
Willy Tarreau25919232019-01-03 14:48:18 +01002734 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002735 if (error == 0) {
2736 /* Demux not blocked because of the stream, it is an incomplete frame */
2737 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2738 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002739 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002740 }
Willy Tarreau25919232019-01-03 14:48:18 +01002741
2742 /* Failed to decode this stream (e.g. too large request)
2743 * but the HPACK decompressor is still synchronized.
2744 */
2745 h2s = (struct h2s*)h2_error_stream;
2746 goto send_rst;
2747 }
2748
Willy Tarreau29268e92021-06-17 08:29:14 +02002749 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2750
Willy Tarreau22de8d32018-09-05 19:55:58 +02002751 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002752 * positively from h2c_frt_stream_new(), the stream will report the error,
2753 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002754 *
2755 * Xfer the rxbuf to the stream. On success, the new stream owns the
2756 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002757 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002758 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002759 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002760 h2s = (struct h2s*)h2_refused_stream;
2761 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002762 }
2763
2764 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002765 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002766 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002767
Willy Tarreau88d138e2019-01-02 19:38:14 +01002768 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002769 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002770 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002771
2772 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002773 if (h2s->st == H2_SS_OPEN)
2774 h2s->st = H2_SS_HREM;
2775 else
2776 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002777 }
2778
Willy Tarreau3a429f02019-01-03 11:41:50 +01002779 /* update the max stream ID if the request is being processed */
2780 if (h2s->id > h2c->max_id)
2781 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002782
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002783 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002784
2785 conn_err:
2786 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002787 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002788
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002789 out:
2790 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002791 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 +01002792 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002793
2794 send_rst:
2795 /* make the demux send an RST for the current stream. We may only
2796 * do this if we're certain that the HEADERS frame was properly
2797 * decompressed so that the HPACK decoder is still kept up to date.
2798 */
2799 h2_release_buf(h2c, &rxbuf);
2800 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002801
Willy Tarreau022e5e52020-09-10 09:33:15 +02002802 TRACE_USER("rejected H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002803 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002804 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002805}
2806
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002807/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2808 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2809 * errors here are reported as connection errors since it's impossible to
2810 * recover from such errors after the compression context has been altered.
2811 */
2812static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2813{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002814 struct buffer rxbuf = BUF_NULL;
2815 unsigned long long body_len = 0;
2816 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002817 int error;
2818
Willy Tarreau7838a792019-08-12 18:42:03 +02002819 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2820
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002821 if (!b_size(&h2c->dbuf)) {
2822 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002823 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002824 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002825
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002826 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2827 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002828 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002829 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002830
Christopher Faulet6884aa32019-09-23 15:28:20 +02002831 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002832 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002833 }
2834 else {
2835 /* the connection was already killed by an RST, let's consume
2836 * the data and send another RST.
2837 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002838 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002839 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002840 h2c->st0 = H2_CS_FRAME_E;
2841 goto send_rst;
2842 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002843
Willy Tarreau25919232019-01-03 14:48:18 +01002844 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002845 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002846 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002847
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002848 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2849 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002850 TRACE_ERROR("response HEADERS in invalid state", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002851 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2852 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002853 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002854 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002855 }
2856
Willy Tarreau25919232019-01-03 14:48:18 +01002857 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002858 if (error == 0) {
2859 /* Demux not blocked because of the stream, it is an incomplete frame */
2860 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2861 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002862 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002863 }
Willy Tarreau25919232019-01-03 14:48:18 +01002864
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002865 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002866 TRACE_ERROR("couldn't decode response HEADERS", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau25919232019-01-03 14:48:18 +01002867 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002868 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002869 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002870 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002871 }
2872
Christopher Fauletfa922f02019-05-07 10:55:17 +02002873 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002874 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002875
Willy Tarreau927b88b2019-03-04 08:03:25 +01002876 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002877 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002878 else if (h2s->flags & H2_SF_ES_RCVD) {
2879 if (h2s->st == H2_SS_OPEN)
2880 h2s->st = H2_SS_HREM;
2881 else if (h2s->st == H2_SS_HLOC)
2882 h2s_close(h2s);
2883 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002884
Christopher Fauletf95f8762021-01-22 11:59:07 +01002885 /* Unblock busy server h2s waiting for the response headers to validate
2886 * the tunnel establishment or the end of the response of an oborted
2887 * tunnel
2888 */
2889 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2890 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) {
2891 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2892 h2s->flags &= ~H2_SF_BLK_MBUSY;
2893 }
2894
Willy Tarreau9abb3172021-06-16 18:32:42 +02002895 TRACE_USER("rcvd H2 response ", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, 0, &h2s->rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002896 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002897 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002898 fail:
2899 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2900 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002901
2902 send_rst:
2903 /* make the demux send an RST for the current stream. We may only
2904 * do this if we're certain that the HEADERS frame was properly
2905 * decompressed so that the HPACK decoder is still kept up to date.
2906 */
2907 h2_release_buf(h2c, &rxbuf);
2908 h2c->st0 = H2_CS_FRAME_E;
2909
Willy Tarreau022e5e52020-09-10 09:33:15 +02002910 TRACE_USER("rejected H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002911 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2912 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002913}
2914
Willy Tarreau454f9052017-10-26 19:40:35 +02002915/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2916 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2917 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002918static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002919{
2920 int error;
2921
Willy Tarreau7838a792019-08-12 18:42:03 +02002922 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2923
Willy Tarreau454f9052017-10-26 19:40:35 +02002924 /* note that empty DATA frames are perfectly valid and sometimes used
2925 * to signal an end of stream (with the ES flag).
2926 */
2927
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002928 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2929 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002930 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002931 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002932
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002933 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2934 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002935 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002936 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002937
2938 /* now either the frame is complete or the buffer is complete */
2939
Willy Tarreau454f9052017-10-26 19:40:35 +02002940 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2941 /* RFC7540#6.1 */
2942 error = H2_ERR_STREAM_CLOSED;
2943 goto strm_err;
2944 }
2945
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002946 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002947 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002948 TRACE_ERROR("DATA frame larger than content-length", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002949 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002950 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002951 goto strm_err;
2952 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002953 if (!(h2c->flags & H2_CF_IS_BACK) &&
2954 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2955 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2956 /* a tunnel attempt was aborted but the client still try to send some raw data.
2957 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2958 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2959 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002960 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002961 */
2962 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2963 error = H2_ERR_CANCEL;
2964 goto strm_err;
2965 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002966
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002967 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002968 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002969
Willy Tarreau454f9052017-10-26 19:40:35 +02002970 /* call the upper layers to process the frame, then let the upper layer
2971 * notify the stream about any change.
2972 */
2973 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002974 /* The upper layer has already closed, this may happen on
2975 * 4xx/redirects during POST, or when receiving a response
2976 * from an H2 server after the client has aborted.
2977 */
2978 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002979 goto strm_err;
2980 }
2981
Willy Tarreau8f650c32017-11-21 19:36:21 +01002982 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002983 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002984
Willy Tarreau721c9742017-11-07 11:05:42 +01002985 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002986 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002987 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002988 }
2989
2990 /* check for completion : the callee will change this to FRAME_A or
2991 * FRAME_H once done.
2992 */
2993 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002994 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002995
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002996 /* last frame */
2997 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002998 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002999 if (h2s->st == H2_SS_OPEN)
3000 h2s->st = H2_SS_HREM;
3001 else
3002 h2s_close(h2s);
3003
Willy Tarreau1915ca22019-01-24 11:49:37 +01003004 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3005 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003006 TRACE_ERROR("ES on DATA frame before content-length", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003007 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003008 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003009 goto strm_err;
3010 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003011 }
3012
Christopher Fauletf95f8762021-01-22 11:59:07 +01003013 /* Unblock busy server h2s waiting for the end of the response for an
3014 * aborted tunnel
3015 */
3016 if ((h2c->flags & H2_CF_IS_BACK) &&
3017 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_RCVD|H2_SF_BLK_MBUSY)) {
3018 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3019 h2s->flags &= ~H2_SF_BLK_MBUSY;
3020 }
3021
Willy Tarreau7838a792019-08-12 18:42:03 +02003022 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003023 return 1;
3024
Willy Tarreau454f9052017-10-26 19:40:35 +02003025 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003026 h2s_error(h2s, error);
3027 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003028 fail:
3029 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 +02003030 return 0;
3031}
3032
Willy Tarreau63864812019-08-07 14:25:20 +02003033/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3034 * valid for the current stream state. This is needed only after parsing the
3035 * frame header but in practice it can be performed at any time during
3036 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3037 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3038 */
3039static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3040{
Willy Tarreau7838a792019-08-12 18:42:03 +02003041 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3042
Willy Tarreau63864812019-08-07 14:25:20 +02003043 if (h2s->st == H2_SS_IDLE &&
3044 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3045 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3046 * this state MUST be treated as a connection error
3047 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003048 TRACE_ERROR("invalid frame type for IDLE state", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003049 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003050 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003051 /* only log if no other stream can report the error */
3052 sess_log(h2c->conn->owner);
3053 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003054 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003055 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 +02003056 return 0;
3057 }
3058
Willy Tarreau57a18162019-11-24 14:57:53 +01003059 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3060 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003061 TRACE_ERROR("invalid frame type for IDLE state (back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau57a18162019-11-24 14:57:53 +01003062 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003063 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003064 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3065 return 0;
3066 }
3067
Willy Tarreau63864812019-08-07 14:25:20 +02003068 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3069 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3070 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3071 * this state MUST be treated as a stream error.
3072 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3073 * PUSH_PROMISE/CONTINUATION cause connection errors.
3074 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003075 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003076 TRACE_ERROR("invalid frame type for HREM state", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003077 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003078 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003079 }
3080 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003081 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003082 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003083 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 +02003084 return 0;
3085 }
3086
3087 /* Below the management of frames received in closed state is a
3088 * bit hackish because the spec makes strong differences between
3089 * streams closed by receiving RST, sending RST, and seeing ES
3090 * in both directions. In addition to this, the creation of a
3091 * new stream reusing the identifier of a closed one will be
3092 * detected here. Given that we cannot keep track of all closed
3093 * streams forever, we consider that unknown closed streams were
3094 * closed on RST received, which allows us to respond with an
3095 * RST without breaking the connection (eg: to abort a transfer).
3096 * Some frames have to be silently ignored as well.
3097 */
3098 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3099 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3100 /* #5.1.1: The identifier of a newly
3101 * established stream MUST be numerically
3102 * greater than all streams that the initiating
3103 * endpoint has opened or reserved. This
3104 * governs streams that are opened using a
3105 * HEADERS frame and streams that are reserved
3106 * using PUSH_PROMISE. An endpoint that
3107 * receives an unexpected stream identifier
3108 * MUST respond with a connection error.
3109 */
3110 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003111 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 +02003112 return 0;
3113 }
3114
Willy Tarreau4c08f122019-09-26 08:47:15 +02003115 if (h2s->flags & H2_SF_RST_RCVD &&
3116 !(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 +02003117 /* RFC7540#5.1:closed: an endpoint that
3118 * receives any frame other than PRIORITY after
3119 * receiving a RST_STREAM MUST treat that as a
3120 * stream error of type STREAM_CLOSED.
3121 *
3122 * Note that old streams fall into this category
3123 * and will lead to an RST being sent.
3124 *
3125 * However, we cannot generalize this to all frame types. Those
3126 * carrying compression state must still be processed before
3127 * being dropped or we'll desynchronize the decoder. This can
3128 * happen with request trailers received after sending an
3129 * RST_STREAM, or with header/trailers responses received after
3130 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003131 *
3132 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003133 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003134 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003135 */
3136 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3137 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003138 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 +02003139 return 0;
3140 }
3141
3142 /* RFC7540#5.1:closed: if this state is reached as a
3143 * result of sending a RST_STREAM frame, the peer that
3144 * receives the RST_STREAM might have already sent
3145 * frames on the stream that cannot be withdrawn. An
3146 * endpoint MUST ignore frames that it receives on
3147 * closed streams after it has sent a RST_STREAM
3148 * frame. An endpoint MAY choose to limit the period
3149 * over which it ignores frames and treat frames that
3150 * arrive after this time as being in error.
3151 */
3152 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3153 /* RFC7540#5.1:closed: any frame other than
3154 * PRIO/WU/RST in this state MUST be treated as
3155 * a connection error
3156 */
3157 if (h2c->dft != H2_FT_RST_STREAM &&
3158 h2c->dft != H2_FT_PRIORITY &&
3159 h2c->dft != H2_FT_WINDOW_UPDATE) {
3160 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003161 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 +02003162 return 0;
3163 }
3164 }
3165 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003166 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003167 return 1;
3168}
3169
Willy Tarreaubc933932017-10-09 16:21:43 +02003170/* process Rx frames to be demultiplexed */
3171static void h2_process_demux(struct h2c *h2c)
3172{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003173 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003174 struct h2_fh hdr;
3175 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003176 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003177
Willy Tarreau7838a792019-08-12 18:42:03 +02003178 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3179
Willy Tarreau081d4722017-05-16 21:51:05 +02003180 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003181 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003182
3183 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3184 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003185 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003186 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003187 goto out;
3188
Willy Tarreau52eed752017-09-22 15:05:09 +02003189 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3190 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003191 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003192 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003193 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003194 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003195 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003196 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003197 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003198 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003199 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003200 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003201
3202 h2c->max_id = 0;
3203 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003204 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003205 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003206
3207 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003208 /* ensure that what is pending is a valid SETTINGS frame
3209 * without an ACK.
3210 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003211 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 +02003212 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003213 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003214 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003215 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003216 TRACE_ERROR("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 +02003217 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003218 if (!(h2c->flags & H2_CF_IS_BACK))
3219 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003220 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003221 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003222 }
3223
3224 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3225 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003226 TRACE_ERROR("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 +02003227 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3228 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003229 if (!(h2c->flags & H2_CF_IS_BACK))
3230 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003231 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003232 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003233 }
3234
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003235 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003236 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003237 TRACE_ERROR("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 +02003238 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3239 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003240 if (!(h2c->flags & H2_CF_IS_BACK))
3241 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003242 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003243 }
3244
Willy Tarreau3bf69182018-12-21 15:34:50 +01003245 /* that's OK, switch to FRAME_P to process it. This is
3246 * a SETTINGS frame whose header has already been
3247 * deleted above.
3248 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003249 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003250 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003251 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003252 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003253 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003254
3255 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003256 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003257 int ret = 0;
3258
Willy Tarreau7838a792019-08-12 18:42:03 +02003259 if (!b_data(&h2c->dbuf)) {
3260 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003261 h2c->flags |= H2_CF_DEM_SHORT_READ;
3262 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003263 }
3264
3265 if (h2c->st0 >= H2_CS_ERROR) {
3266 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003267 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003268 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003269
3270 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003271 h2c->rcvd_s = 0;
3272
Willy Tarreau7838a792019-08-12 18:42:03 +02003273 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003274 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3275 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003276 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003277 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003278
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003279 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003280 TRACE_ERROR("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 +02003281 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003282 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003283 /* only log if no other stream can report the error */
3284 sess_log(h2c->conn->owner);
3285 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003286 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003287 break;
3288 }
3289
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003290 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003291 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3292 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3293 * we read the pad length and drop it from the remaining
3294 * payload (one byte + the 9 remaining ones = 10 total
3295 * removed), so we have a frame payload starting after the
3296 * pad len. Flow controlled frames (DATA) also count the
3297 * padlen in the flow control, so it must be adjusted.
3298 */
3299 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003300 TRACE_ERROR("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 +01003301 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003302 if (!(h2c->flags & H2_CF_IS_BACK))
3303 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003304 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003305 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003306 }
3307 hdr.len--;
3308
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003309 if (b_data(&h2c->dbuf) < 10) {
3310 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003311 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003312 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003313
3314 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3315
3316 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003317 TRACE_ERROR("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 +01003318 /* RFC7540#6.1 : pad length = length of
3319 * frame payload or greater => error.
3320 */
3321 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003322 if (!(h2c->flags & H2_CF_IS_BACK))
3323 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003324 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003325 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003326 }
3327
3328 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3329 h2c->rcvd_c++;
3330 h2c->rcvd_s++;
3331 }
3332 b_del(&h2c->dbuf, 1);
3333 }
3334 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003335
3336 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003337 h2c->dfl = hdr.len;
3338 h2c->dsi = hdr.sid;
3339 h2c->dft = hdr.ft;
3340 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003341 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003342 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 +02003343 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003344
3345 /* check for minimum basic frame format validity */
3346 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3347 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003348 TRACE_ERROR("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 +01003349 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003350 if (!(h2c->flags & H2_CF_IS_BACK))
3351 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003352 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003353 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003354 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003355 }
3356
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003357 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3358 * H2_CS_FRAME_P indicates an incomplete previous operation
3359 * (most often the first attempt) and requires some validity
3360 * checks for the frame and the current state. The two other
3361 * ones are set after completion (or abortion) and must skip
3362 * validity checks.
3363 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003364 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3365
Willy Tarreau567beb82018-12-18 16:52:44 +01003366 if (tmp_h2s != h2s && h2s && h2s->cs &&
3367 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003368 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003369 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003370 (h2s->flags & H2_SF_ES_RCVD) ||
3371 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003372 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003373 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 +01003374 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003375 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003376 }
3377 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003378
Willy Tarreau63864812019-08-07 14:25:20 +02003379 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003380 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3381 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003382 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003383 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003384
Willy Tarreau7e98c052017-10-10 15:56:59 +02003385 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003386 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003387 if (h2c->st0 == H2_CS_FRAME_P) {
3388 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003389 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003390 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003391 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003392
Willy Tarreau7838a792019-08-12 18:42:03 +02003393 if (h2c->st0 == H2_CS_FRAME_A) {
3394 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 +02003395 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003396 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003397 break;
3398
Willy Tarreaucf68c782017-10-10 17:11:41 +02003399 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003400 if (h2c->st0 == H2_CS_FRAME_P) {
3401 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003402 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003403 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003404
Willy Tarreau7838a792019-08-12 18:42:03 +02003405 if (h2c->st0 == H2_CS_FRAME_A) {
3406 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 +02003407 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003408 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003409 break;
3410
Willy Tarreau26f95952017-07-27 17:18:30 +02003411 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003412 if (h2c->st0 == H2_CS_FRAME_P) {
3413 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 +02003414 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003415 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003416 break;
3417
Willy Tarreau61290ec2017-10-17 08:19:21 +02003418 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003419 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003420 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3421 * frames' parsers consume all following CONTINUATION
3422 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003423 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003424 TRACE_ERROR("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 +01003425 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003426 if (!(h2c->flags & H2_CF_IS_BACK))
3427 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003428 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003429 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003430
Willy Tarreau13278b42017-10-13 19:23:14 +02003431 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003432 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003433 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003434 if (h2c->flags & H2_CF_IS_BACK)
3435 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3436 else
3437 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003438 if (tmp_h2s) {
3439 h2s = tmp_h2s;
3440 ret = 1;
3441 }
3442 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003443 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003444 break;
3445
Willy Tarreau454f9052017-10-26 19:40:35 +02003446 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003447 if (h2c->st0 == H2_CS_FRAME_P) {
3448 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003449 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003450 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003451 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003452
Willy Tarreau7838a792019-08-12 18:42:03 +02003453 if (h2c->st0 == H2_CS_FRAME_A) {
3454 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 +02003455 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003456 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003457 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003458
Willy Tarreau92153fc2017-12-03 19:46:19 +01003459 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003460 if (h2c->st0 == H2_CS_FRAME_P) {
3461 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003462 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003463 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003464 break;
3465
Willy Tarreaucd234e92017-08-18 10:59:39 +02003466 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003467 if (h2c->st0 == H2_CS_FRAME_P) {
3468 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 +02003469 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003470 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003471 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003472 break;
3473
Willy Tarreaue96b0922017-10-30 00:28:29 +01003474 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003475 if (h2c->st0 == H2_CS_FRAME_P) {
3476 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003477 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003478 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003479 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003480 break;
3481
Willy Tarreau1c661982017-10-30 13:52:01 +01003482 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003483 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003484 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003485 /* drop frames that we ignore. They may be larger than
3486 * the buffer so we drain all of their contents until
3487 * we reach the end.
3488 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003489 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3490 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003491 h2c->dfl -= ret;
3492 ret = h2c->dfl == 0;
3493 }
3494
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003495 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003496 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003497 if (h2s->st == H2_SS_ERROR) {
3498 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 +01003499 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003500 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003501
Willy Tarreau7838a792019-08-12 18:42:03 +02003502 if (h2c->st0 == H2_CS_FRAME_E) {
3503 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 +01003504 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003505 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003506
Willy Tarreau7e98c052017-10-10 15:56:59 +02003507 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003508 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003509 break;
3510
3511 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003512 if (h2c->dfl)
3513 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003514 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3515 b_del(&h2c->dbuf, ret);
3516 h2c->dfl -= ret;
3517 if (!h2c->dfl) {
3518 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3519 h2c->st0 = H2_CS_FRAME_H;
3520 h2c->dsi = -1;
3521 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003522 }
3523 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003524
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003525 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003526 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3527 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003528 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003529 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003530
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003531 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003532 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3533 if (h2c->flags & H2_CF_RCVD_SHUT)
3534 h2c->flags |= H2_CF_END_REACHED;
3535 }
3536
Willy Tarreau567beb82018-12-18 16:52:44 +01003537 if (h2s && h2s->cs &&
3538 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003539 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003540 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003541 (h2s->flags & H2_SF_ES_RCVD) ||
3542 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003543 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003544 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 +01003545 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003546 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003547 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003548
Willy Tarreau7838a792019-08-12 18:42:03 +02003549 if (old_iw != h2c->miw) {
3550 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003551 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003552 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003553
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003554 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003555 out:
3556 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003557 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003558}
3559
Willy Tarreau989539b2020-01-10 17:01:29 +01003560/* resume each h2s eligible for sending in list head <head> */
3561static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3562{
3563 struct h2s *h2s, *h2s_back;
3564
3565 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3566
3567 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3568 if (h2c->mws <= 0 ||
3569 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3570 h2c->st0 >= H2_CS_ERROR)
3571 break;
3572
3573 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003574
Willy Tarreaud9464162020-01-10 18:25:07 +01003575 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003576 continue;
3577
Willy Tarreau5723f292020-01-10 15:16:57 +01003578 /* If the sender changed his mind and unsubscribed, let's just
3579 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003580 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003581 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3582 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003583 LIST_DEL_INIT(&h2s->list);
3584 continue;
3585 }
3586
Willy Tarreauf96508a2020-01-10 11:12:48 +01003587 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003588 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003589 tasklet_wakeup(h2s->subs->tasklet);
3590 h2s->subs->events &= ~SUB_RETRY_SEND;
3591 if (!h2s->subs->events)
3592 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003593 }
3594 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3595 tasklet_wakeup(h2s->shut_tl);
3596 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003597 }
3598
3599 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3600}
3601
Willy Tarreaubc933932017-10-09 16:21:43 +02003602/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3603 * the end.
3604 */
3605static int h2_process_mux(struct h2c *h2c)
3606{
Willy Tarreau7838a792019-08-12 18:42:03 +02003607 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3608
Willy Tarreau01b44822018-10-03 14:26:37 +02003609 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3610 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3611 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3612 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003613 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003614 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003615 goto fail;
3616 }
3617 h2c->st0 = H2_CS_SETTINGS1;
3618 }
3619 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003620 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003621 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003622 }
3623
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003624 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003625 if (h2c->rcvd_s > 0 &&
3626 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3627 h2c_send_strm_wu(h2c) < 0)
3628 goto fail;
3629
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003630 if (h2c->rcvd_c > 0 &&
3631 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3632 h2c_send_conn_wu(h2c) < 0)
3633 goto fail;
3634
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003635 /* First we always process the flow control list because the streams
3636 * waiting there were already elected for immediate emission but were
3637 * blocked just on this.
3638 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003639 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3640 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003641
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003642 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003643 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003644 if (h2c->st0 == H2_CS_ERROR) {
3645 if (h2c->max_id >= 0) {
3646 h2c_send_goaway_error(h2c, NULL);
3647 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003648 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003649 }
3650
3651 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3652 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003653 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003654 done:
3655 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3656 return 1;
3657 out0:
3658 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3659 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003660}
3661
Willy Tarreau62f52692017-10-08 23:01:42 +02003662
Willy Tarreau479998a2018-11-18 06:30:59 +01003663/* Attempt to read data, and subscribe if none available.
3664 * The function returns 1 if data has been received, otherwise zero.
3665 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003666static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003667{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003668 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003669 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003670 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003671 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003672
Willy Tarreau7838a792019-08-12 18:42:03 +02003673 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3674
3675 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3676 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003677 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003678 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003679
Willy Tarreau7838a792019-08-12 18:42:03 +02003680 if (!h2_recv_allowed(h2c)) {
3681 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003682 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003683 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003684
Willy Tarreau44e973f2018-03-01 17:49:30 +01003685 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003686 if (!buf) {
3687 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003688 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003689 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003690 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003691
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003692 if (h2c->flags & H2_CF_RCVD_SHUT) {
3693 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003694 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003695 }
3696
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003697 if (!b_data(buf)) {
3698 /* try to pre-align the buffer like the
3699 * rxbufs will be to optimize memory copies. We'll make
3700 * sure that the frame header lands at the end of the
3701 * HTX block to alias it upon recv. We cannot use the
3702 * head because rcv_buf() will realign the buffer if
3703 * it's empty. Thus we cheat and pretend we already
3704 * have a few bytes there.
3705 */
3706 max = buf_room_for_htx_data(buf) + 9;
3707 buf->head = sizeof(struct htx) - 9;
3708 }
3709 else
3710 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003711
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003712 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003713
Christopher Fauletde9d6052021-04-23 12:25:18 +02003714 if (max && !ret && h2_recv_allowed(h2c)) {
3715 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3716 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003717 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003718 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003719 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3720 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003721
Christopher Fauletde9d6052021-04-23 12:25:18 +02003722 if (conn_xprt_read0_pending(h2c->conn)) {
3723 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3724 h2c->flags |= H2_CF_RCVD_SHUT;
3725 }
3726
Olivier Houcharda1411e62018-08-17 18:42:48 +02003727 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003728 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003729 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003730 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003731 }
3732
Willy Tarreau7838a792019-08-12 18:42:03 +02003733 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003734 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003735 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003736 }
3737
3738 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003739 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003740}
3741
Willy Tarreau479998a2018-11-18 06:30:59 +01003742/* Try to send data if possible.
3743 * The function returns 1 if data have been sent, otherwise zero.
3744 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003745static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003746{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003747 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003748 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003749 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003750
Willy Tarreau7838a792019-08-12 18:42:03 +02003751 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003752
Willy Tarreau7838a792019-08-12 18:42:03 +02003753 if (conn->flags & CO_FL_ERROR) {
3754 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3755 return 1;
3756 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003757
Willy Tarreau911db9b2020-01-23 16:27:54 +01003758 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003759 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003760 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003761 }
3762
Willy Tarreaubc933932017-10-09 16:21:43 +02003763 /* This loop is quite simple : it tries to fill as much as it can from
3764 * pending streams into the existing buffer until it's reportedly full
3765 * or the end of send requests is reached. Then it tries to send this
3766 * buffer's contents out, marks it not full if at least one byte could
3767 * be sent, and tries again.
3768 *
3769 * The snd_buf() function normally takes a "flags" argument which may
3770 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3771 * data immediately comes and CO_SFL_STREAMER to indicate that the
3772 * connection is streaming lots of data (used to increase TLS record
3773 * size at the expense of latency). The former can be sent any time
3774 * there's a buffer full flag, as it indicates at least one stream
3775 * attempted to send and failed so there are pending data. An
3776 * alternative would be to set it as long as there's an active stream
3777 * but that would be problematic for ACKs until we have an absolute
3778 * guarantee that all waiters have at least one byte to send. The
3779 * latter should possibly not be set for now.
3780 */
3781
3782 done = 0;
3783 while (!done) {
3784 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003785 unsigned int released = 0;
3786 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003787
3788 /* fill as much as we can into the current buffer */
3789 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3790 done = h2_process_mux(h2c);
3791
Olivier Houchard2b094432019-01-29 18:28:36 +01003792 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003793 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003794
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003795 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003796 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003797 break;
3798
3799 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3800 flags |= CO_SFL_MSG_MORE;
3801
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003802 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3803 if (b_data(buf)) {
3804 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003805 if (!ret) {
3806 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003807 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003808 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003809 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003810 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003811 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003812 if (b_data(buf)) {
3813 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003814 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003815 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003816 }
3817 b_free(buf);
3818 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003819 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003820
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003821 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003822 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003823
Willy Tarreaubc933932017-10-09 16:21:43 +02003824 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003825 if (sent)
3826 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003827 }
3828
Willy Tarreaua2af5122017-10-09 11:56:46 +02003829 if (conn->flags & CO_FL_SOCK_WR_SH) {
3830 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003831 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003832 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003833 /* We're not full anymore, so we can wake any task that are waiting
3834 * for us.
3835 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003836 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3837 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003838
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003839 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003840 if (!br_data(h2c->mbuf)) {
3841 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003842 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003843 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003844schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003845 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3846 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003847 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003848 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003849
Willy Tarreau7838a792019-08-12 18:42:03 +02003850 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003851 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003852}
3853
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003854/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003855struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003856{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003857 struct connection *conn;
3858 struct tasklet *tl = (struct tasklet *)t;
3859 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003860 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003861 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003862
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003863 if (state & TASK_F_USR1) {
3864 /* the tasklet was idling on an idle connection, it might have
3865 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003866 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003867 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3868 if (t->context == NULL) {
3869 /* The connection has been taken over by another thread,
3870 * we're no longer responsible for it, so just free the
3871 * tasklet, and do nothing.
3872 */
3873 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3874 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003875 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003876 goto leave;
3877 }
3878 conn = h2c->conn;
3879 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003880
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003881 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003882
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003883 /* Remove the connection from the list, to be sure nobody attempts
3884 * to use it while we handle the I/O events
3885 */
3886 if (conn_in_list)
3887 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003888
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003889 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3890 } else {
3891 /* we're certain the connection was not in an idle list */
3892 conn = h2c->conn;
3893 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3894 conn_in_list = 0;
3895 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003896
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003897 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003898 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003899 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003900 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003901 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003902 ret = h2_process(h2c);
3903
3904 /* If we were in an idle list, we want to add it back into it,
3905 * unless h2_process() returned -1, which mean it has destroyed
3906 * the connection (testing !ret is enough, if h2_process() wasn't
3907 * called then ret will be 0 anyway.
3908 */
Willy Tarreau74163142021-03-13 11:30:19 +01003909 if (ret < 0)
3910 t = NULL;
3911
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003912 if (!ret && conn_in_list) {
3913 struct server *srv = objt_server(conn->target);
3914
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003915 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003916 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003917 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003918 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003919 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003920 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003921 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003922
Willy Tarreau38468772020-06-28 00:31:13 +02003923leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003924 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003925 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003926}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003927
Willy Tarreau62f52692017-10-08 23:01:42 +02003928/* callback called on any event by the connection handler.
3929 * It applies changes and returns zero, or < 0 if it wants immediate
3930 * destruction of the connection (which normally doesn not happen in h2).
3931 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003932static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003933{
Olivier Houchard7505f942018-08-21 18:10:44 +02003934 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003935
Willy Tarreau7838a792019-08-12 18:42:03 +02003936 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3937
Willy Tarreauf0961222021-02-05 11:41:46 +01003938 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3939 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003940 h2_process_demux(h2c);
3941
3942 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003943 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003944
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003945 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003946 h2c->flags &= ~H2_CF_DEM_DFULL;
3947 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003948 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003949
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003950 if (unlikely(h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003951 /* frontend is stopping, reload likely in progress, let's try
3952 * to announce a graceful shutdown if not yet done. We don't
3953 * care if it fails, it will be tried again later.
3954 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003955 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003956 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3957 if (h2c->last_sid < 0)
3958 h2c->last_sid = (1U << 31) - 1;
3959 h2c_send_goaway_error(h2c, NULL);
3960 }
3961 }
3962
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003963 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003964 * If we received early data, and the handshake is done, wake
3965 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003966 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003967 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003968 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_WAIT_XPRT | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003969 struct eb32_node *node;
3970 struct h2s *h2s;
3971
3972 h2c->flags |= H2_CF_WAIT_FOR_HS;
3973 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3974
3975 while (node) {
3976 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003977 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003978 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003979 node = eb32_next(node);
3980 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003981 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003982
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003983 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003984 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3985 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3986 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003987 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003988
3989 if (eb_is_empty(&h2c->streams_by_id)) {
3990 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003991 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003992 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003993 return -1;
3994 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003995
3996 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003997 if (conn->flags & CO_FL_LIST_MASK) {
3998 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003999 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004000 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4001 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004002 }
4003 else if (h2c->st0 == H2_CS_ERROR) {
4004 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004005 if (conn->flags & CO_FL_LIST_MASK) {
4006 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004007 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004008 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4009 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004010 }
4011
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004012 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004013 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004014
Olivier Houchard53216e72018-10-10 15:46:36 +02004015 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4016 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4017 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004018 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004019 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4020 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004021 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004022
Willy Tarreau3f133572017-10-31 19:21:06 +01004023 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004024 if (h2c_may_expire(h2c))
4025 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4026 else
4027 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004028 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01004029 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02004030
Olivier Houchard7505f942018-08-21 18:10:44 +02004031 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004032 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004033 return 0;
4034}
4035
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004036/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004037static int h2_wake(struct connection *conn)
4038{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004039 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004040 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004041
Willy Tarreau7838a792019-08-12 18:42:03 +02004042 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4043 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004044 if (ret >= 0)
4045 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004046 TRACE_LEAVE(H2_EV_H2C_WAKE);
4047 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004048}
4049
Willy Tarreauea392822017-10-31 10:02:25 +01004050/* Connection timeout management. The principle is that if there's no receipt
4051 * nor sending for a certain amount of time, the connection is closed. If the
4052 * MUX buffer still has lying data or is not allocatable, the connection is
4053 * immediately killed. If it's allocatable and empty, we attempt to send a
4054 * GOAWAY frame.
4055 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004056struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004057{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004058 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004059 int expired = tick_is_expired(t->expire, now_ms);
4060
Willy Tarreau7838a792019-08-12 18:42:03 +02004061 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4062
Willy Tarreaubd42e922020-06-30 11:19:23 +02004063 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004064 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004065 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004066
4067 /* Somebody already stole the connection from us, so we should not
4068 * free it, we just have to free the task.
4069 */
4070 if (!t->context) {
4071 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004072 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004073 goto do_leave;
4074 }
4075
4076
Willy Tarreaubd42e922020-06-30 11:19:23 +02004077 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004078 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004079 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4080 return t;
4081 }
Willy Tarreauea392822017-10-31 10:02:25 +01004082
Willy Tarreaubd42e922020-06-30 11:19:23 +02004083 if (!h2c_may_expire(h2c)) {
4084 /* we do still have streams but all of them are idle, waiting
4085 * for the data layer, so we must not enforce the timeout here.
4086 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004087 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004088 t->expire = TICK_ETERNITY;
4089 return t;
4090 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004091
Willy Tarreaubd42e922020-06-30 11:19:23 +02004092 /* We're about to destroy the connection, so make sure nobody attempts
4093 * to steal it from us.
4094 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004095 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004096 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004097
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004098 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004099 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004100
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004101do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004102 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004103
4104 if (!h2c) {
4105 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004106 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004107 return NULL;
4108 }
4109
4110 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004111 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004112 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004113
Willy Tarreau662fafc2019-05-26 09:43:07 +02004114 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004115 /* don't even try to send a GOAWAY, the buffer is stuck */
4116 h2c->flags |= H2_CF_GOAWAY_FAILED;
4117 }
4118
4119 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004120 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004121 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4122 h2c->flags |= H2_CF_GOAWAY_FAILED;
4123
Willy Tarreau662fafc2019-05-26 09:43:07 +02004124 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004125 unsigned int released = 0;
4126 struct buffer *buf;
4127
4128 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4129 if (b_data(buf)) {
4130 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4131 if (!ret)
4132 break;
4133 b_del(buf, ret);
4134 if (b_data(buf))
4135 break;
4136 b_free(buf);
4137 released++;
4138 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004139 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004140
4141 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004142 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004143 }
Willy Tarreauea392822017-10-31 10:02:25 +01004144
Willy Tarreau4481e262019-10-31 15:36:30 +01004145 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004146 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4147 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004148 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004149 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4150 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004151
Willy Tarreau0975f112018-03-29 15:22:59 +02004152 /* either we can release everything now or it will be done later once
4153 * the last stream closes.
4154 */
4155 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004156 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004157
Willy Tarreau7838a792019-08-12 18:42:03 +02004158 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004159 return NULL;
4160}
4161
4162
Willy Tarreau62f52692017-10-08 23:01:42 +02004163/*******************************************/
4164/* functions below are used by the streams */
4165/*******************************************/
4166
4167/*
4168 * Attach a new stream to a connection
4169 * (Used for outgoing connections)
4170 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004171static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004172{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004173 struct conn_stream *cs;
4174 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004175 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004176
Willy Tarreau7838a792019-08-12 18:42:03 +02004177 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004178 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004179 if (!cs) {
4180 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004181 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004182 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004183 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004184 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004185 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004186 cs_free(cs);
4187 return NULL;
4188 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004189
4190 /* the connection is not idle anymore, let's mark this */
4191 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004192 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004193
Willy Tarreau7838a792019-08-12 18:42:03 +02004194 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004195 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004196}
4197
Willy Tarreaufafd3982018-11-18 21:29:20 +01004198/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4199 * We have to scan because we may have some orphan streams. It might be
4200 * beneficial to scan backwards from the end to reduce the likeliness to find
4201 * orphans.
4202 */
4203static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4204{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004205 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004206 struct h2s *h2s;
4207 struct eb32_node *node;
4208
4209 node = eb32_first(&h2c->streams_by_id);
4210 while (node) {
4211 h2s = container_of(node, struct h2s, by_id);
4212 if (h2s->cs)
4213 return h2s->cs;
4214 node = eb32_next(node);
4215 }
4216 return NULL;
4217}
4218
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004219static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4220{
4221 int ret = 0;
4222 struct h2c *h2c = conn->ctx;
4223
4224 switch (mux_ctl) {
4225 case MUX_STATUS:
4226 /* Only consider the mux to be ready if we're done with
4227 * the preface and settings, and we had no error.
4228 */
4229 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4230 ret |= MUX_STATUS_READY;
4231 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004232 case MUX_EXIT_STATUS:
4233 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004234 default:
4235 return -1;
4236 }
4237}
4238
Willy Tarreau62f52692017-10-08 23:01:42 +02004239/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004240 * Destroy the mux and the associated connection, if it is no longer used
4241 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004242static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004243{
Christopher Faulet73c12072019-04-08 11:23:22 +02004244 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004245
Willy Tarreau7838a792019-08-12 18:42:03 +02004246 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004247 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004248 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004249 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004250}
4251
4252/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004253 * Detach the stream from the connection and possibly release the connection.
4254 */
4255static void h2_detach(struct conn_stream *cs)
4256{
Willy Tarreau60935142017-10-16 18:11:19 +02004257 struct h2s *h2s = cs->ctx;
4258 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004259 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004260
Willy Tarreau7838a792019-08-12 18:42:03 +02004261 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4262
Willy Tarreau60935142017-10-16 18:11:19 +02004263 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004264 if (!h2s) {
4265 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004266 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004267 }
Willy Tarreau60935142017-10-16 18:11:19 +02004268
Willy Tarreaud9464162020-01-10 18:25:07 +01004269 /* there's no txbuf so we're certain not to be able to send anything */
4270 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004271
Olivier Houchardf502aca2018-12-14 19:42:40 +01004272 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004273 h2c = h2s->h2c;
4274 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004275 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004276 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4277 !h2_frt_has_too_many_cs(h2c)) {
4278 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004279 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004280 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004281 }
Willy Tarreau60935142017-10-16 18:11:19 +02004282
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004283 /* this stream may be blocked waiting for some data to leave (possibly
4284 * an ES or RST frame), so orphan it in this case.
4285 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004286 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004287 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004288 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004289 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004290 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004291 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004292 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004293
Willy Tarreau45f752e2017-10-30 15:44:59 +01004294 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4295 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4296 /* unblock the connection if it was blocked on this
4297 * stream.
4298 */
4299 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4300 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004301 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004302 }
4303
Willy Tarreau71049cc2018-03-28 13:56:39 +02004304 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004305
Christopher Faulet9b79a102019-07-15 11:22:56 +02004306 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004307 if (!(h2c->conn->flags &
4308 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004309 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004310 /* Add the connection in the session server list, if not already done */
4311 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4312 h2c->conn->owner = NULL;
4313 if (eb_is_empty(&h2c->streams_by_id)) {
4314 h2c->conn->mux->destroy(h2c);
4315 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4316 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004317 }
4318 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004319 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004320 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4321 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4322 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004323 return;
4324 }
4325 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004326 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004327 else {
4328 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004329 /* If the connection is owned by the session, first remove it
4330 * from its list
4331 */
4332 if (h2c->conn->owner) {
4333 session_unown_conn(h2c->conn->owner, h2c->conn);
4334 h2c->conn->owner = NULL;
4335 }
4336
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004337 /* mark that the tasklet may lose its context to another thread and
4338 * that the handler needs to check it under the idle conns lock.
4339 */
4340 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004341 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4342
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004343 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004344 /* The server doesn't want it, let's kill the connection right away */
4345 h2c->conn->mux->destroy(h2c);
4346 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4347 return;
4348 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004349 /* At this point, the connection has been added to the
4350 * server idle list, so another thread may already have
4351 * hijacked it, so we can't do anything with it.
4352 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004353 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4354 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004355
Olivier Houchard8a786902018-12-15 16:05:40 +01004356 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004357 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004358 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004359 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004360 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004361 &h2c->conn->hash_node->node,
4362 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004363 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004364 }
4365 }
4366 }
4367
Willy Tarreaue323f342018-03-28 13:51:45 +02004368 /* We don't want to close right now unless we're removing the
4369 * last stream, and either the connection is in error, or it
4370 * reached the ID already specified in a GOAWAY frame received
4371 * or sent (as seen by last_sid >= 0).
4372 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004373 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004374 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004375 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004376 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004377 }
4378 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004379 if (h2c_may_expire(h2c))
4380 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4381 else
4382 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004383 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004384 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004385 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004386 else
4387 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004388}
4389
Willy Tarreau88bdba32019-05-13 18:17:53 +02004390/* Performs a synchronous or asynchronous shutr(). */
4391static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004392{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004393 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004394
Willy Tarreauf983d002019-05-14 10:40:21 +02004395 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004396 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004397
Willy Tarreau7838a792019-08-12 18:42:03 +02004398 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4399
Willy Tarreau18059042019-01-31 19:12:48 +01004400 /* a connstream may require us to immediately kill the whole connection
4401 * for example because of a "tcp-request content reject" rule that is
4402 * normally used to limit abuse. In this case we schedule a goaway to
4403 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004404 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004405 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004406 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004407 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004408 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4409 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4410 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004411 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4412 /* Nothing was never sent for this stream, so reset with
4413 * REFUSED_STREAM error to let the client retry the
4414 * request.
4415 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004416 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004417 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4418 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004419 else {
4420 /* a final response was already provided, we don't want this
4421 * stream anymore. This may happen when the server responds
4422 * before the end of an upload and closes quickly (redirect,
4423 * deny, ...)
4424 */
4425 h2s_error(h2s, H2_ERR_CANCEL);
4426 }
Willy Tarreau18059042019-01-31 19:12:48 +01004427
Willy Tarreau90c32322017-11-24 08:00:30 +01004428 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004429 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004430 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004431
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004432 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004433 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004434 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004435 done:
4436 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004437 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004438 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004439add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004440 /* Let the handler know we want to shutr, and add ourselves to the
4441 * most relevant list if not yet done. h2_deferred_shut() will be
4442 * automatically called via the shut_tl tasklet when there's room
4443 * again.
4444 */
4445 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004446 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004447 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004448 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004449 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004450 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004451 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004452 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004453 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004454}
4455
Willy Tarreau88bdba32019-05-13 18:17:53 +02004456/* Performs a synchronous or asynchronous shutw(). */
4457static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004458{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004459 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004460
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004461 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004462 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004463
Willy Tarreau7838a792019-08-12 18:42:03 +02004464 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4465
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004466 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004467 /* we can cleanly close using an empty data frame only after headers */
4468
4469 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4470 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004471 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004472
4473 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004474 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004475 else
4476 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004477 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004478 /* a connstream may require us to immediately kill the whole connection
4479 * for example because of a "tcp-request content reject" rule that is
4480 * normally used to limit abuse. In this case we schedule a goaway to
4481 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004482 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004483 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004484 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004485 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004486 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4487 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4488 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004489 else {
4490 /* Nothing was never sent for this stream, so reset with
4491 * REFUSED_STREAM error to let the client retry the
4492 * request.
4493 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004494 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004495 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4496 }
Willy Tarreau18059042019-01-31 19:12:48 +01004497
Willy Tarreau90c32322017-11-24 08:00:30 +01004498 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004499 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004500 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004501
Willy Tarreau00dd0782018-03-01 16:31:34 +01004502 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004503 }
4504
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004505 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004506 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004507
4508 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4509
Willy Tarreau88bdba32019-05-13 18:17:53 +02004510 done:
4511 h2s->flags &= ~H2_SF_WANT_SHUTW;
4512 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004513
4514 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004515 /* Let the handler know we want to shutw, and add ourselves to the
4516 * most relevant list if not yet done. h2_deferred_shut() will be
4517 * automatically called via the shut_tl tasklet when there's room
4518 * again.
4519 */
4520 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004521 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004522 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004523 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004524 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004525 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004526 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004527 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004528 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004529}
4530
Willy Tarreau5723f292020-01-10 15:16:57 +01004531/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004532 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4533 * and prevented the last frame from being emitted.
4534 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004535struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004536{
4537 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004538 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004539
Willy Tarreau7838a792019-08-12 18:42:03 +02004540 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4541
Willy Tarreau5723f292020-01-10 15:16:57 +01004542 if (h2s->flags & H2_SF_NOTIFIED) {
4543 /* some data processing remains to be done first */
4544 goto end;
4545 }
4546
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004547 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004548 h2_do_shutw(h2s);
4549
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004550 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004551 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004552
Willy Tarreau88bdba32019-05-13 18:17:53 +02004553 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004554 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004555 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004556
Willy Tarreau88bdba32019-05-13 18:17:53 +02004557 if (!h2s->cs) {
4558 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004559 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004560 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004561 t = NULL;
4562 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004563 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004564 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004565 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004566 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004567 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004568}
4569
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004570/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004571static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4572{
4573 struct h2s *h2s = cs->ctx;
4574
Willy Tarreau7838a792019-08-12 18:42:03 +02004575 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004576 if (cs->flags & CS_FL_KILL_CONN)
4577 h2s->flags |= H2_SF_KILL_CONN;
4578
Willy Tarreau7838a792019-08-12 18:42:03 +02004579 if (mode)
4580 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004581
Willy Tarreau7838a792019-08-12 18:42:03 +02004582 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004583}
4584
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004585/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004586static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4587{
4588 struct h2s *h2s = cs->ctx;
4589
Willy Tarreau7838a792019-08-12 18:42:03 +02004590 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004591 if (cs->flags & CS_FL_KILL_CONN)
4592 h2s->flags |= H2_SF_KILL_CONN;
4593
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004594 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004595 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004596}
4597
Christopher Faulet9b79a102019-07-15 11:22:56 +02004598/* Decode the payload of a HEADERS frame and produce the HTX request or response
4599 * depending on the connection's side. Returns a positive value on success, a
4600 * negative value on failure, or 0 if it couldn't proceed. May report connection
4601 * errors in h2c->errcode if the frame is non-decodable and the connection
4602 * unrecoverable. In absence of connection error when a failure is reported, the
4603 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004604 *
4605 * The function may fold CONTINUATION frames into the initial HEADERS frame
4606 * by removing padding and next frame header, then moving the CONTINUATION
4607 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4608 * leaving a hole between the main frame and the beginning of the next one.
4609 * The possibly remaining incomplete or next frame at the end may be moved
4610 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4611 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4612 *
4613 * A buffer at the beginning of processing may look like this :
4614 *
4615 * ,---.---------.-----.--------------.--------------.------.---.
4616 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4617 * `---^---------^-----^--------------^--------------^------^---'
4618 * | | <-----> | |
4619 * area | dpl | wrap
4620 * |<--------------> |
4621 * | dfl |
4622 * |<-------------------------------------------------->|
4623 * head data
4624 *
4625 * Padding is automatically overwritten when folding, participating to the
4626 * hole size after dfl :
4627 *
4628 * ,---.------------------------.-----.--------------.------.---.
4629 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4630 * `---^------------------------^-----^--------------^------^---'
4631 * | | <-----> | |
4632 * area | hole | wrap
4633 * |<-----------------------> |
4634 * | dfl |
4635 * |<-------------------------------------------------->|
4636 * head data
4637 *
4638 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4639 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4640 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004641 *
4642 * The <flags> field must point to either the stream's flags or to a copy of it
4643 * so that the function can update the following flags :
4644 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004645 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004646 *
4647 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4648 * decoding, in order to detect if we're dealing with a headers or a trailers
4649 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004650 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004651static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol)
Willy Tarreau13278b42017-10-13 19:23:14 +02004652{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004653 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004654 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004655 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004656 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004657 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004658 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004659 int flen; // header frame len
4660 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004661 int ret = 0;
4662 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004663 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004664
Willy Tarreau7838a792019-08-12 18:42:03 +02004665 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4666
Willy Tarreauea18f862018-12-22 20:19:26 +01004667next_frame:
4668 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4669 goto leave; // incomplete input frame
4670
4671 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4672 * this case, we'll try to paste it immediately after the initial
4673 * HEADERS frame payload and kill any possible padding. The initial
4674 * frame's length will be increased to represent the concatenation
4675 * of the two frames. The next frame is read from position <tlen>
4676 * and written at position <flen> (minus padding if some is present).
4677 */
4678 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4679 struct h2_fh hdr;
4680 int clen; // CONTINUATION frame's payload length
4681
Willy Tarreau7838a792019-08-12 18:42:03 +02004682 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 +01004683 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4684 /* no more data, the buffer may be full, either due to
4685 * too large a frame or because of too large a hole that
4686 * we're going to compact at the end.
4687 */
4688 goto leave;
4689 }
4690
4691 if (hdr.ft != H2_FT_CONTINUATION) {
4692 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004693 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 +01004694 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004695 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004696 goto fail;
4697 }
4698
4699 if (hdr.sid != h2c->dsi) {
4700 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004701 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 +01004702 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004703 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004704 goto fail;
4705 }
4706
4707 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4708 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004709 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 +01004710 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4711 goto fail;
4712 }
4713
4714 /* detect when we must stop aggragating frames */
4715 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4716
4717 /* Take as much as we can of the CONTINUATION frame's payload */
4718 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4719 if (clen > hdr.len)
4720 clen = hdr.len;
4721
4722 /* Move the frame's payload over the padding, hole and frame
4723 * header. At least one of hole or dpl is null (see diagrams
4724 * above). The hole moves after the new aggragated frame.
4725 */
4726 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
Christopher Fauletcb1847c2021-04-21 11:11:21 +02004727 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004728 hole += h2c->dpl + 9;
4729 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004730 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 +01004731 goto next_frame;
4732 }
4733
4734 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004735
Willy Tarreau13278b42017-10-13 19:23:14 +02004736 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004737 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004738 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004739 copy = alloc_trash_chunk();
4740 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004741 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 +02004742 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4743 goto fail;
4744 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004745 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4746 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4747 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004748 }
4749
Willy Tarreau13278b42017-10-13 19:23:14 +02004750 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4751 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004752 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004753 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004754 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 +01004755 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004756 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004757 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004758 }
4759
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004760 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004761 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 +01004762 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4763 goto fail;
4764 }
4765
Willy Tarreau13278b42017-10-13 19:23:14 +02004766 hdrs += 5; // stream dep = 4, weight = 1
4767 flen -= 5;
4768 }
4769
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004770 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004771 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 +01004772 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004773 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004774 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004775
Willy Tarreau937f7602018-02-26 15:22:17 +01004776 /* we can't retry a failed decompression operation so we must be very
4777 * careful not to take any risks. In practice the output buffer is
4778 * always empty except maybe for trailers, in which case we simply have
4779 * to wait for the upper layer to finish consuming what is available.
4780 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004781 htx = htx_from_buf(rxbuf);
4782 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004783 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 +02004784 h2c->flags |= H2_CF_DEM_SFULL;
4785 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004786 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004787
Willy Tarreau25919232019-01-03 14:48:18 +01004788 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004789 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4790 sizeof(list)/sizeof(list[0]), tmp);
4791 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004792 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 +01004793 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4794 goto fail;
4795 }
4796
Willy Tarreau25919232019-01-03 14:48:18 +01004797 /* The PACK decompressor was updated, let's update the input buffer and
4798 * the parser's state to commit these changes and allow us to later
4799 * fail solely on the stream if needed.
4800 */
4801 b_del(&h2c->dbuf, h2c->dfl + hole);
4802 h2c->dfl = hole = 0;
4803 h2c->st0 = H2_CS_FRAME_H;
4804
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004805 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004806 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004807 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004808 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004809 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004810 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004811
Willy Tarreau88d138e2019-01-02 19:38:14 +01004812 if (*flags & H2_SF_HEADERS_RCVD)
4813 goto trailers;
4814
4815 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004816 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004817 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004818 else
4819 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004820
Christopher Faulet3d875582021-04-26 17:46:13 +02004821 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004822 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004823 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4824 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004825 goto fail;
4826 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004827
Willy Tarreau174b06a2018-04-25 18:13:58 +02004828 if (msgf & H2_MSGF_BODY) {
4829 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004830 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004831 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004832 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004833 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004834 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004835 if (msgf & H2_MSGF_BODYLESS_RSP)
4836 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004837
Christopher Fauletd0db4232021-01-22 11:46:30 +01004838 if (msgf & H2_MSGF_BODY_TUNNEL)
4839 *flags |= H2_SF_BODY_TUNNEL;
4840 else {
4841 /* Abort the tunnel attempt, if any */
4842 if (*flags & H2_SF_BODY_TUNNEL)
4843 *flags |= H2_SF_TUNNEL_ABRT;
4844 *flags &= ~H2_SF_BODY_TUNNEL;
4845 }
4846
Willy Tarreau88d138e2019-01-02 19:38:14 +01004847 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004848 /* indicate that a HEADERS frame was received for this stream, except
4849 * for 1xx responses. For 1xx responses, another HEADERS frame is
4850 * expected.
4851 */
4852 if (!(msgf & H2_MSGF_RSP_1XX))
4853 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004854
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004855 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4856 /* no more data are expected for this message */
4857 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004858 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004859
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004860 if (msgf & H2_MSGF_EXT_CONNECT)
4861 *flags |= H2_SF_EXT_CONNECT_RCVD;
4862
Willy Tarreau86277d42019-01-02 15:36:11 +01004863 /* success */
4864 ret = 1;
4865
Willy Tarreau68dd9852017-07-03 14:44:26 +02004866 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004867 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004868 * move the remaining data over it.
4869 */
4870 if (hole) {
4871 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4872 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4873 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4874 b_sub(&h2c->dbuf, hole);
4875 }
4876
Christopher Faulet07f88d72021-04-21 10:39:53 +02004877 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004878 /* too large frames */
4879 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004880 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004881 }
4882
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004883 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004884 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004885 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004886 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004887 return ret;
4888
Willy Tarreau68dd9852017-07-03 14:44:26 +02004889 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004890 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004891 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004892
4893 trailers:
4894 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004895 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4896 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004897 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 +01004898 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004899 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004900 goto fail;
4901 }
4902
Christopher Faulet9b79a102019-07-15 11:22:56 +02004903 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004904 if (h2_make_htx_trailers(list, htx) <= 0) {
4905 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 +02004906 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004907 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004908 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004909}
4910
Christopher Faulet9b79a102019-07-15 11:22:56 +02004911/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004912 * parser state is automatically updated. Returns > 0 if it could completely
4913 * send the current frame, 0 if it couldn't complete, in which case
4914 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4915 * DATA frame can return 0 as a valid result). Stream errors are reported in
4916 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4917 * have checked the frame header and ensured that the frame was complete or the
4918 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004919 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004920static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004921{
4922 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004923 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004924 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004925 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004926 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004927 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004928
Willy Tarreau7838a792019-08-12 18:42:03 +02004929 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4930
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004931 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004932
Olivier Houchard638b7992018-08-16 15:41:52 +02004933 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004934 if (!csbuf) {
4935 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004936 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 +01004937 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004938 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004939 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004940
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004941try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004942 flen = h2c->dfl - h2c->dpl;
4943 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004944 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004945
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004946 if (flen > b_data(&h2c->dbuf)) {
4947 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004948 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004949 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004950 }
4951
Christopher Faulet9b79a102019-07-15 11:22:56 +02004952 block = htx_free_data_space(htx);
4953 if (!block) {
4954 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004955 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 +02004956 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004957 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004958 if (flen > block)
4959 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004960
Christopher Faulet9b79a102019-07-15 11:22:56 +02004961 /* here, flen is the max we can copy into the output buffer */
4962 block = b_contig_data(&h2c->dbuf, 0);
4963 if (flen > block)
4964 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004965
Christopher Faulet9b79a102019-07-15 11:22:56 +02004966 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004967 TRACE_DATA("move some data to h2s rxbuf", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s, 0, (void *)(long)sent);
Willy Tarreau454f9052017-10-26 19:40:35 +02004968
Christopher Faulet9b79a102019-07-15 11:22:56 +02004969 b_del(&h2c->dbuf, sent);
4970 h2c->dfl -= sent;
4971 h2c->rcvd_c += sent;
4972 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004973
Christopher Faulet9b79a102019-07-15 11:22:56 +02004974 if (h2s->flags & H2_SF_DATA_CLEN) {
4975 h2s->body_len -= sent;
4976 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004977 }
4978
Christopher Faulet9b79a102019-07-15 11:22:56 +02004979 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004980 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004981 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 +01004982 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004983 }
4984
Christopher Faulet9b79a102019-07-15 11:22:56 +02004985 goto try_again;
4986
Willy Tarreau4a28da12018-01-04 14:41:00 +01004987 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004988 /* here we're done with the frame, all the payload (except padding) was
4989 * transferred.
4990 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004991
Christopher Faulet5be651d2021-01-22 15:28:03 +01004992 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4993 /* no more data are expected for this message. This add the EOM
4994 * flag but only on the response path or if no tunnel attempt
4995 * was aborted. Otherwise (request path + tunnel abrted), the
4996 * EOM was already reported.
4997 */
Christopher Faulet33724322021-02-10 09:04:59 +01004998 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4999 /* If we receive an empty DATA frame with ES flag while the HTX
5000 * message is empty, we must be sure to push a block to be sure
5001 * the HTX EOM flag will be handled on the other side. It is a
5002 * workaround because for now it is not possible to push empty
5003 * HTX DATA block. And without this block, there is no way to
5004 * "commit" the end of the message.
5005 */
5006 if (htx_is_empty(htx)) {
5007 if (!htx_add_endof(htx, HTX_BLK_EOT))
5008 goto fail;
5009 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005010 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005011 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005012 }
5013
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005014 h2c->rcvd_c += h2c->dpl;
5015 h2c->rcvd_s += h2c->dpl;
5016 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005017 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005018 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005019 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005020 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005021 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005022 if (htx)
5023 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005024 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005025 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005026}
5027
Willy Tarreau115e83b2018-12-01 19:17:53 +01005028/* Try to send a HEADERS frame matching HTX response present in HTX message
5029 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5030 * must check the stream's status to detect any error which might have happened
5031 * subsequently to a successful send. The htx blocks are automatically removed
5032 * from the message. The htx message is assumed to be valid since produced from
5033 * the internal code, hence it contains a start line, an optional series of
5034 * header blocks and an end of header, otherwise an invalid frame could be
5035 * emitted and the resulting htx message could be left in an inconsistent state.
5036 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005037static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005038{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005039 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005040 struct h2c *h2c = h2s->h2c;
5041 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005042 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005043 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005044 struct htx_sl *sl;
5045 enum htx_blk_type type;
5046 int es_now = 0;
5047 int ret = 0;
5048 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005049
Willy Tarreau7838a792019-08-12 18:42:03 +02005050 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5051
Willy Tarreau115e83b2018-12-01 19:17:53 +01005052 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005053 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005054 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005055 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005056 return 0;
5057 }
5058
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005059 /* get the start line (we do have one) and the rest of the headers,
5060 * that we dump starting at header 0 */
5061 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005062 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005063 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005064 type = htx_get_blk_type(blk);
5065
5066 if (type == HTX_BLK_UNUSED)
5067 continue;
5068
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005069 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005070 break;
5071
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005072 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005073 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005074 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5075 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5076 goto fail;
5077 }
5078
5079 list[hdr].n = htx_get_blk_name(htx, blk);
5080 list[hdr].v = htx_get_blk_value(htx, blk);
5081 hdr++;
5082 }
5083 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005084 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005085 sl = htx_get_blk_ptr(htx, blk);
5086 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005087 if (h2s->status == 204 || h2s->status == 304)
5088 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005089 if (h2s->status < 100 || h2s->status > 999) {
5090 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5091 goto fail;
5092 }
5093 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005094 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5095 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5096 h2s->status = 200;
5097 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5098 }
5099 else {
5100 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5101 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5102 goto fail;
5103 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005104 }
5105 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5106 /* Abort the tunnel attempt */
5107 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5108 h2s->flags |= H2_SF_TUNNEL_ABRT;
5109 }
5110 }
5111 else {
5112 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005113 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005114 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005115 }
5116
Christopher Faulet56498132021-01-29 11:39:43 +01005117 /* The start-line me be defined */
5118 BUG_ON(!sl);
5119
Willy Tarreau115e83b2018-12-01 19:17:53 +01005120 /* marker for end of headers */
5121 list[hdr].n = ist("");
5122
Willy Tarreau9c218e72019-05-26 10:08:28 +02005123 mbuf = br_tail(h2c->mbuf);
5124 retry:
5125 if (!h2_get_buf(h2c, mbuf)) {
5126 h2c->flags |= H2_CF_MUX_MALLOC;
5127 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005128 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 +02005129 return 0;
5130 }
5131
Willy Tarreau115e83b2018-12-01 19:17:53 +01005132 chunk_reset(&outbuf);
5133
5134 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005135 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5136 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005137 break;
5138 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005139 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005140 }
5141
5142 if (outbuf.size < 9)
5143 goto full;
5144
5145 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5146 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5147 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5148 outbuf.data = 9;
5149
5150 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005151 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005152 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005153 goto realign_again;
5154 goto full;
5155 }
5156
5157 /* encode all headers, stop at empty name */
5158 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5159 /* these ones do not exist in H2 and must be dropped. */
5160 if (isteq(list[hdr].n, ist("connection")) ||
5161 isteq(list[hdr].n, ist("proxy-connection")) ||
5162 isteq(list[hdr].n, ist("keep-alive")) ||
5163 isteq(list[hdr].n, ist("upgrade")) ||
5164 isteq(list[hdr].n, ist("transfer-encoding")))
5165 continue;
5166
Christopher Faulet86d144c2019-08-14 16:32:25 +02005167 /* Skip all pseudo-headers */
5168 if (*(list[hdr].n.ptr) == ':')
5169 continue;
5170
Willy Tarreau115e83b2018-12-01 19:17:53 +01005171 if (isteq(list[hdr].n, ist("")))
5172 break; // end
5173
5174 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5175 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005176 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005177 goto realign_again;
5178 goto full;
5179 }
5180 }
5181
Willy Tarreaucb985a42019-10-07 16:56:34 +02005182 /* update the frame's size */
5183 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5184
5185 if (outbuf.data > h2c->mfs + 9) {
5186 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5187 /* output full */
5188 if (b_space_wraps(mbuf))
5189 goto realign_again;
5190 goto full;
5191 }
5192 }
5193
Willy Tarreau3a537072021-06-17 08:40:04 +02005194 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5195
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005196 /* remove all header blocks including the EOH and compute the
5197 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005198 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005199 ret = 0;
5200 blk = htx_get_head_blk(htx);
5201 while (blk) {
5202 type = htx_get_blk_type(blk);
5203 ret += htx_get_blksz(blk);
5204 blk = htx_remove_blk(htx, blk);
5205 /* The removed block is the EOH */
5206 if (type == HTX_BLK_EOH)
5207 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005208 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005209
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005210 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5211 /* Response already closed: add END_STREAM */
5212 es_now = 1;
5213 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005214 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5215 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005216 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005217 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005218 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5219 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005220 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005221
Willy Tarreau115e83b2018-12-01 19:17:53 +01005222 if (es_now)
5223 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5224
5225 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005226 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005227
5228 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5229 * 1xx responses, another HEADERS frame is expected.
5230 */
Christopher Faulet89899422020-12-07 18:24:43 +01005231 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005232 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005233
Willy Tarreau115e83b2018-12-01 19:17:53 +01005234 if (es_now) {
5235 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005236 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 +01005237 if (h2s->st == H2_SS_OPEN)
5238 h2s->st = H2_SS_HLOC;
5239 else
5240 h2s_close(h2s);
5241 }
5242
5243 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005244 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005245 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005246 return ret;
5247 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005248 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5249 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005250 h2c->flags |= H2_CF_MUX_MFULL;
5251 h2s->flags |= H2_SF_BLK_MROOM;
5252 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005253 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 +01005254 goto end;
5255 fail:
5256 /* unparsable HTX messages, too large ones to be produced in the local
5257 * list etc go here (unrecoverable errors).
5258 */
5259 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5260 ret = 0;
5261 goto end;
5262}
5263
Willy Tarreau80739692018-10-05 11:35:57 +02005264/* Try to send a HEADERS frame matching HTX request present in HTX message
5265 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5266 * must check the stream's status to detect any error which might have happened
5267 * subsequently to a successful send. The htx blocks are automatically removed
5268 * from the message. The htx message is assumed to be valid since produced from
5269 * the internal code, hence it contains a start line, an optional series of
5270 * header blocks and an end of header, otherwise an invalid frame could be
5271 * emitted and the resulting htx message could be left in an inconsistent state.
5272 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005273static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005274{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005275 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005276 struct h2c *h2c = h2s->h2c;
5277 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005278 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005279 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005280 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005281 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005282 enum htx_blk_type type;
5283 int es_now = 0;
5284 int ret = 0;
5285 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005286 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005287
Willy Tarreau7838a792019-08-12 18:42:03 +02005288 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5289
Willy Tarreau80739692018-10-05 11:35:57 +02005290 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005291 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005292 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005293 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005294 return 0;
5295 }
5296
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005297 /* get the start line (we do have one) and the rest of the headers,
5298 * that we dump starting at header 0 */
5299 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005300 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005301 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005302 type = htx_get_blk_type(blk);
5303
5304 if (type == HTX_BLK_UNUSED)
5305 continue;
5306
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005307 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005308 break;
5309
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005310 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005311 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005312 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5313 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5314 goto fail;
5315 }
Willy Tarreau80739692018-10-05 11:35:57 +02005316
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005317 list[hdr].n = htx_get_blk_name(htx, blk);
5318 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005319
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005320 /* Skip header if same name is used to add the server name */
5321 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5322 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5323 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005324
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005325 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005326 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005327 /* rfc 7230 #6.1 Connection = list of tokens */
5328 struct ist connection_ist = list[hdr].v;
5329 do {
5330 if (isteqi(iststop(connection_ist, ','),
5331 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005332 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5333 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5334 goto fail;
5335 }
5336
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005337 TRACE_STATE("convert upgrade to extended connect method", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005338 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5339 sl->info.req.meth = HTTP_METH_CONNECT;
5340 meth = ist("CONNECT");
5341
5342 extended_connect = 1;
5343 break;
5344 }
5345
5346 connection_ist = istadv(istfind(connection_ist, ','), 1);
5347 } while (istlen(connection_ist));
5348 }
5349
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005350 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005351 /* rfc 7230 #6.7 Upgrade = list of protocols
5352 * rfc 8441 #4 Extended connect = :protocol is single-valued
5353 *
5354 * only first HTTP/1 protocol is preserved
5355 */
5356 const struct ist protocol = iststop(list[hdr].v, ',');
5357 /* upgrade_protocol field is 16 bytes long in h2s */
5358 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5359 }
5360
5361 if (isteq(list[hdr].n, ist("host")))
5362 host = list[hdr].v;
5363
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005364 hdr++;
5365 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005366 else if (type == HTX_BLK_REQ_SL) {
5367 BUG_ON(sl); /* Only one start-line expected */
5368 sl = htx_get_blk_ptr(htx, blk);
5369 meth = htx_sl_req_meth(sl);
5370 uri = htx_sl_req_uri(sl);
5371 if (sl->info.req.meth == HTTP_METH_HEAD)
5372 h2s->flags |= H2_SF_BODYLESS_RESP;
5373 if (unlikely(uri.len == 0)) {
5374 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5375 goto fail;
5376 }
5377 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005378 else {
5379 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5380 goto fail;
5381 }
Willy Tarreau80739692018-10-05 11:35:57 +02005382 }
5383
Christopher Faulet56498132021-01-29 11:39:43 +01005384 /* The start-line me be defined */
5385 BUG_ON(!sl);
5386
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005387 /* Now add the server name to a header (if requested) */
5388 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5389 struct server *srv = objt_server(h2c->conn->target);
5390
5391 if (srv) {
5392 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5393 list[hdr].v = ist(srv->id);
5394 hdr++;
5395 }
5396 }
5397
Willy Tarreau80739692018-10-05 11:35:57 +02005398 /* marker for end of headers */
5399 list[hdr].n = ist("");
5400
Willy Tarreau9c218e72019-05-26 10:08:28 +02005401 mbuf = br_tail(h2c->mbuf);
5402 retry:
5403 if (!h2_get_buf(h2c, mbuf)) {
5404 h2c->flags |= H2_CF_MUX_MALLOC;
5405 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005406 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 +02005407 return 0;
5408 }
5409
Willy Tarreau80739692018-10-05 11:35:57 +02005410 chunk_reset(&outbuf);
5411
5412 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005413 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5414 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005415 break;
5416 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005417 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005418 }
5419
5420 if (outbuf.size < 9)
5421 goto full;
5422
5423 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5424 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5425 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5426 outbuf.data = 9;
5427
5428 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005429 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005430 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005431 goto realign_again;
5432 goto full;
5433 }
5434
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005435 auth = ist(NULL);
5436
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005437 /* RFC7540 #8.3: the CONNECT method must have :
5438 * - :authority set to the URI part (host:port)
5439 * - :method set to CONNECT
5440 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005441 *
5442 * Note that this is not applicable in case of the Extended CONNECT
5443 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005444 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005445 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005446 auth = uri;
5447
5448 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5449 /* output full */
5450 if (b_space_wraps(mbuf))
5451 goto realign_again;
5452 goto full;
5453 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005454 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005455 } else {
5456 /* other methods need a :scheme. If an authority is known from
5457 * the request line, it must be sent, otherwise only host is
5458 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005459 *
5460 * This code is also applicable for Extended CONNECT protocol
5461 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005462 */
5463 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005464
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005465 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5466 /* the URI seems to start with a scheme */
5467 int len = 1;
5468
5469 while (len < uri.len && uri.ptr[len] != ':')
5470 len++;
5471
5472 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5473 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005474 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005475 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005476
5477 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005478 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005479 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5480 auth.len++;
5481
Tim Duesterhus154374c2021-03-02 18:57:27 +01005482 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005483 }
5484 }
5485
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005486 /* For Extended CONNECT, the :authority must be present.
5487 * Use host value for it.
5488 */
5489 if (unlikely(extended_connect) && isttest(host))
5490 auth = host;
5491
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005492 if (!scheme.len) {
5493 /* no explicit scheme, we're using an origin-form URI,
5494 * probably from an H1 request transcoded to H2 via an
5495 * external layer, then received as H2 without authority.
5496 * So we have to look up the scheme from the HTX flags.
5497 * In such a case only http and https are possible, and
5498 * https is the default (sent by browsers).
5499 */
5500 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5501 scheme = ist("http");
5502 else
5503 scheme = ist("https");
5504 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005505
5506 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005507 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005508 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005509 goto realign_again;
5510 goto full;
5511 }
Willy Tarreau80739692018-10-05 11:35:57 +02005512
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005513 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005514 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005515 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005516 goto realign_again;
5517 goto full;
5518 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005519
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005520 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5521 * be sent as '/' or '*'.
5522 */
5523 if (unlikely(!uri.len)) {
5524 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5525 uri = ist("*");
5526 else
5527 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005528 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005529
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005530 if (!hpack_encode_path(&outbuf, uri)) {
5531 /* output full */
5532 if (b_space_wraps(mbuf))
5533 goto realign_again;
5534 goto full;
5535 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005536
5537 /* encode the pseudo-header protocol from rfc8441 if using
5538 * Extended CONNECT method.
5539 */
5540 if (unlikely(extended_connect)) {
5541 const struct ist protocol = ist(h2s->upgrade_protocol);
5542 if (isttest(protocol)) {
5543 if (!hpack_encode_header(&outbuf,
5544 ist(":protocol"),
5545 protocol)) {
5546 /* output full */
5547 if (b_space_wraps(mbuf))
5548 goto realign_again;
5549 goto full;
5550 }
5551 }
5552 }
Willy Tarreau80739692018-10-05 11:35:57 +02005553 }
5554
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005555 /* encode all headers, stop at empty name. Host is only sent if we
5556 * do not provide an authority.
5557 */
Willy Tarreau80739692018-10-05 11:35:57 +02005558 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005559 struct ist n = list[hdr].n;
5560 struct ist v = list[hdr].v;
5561
Willy Tarreau80739692018-10-05 11:35:57 +02005562 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005563 if (isteq(n, ist("connection")) ||
5564 (auth.len && isteq(n, ist("host"))) ||
5565 isteq(n, ist("proxy-connection")) ||
5566 isteq(n, ist("keep-alive")) ||
5567 isteq(n, ist("upgrade")) ||
5568 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005569 continue;
5570
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005571 if (isteq(n, ist("te"))) {
5572 /* "te" may only be sent with "trailers" if this value
5573 * is present, otherwise it must be deleted.
5574 */
5575 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005576 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005577 continue;
5578 v = ist("trailers");
5579 }
5580
Christopher Faulet86d144c2019-08-14 16:32:25 +02005581 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005582 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005583 continue;
5584
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005585 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005586 break; // end
5587
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005588 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005589 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005590 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005591 goto realign_again;
5592 goto full;
5593 }
5594 }
5595
Willy Tarreaucb985a42019-10-07 16:56:34 +02005596 /* update the frame's size */
5597 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5598
5599 if (outbuf.data > h2c->mfs + 9) {
5600 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5601 /* output full */
5602 if (b_space_wraps(mbuf))
5603 goto realign_again;
5604 goto full;
5605 }
5606 }
5607
Willy Tarreau3a537072021-06-17 08:40:04 +02005608 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5609
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005610 /* remove all header blocks including the EOH and compute the
5611 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005612 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005613 ret = 0;
5614 blk = htx_get_head_blk(htx);
5615 while (blk) {
5616 type = htx_get_blk_type(blk);
5617 ret += htx_get_blksz(blk);
5618 blk = htx_remove_blk(htx, blk);
5619 /* The removed block is the EOH */
5620 if (type == HTX_BLK_EOH)
5621 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005622 }
Willy Tarreau80739692018-10-05 11:35:57 +02005623
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005624 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5625 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005626 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005627 }
5628 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5629 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5630 * request)
5631 */
5632 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5633 es_now = 1;
5634 }
Willy Tarreau80739692018-10-05 11:35:57 +02005635
Willy Tarreau80739692018-10-05 11:35:57 +02005636 if (es_now)
5637 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5638
5639 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005640 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005641 h2s->flags |= H2_SF_HEADERS_SENT;
5642 h2s->st = H2_SS_OPEN;
5643
Willy Tarreau80739692018-10-05 11:35:57 +02005644 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005645 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 +02005646 // trim any possibly pending data (eg: inconsistent content-length)
5647 h2s->flags |= H2_SF_ES_SENT;
5648 h2s->st = H2_SS_HLOC;
5649 }
5650
Willy Tarreau80739692018-10-05 11:35:57 +02005651 end:
5652 return ret;
5653 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005654 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5655 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005656 h2c->flags |= H2_CF_MUX_MFULL;
5657 h2s->flags |= H2_SF_BLK_MROOM;
5658 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005659 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 +02005660 goto end;
5661 fail:
5662 /* unparsable HTX messages, too large ones to be produced in the local
5663 * list etc go here (unrecoverable errors).
5664 */
5665 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5666 ret = 0;
5667 goto end;
5668}
5669
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005670/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005671 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5672 * caller must check the stream's status to detect any error which might have
5673 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005674 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005675 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005676static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005677{
5678 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005679 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005680 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005681 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005682 size_t total = 0;
5683 int es_now = 0;
5684 int bsize; /* htx block size */
5685 int fsize; /* h2 frame size */
5686 struct htx_blk *blk;
5687 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005688 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005689
Willy Tarreau7838a792019-08-12 18:42:03 +02005690 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5691
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005692 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005693 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005694 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005695 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005696 goto end;
5697 }
5698
Willy Tarreau98de12a2018-12-12 07:03:00 +01005699 htx = htx_from_buf(buf);
5700
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005701 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005702
5703 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005704 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005705 goto end;
5706
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005707 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005708 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5709 /* The response HEADERS frame not received yet. Thus the tunnel
5710 * is not fully established yet. In this situation, we block
5711 * data sending.
5712 */
5713 h2s->flags |= H2_SF_BLK_MBUSY;
5714 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5715 goto end;
5716 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005717 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5718 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5719 * Thus the stream is closed with the CANCEL error. The error will be reported to
5720 * the upper layer as aserver abort. But at this stage there is nothing more we can
5721 * do. We just wait for the end of the response to be sure to not truncate it.
5722 */
5723 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5724 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5725 h2s->flags |= H2_SF_BLK_MBUSY;
5726 }
5727 else {
5728 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5729 h2s_error(h2s, H2_ERR_CANCEL);
5730 }
5731 goto end;
5732 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005733
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005734 blk = htx_get_head_blk(htx);
5735 type = htx_get_blk_type(blk);
5736 bsize = htx_get_blksz(blk);
5737 fsize = bsize;
5738 trunc_out = 0;
5739 if (type != HTX_BLK_DATA)
5740 goto end;
5741
Willy Tarreau9c218e72019-05-26 10:08:28 +02005742 mbuf = br_tail(h2c->mbuf);
5743 retry:
5744 if (!h2_get_buf(h2c, mbuf)) {
5745 h2c->flags |= H2_CF_MUX_MALLOC;
5746 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005747 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 +02005748 goto end;
5749 }
5750
Willy Tarreau98de12a2018-12-12 07:03:00 +01005751 /* Perform some optimizations to reduce the number of buffer copies.
5752 * First, if the mux's buffer is empty and the htx area contains
5753 * exactly one data block of the same size as the requested count, and
5754 * this count fits within the frame size, the stream's window size, and
5755 * the connection's window size, then it's possible to simply swap the
5756 * caller's buffer with the mux's output buffer and adjust offsets and
5757 * length to match the entire DATA HTX block in the middle. In this
5758 * case we perform a true zero-copy operation from end-to-end. This is
5759 * the situation that happens all the time with large files. Second, if
5760 * this is not possible, but the mux's output buffer is empty, we still
5761 * have an opportunity to avoid the copy to the intermediary buffer, by
5762 * making the intermediary buffer's area point to the output buffer's
5763 * area. In this case we want to skip the HTX header to make sure that
5764 * copies remain aligned and that this operation remains possible all
5765 * the time. This goes for headers, data blocks and any data extracted
5766 * from the HTX blocks.
5767 */
5768 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005769 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005770 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005771 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005772
Willy Tarreaubcc45952019-05-26 10:05:50 +02005773 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005774 /* Too bad there are data left there. We're willing to memcpy/memmove
5775 * up to 1/4 of the buffer, which means that it's OK to copy a large
5776 * frame into a buffer containing few data if it needs to be realigned,
5777 * and that it's also OK to copy few data without realigning. Otherwise
5778 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005779 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005780 if (fsize + 9 <= b_room(mbuf) &&
5781 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005782 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5783 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 +01005784 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005785 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005786
Willy Tarreau9c218e72019-05-26 10:08:28 +02005787 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5788 goto retry;
5789
Willy Tarreau98de12a2018-12-12 07:03:00 +01005790 h2c->flags |= H2_CF_MUX_MFULL;
5791 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005792 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 +01005793 goto end;
5794 }
5795
Christopher Faulet925abdf2021-04-27 22:51:07 +02005796 if (htx->flags & HTX_FL_EOM) {
5797 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5798 * message)
5799 */
5800 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5801 es_now = 1;
5802 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005803 /* map an H2 frame to the HTX block so that we can put the
5804 * frame header there.
5805 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005806 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5807 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005808
5809 /* prepend an H2 DATA frame header just before the DATA block */
5810 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5811 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005812 if (es_now)
5813 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005814 h2_set_frame_size(outbuf.area, fsize);
5815
5816 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005817 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005818 h2c->mws -= fsize;
5819
5820 /* and exchange with our old area */
5821 buf->area = old_area;
5822 buf->data = buf->head = 0;
5823 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005824 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005825
5826 TRACE_PROTO("sent H2 DATA frame (zero-copy)", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Christopher Faulet925abdf2021-04-27 22:51:07 +02005827 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005828 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005829
Willy Tarreau98de12a2018-12-12 07:03:00 +01005830 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005831 /* for DATA and EOM we'll have to emit a frame, even if empty */
5832
5833 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005834 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5835 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005836 break;
5837 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005838 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005839 }
5840
5841 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005842 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5843 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005844 h2c->flags |= H2_CF_MUX_MFULL;
5845 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005846 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005847 goto end;
5848 }
5849
5850 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5851 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5852 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5853 outbuf.data = 9;
5854
5855 /* we have in <fsize> the exact number of bytes we need to copy from
5856 * the HTX buffer. We need to check this against the connection's and
5857 * the stream's send windows, and to ensure that this fits in the max
5858 * frame size and in the buffer's available space minus 9 bytes (for
5859 * the frame header). The connection's flow control is applied last so
5860 * that we can use a separate list of streams which are immediately
5861 * unblocked on window opening. Note: we don't implement padding.
5862 */
5863
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005864 if (!fsize)
5865 goto send_empty;
5866
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005867 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005868 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005869 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005870 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005871 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005872 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 +01005873 goto end;
5874 }
5875
Willy Tarreauee573762018-12-04 15:25:57 +01005876 if (fsize > count)
5877 fsize = count;
5878
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005879 if (fsize > h2s_mws(h2s))
5880 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005881
5882 if (h2c->mfs && fsize > h2c->mfs)
5883 fsize = h2c->mfs; // >0
5884
5885 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005886 /* It doesn't fit at once. If it at least fits once split and
5887 * the amount of data to move is low, let's defragment the
5888 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005889 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005890 if (b_space_wraps(mbuf) &&
5891 (fsize + 9 <= b_room(mbuf)) &&
5892 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005893 goto realign_again;
5894 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005895 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005896
5897 if (fsize <= 0) {
5898 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005899 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5900 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005901 h2c->flags |= H2_CF_MUX_MFULL;
5902 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005903 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005904 goto end;
5905 }
5906 }
5907
5908 if (h2c->mws <= 0) {
5909 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005910 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 +01005911 goto end;
5912 }
5913
5914 if (fsize > h2c->mws)
5915 fsize = h2c->mws;
5916
5917 /* now let's copy this this into the output buffer */
5918 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005919 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005920 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005921 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005922
5923 send_empty:
5924 /* update the frame's size */
5925 h2_set_frame_size(outbuf.area, fsize);
5926
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005927 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005928 total += fsize;
5929 if (fsize == bsize) {
5930 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005931 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5932 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5933 * message)
5934 */
5935 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5936 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005937 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005938 }
5939 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005940 /* we've truncated this block */
5941 htx_cut_data_blk(htx, blk, fsize);
5942 }
5943
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005944 if (es_now)
5945 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5946
5947 /* commit the H2 response */
5948 b_add(mbuf, fsize + 9);
5949
Christopher Faulet925abdf2021-04-27 22:51:07 +02005950 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005951 if (es_now) {
5952 if (h2s->st == H2_SS_OPEN)
5953 h2s->st = H2_SS_HLOC;
5954 else
5955 h2s_close(h2s);
5956
5957 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005958 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 +01005959 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005960 else if (fsize) {
5961 if (fsize == bsize) {
5962 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5963 goto new_frame;
5964 }
5965 else if (trunc_out) {
5966 /* we've truncated this block */
5967 goto new_frame;
5968 }
5969 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005970
5971 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005972 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005973 return total;
5974}
5975
Christopher Faulet991febd2020-12-02 15:17:31 +01005976/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
5977 * ES flag set for stream <h2s>. This function is called for response known to
5978 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005979 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01005980 * which might have happened subsequently to a successful send. Returns the
5981 * number of data bytes consumed, or zero if nothing done.
5982 */
5983static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
5984{
5985 struct h2c *h2c = h2s->h2c;
5986 struct htx *htx;
5987 int bsize; /* htx block size */
5988 int fsize; /* h2 frame size */
5989 struct htx_blk *blk;
5990 enum htx_blk_type type;
5991 size_t total = 0;
5992
5993 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5994
5995 if (h2c_mux_busy(h2c, h2s)) {
5996 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5997 h2s->flags |= H2_SF_BLK_MBUSY;
5998 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5999 goto end;
6000 }
6001
6002 htx = htx_from_buf(buf);
6003
6004 next_data:
6005 if (!count || htx_is_empty(htx))
6006 goto end;
6007 blk = htx_get_head_blk(htx);
6008 type = htx_get_blk_type(blk);
6009 bsize = htx_get_blksz(blk);
6010 fsize = bsize;
6011 if (type != HTX_BLK_DATA)
6012 goto end;
6013
6014 if (fsize > count)
6015 fsize = count;
6016
6017 if (fsize != bsize)
6018 goto skip_data;
6019
6020 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6021 goto skip_data;
6022
6023 /* Here, it is the last block and it is also the end of the message. So
6024 * we can emit an empty DATA frame with the ES flag set
6025 */
6026 if (h2_send_empty_data_es(h2s) <= 0)
6027 goto end;
6028
6029 if (h2s->st == H2_SS_OPEN)
6030 h2s->st = H2_SS_HLOC;
6031 else
6032 h2s_close(h2s);
6033
6034 skip_data:
6035 /* consume incoming HTX block */
6036 total += fsize;
6037 if (fsize == bsize) {
6038 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6039 htx_remove_blk(htx, blk);
6040 goto next_data;
6041 }
6042 else {
6043 /* we've truncated this block */
6044 htx_cut_data_blk(htx, blk, fsize);
6045 }
6046
6047 end:
6048 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6049 return total;
6050}
6051
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006052/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6053 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6054 * processed. The caller must check the stream's status to detect any error
6055 * which might have happened subsequently to a successful send. The htx blocks
6056 * are automatically removed from the message. The htx message is assumed to be
6057 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006058 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6059 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006060 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006061static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006062{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006063 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006064 struct h2c *h2c = h2s->h2c;
6065 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006066 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006067 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006068 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006069 int ret = 0;
6070 int hdr;
6071 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006072
Willy Tarreau7838a792019-08-12 18:42:03 +02006073 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6074
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006075 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006076 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006077 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006078 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006079 goto end;
6080 }
6081
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006082 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006083 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006084 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006085 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006086
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006087 if (type == HTX_BLK_UNUSED)
6088 continue;
6089
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006090 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006091 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006092 if (type == HTX_BLK_TLR) {
6093 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6094 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6095 goto fail;
6096 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006097
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006098 list[hdr].n = htx_get_blk_name(htx, blk);
6099 list[hdr].v = htx_get_blk_value(htx, blk);
6100 hdr++;
6101 }
6102 else {
6103 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006104 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006105 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006106 }
6107
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006108 /* marker for end of trailers */
6109 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006110
Willy Tarreau9c218e72019-05-26 10:08:28 +02006111 mbuf = br_tail(h2c->mbuf);
6112 retry:
6113 if (!h2_get_buf(h2c, mbuf)) {
6114 h2c->flags |= H2_CF_MUX_MALLOC;
6115 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006116 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 +02006117 goto end;
6118 }
6119
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006120 chunk_reset(&outbuf);
6121
6122 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006123 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6124 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006125 break;
6126 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006127 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006128 }
6129
6130 if (outbuf.size < 9)
6131 goto full;
6132
6133 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6134 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6135 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6136 outbuf.data = 9;
6137
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006138 /* encode all headers */
6139 for (idx = 0; idx < hdr; idx++) {
6140 /* these ones do not exist in H2 or must not appear in
6141 * trailers and must be dropped.
6142 */
6143 if (isteq(list[idx].n, ist("host")) ||
6144 isteq(list[idx].n, ist("content-length")) ||
6145 isteq(list[idx].n, ist("connection")) ||
6146 isteq(list[idx].n, ist("proxy-connection")) ||
6147 isteq(list[idx].n, ist("keep-alive")) ||
6148 isteq(list[idx].n, ist("upgrade")) ||
6149 isteq(list[idx].n, ist("te")) ||
6150 isteq(list[idx].n, ist("transfer-encoding")))
6151 continue;
6152
Christopher Faulet86d144c2019-08-14 16:32:25 +02006153 /* Skip all pseudo-headers */
6154 if (*(list[idx].n.ptr) == ':')
6155 continue;
6156
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006157 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6158 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006159 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006160 goto realign_again;
6161 goto full;
6162 }
6163 }
6164
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006165 if (outbuf.data == 9) {
6166 /* here we have a problem, we have nothing to emit (either we
6167 * received an empty trailers block followed or we removed its
6168 * contents above). Because of this we can't send a HEADERS
6169 * frame, so we have to cheat and instead send an empty DATA
6170 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006171 */
6172 outbuf.area[3] = H2_FT_DATA;
6173 outbuf.area[4] = H2_F_DATA_END_STREAM;
6174 }
6175
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006176 /* update the frame's size */
6177 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6178
Willy Tarreau572d9f52019-10-11 16:58:37 +02006179 if (outbuf.data > h2c->mfs + 9) {
6180 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6181 /* output full */
6182 if (b_space_wraps(mbuf))
6183 goto realign_again;
6184 goto full;
6185 }
6186 }
6187
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006188 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006189 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 +02006190 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006191 h2s->flags |= H2_SF_ES_SENT;
6192
6193 if (h2s->st == H2_SS_OPEN)
6194 h2s->st = H2_SS_HLOC;
6195 else
6196 h2s_close(h2s);
6197
6198 /* OK we could properly deliver the response */
6199 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006200 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006201 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006202 blk = htx_get_head_blk(htx);
6203 while (blk) {
6204 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006205 ret += htx_get_blksz(blk);
6206 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006207 /* The removed block is the EOT */
6208 if (type == HTX_BLK_EOT)
6209 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006210 }
6211
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006212 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006213 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006214 return ret;
6215 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006216 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6217 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006218 h2c->flags |= H2_CF_MUX_MFULL;
6219 h2s->flags |= H2_SF_BLK_MROOM;
6220 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006221 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 +01006222 goto end;
6223 fail:
6224 /* unparsable HTX messages, too large ones to be produced in the local
6225 * list etc go here (unrecoverable errors).
6226 */
6227 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6228 ret = 0;
6229 goto end;
6230}
6231
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006232/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6233 * event subscriber <es> is not allowed to change from a previous call as long
6234 * as at least one event is still subscribed. The <event_type> must only be a
6235 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006236 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006237static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006238{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006239 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006240 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006241
Willy Tarreau7838a792019-08-12 18:42:03 +02006242 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006243
6244 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006245 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006246
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006247 es->events |= event_type;
6248 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006249
6250 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006251 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006252
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006253 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006254 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006255 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006256 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006257 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006258 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006259 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006260 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006261 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006262 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006263 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006264 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006265}
6266
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006267/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6268 * The <es> pointer is not allowed to differ from the one passed to the
6269 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006270 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006271static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006272{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006273 struct h2s *h2s = cs->ctx;
6274
Willy Tarreau7838a792019-08-12 18:42:03 +02006275 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006276
6277 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006278 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006279
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006280 es->events &= ~event_type;
6281 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006282 h2s->subs = NULL;
6283
6284 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006285 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006286
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006287 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006288 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006289 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006290 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6291 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006292 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006293
Willy Tarreau7838a792019-08-12 18:42:03 +02006294 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006295 return 0;
6296}
6297
6298
Christopher Faulet564e39c2021-09-21 15:50:55 +02006299/* Called from the upper layer, to receive data
6300 *
6301 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6302 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6303 * means the caller wants to flush input data (from the mux buffer and the
6304 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6305 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6306 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6307 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6308 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6309 * copy as much data as possible.
6310 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006311static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6312{
Olivier Houchard638b7992018-08-16 15:41:52 +02006313 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006314 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006315 struct htx *h2s_htx = NULL;
6316 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006317 size_t ret = 0;
6318
Willy Tarreau7838a792019-08-12 18:42:03 +02006319 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6320
Olivier Houchard511efea2018-08-16 15:30:32 +02006321 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006322 h2s_htx = htx_from_buf(&h2s->rxbuf);
6323 if (htx_is_empty(h2s_htx)) {
6324 /* Here htx_to_buf() will set buffer data to 0 because
6325 * the HTX is empty.
6326 */
6327 htx_to_buf(h2s_htx, &h2s->rxbuf);
6328 goto end;
6329 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006330
Christopher Faulet9b79a102019-07-15 11:22:56 +02006331 ret = h2s_htx->data;
6332 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006333
Christopher Faulet9b79a102019-07-15 11:22:56 +02006334 /* <buf> is empty and the message is small enough, swap the
6335 * buffers. */
6336 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006337 htx_to_buf(buf_htx, buf);
6338 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006339 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6340 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006341 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006342
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006343 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006344
6345 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6346 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6347 if (htx_is_empty(buf_htx))
6348 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006349 }
Christopher Faulet810df062020-07-22 16:20:34 +02006350 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006351 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006352
Christopher Faulet9b79a102019-07-15 11:22:56 +02006353 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6354 htx_to_buf(buf_htx, buf);
6355 htx_to_buf(h2s_htx, &h2s->rxbuf);
6356 ret -= h2s_htx->data;
6357
Christopher Faulet37070b22019-02-14 15:12:14 +01006358 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006359 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006360 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006361 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006362 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006363 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006364 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006365 /* Add EOS flag for tunnel */
6366 if (h2s->flags & H2_SF_BODY_TUNNEL)
6367 cs->flags |= CS_FL_EOS;
6368 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006369 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006370 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006371 if (cs->flags & CS_FL_ERR_PENDING)
6372 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006373 if (b_size(&h2s->rxbuf)) {
6374 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006375 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006376 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006377 }
6378
Willy Tarreau082f5592018-11-25 08:03:32 +01006379 if (ret && h2c->dsi == h2s->id) {
6380 /* demux is blocking on this stream's buffer */
6381 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006382 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006383 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006384
Willy Tarreau7838a792019-08-12 18:42:03 +02006385 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006386 return ret;
6387}
6388
Olivier Houchardd846c262018-10-19 17:24:29 +02006389
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006390/* Called from the upper layer, to send data from buffer <buf> for no more than
6391 * <count> bytes. Returns the number of bytes effectively sent. Some status
6392 * flags may be updated on the conn_stream.
6393 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006394static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006395{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006396 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006397 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006398 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006399 struct htx *htx;
6400 struct htx_blk *blk;
6401 enum htx_blk_type btype;
6402 uint32_t bsize;
6403 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006404
Willy Tarreau7838a792019-08-12 18:42:03 +02006405 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6406
Olivier Houchardd360ac62019-03-22 17:37:16 +01006407 /* If we were not just woken because we wanted to send but couldn't,
6408 * and there's somebody else that is waiting to send, do nothing,
6409 * we will subscribe later and be put at the end of the list
6410 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006411 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006412 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6413 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 +01006414 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006415 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006416 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006417
Willy Tarreau7838a792019-08-12 18:42:03 +02006418 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6419 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 +02006420 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006421 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006422
Willy Tarreaucab22952019-10-31 15:48:18 +01006423 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6424 cs->flags |= CS_FL_ERROR;
6425 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);
6426 return 0;
6427 }
6428
Christopher Faulet9b79a102019-07-15 11:22:56 +02006429 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006430
Willy Tarreau0bad0432018-06-14 16:54:01 +02006431 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006432 h2s->flags |= H2_SF_OUTGOING_DATA;
6433
Willy Tarreau751f2d02018-10-05 09:35:00 +02006434 if (h2s->id == 0) {
6435 int32_t id = h2c_get_next_sid(h2s->h2c);
6436
6437 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006438 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006439 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 +02006440 return 0;
6441 }
6442
6443 eb32_delete(&h2s->by_id);
6444 h2s->by_id.key = h2s->id = id;
6445 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006446 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006447 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6448 }
6449
Christopher Faulet9b79a102019-07-15 11:22:56 +02006450 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6451 count && !htx_is_empty(htx)) {
6452 idx = htx_get_head(htx);
6453 blk = htx_get_blk(htx, idx);
6454 btype = htx_get_blk_type(blk);
6455 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006456
Christopher Faulet9b79a102019-07-15 11:22:56 +02006457 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006458 case HTX_BLK_REQ_SL:
6459 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006460 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006461 if (ret > 0) {
6462 total += ret;
6463 count -= ret;
6464 if (ret < bsize)
6465 goto done;
6466 }
6467 break;
6468
Willy Tarreau115e83b2018-12-01 19:17:53 +01006469 case HTX_BLK_RES_SL:
6470 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006471 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006472 if (ret > 0) {
6473 total += ret;
6474 count -= ret;
6475 if (ret < bsize)
6476 goto done;
6477 }
6478 break;
6479
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006480 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006481 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006482 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6483 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6484 ret = h2s_skip_data(h2s, buf, count);
6485 else
6486 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006487 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006488 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006489 total += ret;
6490 count -= ret;
6491 if (ret < bsize)
6492 goto done;
6493 }
6494 break;
6495
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006496 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006497 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006498 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006499 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006500 if (ret > 0) {
6501 total += ret;
6502 count -= ret;
6503 if (ret < bsize)
6504 goto done;
6505 }
6506 break;
6507
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006508 default:
6509 htx_remove_blk(htx, blk);
6510 total += bsize;
6511 count -= bsize;
6512 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006513 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006514 }
6515
Christopher Faulet9b79a102019-07-15 11:22:56 +02006516 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006517 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006518 /* trim any possibly pending data after we close (extra CR-LF,
6519 * unprocessed trailers, abnormal extra data, ...)
6520 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006521 total += count;
6522 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006523 }
6524
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006525 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006526 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006527 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 +01006528 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006529 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006530 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006531 }
6532
Christopher Faulet9b79a102019-07-15 11:22:56 +02006533 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006534
Olivier Houchard7505f942018-08-21 18:10:44 +02006535 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006536 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006537 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 +02006538 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006539 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006540
Olivier Houchard7505f942018-08-21 18:10:44 +02006541 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006542 /* If we're waiting for flow control, and we got a shutr on the
6543 * connection, we will never be unlocked, so add an error on
6544 * the conn_stream.
6545 */
6546 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6547 !b_data(&h2s->h2c->dbuf) &&
6548 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006549 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 +01006550 if (cs->flags & CS_FL_EOS)
6551 cs->flags |= CS_FL_ERROR;
6552 else
6553 cs->flags |= CS_FL_ERR_PENDING;
6554 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006555
Willy Tarreau5723f292020-01-10 15:16:57 +01006556 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6557 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006558 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006559 LIST_DEL_INIT(&h2s->list);
6560 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006561
Willy Tarreau7838a792019-08-12 18:42:03 +02006562 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006563 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006564}
6565
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006566/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006567static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006568{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006569 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006570 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006571 struct eb32_node *node;
6572 int fctl_cnt = 0;
6573 int send_cnt = 0;
6574 int tree_cnt = 0;
6575 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006576 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006577 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006578
6579 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006580 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006581
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006582 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006583 fctl_cnt++;
6584
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006585 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006586 send_cnt++;
6587
Willy Tarreau3af37712018-12-18 14:34:41 +01006588 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006589 node = eb32_first(&h2c->streams_by_id);
6590 while (node) {
6591 h2s = container_of(node, struct h2s, by_id);
6592 tree_cnt++;
6593 if (!h2s->cs)
6594 orph_cnt++;
6595 node = eb32_next(node);
6596 }
6597
Willy Tarreau60f62682019-05-26 11:32:27 +02006598 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006599 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006600 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006601 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006602 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6603 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006604 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006605 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006606 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006607 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6608 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6609 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006610 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6611 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6612 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006613 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6614 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006615
6616 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006617 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006618 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006619 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6620 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6621 h2s->cs);
6622 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006623 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006624 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006625
6626 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6627 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006628 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6629 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6630 h2s->subs->tasklet->calls,
6631 h2s->subs->tasklet->context);
6632 if (h2s->subs->tasklet->calls >= 1000000)
6633 ret = 1;
6634 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6635 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006636 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006637 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006638 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006639}
Willy Tarreau62f52692017-10-08 23:01:42 +02006640
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006641/* Migrate the the connection to the current thread.
6642 * Return 0 if successful, non-zero otherwise.
6643 * Expected to be called with the old thread lock held.
6644 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006645static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006646{
6647 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006648 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006649
6650 if (fd_takeover(conn->handle.fd, conn) != 0)
6651 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006652
6653 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6654 /* We failed to takeover the xprt, even if the connection may
6655 * still be valid, flag it as error'd, as we have already
6656 * taken over the fd, and wake the tasklet, so that it will
6657 * destroy it.
6658 */
6659 conn->flags |= CO_FL_ERROR;
6660 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6661 return -1;
6662 }
6663
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006664 if (h2c->wait_event.events)
6665 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6666 h2c->wait_event.events, &h2c->wait_event);
6667 /* To let the tasklet know it should free itself, and do nothing else,
6668 * set its context to NULL.
6669 */
6670 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006671 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006672
6673 task = h2c->task;
6674 if (task) {
6675 task->context = NULL;
6676 h2c->task = NULL;
6677 __ha_barrier_store();
6678 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006679
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006680 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006681 if (!h2c->task) {
6682 h2_release(h2c);
6683 return -1;
6684 }
6685 h2c->task->process = h2_timeout_task;
6686 h2c->task->context = h2c;
6687 }
6688 h2c->wait_event.tasklet = tasklet_new();
6689 if (!h2c->wait_event.tasklet) {
6690 h2_release(h2c);
6691 return -1;
6692 }
6693 h2c->wait_event.tasklet->process = h2_io_cb;
6694 h2c->wait_event.tasklet->context = h2c;
6695 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6696 SUB_RETRY_RECV, &h2c->wait_event);
6697
6698 return 0;
6699}
6700
Willy Tarreau62f52692017-10-08 23:01:42 +02006701/*******************************************************/
6702/* functions below are dedicated to the config parsers */
6703/*******************************************************/
6704
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006705/* config parser for global "tune.h2.header-table-size" */
6706static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006707 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006708 char **err)
6709{
6710 if (too_many_args(1, args, err, NULL))
6711 return -1;
6712
6713 h2_settings_header_table_size = atoi(args[1]);
6714 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6715 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6716 return -1;
6717 }
6718 return 0;
6719}
Willy Tarreau62f52692017-10-08 23:01:42 +02006720
Willy Tarreaue6baec02017-07-27 11:45:11 +02006721/* config parser for global "tune.h2.initial-window-size" */
6722static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006723 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006724 char **err)
6725{
6726 if (too_many_args(1, args, err, NULL))
6727 return -1;
6728
6729 h2_settings_initial_window_size = atoi(args[1]);
6730 if (h2_settings_initial_window_size < 0) {
6731 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6732 return -1;
6733 }
6734 return 0;
6735}
6736
Willy Tarreau5242ef82017-07-27 11:47:28 +02006737/* config parser for global "tune.h2.max-concurrent-streams" */
6738static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006739 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006740 char **err)
6741{
6742 if (too_many_args(1, args, err, NULL))
6743 return -1;
6744
6745 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006746 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006747 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6748 return -1;
6749 }
6750 return 0;
6751}
6752
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006753/* config parser for global "tune.h2.max-frame-size" */
6754static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006755 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006756 char **err)
6757{
6758 if (too_many_args(1, args, err, NULL))
6759 return -1;
6760
6761 h2_settings_max_frame_size = atoi(args[1]);
6762 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6763 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6764 return -1;
6765 }
6766 return 0;
6767}
6768
Willy Tarreau62f52692017-10-08 23:01:42 +02006769
6770/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006771/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006772/***************************************/
6773
6774/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006775static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006776 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006777 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006778 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006779 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006780 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006781 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006782 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006783 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006784 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006785 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006786 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006787 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006788 .shutr = h2_shutr,
6789 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006790 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006791 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006792 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006793 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006794 .name = "H2",
6795};
6796
Christopher Faulet32f61c02018-04-10 14:33:41 +02006797static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006798 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006799
Willy Tarreau0108d902018-11-25 19:14:37 +01006800INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6801
Willy Tarreau62f52692017-10-08 23:01:42 +02006802/* config keyword parsers */
6803static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006804 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006805 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006806 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006807 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006808 { 0, NULL, NULL }
6809}};
6810
Willy Tarreau0108d902018-11-25 19:14:37 +01006811INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006812
6813/* initialize internal structs after the config is parsed.
6814 * Returns zero on success, non-zero on error.
6815 */
6816static int init_h2()
6817{
6818 pool_head_hpack_tbl = create_pool("hpack_tbl",
6819 h2_settings_header_table_size,
6820 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006821 if (!pool_head_hpack_tbl) {
6822 ha_alert("failed to allocate hpack_tbl memory pool\n");
6823 return (ERR_ALERT | ERR_FATAL);
6824 }
6825 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006826}
6827
6828REGISTER_POST_CHECK(init_h2);