blob: 4d2a5a9bc6e78f43e6e821275774fd524061cc68 [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>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020018#include <haproxy/dynbuf.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020019#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020020#include <haproxy/hpack-dec.h>
21#include <haproxy/hpack-enc.h>
22#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020023#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020024#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020026#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020027#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020028#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010029#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020030#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020031#include <haproxy/stream.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020032#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020033
34
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020036static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010037static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010038static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020039static const struct h2s *h2_idle_stream;
40
Willy Tarreau5ab6b572017-09-22 08:05:00 +020041/* Connection flags (32 bit), in h2c->flags */
42#define H2_CF_NONE 0x00000000
43
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020044/* Flags indicating why writing to the mux is blocked. */
45#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
46#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
47#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
48
Willy Tarreau315d8072017-12-10 22:17:57 +010049/* Flags indicating why writing to the demux is blocked.
50 * The first two ones directly affect the ability for the mux to receive data
51 * from the connection. The other ones affect the mux's ability to demux
52 * received data.
53 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020054#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
55#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010056
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020057#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
58#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
59#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
60#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreau4596fe22022-05-17 19:07:51 +020061#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some stream connectors to leave
Willy Tarreauf2101912018-07-19 10:11:38 +020062#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Christopher Fauletb5f7b522021-07-26 12:06:53 +020063 // (SHORT_READ is also excluded)
64
Christopher Faulet47940c32021-11-10 17:50:10 +010065#define H2_CF_DEM_SHORT_READ 0x00000200 // demux blocked on incomplete frame
Willy Tarreau0f458712022-08-18 11:19:57 +020066#define H2_CF_DEM_IN_PROGRESS 0x00000400 // demux in progress (dsi,dfl,dft are valid)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020067
Willy Tarreau081d4722017-05-16 21:51:05 +020068/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020069#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
70#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
71#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 +020072#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010073#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
74#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
75#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020076
Amaury Denoyelle0df04362021-10-18 09:43:29 +020077#define H2_CF_RCVD_RFC8441 0x00100000 // settings from RFC8441 has been received indicating support for Extended CONNECT
Willy Tarreau39a0a1e2022-01-13 16:00:12 +010078#define H2_CF_SHTS_UPDATED 0x00200000 // SETTINGS_HEADER_TABLE_SIZE updated
79#define H2_CF_DTSU_EMITTED 0x00400000 // HPACK Dynamic Table Size Update opcode emitted
Amaury Denoyelle0df04362021-10-18 09:43:29 +020080
Willy Tarreau5ab6b572017-09-22 08:05:00 +020081/* H2 connection state, in h2c->st0 */
82enum h2_cs {
83 H2_CS_PREFACE, // init done, waiting for connection preface
84 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
85 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
86 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010087 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
88 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020089 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
90 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
91 H2_CS_ENTRIES // must be last
92} __attribute__((packed));
93
Willy Tarreau51330962019-05-26 09:38:07 +020094
Willy Tarreau9c218e72019-05-26 10:08:28 +020095/* 32 buffers: one for the ring's root, rest for the mbuf itself */
96#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020097
Willy Tarreau5ab6b572017-09-22 08:05:00 +020098/* H2 connection descriptor */
99struct h2c {
100 struct connection *conn;
101
102 enum h2_cs st0; /* mux state */
103 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
104
105 /* 16 bit hole here */
106 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100107 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200108 int32_t max_id; /* highest ID known on this connection, <0 before preface */
109 uint32_t rcvd_c; /* newly received data to ACK for the connection */
Willy Tarreau617592c2022-06-08 16:32:22 +0200110 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) or zero */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200111
112 /* states for the demux direction */
113 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200114 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200115
116 int32_t dsi; /* demux stream ID (<0 = idle) */
117 int32_t dfl; /* demux frame length (if dsi >= 0) */
118 int8_t dft; /* demux frame type (if dsi >= 0) */
119 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100120 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
121 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200122 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
123
124 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200125 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200126 int32_t msi; /* mux stream ID (<0 = idle) */
127 int32_t mfl; /* mux frame length (if dsi >= 0) */
128 int8_t mft; /* mux frame type (if dsi >= 0) */
129 int8_t mff; /* mux frame flags (if dsi >= 0) */
130 /* 16 bit hole here */
131 int32_t miw; /* mux initial window size for all new streams */
132 int32_t mws; /* mux window size. Can be negative. */
133 int32_t mfs; /* mux's max frame size */
134
Willy Tarreauea392822017-10-31 10:02:25 +0100135 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100136 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau15a47332022-03-18 15:57:34 +0100137 int idle_start; /* date of the last time the connection went idle */
138 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +0100139 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau36c22322022-05-27 10:41:24 +0200140 unsigned int nb_sc; /* number of attached stream connectors */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100141 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100142 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200143 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100144 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100145 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200146 struct eb_root streams_by_id; /* all active streams by their ID */
147 struct list send_list; /* list of blocked streams requesting to send */
148 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200149 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100150 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200151 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200152};
153
Willy Tarreau18312642017-10-11 07:57:07 +0200154/* H2 stream state, in h2s->st */
155enum h2_ss {
156 H2_SS_IDLE = 0, // idle
157 H2_SS_RLOC, // reserved(local)
158 H2_SS_RREM, // reserved(remote)
159 H2_SS_OPEN, // open
160 H2_SS_HREM, // half-closed(remote)
161 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200162 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200163 H2_SS_CLOSED, // closed
164 H2_SS_ENTRIES // must be last
165} __attribute__((packed));
166
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200167#define H2_SS_MASK(state) (1UL << (state))
168#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
169#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
170#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
171#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
172#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
173#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
174#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
175#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200176
Willy Tarreau18312642017-10-11 07:57:07 +0200177/* HTTP/2 stream flags (32 bit), in h2s->flags */
178#define H2_SF_NONE 0x00000000
179#define H2_SF_ES_RCVD 0x00000001
180#define H2_SF_ES_SENT 0x00000002
181
182#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
183#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
184
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200185/* stream flags indicating the reason the stream is blocked */
186#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200187#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
188#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
189#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200190#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
191
Willy Tarreau454f9052017-10-26 19:40:35 +0200192/* stream flags indicating how data is supposed to be sent */
193#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100194#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100195#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
196
Willy Tarreau454f9052017-10-26 19:40:35 +0200197
Willy Tarreaud9464162020-01-10 18:25:07 +0100198#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100199#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100200#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100201
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100202#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
203
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200204#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
205#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
206
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100207#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100208#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100209
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100210#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau48770452022-08-18 16:03:51 +0200211#define H2_SF_MORE_HTX_DATA 0x00200000 // more data expected from HTX
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200212
Willy Tarreau18312642017-10-11 07:57:07 +0200213/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100214 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200215 */
216struct h2s {
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200217 struct sedesc *sd;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100218 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200219 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200220 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200221 int32_t id; /* stream ID */
222 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200223 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200224 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
225 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200226 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100227 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200228 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreau4596fe22022-05-17 19:07:51 +0200229 struct wait_event *subs; /* recv wait_event the stream connector associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200230 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100231 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
232 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100233
234 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200235};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200236
Willy Tarreauc6405142017-09-21 20:23:50 +0200237/* descriptor for an h2 frame header */
238struct h2_fh {
239 uint32_t len; /* length, host order, 24 bits */
240 uint32_t sid; /* stream id, host order, 31 bits */
241 uint8_t ft; /* frame type */
242 uint8_t ff; /* frame flags */
243};
244
Willy Tarreau12ae2122019-08-08 18:23:12 +0200245/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200246static void h2_trace(enum trace_level level, uint64_t mask, \
247 const struct trace_source *src,
248 const struct ist where, const struct ist func,
249 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200250
251/* The event representation is split like this :
252 * strm - application layer
253 * h2s - internal H2 stream
254 * h2c - internal H2 connection
255 * conn - external connection
256 *
257 */
258static const struct trace_event h2_trace_events[] = {
259#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .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 +0200281#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .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 +0200307#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200344 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200345#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200346 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200347#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200348 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200349#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200350 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200351#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200352 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200353#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200354 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200355#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200356 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200358 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200359#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200360 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200361#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200362 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200363 { }
364};
365
366static const struct name_desc h2_trace_lockon_args[4] = {
367 /* arg1 */ { /* already used by the connection */ },
368 /* arg2 */ { .name="h2s", .desc="H2 stream" },
369 /* arg3 */ { },
370 /* arg4 */ { }
371};
372
373static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200374#define H2_VERB_CLEAN 1
375 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
376#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200377 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200378#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200379 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200380#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200381 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200382#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200383 { .name="complete", .desc="add full data dump when available" },
384 { /* end */ }
385};
386
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200387static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200388 .name = IST("h2"),
389 .desc = "HTTP/2 multiplexer",
390 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200391 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200392 .known_events = h2_trace_events,
393 .lockon_args = h2_trace_lockon_args,
394 .decoding = h2_trace_decoding,
395 .report_events = ~0, // report everything by default
396};
397
398#define TRACE_SOURCE &trace_h2
399INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
400
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100401/* h2 stats module */
402enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100403 H2_ST_HEADERS_RCVD,
404 H2_ST_DATA_RCVD,
405 H2_ST_SETTINGS_RCVD,
406 H2_ST_RST_STREAM_RCVD,
407 H2_ST_GOAWAY_RCVD,
408
Amaury Denoyellea8879232020-10-27 17:16:03 +0100409 H2_ST_CONN_PROTO_ERR,
410 H2_ST_STRM_PROTO_ERR,
411 H2_ST_RST_STREAM_RESP,
412 H2_ST_GOAWAY_RESP,
413
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100414 H2_ST_OPEN_CONN,
415 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100416 H2_ST_TOTAL_CONN,
417 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100418
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100419 H2_STATS_COUNT /* must be the last member of the enum */
420};
421
422static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100423 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100424 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100425 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100426 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100427 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100428 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100429 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100430 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100431 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100432 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100433
434 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
435 .desc = "Total number of connection protocol errors" },
436 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
437 .desc = "Total number of stream protocol errors" },
438 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100439 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100440 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100441 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100442
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100443 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
444 .desc = "Count of currently open connections" },
445 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
446 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100447 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100448 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100449 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100450 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100451};
452
453static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100454 long long headers_rcvd; /* total number of HEADERS frame received */
455 long long data_rcvd; /* total number of DATA frame received */
456 long long settings_rcvd; /* total number of SETTINGS frame received */
457 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
458 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100459
460 long long conn_proto_err; /* total number of protocol errors detected */
461 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100462 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
463 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100464
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100465 long long open_conns; /* count of currently open connections */
466 long long open_streams; /* count of currently open streams */
467 long long total_conns; /* total number of connections */
468 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100469} h2_counters;
470
471static void h2_fill_stats(void *data, struct field *stats)
472{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100473 struct h2_counters *counters = data;
474
475 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
476 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
477 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
478 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
479 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100480
481 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
482 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
483 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
484 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100485
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100486 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
487 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
488 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
489 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100490}
491
492static struct stats_module h2_stats_module = {
493 .name = "h2",
494 .fill_stats = h2_fill_stats,
495 .stats = h2_stats,
496 .stats_count = H2_STATS_COUNT,
497 .counters = &h2_counters,
498 .counters_size = sizeof(h2_counters),
499 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
500 .clearable = 1,
501};
502
503INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
504
Willy Tarreau8ceae722018-11-26 11:58:30 +0100505/* the h2c connection pool */
506DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
507
508/* the h2s stream pool */
509DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
510
Willy Tarreaudc572362018-12-12 08:08:05 +0100511/* The default connection window size is 65535, it may only be enlarged using
512 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
513 * we'll pretend we already received the difference between the two to send
514 * an equivalent window update to enlarge it to 2G-1.
515 */
516#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
517
Willy Tarreau455d5682019-05-24 19:42:18 +0200518/* maximum amount of data we're OK with re-aligning for buffer optimizations */
519#define MAX_DATA_REALIGN 1024
520
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200521/* a few settings from the global section */
522static int h2_settings_header_table_size = 4096; /* initial value */
Glenn Strauss0012f892022-06-04 22:11:50 -0400523static int h2_settings_initial_window_size = 65536; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100524static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100525static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200526
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200527/* a dummy closed endpoint */
Willy Tarreauea59b022022-05-17 17:53:22 +0200528static const struct sedesc closed_ep = {
Willy Tarreauc1054922022-05-18 07:43:52 +0200529 .sc = NULL,
Willy Tarreaub605c422022-05-17 17:04:55 +0200530 .flags = SE_FL_DETACHED,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200531};
532
Willy Tarreau2a856182017-05-16 15:20:39 +0200533/* a dmumy closed stream */
534static const struct h2s *h2_closed_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200535 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200536 .h2c = NULL,
537 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100538 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100539 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200540 .id = 0,
541};
542
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100543/* a dmumy closed stream returning a PROTOCOL_ERROR error */
544static const struct h2s *h2_error_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200545 .sd = (struct sedesc *)&closed_ep,
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100546 .h2c = NULL,
547 .st = H2_SS_CLOSED,
548 .errcode = H2_ERR_PROTOCOL_ERROR,
549 .flags = 0,
550 .id = 0,
551};
552
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100553/* a dmumy closed stream returning a REFUSED_STREAM error */
554static const struct h2s *h2_refused_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200555 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100556 .h2c = NULL,
557 .st = H2_SS_CLOSED,
558 .errcode = H2_ERR_REFUSED_STREAM,
559 .flags = 0,
560 .id = 0,
561};
562
Willy Tarreau2a856182017-05-16 15:20:39 +0200563/* and a dummy idle stream for use with any unannounced stream */
564static const struct h2s *h2_idle_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200565 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200566 .h2c = NULL,
567 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100568 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200569 .id = 0,
570};
571
Willy Tarreau144f84a2021-03-02 16:09:26 +0100572struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200573static int h2_send(struct h2c *h2c);
574static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200575static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100576/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100577struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100578static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100579static 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 +0100580static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100581struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Willy Tarreau36c22322022-05-27 10:41:24 +0200582static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100583static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200584
Willy Tarreauab2ec452019-08-30 07:07:08 +0200585/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
586static inline const char *h2c_st_to_str(enum h2_cs st)
587{
588 switch (st) {
589 case H2_CS_PREFACE: return "PRF";
590 case H2_CS_SETTINGS1: return "STG";
591 case H2_CS_FRAME_H: return "FRH";
592 case H2_CS_FRAME_P: return "FRP";
593 case H2_CS_FRAME_A: return "FRA";
594 case H2_CS_FRAME_E: return "FRE";
595 case H2_CS_ERROR: return "ERR";
596 case H2_CS_ERROR2: return "ER2";
597 default: return "???";
598 }
599}
600
601/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
602static inline const char *h2s_st_to_str(enum h2_ss st)
603{
604 switch (st) {
605 case H2_SS_IDLE: return "IDL"; // idle
606 case H2_SS_RLOC: return "RSL"; // reserved local
607 case H2_SS_RREM: return "RSR"; // reserved remote
608 case H2_SS_OPEN: return "OPN"; // open
609 case H2_SS_HREM: return "HCR"; // half-closed remote
610 case H2_SS_HLOC: return "HCL"; // half-closed local
611 case H2_SS_ERROR : return "ERR"; // error
612 case H2_SS_CLOSED: return "CLO"; // closed
613 default: return "???";
614 }
615}
616
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200617/* returns the stconn associated to the H2 stream */
618static forceinline struct stconn *h2s_sc(const struct h2s *h2s)
619{
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200620 return h2s->sd->sc;
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200621}
622
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200623/* the H2 traces always expect that arg1, if non-null, is of type connection
624 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
625 * that arg3, if non-null, is either of type htx for tx headers, or of type
626 * buffer for everything else.
627 */
628static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
629 const struct ist where, const struct ist func,
630 const void *a1, const void *a2, const void *a3, const void *a4)
631{
632 const struct connection *conn = a1;
633 const struct h2c *h2c = conn ? conn->ctx : NULL;
634 const struct h2s *h2s = a2;
635 const struct buffer *buf = a3;
636 const struct htx *htx;
637 int pos;
638
639 if (!h2c) // nothing to add
640 return;
641
Willy Tarreau17104d42019-08-30 07:12:55 +0200642 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200643 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
644
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200645 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
646 conn_append_debug_info(&trace_buf, conn, " : ");
647
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100648 if (h2c->errcode)
649 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
650
Willy Tarreau0f458712022-08-18 11:19:57 +0200651 if (h2c->flags & H2_CF_DEM_IN_PROGRESS && // frame processing has started, type and length are valid
Willy Tarreau73db4342019-09-25 07:28:44 +0200652 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200653 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 +0200654 }
655
656 if (h2s) {
657 if (h2s->id <= 0)
658 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
659 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100660 if (h2s->id && h2s->errcode)
661 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200662 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200663 }
664
665 /* Let's dump decoded requests and responses right after parsing. They
666 * are traced at level USER with a few recognizable flags.
667 */
668 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
669 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
670 htx = htxbuf(buf); // recv req/res
671 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
672 htx = a3; // send req/res
673 else
674 htx = NULL;
675
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200676 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200677 const struct htx_blk *blk = htx_get_blk(htx, pos);
678 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
679 enum htx_blk_type type = htx_get_blk_type(blk);
680
681 if (type == HTX_BLK_REQ_SL)
682 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200683 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200684 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
685 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
686 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
687 else if (type == HTX_BLK_RES_SL)
688 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200689 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200690 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
691 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
692 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
693 }
694}
695
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200696
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100697/* Detect a pending read0 for a H2 connection. It happens if a read0 was
698 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
699 * to parse pending data, confirming no more progress is possible because
700 * we're facing a truncated frame. The function returns 1 to report a read0
701 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200702 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100703static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200704{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100705 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200706}
707
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200708/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100709 * connection may expire when it has no attached streams. As long as streams
710 * are attached, the application layer is responsible for timeout management,
711 * and each layer will detach when it doesn't want to wait anymore. When the
712 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200713 */
714static inline int h2c_may_expire(const struct h2c *h2c)
715{
Willy Tarreau36c22322022-05-27 10:41:24 +0200716 return !h2c->nb_sc;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200717}
718
Willy Tarreau15a47332022-03-18 15:57:34 +0100719/* update h2c timeout if needed */
720static void h2c_update_timeout(struct h2c *h2c)
721{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200722 int is_idle_conn = 0;
723
Willy Tarreau15a47332022-03-18 15:57:34 +0100724 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
725
726 if (!h2c->task)
727 goto leave;
728
729 if (h2c_may_expire(h2c)) {
730 /* no more streams attached */
731 if (h2c->last_sid >= 0) {
732 /* GOAWAY sent, closing in progress */
733 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200734 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100735 } else if (br_data(h2c->mbuf)) {
736 /* pending output data: always the regular data timeout */
737 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau6ff91e22022-04-14 11:43:35 +0200738 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100739 /* idle after having seen one stream => keep-alive */
Willy Tarreau86b08a32022-04-13 17:40:28 +0200740 int to;
741
742 if (tick_isset(h2c->proxy->timeout.httpka))
743 to = h2c->proxy->timeout.httpka;
744 else
745 to = h2c->proxy->timeout.httpreq;
746
747 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200748 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100749 } else {
750 /* before first request, or started to deserialize a
751 * new req => http-request, but only set, not refresh.
752 */
753 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
754 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
755 }
756 /* if a timeout above was not set, fall back to the default one */
757 if (!tick_isset(h2c->task->expire))
758 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200759
760 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
761 is_idle_conn && tick_isset(global.close_spread_end)) {
762 /* If a soft-stop is in progress and a close-spread-time
763 * is set, we want to spread idle connection closing roughly
764 * evenly across the defined window. This should only
765 * act on idle frontend connections.
766 * If the window end is already in the past, we wake the
767 * timeout task up immediately so that it can be closed.
768 */
769 int remaining_window = tick_remain(now_ms, global.close_spread_end);
770 if (remaining_window) {
771 /* We don't need to reset the expire if it would
772 * already happen before the close window end.
773 */
774 if (tick_isset(h2c->task->expire) &&
775 tick_is_le(global.close_spread_end, h2c->task->expire)) {
776 /* Set an expire value shorter than the current value
777 * because the close spread window end comes earlier.
778 */
779 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
780 }
781 }
782 else {
783 /* We are past the soft close window end, wake the timeout
784 * task up immediately.
785 */
786 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
787 }
788 }
789
Willy Tarreau15a47332022-03-18 15:57:34 +0100790 } else {
791 h2c->task->expire = TICK_ETERNITY;
792 }
793 task_queue(h2c->task);
794 leave:
795 TRACE_LEAVE(H2_EV_H2C_WAKE);
796}
797
Olivier Houchard7a977432019-03-21 15:47:13 +0100798static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200799h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100800{
801 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
802 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
803 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
804 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200805 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100806 (conn_xprt_read0_pending(h2c->conn) ||
807 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
808 return 1;
809
810 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100811}
812
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200813/*****************************************************/
814/* functions below are for dynamic buffer management */
815/*****************************************************/
816
Willy Tarreau315d8072017-12-10 22:17:57 +0100817/* indicates whether or not the we may call the h2_recv() function to attempt
818 * to receive data into the buffer and/or demux pending data. The condition is
819 * a bit complex due to some API limits for now. The rules are the following :
820 * - if an error or a shutdown was detected on the connection and the buffer
821 * is empty, we must not attempt to receive
822 * - if the demux buf failed to be allocated, we must not try to receive and
823 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100824 * - if no flag indicates a blocking condition, we may attempt to receive,
825 * regardless of whether the demux buffer is full or not, so that only
826 * de demux part decides whether or not to block. This is needed because
827 * the connection API indeed prevents us from re-enabling receipt that is
828 * already enabled in a polled state, so we must always immediately stop
829 * as soon as the demux can't proceed so as never to hit an end of read
830 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100831 * - otherwise must may not attempt
832 */
833static inline int h2_recv_allowed(const struct h2c *h2c)
834{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200835 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100836 (h2c->st0 >= H2_CS_ERROR ||
837 h2c->conn->flags & CO_FL_ERROR ||
838 conn_xprt_read0_pending(h2c->conn)))
839 return 0;
840
841 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100842 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100843 return 1;
844
845 return 0;
846}
847
Willy Tarreau47b515a2018-12-21 16:09:41 +0100848/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200849static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100850{
851 if (!h2_recv_allowed(h2c))
852 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200853 if ((!consider_buffer || !b_data(&h2c->dbuf))
854 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100855 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200856 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100857}
858
859
Willy Tarreau4596fe22022-05-17 19:07:51 +0200860/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200861static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200862{
Willy Tarreau36c22322022-05-27 10:41:24 +0200863 return h2c->nb_sc > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200864}
865
Willy Tarreau44e973f2018-03-01 17:49:30 +0100866/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
867 * flags are used to figure what buffer was requested. It returns 1 if the
868 * allocation succeeds, in which case the connection is woken up, or 0 if it's
869 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200870 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100871static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200872{
873 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100874 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200875
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100876 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200877 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200878 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200879 return 1;
880 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200881
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100882 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100883 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200884
885 if (h2c->flags & H2_CF_DEM_MROOM) {
886 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200887 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200888 }
Willy Tarreau14398122017-09-22 14:26:04 +0200889 return 1;
890 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100891
892 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200893 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100894 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100895 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200896 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100897 return 1;
898 }
899
Willy Tarreau14398122017-09-22 14:26:04 +0200900 return 0;
901}
902
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200903static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200904{
905 struct buffer *buf = NULL;
906
Willy Tarreau2b718102021-04-21 07:32:39 +0200907 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100908 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100909 h2c->buf_wait.target = h2c;
910 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200911 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200912 }
913 return buf;
914}
915
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200916static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200917{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200918 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100919 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100920 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200921 }
922}
923
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200924static inline void h2_release_mbuf(struct h2c *h2c)
925{
926 struct buffer *buf;
927 unsigned int count = 0;
928
929 while (b_size(buf = br_head_pick(h2c->mbuf))) {
930 b_free(buf);
931 count++;
932 }
933 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100934 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200935}
936
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100937/* returns the number of allocatable outgoing streams for the connection taking
938 * the last_sid and the reserved ones into account.
939 */
940static inline int h2_streams_left(const struct h2c *h2c)
941{
942 int ret;
943
944 /* consider the number of outgoing streams we're allowed to create before
945 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
946 * nb_reserved is the number of streams which don't yet have an ID.
947 */
948 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
949 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
950 if (ret < 0)
951 ret = 0;
952 return ret;
953}
954
Willy Tarreau00f18a32019-01-26 12:19:01 +0100955/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200956 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100957 * to know if it was the last one after a detach().
958 */
959static int h2_used_streams(struct connection *conn)
960{
961 struct h2c *h2c = conn->ctx;
962
Willy Tarreau36c22322022-05-27 10:41:24 +0200963 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100964}
965
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100966/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100967static int h2_avail_streams(struct connection *conn)
968{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100969 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100970 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100971 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100972
Willy Tarreau6afec462019-01-28 06:40:19 +0100973 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
974 * streams on the connection.
975 */
976 if (h2c->last_sid >= 0)
977 return 0;
978
Willy Tarreauc61966f2019-10-31 15:10:03 +0100979 if (h2c->st0 >= H2_CS_ERROR)
980 return 0;
981
Willy Tarreau86949782019-01-31 10:42:05 +0100982 /* note: may be negative if a SETTINGS frame changes the limit */
983 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100984
985 /* we must also consider the limit imposed by stream IDs */
986 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100987 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100988 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100989 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
990 ret1 = MIN(ret1, ret2);
991 }
992 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100993}
994
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200995
Willy Tarreau62f52692017-10-08 23:01:42 +0200996/*****************************************************************/
997/* functions below are dedicated to the mux setup and management */
998/*****************************************************************/
999
Willy Tarreau7dc24e42018-10-03 13:52:41 +02001000/* Initialize the mux once it's attached. For outgoing connections, the context
1001 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001002 * connections from the fact that the context is still NULL (even during mux
1003 * upgrades). <input> is always used as Input buffer and may contain data. It is
1004 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +02001005 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001006static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
1007 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +02001008{
1009 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +01001010 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +02001011 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001012
Christopher Fauletf81ef032019-10-04 15:19:43 +02001013 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +02001014
Willy Tarreaubafbe012017-11-24 17:34:44 +01001015 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001016 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +02001017 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001018
Christopher Faulete9b70722019-04-08 10:46:02 +02001019 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001020 h2c->flags = H2_CF_IS_BACK;
1021 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
1022 if (tick_isset(prx->timeout.serverfin))
1023 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001024
1025 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
1026 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001027 } else {
1028 h2c->flags = H2_CF_NONE;
1029 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
1030 if (tick_isset(prx->timeout.clientfin))
1031 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001032
1033 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
1034 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001035 }
Willy Tarreau3f133572017-10-31 19:21:06 +01001036
Willy Tarreau0b37d652018-10-03 10:33:02 +02001037 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +01001038 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +01001039 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +01001040 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001041 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +01001042 if (!t)
1043 goto fail;
1044
1045 h2c->task = t;
1046 t->process = h2_timeout_task;
1047 t->context = h2c;
1048 t->expire = tick_add(now_ms, h2c->timeout);
1049 }
Willy Tarreauea392822017-10-31 10:02:25 +01001050
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001051 h2c->wait_event.tasklet = tasklet_new();
1052 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001053 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001054 h2c->wait_event.tasklet->process = h2_io_cb;
1055 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001056 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001057 if (!conn_is_back(conn)) {
1058 /* Connection might already be in the stopping_list if subject
1059 * to h1->h2 upgrade.
1060 */
1061 if (!LIST_INLIST(&conn->stopping_list)) {
1062 LIST_APPEND(&mux_stopping_data[tid].list,
1063 &conn->stopping_list);
1064 }
1065 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001066
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001067 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001068 if (!h2c->ddht)
1069 goto fail;
1070
1071 /* Initialise the context. */
1072 h2c->st0 = H2_CS_PREFACE;
1073 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001074 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001075 h2c->max_id = -1;
1076 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001077 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001078 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001079 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +02001080 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001081 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001082 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001083
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001084 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001085 h2c->dsi = -1;
1086 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001087
Willy Tarreau32218eb2017-09-22 08:07:25 +02001088 h2c->last_sid = -1;
1089
Willy Tarreau51330962019-05-26 09:38:07 +02001090 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001091 h2c->miw = 65535; /* mux initial window size */
1092 h2c->mws = 65535; /* mux window size */
1093 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001094 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001095 LIST_INIT(&h2c->send_list);
1096 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001097 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001098 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001099
Christopher Fauletf81ef032019-10-04 15:19:43 +02001100 conn->ctx = h2c;
1101
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001102 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1103
Willy Tarreau3f133572017-10-31 19:21:06 +01001104 if (t)
1105 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001106
Willy Tarreau01b44822018-10-03 14:26:37 +02001107 if (h2c->flags & H2_CF_IS_BACK) {
1108 /* FIXME: this is temporary, for outgoing connections we need
1109 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +02001110 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +02001111 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001112 */
1113 struct h2s *h2s;
1114
Christopher Fauletf81ef032019-10-04 15:19:43 +02001115 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001116 if (!h2s)
1117 goto fail_stream;
1118 }
1119
Willy Tarreau4781b152021-04-06 13:53:36 +02001120 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1121 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001122
Willy Tarreau0f383582018-10-03 14:22:21 +02001123 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001124 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001125 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001126 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001127 fail_stream:
1128 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001129 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001130 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001131 if (h2c->wait_event.tasklet)
1132 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001133 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001134 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001135 if (!conn_is_back(conn))
1136 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001137 conn->ctx = conn_ctx; /* restore saved ctx */
1138 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001139 return -1;
1140}
1141
Willy Tarreau751f2d02018-10-05 09:35:00 +02001142/* returns the next allocatable outgoing stream ID for the H2 connection, or
1143 * -1 if no more is allocatable.
1144 */
1145static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1146{
1147 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001148
1149 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001150 id = -1;
1151 return id;
1152}
1153
Willy Tarreau2373acc2017-10-12 17:35:14 +02001154/* returns the stream associated with id <id> or NULL if not found */
1155static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1156{
1157 struct eb32_node *node;
1158
Willy Tarreau751f2d02018-10-05 09:35:00 +02001159 if (id == 0)
1160 return (struct h2s *)h2_closed_stream;
1161
Willy Tarreau2a856182017-05-16 15:20:39 +02001162 if (id > h2c->max_id)
1163 return (struct h2s *)h2_idle_stream;
1164
Willy Tarreau2373acc2017-10-12 17:35:14 +02001165 node = eb32_lookup(&h2c->streams_by_id, id);
1166 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001167 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001168
1169 return container_of(node, struct h2s, by_id);
1170}
1171
Christopher Faulet73c12072019-04-08 11:23:22 +02001172/* release function. This one should be called to free all resources allocated
1173 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001174 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001175static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001176{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001177 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001178
Willy Tarreau7838a792019-08-12 18:42:03 +02001179 TRACE_ENTER(H2_EV_H2C_END);
1180
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001181 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001182
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001183 if (LIST_INLIST(&h2c->buf_wait.list))
1184 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001185
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001186 h2_release_buf(h2c, &h2c->dbuf);
1187 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001188
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001189 if (h2c->task) {
1190 h2c->task->context = NULL;
1191 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1192 h2c->task = NULL;
1193 }
1194 if (h2c->wait_event.tasklet)
1195 tasklet_free(h2c->wait_event.tasklet);
1196 if (conn && h2c->wait_event.events != 0)
1197 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1198 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001199
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001200 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001201
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001202 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001203
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001204 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001205 if (!conn_is_back(conn))
1206 LIST_DEL_INIT(&conn->stopping_list);
1207
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001208 conn->mux = NULL;
1209 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001210 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001211
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001212 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001213
1214 /* there might be a GOAWAY frame still pending in the TCP
1215 * stack, and if the peer continues to send (i.e. window
1216 * updates etc), this can result in losing the GOAWAY. For
1217 * this reason we try to drain anything received in between.
1218 */
1219 conn->flags |= CO_FL_WANT_DRAIN;
1220
1221 conn_xprt_shutw(conn);
1222 conn_xprt_close(conn);
1223 conn_sock_shutw(conn, !conn_is_back(conn));
1224 conn_ctrl_close(conn);
1225
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001226 if (conn->destroy_cb)
1227 conn->destroy_cb(conn);
1228 conn_free(conn);
1229 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001230
1231 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001232}
1233
1234
Willy Tarreau71681172017-10-23 14:39:06 +02001235/******************************************************/
1236/* functions below are for the H2 protocol processing */
1237/******************************************************/
1238
1239/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001240static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001241{
1242 return h2s ? h2s->id : 0;
1243}
1244
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001245/* returns the sum of the stream's own window size and the mux's initial
1246 * window, which together form the stream's effective window size.
1247 */
1248static inline int h2s_mws(const struct h2s *h2s)
1249{
1250 return h2s->sws + h2s->h2c->miw;
1251}
1252
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001253/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001254static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001255{
1256 if (h2c->msi < 0)
1257 return 0;
1258
1259 if (h2c->msi == h2s_id(h2s))
1260 return 0;
1261
1262 return 1;
1263}
1264
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001265/* marks an error on the connection. Before settings are sent, we must not send
1266 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1267 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1268 * even try.
1269 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001270static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001271{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001272 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001273 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001274 if (h2c->st0 < H2_CS_SETTINGS1)
1275 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001276 h2c->st0 = H2_CS_ERROR;
1277}
1278
Willy Tarreau175cebb2019-01-24 10:02:24 +01001279/* marks an error on the stream. It may also update an already closed stream
1280 * (e.g. to report an error after an RST was received).
1281 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001282static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001283{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001284 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001285 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001286 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001287 if (h2s->st < H2_SS_ERROR)
1288 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001289 se_fl_set_error(h2s->sd);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001290 }
1291}
1292
Willy Tarreau7e094452018-12-19 18:08:52 +01001293/* attempt to notify the data layer of recv availability */
1294static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1295{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001296 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001297 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001298 tasklet_wakeup(h2s->subs->tasklet);
1299 h2s->subs->events &= ~SUB_RETRY_RECV;
1300 if (!h2s->subs->events)
1301 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001302 }
1303}
1304
1305/* attempt to notify the data layer of send availability */
1306static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1307{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001308 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001309 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001310 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001311 tasklet_wakeup(h2s->subs->tasklet);
1312 h2s->subs->events &= ~SUB_RETRY_SEND;
1313 if (!h2s->subs->events)
1314 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001315 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001316 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1317 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1318 tasklet_wakeup(h2s->shut_tl);
1319 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001320}
1321
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001322/* alerts the data layer, trying to wake it up by all means, following
1323 * this sequence :
1324 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1325 * - if its subscribed to send, then it's woken up for send
1326 * - if it was subscribed to neither, its ->wake() callback is called
1327 * It is safe to call this function with a closed stream which doesn't have a
Willy Tarreau4596fe22022-05-17 19:07:51 +02001328 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001329 */
1330static void __maybe_unused h2s_alert(struct h2s *h2s)
1331{
Willy Tarreau7838a792019-08-12 18:42:03 +02001332 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1333
Willy Tarreauf96508a2020-01-10 11:12:48 +01001334 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001335 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001336 h2s_notify_recv(h2s);
1337 h2s_notify_send(h2s);
1338 }
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001339 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001340 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001341 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
Willy Tarreau7838a792019-08-12 18:42:03 +02001342 }
1343
1344 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001345}
1346
Willy Tarreaue4820742017-07-27 13:37:23 +02001347/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001348static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001349{
1350 uint8_t *out = frame;
1351
1352 *out = len >> 16;
1353 write_n16(out + 1, len);
1354}
1355
Willy Tarreau54c15062017-10-10 17:10:03 +02001356/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1357 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1358 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001359 * available in the buffer's input prior to calling this function. The buffer
1360 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001361 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001362static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001363 const struct buffer *b, int o)
1364{
Willy Tarreau591d4452018-06-15 17:21:00 +02001365 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 +02001366}
1367
Willy Tarreau1f094672017-11-20 21:27:45 +01001368static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001369{
Willy Tarreau591d4452018-06-15 17:21:00 +02001370 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001371}
1372
Willy Tarreau1f094672017-11-20 21:27:45 +01001373static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001374{
Willy Tarreau591d4452018-06-15 17:21:00 +02001375 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001376}
1377
Willy Tarreau1f094672017-11-20 21:27:45 +01001378static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001379{
Willy Tarreau591d4452018-06-15 17:21:00 +02001380 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001381}
1382
1383
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001384/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1385 * The algorithm is not obvious. It turns out that H2 headers are neither
1386 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1387 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001388 *
1389 * b0 b1 b2 b3 b4 b5..b8
1390 * +----------+---------+--------+----+----+----------------------+
1391 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1392 * +----------+---------+--------+----+----+----------------------+
1393 *
1394 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1395 * we get the sid properly aligned and ordered, and 16 bits of len properly
1396 * ordered as well. The type and flags can be extracted using bit shifts from
1397 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001398 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1399 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001400 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001401static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001402{
1403 uint64_t w;
1404
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001405 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001406 return 0;
1407
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001408 w = h2_get_n64(b, o + 1);
1409 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001410 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1411 h->ff = w >> 32;
1412 h->ft = w >> 40;
1413 h->len += w >> 48;
1414 return 1;
1415}
1416
1417/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1418 * h2_peek_frame_hdr() above.
1419 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001420static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001421{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001422 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001423}
1424
1425/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001426static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001427{
1428 int ret;
1429
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001430 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001431 if (ret > 0)
1432 h2_skip_frame_hdr(b);
1433 return ret;
1434}
1435
Willy Tarreaucb985a42019-10-07 16:56:34 +02001436
1437/* try to fragment the headers frame present at the beginning of buffer <b>,
1438 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1439 * success. Typical causes of failure include a buffer not large enough to
1440 * add extra frame headers. The existing frame size is read in the current
1441 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1442 * and its length will be adjusted. The stream ID for continuation frames will
1443 * be copied from the initial frame's.
1444 */
1445static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1446{
1447 size_t remain = b->data - 9;
1448 int extra_frames = (remain - 1) / mfs;
1449 size_t fsize;
1450 char *fptr;
1451 int frame;
1452
1453 if (b->data <= mfs + 9)
1454 return 1;
1455
1456 /* Too large a frame, we need to fragment it using CONTINUATION
1457 * frames. We start from the end and move tails as needed.
1458 */
1459 if (b->data + extra_frames * 9 > b->size)
1460 return 0;
1461
1462 for (frame = extra_frames; frame; frame--) {
1463 fsize = ((remain - 1) % mfs) + 1;
1464 remain -= fsize;
1465
1466 /* move data */
1467 fptr = b->area + 9 + remain + (frame - 1) * 9;
1468 memmove(fptr + 9, b->area + 9 + remain, fsize);
1469 b->data += 9;
1470
1471 /* write new frame header */
1472 h2_set_frame_size(fptr, fsize);
1473 fptr[3] = H2_FT_CONTINUATION;
1474 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1475 write_n32(fptr + 5, read_n32(b->area + 5));
1476 }
1477
1478 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1479 h2_set_frame_size(b->area, remain);
1480 return 1;
1481}
1482
1483
Willy Tarreau00dd0782018-03-01 16:31:34 +01001484/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1485 * its connection if the stream was not yet closed. Please use this exclusively
1486 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001487 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001488static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001489{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001490 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001491 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001492 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001493 if (!h2s->id)
1494 h2s->h2c->nb_reserved--;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02001495 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001496 if (!se_fl_test(h2s->sd, SE_FL_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001497 h2s_notify_recv(h2s);
1498 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001499 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001500
Willy Tarreau7838a792019-08-12 18:42:03 +02001501 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001502 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001503 h2s->st = H2_SS_CLOSED;
1504}
1505
Willy Tarreau71049cc2018-03-28 13:56:39 +02001506/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001507/* h2s_destroy should only ever be called by the thread that owns the stream,
1508 * that means that a tasklet should be used if we want to destroy the h2s
1509 * from another thread
1510 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001511static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001512{
Willy Tarreau7838a792019-08-12 18:42:03 +02001513 struct connection *conn = h2s->h2c->conn;
1514
1515 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1516
Willy Tarreau0a10de62018-03-01 16:27:53 +01001517 h2s_close(h2s);
1518 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001519 if (b_size(&h2s->rxbuf)) {
1520 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001521 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001522 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001523
1524 if (h2s->subs)
1525 h2s->subs->events = 0;
1526
Joseph Herlantd77575d2018-11-25 10:54:45 -08001527 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001528 * reference left would be in the h2c send_list/fctl_list, and if
1529 * we're in it, we're getting out anyway
1530 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001531 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001532
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001533 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001534 tasklet_free(h2s->shut_tl);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001535 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1536 sedesc_free(h2s->sd);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001537 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001538
1539 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001540}
1541
Willy Tarreaua8e49542018-10-03 18:53:55 +02001542/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1543 * stream tree. In case of error, nothing is added and NULL is returned. The
1544 * causes of errors can be any failed memory allocation. The caller is
1545 * responsible for checking if the connection may support an extra stream
1546 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001547 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001548static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001549{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001550 struct h2s *h2s;
1551
Willy Tarreau7838a792019-08-12 18:42:03 +02001552 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1553
Willy Tarreaubafbe012017-11-24 17:34:44 +01001554 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001555 if (!h2s)
1556 goto out;
1557
Willy Tarreau5723f292020-01-10 15:16:57 +01001558 h2s->shut_tl = tasklet_new();
1559 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001560 pool_free(pool_head_h2s, h2s);
1561 goto out;
1562 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001563 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001564 h2s->shut_tl->process = h2_deferred_shut;
1565 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001566 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001567 h2s->h2c = h2c;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001568 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001569 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001570 h2s->flags = H2_SF_NONE;
1571 h2s->errcode = H2_ERR_NO_ERROR;
1572 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001573 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001574 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001575 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001576 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001577
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001578 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001579 if (id > 0)
1580 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001581 else
1582 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001583
1584 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001585 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001586 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001587
Willy Tarreau4781b152021-04-06 13:53:36 +02001588 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1589 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001590
Willy Tarreau7838a792019-08-12 18:42:03 +02001591 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001592 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001593 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001594 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001595 return NULL;
1596}
1597
1598/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001599 * case of memory allocation error. <input> is used as input buffer for the new
1600 * stream. On success, it is transferred to the stream and the mux is no longer
1601 * responsible of it. On error, <input> is unchanged, thus the mux must still
1602 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001603 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001604static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001605{
1606 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001607 struct h2s *h2s;
1608
Willy Tarreau7838a792019-08-12 18:42:03 +02001609 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1610
Willy Tarreaue872f752022-05-12 09:24:41 +02001611 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1612 TRACE_ERROR("HEADERS frame causing MAX_CONCURRENT_STREAMS to be exceeded", H2_EV_H2S_NEW|H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001613 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001614 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001615
1616 h2s = h2s_new(h2c, id);
1617 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001618 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001619
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001620 h2s->sd = sedesc_new();
1621 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001622 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001623 h2s->sd->se = h2s;
1624 h2s->sd->conn = h2c->conn;
1625 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001626
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001627 /* FIXME wrong analogy between ext-connect and websocket, this need to
1628 * be refine.
1629 */
1630 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001631 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001632
Willy Tarreaud0de6772022-02-04 09:05:37 +01001633 /* The stream will record the request's accept date (which is either the
1634 * end of the connection's or the date immediately after the previous
1635 * request) and the idle time, which is the delay since the previous
1636 * request. We can set the value now, it will be copied by stream_new().
1637 */
1638 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001639
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001640 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001641 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001642
Willy Tarreau36c22322022-05-27 10:41:24 +02001643 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001644
Willy Tarreau590a0512018-09-05 11:56:48 +02001645 /* We want the accept date presented to the next stream to be the one
1646 * we have now, the handshake time to be null (since the next stream
1647 * is not delayed by a handshake), and the idle time to count since
1648 * right now.
1649 */
1650 sess->accept_date = date;
1651 sess->tv_accept = now;
1652 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001653 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001654
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001655 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001656 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001657 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001658 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001659 return h2s;
1660
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001661 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001662 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001663 out_alloc:
1664 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW|H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001665 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001666 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001667 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001668 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001669}
1670
Willy Tarreau36c22322022-05-27 10:41:24 +02001671/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001672 * connection and returns it, or NULL in case of memory allocation error or if
1673 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001674 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001675static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001676{
1677 struct h2s *h2s = NULL;
1678
Willy Tarreau7838a792019-08-12 18:42:03 +02001679 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1680
Willy Tarreaue872f752022-05-12 09:24:41 +02001681 if (h2c->nb_streams >= h2c->streams_limit) {
1682 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001683 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001684 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001685
Willy Tarreaue872f752022-05-12 09:24:41 +02001686 if (h2_streams_left(h2c) < 1) {
1687 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001688 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001689 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001690
Willy Tarreau751f2d02018-10-05 09:35:00 +02001691 /* Defer choosing the ID until we send the first message to create the stream */
1692 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001693 if (!h2s) {
1694 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001695 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001696 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001697
Willy Tarreau36c22322022-05-27 10:41:24 +02001698 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001699 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001700 h2s_destroy(h2s);
1701 h2s = NULL;
1702 goto out;
1703 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001704 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001705 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001706 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001707
Willy Tarreau751f2d02018-10-05 09:35:00 +02001708 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001709 if (likely(h2s))
1710 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1711 else
1712 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001713 return h2s;
1714}
1715
Willy Tarreaube5b7152017-09-25 16:25:39 +02001716/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1717 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1718 * the various settings codes.
1719 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001720static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001721{
1722 struct buffer *res;
1723 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001724 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001725 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001726 int ret = 0;
1727
1728 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001729
1730 if (h2c_mux_busy(h2c, NULL)) {
1731 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001732 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001733 }
1734
Willy Tarreaube5b7152017-09-25 16:25:39 +02001735 chunk_init(&buf, buf_data, sizeof(buf_data));
1736 chunk_memcpy(&buf,
1737 "\x00\x00\x00" /* length : 0 for now */
1738 "\x04\x00" /* type : 4 (settings), flags : 0 */
1739 "\x00\x00\x00\x00", /* stream ID : 0 */
1740 9);
1741
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001742 if (h2c->flags & H2_CF_IS_BACK) {
1743 /* send settings_enable_push=0 */
1744 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1745 }
1746
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001747 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1748 * sent automatically unless disabled in the global config */
1749 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1750 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001751
Willy Tarreaube5b7152017-09-25 16:25:39 +02001752 if (h2_settings_header_table_size != 4096) {
1753 char str[6] = "\x00\x01"; /* header_table_size */
1754
1755 write_n32(str + 2, h2_settings_header_table_size);
1756 chunk_memcat(&buf, str, 6);
1757 }
1758
1759 if (h2_settings_initial_window_size != 65535) {
1760 char str[6] = "\x00\x04"; /* initial_window_size */
1761
1762 write_n32(str + 2, h2_settings_initial_window_size);
1763 chunk_memcat(&buf, str, 6);
1764 }
1765
1766 if (h2_settings_max_concurrent_streams != 0) {
1767 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1768
1769 /* Note: 0 means "unlimited" for haproxy's config but not for
1770 * the protocol, so never send this value!
1771 */
1772 write_n32(str + 2, h2_settings_max_concurrent_streams);
1773 chunk_memcat(&buf, str, 6);
1774 }
1775
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001776 mfs = h2_settings_max_frame_size;
1777 if (mfs > global.tune.bufsize)
1778 mfs = global.tune.bufsize;
1779
1780 if (!mfs)
1781 mfs = global.tune.bufsize;
1782
1783 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001784 char str[6] = "\x00\x05"; /* max_frame_size */
1785
1786 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1787 * match bufsize - rewrite size, but at the moment it seems
1788 * that clients don't take care of it.
1789 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001790 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001791 chunk_memcat(&buf, str, 6);
1792 }
1793
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001794 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001795
1796 res = br_tail(h2c->mbuf);
1797 retry:
1798 if (!h2_get_buf(h2c, res)) {
1799 h2c->flags |= H2_CF_MUX_MALLOC;
1800 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001801 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001802 }
1803
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001804 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001805 if (unlikely(ret <= 0)) {
1806 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001807 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1808 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001809 h2c->flags |= H2_CF_MUX_MFULL;
1810 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001811 }
1812 else {
1813 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001814 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001815 }
1816 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001817 out:
1818 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001819 return ret;
1820}
1821
Willy Tarreau52eed752017-09-22 15:05:09 +02001822/* Try to receive a connection preface, then upon success try to send our
1823 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1824 * missing data. It may return an error in h2c.
1825 */
1826static int h2c_frt_recv_preface(struct h2c *h2c)
1827{
1828 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001829 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001830
Willy Tarreau7838a792019-08-12 18:42:03 +02001831 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1832
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001833 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001834
1835 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001836 if (!ret1)
1837 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001838 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001839 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 +02001840 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001841 if (b_data(&h2c->dbuf) ||
1842 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1843 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001844 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001845 ret2 = 0;
1846 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001847 }
1848
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001849 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001850 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001851 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001852 out:
1853 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001854 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001855}
1856
Willy Tarreau01b44822018-10-03 14:26:37 +02001857/* Try to send a connection preface, then upon success try to send our
1858 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1859 * missing data. It may return an error in h2c.
1860 */
1861static int h2c_bck_send_preface(struct h2c *h2c)
1862{
1863 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001864 int ret = 0;
1865
1866 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001867
1868 if (h2c_mux_busy(h2c, NULL)) {
1869 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001870 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001871 }
1872
Willy Tarreaubcc45952019-05-26 10:05:50 +02001873 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001874 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001875 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001876 h2c->flags |= H2_CF_MUX_MALLOC;
1877 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001878 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001879 }
1880
1881 if (!b_data(res)) {
1882 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001883 ret = b_istput(res, ist(H2_CONN_PREFACE));
1884 if (unlikely(ret <= 0)) {
1885 if (!ret) {
1886 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1887 goto retry;
1888 h2c->flags |= H2_CF_MUX_MFULL;
1889 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001890 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001891 }
1892 else {
1893 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001894 ret = 0;
1895 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001896 }
1897 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001898 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001899 ret = h2c_send_settings(h2c);
1900 out:
1901 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1902 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001903}
1904
Willy Tarreau081d4722017-05-16 21:51:05 +02001905/* try to send a GOAWAY frame on the connection to report an error or a graceful
1906 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1907 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1908 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1909 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1910 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1911 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001912 * case, nor will it send one if settings were not sent (e.g. still waiting for
1913 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001914 */
1915static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1916{
1917 struct buffer *res;
1918 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001919 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001920
Willy Tarreau7838a792019-08-12 18:42:03 +02001921 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1922
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001923 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001924 ret = 1; // claim that it worked
1925 goto out;
1926 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001927
1928 if (h2c_mux_busy(h2c, h2s)) {
1929 if (h2s)
1930 h2s->flags |= H2_SF_BLK_MBUSY;
1931 else
1932 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001933 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001934 }
1935
Willy Tarreau9c218e72019-05-26 10:08:28 +02001936 /* len: 8, type: 7, flags: none, sid: 0 */
1937 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1938
1939 if (h2c->last_sid < 0)
1940 h2c->last_sid = h2c->max_id;
1941
1942 write_n32(str + 9, h2c->last_sid);
1943 write_n32(str + 13, h2c->errcode);
1944
Willy Tarreaubcc45952019-05-26 10:05:50 +02001945 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001946 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001947 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001948 h2c->flags |= H2_CF_MUX_MALLOC;
1949 if (h2s)
1950 h2s->flags |= H2_SF_BLK_MROOM;
1951 else
1952 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001953 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001954 }
1955
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001956 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001957 if (unlikely(ret <= 0)) {
1958 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001959 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1960 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001961 h2c->flags |= H2_CF_MUX_MFULL;
1962 if (h2s)
1963 h2s->flags |= H2_SF_BLK_MROOM;
1964 else
1965 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001966 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001967 }
1968 else {
1969 /* we cannot report this error using GOAWAY, so we mark
1970 * it and claim a success.
1971 */
1972 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1973 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001974 ret = 1;
1975 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001976 }
1977 }
1978 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001979
1980 /* some codes are not for real errors, just attempts to close cleanly */
1981 switch (h2c->errcode) {
1982 case H2_ERR_NO_ERROR:
1983 case H2_ERR_ENHANCE_YOUR_CALM:
1984 case H2_ERR_REFUSED_STREAM:
1985 case H2_ERR_CANCEL:
1986 break;
1987 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001988 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001989 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001990 out:
1991 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001992 return ret;
1993}
1994
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001995/* Try to send an RST_STREAM frame on the connection for the indicated stream
1996 * during mux operations. This stream must be valid and cannot be closed
1997 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1998 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1999 * not yet.
2000 *
2001 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2002 * to write the message, it subscribes the stream to future notifications.
2003 */
2004static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2005{
2006 struct buffer *res;
2007 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002008 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002009
Willy Tarreau7838a792019-08-12 18:42:03 +02002010 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
2011
2012 if (!h2s || h2s->st == H2_SS_CLOSED) {
2013 ret = 1;
2014 goto out;
2015 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002016
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002017 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2018 * RST_STREAM in response to a RST_STREAM frame.
2019 */
Willy Tarreau231f6162019-08-06 10:01:40 +02002020 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002021 ret = 1;
2022 goto ignore;
2023 }
2024
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002025 if (h2c_mux_busy(h2c, h2s)) {
2026 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002027 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002028 }
2029
Willy Tarreau9c218e72019-05-26 10:08:28 +02002030 /* len: 4, type: 3, flags: none */
2031 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2032 write_n32(str + 5, h2s->id);
2033 write_n32(str + 9, h2s->errcode);
2034
Willy Tarreaubcc45952019-05-26 10:05:50 +02002035 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002036 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002037 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002038 h2c->flags |= H2_CF_MUX_MALLOC;
2039 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002040 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002041 }
2042
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002043 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002044 if (unlikely(ret <= 0)) {
2045 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002046 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2047 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002048 h2c->flags |= H2_CF_MUX_MFULL;
2049 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002050 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002051 }
2052 else {
2053 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002054 ret = 0;
2055 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002056 }
2057 }
2058
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002059 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002060 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002061 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002062 out:
2063 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002064 return ret;
2065}
2066
2067/* Try to send an RST_STREAM frame on the connection for the stream being
2068 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002069 * error code, even if the stream is one of the dummy ones, and will update
2070 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002071 *
2072 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2073 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002074 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002075 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002076 */
2077static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2078{
2079 struct buffer *res;
2080 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002081 int ret = 0;
2082
2083 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002084
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002085 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2086 * RST_STREAM in response to a RST_STREAM frame.
2087 */
2088 if (h2c->dft == H2_FT_RST_STREAM) {
2089 ret = 1;
2090 goto ignore;
2091 }
2092
Willy Tarreau27a84c92017-10-17 08:10:17 +02002093 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002094 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002095 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002096 }
2097
Willy Tarreau9c218e72019-05-26 10:08:28 +02002098 /* len: 4, type: 3, flags: none */
2099 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2100
2101 write_n32(str + 5, h2c->dsi);
2102 write_n32(str + 9, h2s->errcode);
2103
Willy Tarreaubcc45952019-05-26 10:05:50 +02002104 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002105 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002106 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002107 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002108 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002109 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002110 }
2111
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002112 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002113 if (unlikely(ret <= 0)) {
2114 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002115 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2116 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002117 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002118 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002119 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002120 }
2121 else {
2122 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002123 ret = 0;
2124 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002125 }
2126 }
2127
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002128 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002129 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002130 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002131 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002132 }
2133
Willy Tarreau7838a792019-08-12 18:42:03 +02002134 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002135 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002136 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002137 return ret;
2138}
2139
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002140/* try to send an empty DATA frame with the ES flag set to notify about the
2141 * end of stream and match a shutdown(write). If an ES was already sent as
2142 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2143 * on success or zero if nothing was done. In case of lack of room to write the
2144 * message, it subscribes the requesting stream to future notifications.
2145 */
2146static int h2_send_empty_data_es(struct h2s *h2s)
2147{
2148 struct h2c *h2c = h2s->h2c;
2149 struct buffer *res;
2150 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002151 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002152
Willy Tarreau7838a792019-08-12 18:42:03 +02002153 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2154
2155 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2156 ret = 1;
2157 goto out;
2158 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002159
2160 if (h2c_mux_busy(h2c, h2s)) {
2161 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002162 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002163 }
2164
Willy Tarreau9c218e72019-05-26 10:08:28 +02002165 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2166 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2167 write_n32(str + 5, h2s->id);
2168
Willy Tarreaubcc45952019-05-26 10:05:50 +02002169 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002170 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002171 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002172 h2c->flags |= H2_CF_MUX_MALLOC;
2173 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002174 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002175 }
2176
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002177 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002178 if (likely(ret > 0)) {
2179 h2s->flags |= H2_SF_ES_SENT;
2180 }
2181 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002182 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2183 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002184 h2c->flags |= H2_CF_MUX_MFULL;
2185 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002186 }
2187 else {
2188 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002189 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002190 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002191 out:
2192 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002193 return ret;
2194}
2195
Willy Tarreau4596fe22022-05-17 19:07:51 +02002196/* wake a specific stream and assign its stream connector some SE_FL_* flags
2197 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002198 * is automatically updated accordingly. If the stream is orphaned, it is
2199 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002200 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002201static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002202{
Willy Tarreau7838a792019-08-12 18:42:03 +02002203 struct h2c *h2c = h2s->h2c;
2204
2205 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2206
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002207 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002208 /* this stream was already orphaned */
2209 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002210 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002211 return;
2212 }
2213
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002214 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002215 if (h2s->st == H2_SS_OPEN)
2216 h2s->st = H2_SS_HREM;
2217 else if (h2s->st == H2_SS_HLOC)
2218 h2s_close(h2s);
2219 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002220
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002221 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2222 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002223 se_fl_set(h2s->sd, SE_FL_ERR_PENDING);
2224 if (se_fl_test(h2s->sd, SE_FL_EOS))
2225 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02002226
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002227 if (h2s->st < H2_SS_ERROR)
2228 h2s->st = H2_SS_ERROR;
2229 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002230
2231 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002232 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002233}
2234
2235/* wake the streams attached to the connection, whose id is greater than <last>
2236 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002237 */
Willy Tarreau23482912019-05-07 15:23:14 +02002238static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002239{
2240 struct eb32_node *node;
2241 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002242
Willy Tarreau7838a792019-08-12 18:42:03 +02002243 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2244
Christopher Fauletf02ca002019-03-07 16:21:34 +01002245 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002246 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2247 while (node) {
2248 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002249 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002250 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002251 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002252
Christopher Fauletf02ca002019-03-07 16:21:34 +01002253 /* Wake all streams with unassigned ID (ID == 0) */
2254 node = eb32_lookup(&h2c->streams_by_id, 0);
2255 while (node) {
2256 h2s = container_of(node, struct h2s, by_id);
2257 if (h2s->id > 0)
2258 break;
2259 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002260 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002261 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002262
2263 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002264}
2265
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002266/* Wake up all blocked streams whose window size has become positive after the
2267 * mux's initial window was adjusted. This should be done after having processed
2268 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002269 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002270static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002271{
2272 struct h2s *h2s;
2273 struct eb32_node *node;
2274
Willy Tarreau7838a792019-08-12 18:42:03 +02002275 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2276
Willy Tarreau3421aba2017-07-27 15:41:03 +02002277 node = eb32_first(&h2c->streams_by_id);
2278 while (node) {
2279 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002280 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002281 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002282 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002283 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2284 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002285 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002286 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002287 node = eb32_next(node);
2288 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002289
2290 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002291}
2292
2293/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2294 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002295 * return an error in h2c. The caller must have already verified frame length
2296 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002297 */
2298static int h2c_handle_settings(struct h2c *h2c)
2299{
2300 unsigned int offset;
2301 int error;
2302
Willy Tarreau7838a792019-08-12 18:42:03 +02002303 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2304
Willy Tarreau3421aba2017-07-27 15:41:03 +02002305 if (h2c->dff & H2_F_SETTINGS_ACK) {
2306 if (h2c->dfl) {
2307 error = H2_ERR_FRAME_SIZE_ERROR;
2308 goto fail;
2309 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002310 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002311 }
2312
Willy Tarreau3421aba2017-07-27 15:41:03 +02002313 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002314 if (b_data(&h2c->dbuf) < h2c->dfl) {
2315 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002316 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002317 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002318
2319 /* parse the frame */
2320 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002321 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2322 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002323
2324 switch (type) {
2325 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2326 /* we need to update all existing streams with the
2327 * difference from the previous iws.
2328 */
2329 if (arg < 0) { // RFC7540#6.5.2
2330 error = H2_ERR_FLOW_CONTROL_ERROR;
2331 goto fail;
2332 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002333 h2c->miw = arg;
2334 break;
2335 case H2_SETTINGS_MAX_FRAME_SIZE:
2336 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002337 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 +02002338 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002339 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002340 goto fail;
2341 }
2342 h2c->mfs = arg;
2343 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002344 case H2_SETTINGS_HEADER_TABLE_SIZE:
2345 h2c->flags |= H2_CF_SHTS_UPDATED;
2346 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002347 case H2_SETTINGS_ENABLE_PUSH:
2348 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002349 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002350 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002351 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002352 goto fail;
2353 }
2354 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002355 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2356 if (h2c->flags & H2_CF_IS_BACK) {
2357 /* the limit is only for the backend; for the frontend it is our limit */
2358 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2359 arg = h2_settings_max_concurrent_streams;
2360 h2c->streams_limit = arg;
2361 }
2362 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002363 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002364 if (arg == 1)
2365 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002366 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002367 }
2368 }
2369
2370 /* need to ACK this frame now */
2371 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002372 done:
2373 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002374 return 1;
2375 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002376 if (!(h2c->flags & H2_CF_IS_BACK))
2377 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002378 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002379 out0:
2380 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 +02002381 return 0;
2382}
2383
2384/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2385 * success or one of the h2_status values.
2386 */
2387static int h2c_ack_settings(struct h2c *h2c)
2388{
2389 struct buffer *res;
2390 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002391 int ret = 0;
2392
2393 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002394
2395 if (h2c_mux_busy(h2c, NULL)) {
2396 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002397 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002398 }
2399
Willy Tarreau9c218e72019-05-26 10:08:28 +02002400 memcpy(str,
2401 "\x00\x00\x00" /* length : 0 (no data) */
2402 "\x04" "\x01" /* type : 4, flags : ACK */
2403 "\x00\x00\x00\x00" /* stream ID */, 9);
2404
Willy Tarreaubcc45952019-05-26 10:05:50 +02002405 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002406 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002407 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002408 h2c->flags |= H2_CF_MUX_MALLOC;
2409 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002410 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002411 }
2412
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002413 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002414 if (unlikely(ret <= 0)) {
2415 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002416 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2417 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002418 h2c->flags |= H2_CF_MUX_MFULL;
2419 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002420 }
2421 else {
2422 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002423 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002424 }
2425 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002426 out:
2427 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002428 return ret;
2429}
2430
Willy Tarreaucf68c782017-10-10 17:11:41 +02002431/* processes a PING frame and schedules an ACK if needed. The caller must pass
2432 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002433 * missing data. The caller must have already verified frame length
2434 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002435 */
2436static int h2c_handle_ping(struct h2c *h2c)
2437{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002438 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002439 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002440 h2c->st0 = H2_CS_FRAME_A;
2441 return 1;
2442}
2443
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002444/* Try to send a window update for stream id <sid> and value <increment>.
2445 * Returns > 0 on success or zero on missing room or failure. It may return an
2446 * error in h2c.
2447 */
2448static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2449{
2450 struct buffer *res;
2451 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002452 int ret = 0;
2453
2454 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002455
2456 if (h2c_mux_busy(h2c, NULL)) {
2457 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002458 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002459 }
2460
Willy Tarreau9c218e72019-05-26 10:08:28 +02002461 /* length: 4, type: 8, flags: none */
2462 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2463 write_n32(str + 5, sid);
2464 write_n32(str + 9, increment);
2465
Willy Tarreaubcc45952019-05-26 10:05:50 +02002466 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002467 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002468 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002469 h2c->flags |= H2_CF_MUX_MALLOC;
2470 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002471 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002472 }
2473
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002474 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002475 if (unlikely(ret <= 0)) {
2476 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002477 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2478 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002479 h2c->flags |= H2_CF_MUX_MFULL;
2480 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002481 }
2482 else {
2483 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002484 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002485 }
2486 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002487 out:
2488 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002489 return ret;
2490}
2491
2492/* try to send pending window update for the connection. It's safe to call it
2493 * with no pending updates. Returns > 0 on success or zero on missing room or
2494 * failure. It may return an error in h2c.
2495 */
2496static int h2c_send_conn_wu(struct h2c *h2c)
2497{
2498 int ret = 1;
2499
Willy Tarreau7838a792019-08-12 18:42:03 +02002500 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2501
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002502 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002503 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002504
Willy Tarreau97aaa672018-12-23 09:49:04 +01002505 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2506 /* increase the advertised connection window to 2G on
2507 * first update.
2508 */
2509 h2c->flags |= H2_CF_WINDOW_OPENED;
2510 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2511 }
2512
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002513 /* send WU for the connection */
2514 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2515 if (ret > 0)
2516 h2c->rcvd_c = 0;
2517
Willy Tarreau7838a792019-08-12 18:42:03 +02002518 out:
2519 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002520 return ret;
2521}
2522
2523/* try to send pending window update for the current dmux stream. It's safe to
2524 * call it with no pending updates. Returns > 0 on success or zero on missing
2525 * room or failure. It may return an error in h2c.
2526 */
2527static int h2c_send_strm_wu(struct h2c *h2c)
2528{
2529 int ret = 1;
2530
Willy Tarreau7838a792019-08-12 18:42:03 +02002531 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2532
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002533 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002534 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002535
2536 /* send WU for the stream */
2537 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2538 if (ret > 0)
2539 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002540 out:
2541 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002542 return ret;
2543}
2544
Willy Tarreaucf68c782017-10-10 17:11:41 +02002545/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2546 * success, 0 on missing data or one of the h2_status values.
2547 */
2548static int h2c_ack_ping(struct h2c *h2c)
2549{
2550 struct buffer *res;
2551 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002552 int ret = 0;
2553
2554 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002555
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002556 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002557 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002558
2559 if (h2c_mux_busy(h2c, NULL)) {
2560 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002561 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002562 }
2563
Willy Tarreaucf68c782017-10-10 17:11:41 +02002564 memcpy(str,
2565 "\x00\x00\x08" /* length : 8 (same payload) */
2566 "\x06" "\x01" /* type : 6, flags : ACK */
2567 "\x00\x00\x00\x00" /* stream ID */, 9);
2568
2569 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002570 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002571
Willy Tarreau9c218e72019-05-26 10:08:28 +02002572 res = br_tail(h2c->mbuf);
2573 retry:
2574 if (!h2_get_buf(h2c, res)) {
2575 h2c->flags |= H2_CF_MUX_MALLOC;
2576 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002577 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002578 }
2579
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002580 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002581 if (unlikely(ret <= 0)) {
2582 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002583 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2584 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002585 h2c->flags |= H2_CF_MUX_MFULL;
2586 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002587 }
2588 else {
2589 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002590 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002591 }
2592 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002593 out:
2594 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002595 return ret;
2596}
2597
Willy Tarreau26f95952017-07-27 17:18:30 +02002598/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2599 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002600 * h2c or h2s. The caller must have already verified frame length and stream ID
2601 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002602 */
2603static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2604{
2605 int32_t inc;
2606 int error;
2607
Willy Tarreau7838a792019-08-12 18:42:03 +02002608 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2609
Willy Tarreau26f95952017-07-27 17:18:30 +02002610 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002611 if (b_data(&h2c->dbuf) < h2c->dfl) {
2612 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002613 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002614 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002615
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002616 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002617
2618 if (h2c->dsi != 0) {
2619 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002620
2621 /* it's not an error to receive WU on a closed stream */
2622 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002623 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002624
2625 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002626 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 +02002627 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002628 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002629 goto strm_err;
2630 }
2631
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002632 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002633 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 +02002634 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002635 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002636 goto strm_err;
2637 }
2638
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002639 h2s->sws += inc;
2640 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002641 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002642 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002643 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2644 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002645 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002646 }
2647 }
2648 else {
2649 /* connection window update */
2650 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002651 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002652 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002653 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002654 goto conn_err;
2655 }
2656
2657 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2658 error = H2_ERR_FLOW_CONTROL_ERROR;
2659 goto conn_err;
2660 }
2661
2662 h2c->mws += inc;
2663 }
2664
Willy Tarreau7838a792019-08-12 18:42:03 +02002665 done:
2666 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002667 return 1;
2668
2669 conn_err:
2670 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002671 out0:
2672 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 +02002673 return 0;
2674
2675 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002676 h2s_error(h2s, error);
2677 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002678 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002679 return 0;
2680}
2681
Willy Tarreaue96b0922017-10-30 00:28:29 +01002682/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002683 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2684 * have already verified frame length and stream ID validity. Described in
2685 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002686 */
2687static int h2c_handle_goaway(struct h2c *h2c)
2688{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002689 int last;
2690
Willy Tarreau7838a792019-08-12 18:42:03 +02002691 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002692 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002693 if (b_data(&h2c->dbuf) < h2c->dfl) {
2694 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002695 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002696 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002697 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002698
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002699 last = h2_get_n32(&h2c->dbuf, 0);
2700 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002701 if (h2c->last_sid < 0)
2702 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002703 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002704 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002705 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002706}
2707
Willy Tarreau92153fc2017-12-03 19:46:19 +01002708/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002709 * invalid. Returns > 0 on success or zero on missing data. It may return an
2710 * error in h2c. The caller must have already verified frame length and stream
2711 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002712 */
2713static int h2c_handle_priority(struct h2c *h2c)
2714{
Willy Tarreau7838a792019-08-12 18:42:03 +02002715 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2716
Willy Tarreau92153fc2017-12-03 19:46:19 +01002717 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002718 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002719 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002720 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002721 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002722 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002723
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002724 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002725 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002726 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002727 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002728 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002729 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002730 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002731 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002732 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002733 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002734}
2735
Willy Tarreaucd234e92017-08-18 10:59:39 +02002736/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002737 * Returns > 0 on success or zero on missing data. The caller must have already
2738 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002739 */
2740static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2741{
Willy Tarreau7838a792019-08-12 18:42:03 +02002742 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2743
Willy Tarreaucd234e92017-08-18 10:59:39 +02002744 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002745 if (b_data(&h2c->dbuf) < h2c->dfl) {
2746 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 +02002747 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002748 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002749 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002750
2751 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002752 if (h2s->st == H2_SS_CLOSED) {
2753 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 +02002754 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002755 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002756
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002757 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002758 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002759
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002760 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002761 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002762 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002763 }
2764
2765 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002766 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002767 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002768}
2769
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002770/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2771 * It may return an error in h2c or h2s. The caller must consider that the
2772 * return value is the new h2s in case one was allocated (most common case).
2773 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002774 * errors here are reported as connection errors since it's impossible to
2775 * recover from such errors after the compression context has been altered.
2776 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002777static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002778{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002779 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002780 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002781 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002782 int error;
2783
Willy Tarreau7838a792019-08-12 18:42:03 +02002784 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2785
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002786 if (!b_size(&h2c->dbuf)) {
2787 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002788 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002789 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002790
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002791 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2792 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002793 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002794 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002795
2796 /* now either the frame is complete or the buffer is complete */
2797 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002798 /* The stream exists/existed, this must be a trailers frame */
2799 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002800 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002801 /* unrecoverable error ? */
2802 if (h2c->st0 >= H2_CS_ERROR)
2803 goto out;
2804
Christopher Faulet485da0b2021-10-08 08:56:00 +02002805 if (error == 0) {
2806 /* Demux not blocked because of the stream, it is an incomplete frame */
2807 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2808 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002809 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002810 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002811
2812 if (error < 0) {
2813 /* Failed to decode this frame (e.g. too large request)
2814 * but the HPACK decompressor is still synchronized.
2815 */
2816 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2817 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002818 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002819 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002820 goto done;
2821 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002822 /* the connection was already killed by an RST, let's consume
2823 * the data and send another RST.
2824 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002825 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002826 h2s = (struct h2s*)h2_error_stream;
2827 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002828 }
2829 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2830 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2831 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002832 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002833 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002834 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002835 goto conn_err;
2836 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002837 else if (h2c->flags & H2_CF_DEM_TOOMANY)
Willy Tarreau36c22322022-05-27 10:41:24 +02002838 goto out; // IDLE but too many sc still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002839
Amaury Denoyelle74162742020-12-11 17:53:05 +01002840 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002841
Willy Tarreau25919232019-01-03 14:48:18 +01002842 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002843 if (h2c->st0 >= H2_CS_ERROR)
2844 goto out;
2845
Willy Tarreau25919232019-01-03 14:48:18 +01002846 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002847 if (error == 0) {
2848 /* Demux not blocked because of the stream, it is an incomplete frame */
2849 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2850 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002851 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002852 }
Willy Tarreau25919232019-01-03 14:48:18 +01002853
2854 /* Failed to decode this stream (e.g. too large request)
2855 * but the HPACK decompressor is still synchronized.
2856 */
2857 h2s = (struct h2s*)h2_error_stream;
2858 goto send_rst;
2859 }
2860
Willy Tarreau29268e92021-06-17 08:29:14 +02002861 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2862
Willy Tarreau198b5072022-05-12 09:08:51 +02002863 /* Now we cannot roll back and we won't come back here anymore for this
2864 * stream, this stream ID is open.
2865 */
2866 if (h2c->dsi > h2c->max_id)
2867 h2c->max_id = h2c->dsi;
2868
Willy Tarreau22de8d32018-09-05 19:55:58 +02002869 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002870 * positively from h2c_frt_stream_new(), the stream will report the error,
2871 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002872 *
2873 * Xfer the rxbuf to the stream. On success, the new stream owns the
2874 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002875 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002876 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002877 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002878 h2s = (struct h2s*)h2_refused_stream;
2879 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002880 }
2881
2882 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002883 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002884 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002885
Willy Tarreau88d138e2019-01-02 19:38:14 +01002886 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002887 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002888 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002889
2890 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002891 if (h2s->st == H2_SS_OPEN)
2892 h2s->st = H2_SS_HREM;
2893 else
2894 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002895 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002896 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002897
2898 conn_err:
2899 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002900 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002901
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002902 out:
2903 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002904 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 +01002905 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002906
2907 send_rst:
2908 /* make the demux send an RST for the current stream. We may only
2909 * do this if we're certain that the HEADERS frame was properly
2910 * decompressed so that the HPACK decoder is still kept up to date.
2911 */
2912 h2_release_buf(h2c, &rxbuf);
2913 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002914
Willy Tarreau022e5e52020-09-10 09:33:15 +02002915 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 +02002916 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002917 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002918}
2919
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002920/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2921 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2922 * errors here are reported as connection errors since it's impossible to
2923 * recover from such errors after the compression context has been altered.
2924 */
2925static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2926{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002927 struct buffer rxbuf = BUF_NULL;
2928 unsigned long long body_len = 0;
2929 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002930 int error;
2931
Willy Tarreau7838a792019-08-12 18:42:03 +02002932 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2933
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002934 if (!b_size(&h2c->dbuf)) {
2935 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002936 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002937 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002938
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002939 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2940 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002941 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002942 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002943
Christopher Faulet6884aa32019-09-23 15:28:20 +02002944 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002945 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002946 }
2947 else {
2948 /* the connection was already killed by an RST, let's consume
2949 * the data and send another RST.
2950 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002951 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002952 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002953 h2c->st0 = H2_CS_FRAME_E;
2954 goto send_rst;
2955 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002956
Willy Tarreau25919232019-01-03 14:48:18 +01002957 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002958 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002959 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002960
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002961 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2962 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002963 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 +01002964 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2965 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002966 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002967 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002968 }
2969
Willy Tarreau25919232019-01-03 14:48:18 +01002970 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002971 if (error == 0) {
2972 /* Demux not blocked because of the stream, it is an incomplete frame */
2973 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2974 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002975 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002976 }
Willy Tarreau25919232019-01-03 14:48:18 +01002977
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002978 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002979 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 +01002980 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002981 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002982 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002983 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002984 }
2985
Christopher Fauletfa922f02019-05-07 10:55:17 +02002986 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002987 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002988
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002989 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002990 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002991 else if (h2s->flags & H2_SF_ES_RCVD) {
2992 if (h2s->st == H2_SS_OPEN)
2993 h2s->st = H2_SS_HREM;
2994 else if (h2s->st == H2_SS_HLOC)
2995 h2s_close(h2s);
2996 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002997
Christopher Fauletf95f8762021-01-22 11:59:07 +01002998 /* Unblock busy server h2s waiting for the response headers to validate
2999 * the tunnel establishment or the end of the response of an oborted
3000 * tunnel
3001 */
3002 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
3003 (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)) {
3004 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3005 h2s->flags &= ~H2_SF_BLK_MBUSY;
3006 }
3007
Willy Tarreau9abb3172021-06-16 18:32:42 +02003008 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 +02003009 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003010 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02003011 fail:
3012 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3013 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003014
3015 send_rst:
3016 /* make the demux send an RST for the current stream. We may only
3017 * do this if we're certain that the HEADERS frame was properly
3018 * decompressed so that the HPACK decoder is still kept up to date.
3019 */
3020 h2_release_buf(h2c, &rxbuf);
3021 h2c->st0 = H2_CS_FRAME_E;
3022
Willy Tarreau022e5e52020-09-10 09:33:15 +02003023 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 +02003024 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3025 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003026}
3027
Willy Tarreau454f9052017-10-26 19:40:35 +02003028/* processes a DATA frame. Returns > 0 on success or zero on missing data.
3029 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
3030 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003031static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003032{
3033 int error;
3034
Willy Tarreau7838a792019-08-12 18:42:03 +02003035 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3036
Willy Tarreau454f9052017-10-26 19:40:35 +02003037 /* note that empty DATA frames are perfectly valid and sometimes used
3038 * to signal an end of stream (with the ES flag).
3039 */
3040
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003041 if (!b_size(&h2c->dbuf) && h2c->dfl) {
3042 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003043 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003044 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003045
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003046 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
3047 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003048 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003049 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003050
3051 /* now either the frame is complete or the buffer is complete */
3052
Willy Tarreau454f9052017-10-26 19:40:35 +02003053 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3054 /* RFC7540#6.1 */
3055 error = H2_ERR_STREAM_CLOSED;
3056 goto strm_err;
3057 }
3058
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003059 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003060 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003061 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 +01003062 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003063 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003064 goto strm_err;
3065 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003066 if (!(h2c->flags & H2_CF_IS_BACK) &&
3067 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3068 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3069 /* a tunnel attempt was aborted but the client still try to send some raw data.
3070 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3071 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3072 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003073 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003074 */
3075 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3076 error = H2_ERR_CANCEL;
3077 goto strm_err;
3078 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003079
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003080 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003081 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003082
Willy Tarreau454f9052017-10-26 19:40:35 +02003083 /* call the upper layers to process the frame, then let the upper layer
3084 * notify the stream about any change.
3085 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003086 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003087 /* The upper layer has already closed, this may happen on
3088 * 4xx/redirects during POST, or when receiving a response
3089 * from an H2 server after the client has aborted.
3090 */
3091 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003092 goto strm_err;
3093 }
3094
Willy Tarreau8f650c32017-11-21 19:36:21 +01003095 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003096 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003097
Willy Tarreau721c9742017-11-07 11:05:42 +01003098 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003099 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003100 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003101 }
3102
3103 /* check for completion : the callee will change this to FRAME_A or
3104 * FRAME_H once done.
3105 */
3106 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003107 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003108
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003109 /* last frame */
3110 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003111 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003112 if (h2s->st == H2_SS_OPEN)
3113 h2s->st = H2_SS_HREM;
3114 else
3115 h2s_close(h2s);
3116
Willy Tarreau1915ca22019-01-24 11:49:37 +01003117 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3118 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003119 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 +01003120 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003121 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003122 goto strm_err;
3123 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003124 }
3125
Christopher Fauletf95f8762021-01-22 11:59:07 +01003126 /* Unblock busy server h2s waiting for the end of the response for an
3127 * aborted tunnel
3128 */
3129 if ((h2c->flags & H2_CF_IS_BACK) &&
3130 (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)) {
3131 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3132 h2s->flags &= ~H2_SF_BLK_MBUSY;
3133 }
3134
Willy Tarreau7838a792019-08-12 18:42:03 +02003135 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003136 return 1;
3137
Willy Tarreau454f9052017-10-26 19:40:35 +02003138 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003139 h2s_error(h2s, error);
3140 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003141 fail:
3142 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 +02003143 return 0;
3144}
3145
Willy Tarreau63864812019-08-07 14:25:20 +02003146/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3147 * valid for the current stream state. This is needed only after parsing the
3148 * frame header but in practice it can be performed at any time during
3149 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3150 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3151 */
3152static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3153{
Willy Tarreau7838a792019-08-12 18:42:03 +02003154 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3155
Willy Tarreau63864812019-08-07 14:25:20 +02003156 if (h2s->st == H2_SS_IDLE &&
3157 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3158 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3159 * this state MUST be treated as a connection error
3160 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003161 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 +02003162 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003163 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003164 /* only log if no other stream can report the error */
3165 sess_log(h2c->conn->owner);
3166 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003167 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003168 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 +02003169 return 0;
3170 }
3171
Willy Tarreau57a18162019-11-24 14:57:53 +01003172 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3173 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003174 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 +01003175 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003176 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003177 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3178 return 0;
3179 }
3180
Willy Tarreau63864812019-08-07 14:25:20 +02003181 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3182 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3183 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3184 * this state MUST be treated as a stream error.
3185 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3186 * PUSH_PROMISE/CONTINUATION cause connection errors.
3187 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003188 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003189 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 +02003190 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003191 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003192 }
3193 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003194 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003195 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003196 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 +02003197 return 0;
3198 }
3199
3200 /* Below the management of frames received in closed state is a
3201 * bit hackish because the spec makes strong differences between
3202 * streams closed by receiving RST, sending RST, and seeing ES
3203 * in both directions. In addition to this, the creation of a
3204 * new stream reusing the identifier of a closed one will be
3205 * detected here. Given that we cannot keep track of all closed
3206 * streams forever, we consider that unknown closed streams were
3207 * closed on RST received, which allows us to respond with an
3208 * RST without breaking the connection (eg: to abort a transfer).
3209 * Some frames have to be silently ignored as well.
3210 */
3211 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3212 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3213 /* #5.1.1: The identifier of a newly
3214 * established stream MUST be numerically
3215 * greater than all streams that the initiating
3216 * endpoint has opened or reserved. This
3217 * governs streams that are opened using a
3218 * HEADERS frame and streams that are reserved
3219 * using PUSH_PROMISE. An endpoint that
3220 * receives an unexpected stream identifier
3221 * MUST respond with a connection error.
3222 */
3223 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003224 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 +02003225 return 0;
3226 }
3227
Willy Tarreau4c08f122019-09-26 08:47:15 +02003228 if (h2s->flags & H2_SF_RST_RCVD &&
3229 !(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 +02003230 /* RFC7540#5.1:closed: an endpoint that
3231 * receives any frame other than PRIORITY after
3232 * receiving a RST_STREAM MUST treat that as a
3233 * stream error of type STREAM_CLOSED.
3234 *
3235 * Note that old streams fall into this category
3236 * and will lead to an RST being sent.
3237 *
3238 * However, we cannot generalize this to all frame types. Those
3239 * carrying compression state must still be processed before
3240 * being dropped or we'll desynchronize the decoder. This can
3241 * happen with request trailers received after sending an
3242 * RST_STREAM, or with header/trailers responses received after
3243 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003244 *
3245 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003246 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003247 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003248 */
3249 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3250 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003251 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 +02003252 return 0;
3253 }
3254
3255 /* RFC7540#5.1:closed: if this state is reached as a
3256 * result of sending a RST_STREAM frame, the peer that
3257 * receives the RST_STREAM might have already sent
3258 * frames on the stream that cannot be withdrawn. An
3259 * endpoint MUST ignore frames that it receives on
3260 * closed streams after it has sent a RST_STREAM
3261 * frame. An endpoint MAY choose to limit the period
3262 * over which it ignores frames and treat frames that
3263 * arrive after this time as being in error.
3264 */
3265 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3266 /* RFC7540#5.1:closed: any frame other than
3267 * PRIO/WU/RST in this state MUST be treated as
3268 * a connection error
3269 */
3270 if (h2c->dft != H2_FT_RST_STREAM &&
3271 h2c->dft != H2_FT_PRIORITY &&
3272 h2c->dft != H2_FT_WINDOW_UPDATE) {
3273 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003274 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 +02003275 return 0;
3276 }
3277 }
3278 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003279 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003280 return 1;
3281}
3282
Willy Tarreaubc933932017-10-09 16:21:43 +02003283/* process Rx frames to be demultiplexed */
3284static void h2_process_demux(struct h2c *h2c)
3285{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003286 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003287 struct h2_fh hdr;
3288 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003289 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003290
Willy Tarreau7838a792019-08-12 18:42:03 +02003291 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3292
Willy Tarreau081d4722017-05-16 21:51:05 +02003293 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003294 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003295
3296 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3297 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003298 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003299 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003300 goto out;
3301
Willy Tarreau52eed752017-09-22 15:05:09 +02003302 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3303 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003304 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003305 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003306 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003307 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003308 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003309 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003310 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003311 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003312 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003313 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003314
3315 h2c->max_id = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02003316 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaued2b9d92022-08-18 15:30:41 +02003317 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau52eed752017-09-22 15:05:09 +02003318 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003319
3320 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003321 /* ensure that what is pending is a valid SETTINGS frame
3322 * without an ACK.
3323 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003324 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 +02003325 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003326 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003327 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003328 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003329 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 +02003330 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003331 if (!(h2c->flags & H2_CF_IS_BACK))
3332 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003333 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003334 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003335 }
3336
3337 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3338 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003339 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 +02003340 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3341 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003342 if (!(h2c->flags & H2_CF_IS_BACK))
3343 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003344 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003345 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003346 }
3347
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003348 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003349 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003350 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 +02003351 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3352 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003353 if (!(h2c->flags & H2_CF_IS_BACK))
3354 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003355 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003356 }
3357
Willy Tarreau3bf69182018-12-21 15:34:50 +01003358 /* that's OK, switch to FRAME_P to process it. This is
3359 * a SETTINGS frame whose header has already been
3360 * deleted above.
3361 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003362 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003363 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003364 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003365 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003366 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003367
3368 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003369 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003370 int ret = 0;
3371
Willy Tarreau7838a792019-08-12 18:42:03 +02003372 if (!b_data(&h2c->dbuf)) {
3373 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003374 h2c->flags |= H2_CF_DEM_SHORT_READ;
3375 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003376 }
3377
3378 if (h2c->st0 >= H2_CS_ERROR) {
3379 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003380 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003381 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003382
3383 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003384 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003385 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3386 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003387 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003388 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003389
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003390 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003391 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 +02003392 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003393 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003394 /* only log if no other stream can report the error */
3395 sess_log(h2c->conn->owner);
3396 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003397 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003398 break;
3399 }
3400
Willy Tarreau617592c2022-06-08 16:32:22 +02003401 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3402 /* changed stream with a pending WU, need to
3403 * send it now.
3404 */
3405 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3406 ret = h2c_send_strm_wu(h2c);
3407 if (ret <= 0)
3408 break;
3409 }
3410
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003411 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003412 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3413 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3414 * we read the pad length and drop it from the remaining
3415 * payload (one byte + the 9 remaining ones = 10 total
3416 * removed), so we have a frame payload starting after the
3417 * pad len. Flow controlled frames (DATA) also count the
3418 * padlen in the flow control, so it must be adjusted.
3419 */
3420 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003421 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 +01003422 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003423 if (!(h2c->flags & H2_CF_IS_BACK))
3424 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003425 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003426 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003427 }
3428 hdr.len--;
3429
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003430 if (b_data(&h2c->dbuf) < 10) {
3431 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003432 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003433 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003434
3435 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3436
3437 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003438 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 +01003439 /* RFC7540#6.1 : pad length = length of
3440 * frame payload or greater => error.
3441 */
3442 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003443 if (!(h2c->flags & H2_CF_IS_BACK))
3444 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003445 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003446 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003447 }
3448
3449 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3450 h2c->rcvd_c++;
3451 h2c->rcvd_s++;
3452 }
3453 b_del(&h2c->dbuf, 1);
3454 }
3455 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003456
3457 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003458 h2c->dfl = hdr.len;
3459 h2c->dsi = hdr.sid;
3460 h2c->dft = hdr.ft;
3461 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003462 h2c->dpl = padlen;
Willy Tarreau0f458712022-08-18 11:19:57 +02003463 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003464 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 +02003465 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003466
3467 /* check for minimum basic frame format validity */
3468 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3469 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003470 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 +01003471 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003472 if (!(h2c->flags & H2_CF_IS_BACK))
3473 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003474 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003475 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003476 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003477
3478 /* transition to HEADERS frame ends the keep-alive idle
3479 * timer and starts the http-request idle delay.
3480 */
3481 if (hdr.ft == H2_FT_HEADERS)
3482 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003483 }
3484
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003485 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3486 * H2_CS_FRAME_P indicates an incomplete previous operation
3487 * (most often the first attempt) and requires some validity
3488 * checks for the frame and the current state. The two other
3489 * ones are set after completion (or abortion) and must skip
3490 * validity checks.
3491 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003492 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3493
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003494 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003495 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003496 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003497 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003498 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003499 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003500 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003501 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003502 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003503 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003504 }
3505 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003506
Willy Tarreau63864812019-08-07 14:25:20 +02003507 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003508 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3509 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003510 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003511 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003512
Willy Tarreau7e98c052017-10-10 15:56:59 +02003513 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003514 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003515 if (h2c->st0 == H2_CS_FRAME_P) {
3516 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003517 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003518 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003519 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003520
Willy Tarreau7838a792019-08-12 18:42:03 +02003521 if (h2c->st0 == H2_CS_FRAME_A) {
3522 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 +02003523 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003524 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003525 break;
3526
Willy Tarreaucf68c782017-10-10 17:11:41 +02003527 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003528 if (h2c->st0 == H2_CS_FRAME_P) {
3529 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003530 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003531 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003532
Willy Tarreau7838a792019-08-12 18:42:03 +02003533 if (h2c->st0 == H2_CS_FRAME_A) {
3534 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 +02003535 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003536 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003537 break;
3538
Willy Tarreau26f95952017-07-27 17:18:30 +02003539 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003540 if (h2c->st0 == H2_CS_FRAME_P) {
3541 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 +02003542 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003543 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003544 break;
3545
Willy Tarreau61290ec2017-10-17 08:19:21 +02003546 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003547 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003548 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3549 * frames' parsers consume all following CONTINUATION
3550 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003551 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003552 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 +01003553 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003554 if (!(h2c->flags & H2_CF_IS_BACK))
3555 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003556 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003557 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003558
Willy Tarreau13278b42017-10-13 19:23:14 +02003559 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003560 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003561 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003562 if (h2c->flags & H2_CF_IS_BACK)
3563 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3564 else
3565 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003566 if (tmp_h2s) {
3567 h2s = tmp_h2s;
3568 ret = 1;
3569 }
3570 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003571 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003572 break;
3573
Willy Tarreau454f9052017-10-26 19:40:35 +02003574 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003575 if (h2c->st0 == H2_CS_FRAME_P) {
3576 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003577 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003578 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003579 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003580
Willy Tarreau7838a792019-08-12 18:42:03 +02003581 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003582 /* rcvd_s will suffice to trigger the sending of a WU */
3583 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003584 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003585 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003586
Willy Tarreau92153fc2017-12-03 19:46:19 +01003587 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003588 if (h2c->st0 == H2_CS_FRAME_P) {
3589 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003590 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003591 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003592 break;
3593
Willy Tarreaucd234e92017-08-18 10:59:39 +02003594 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003595 if (h2c->st0 == H2_CS_FRAME_P) {
3596 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 +02003597 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003598 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003599 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003600 break;
3601
Willy Tarreaue96b0922017-10-30 00:28:29 +01003602 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003603 if (h2c->st0 == H2_CS_FRAME_P) {
3604 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003605 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003606 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003607 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003608 break;
3609
Willy Tarreau1c661982017-10-30 13:52:01 +01003610 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003611 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003612 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003613 /* drop frames that we ignore. They may be larger than
3614 * the buffer so we drain all of their contents until
3615 * we reach the end.
3616 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003617 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3618 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003619 h2c->dfl -= ret;
3620 ret = h2c->dfl == 0;
3621 }
3622
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003623 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003624 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003625 if (h2s->st == H2_SS_ERROR) {
3626 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 +01003627 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003628 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003629
Willy Tarreau7838a792019-08-12 18:42:03 +02003630 if (h2c->st0 == H2_CS_FRAME_E) {
3631 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 +01003632 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003633 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003634
Willy Tarreau7e98c052017-10-10 15:56:59 +02003635 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003636 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003637 break;
3638
3639 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003640 if (h2c->dfl)
3641 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003642 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3643 b_del(&h2c->dbuf, ret);
3644 h2c->dfl -= ret;
3645 if (!h2c->dfl) {
Willy Tarreau0f458712022-08-18 11:19:57 +02003646 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003647 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3648 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003649 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003650 }
3651 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003652
Willy Tarreau617592c2022-06-08 16:32:22 +02003653 if (h2c->rcvd_s > 0 &&
3654 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3655 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3656 h2c_send_strm_wu(h2c);
3657 }
3658
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003659 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003660 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3661 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003662 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003663 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003664
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003665 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003666 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3667 if (h2c->flags & H2_CF_RCVD_SHUT)
3668 h2c->flags |= H2_CF_END_REACHED;
3669 }
3670
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003671 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003672 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003673 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003674 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003675 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003676 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003677 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003678 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003679 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003680 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003681 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003682
Willy Tarreau7838a792019-08-12 18:42:03 +02003683 if (old_iw != h2c->miw) {
3684 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003685 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003686 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003687
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003688 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003689 out:
3690 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003691 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003692}
3693
Willy Tarreau989539b2020-01-10 17:01:29 +01003694/* resume each h2s eligible for sending in list head <head> */
3695static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3696{
3697 struct h2s *h2s, *h2s_back;
3698
3699 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3700
3701 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3702 if (h2c->mws <= 0 ||
3703 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3704 h2c->st0 >= H2_CS_ERROR)
3705 break;
3706
3707 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003708
Willy Tarreaud9464162020-01-10 18:25:07 +01003709 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003710 continue;
3711
Willy Tarreau5723f292020-01-10 15:16:57 +01003712 /* If the sender changed his mind and unsubscribed, let's just
3713 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003714 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003715 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3716 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003717 LIST_DEL_INIT(&h2s->list);
3718 continue;
3719 }
3720
Willy Tarreauf96508a2020-01-10 11:12:48 +01003721 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003722 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003723 tasklet_wakeup(h2s->subs->tasklet);
3724 h2s->subs->events &= ~SUB_RETRY_SEND;
3725 if (!h2s->subs->events)
3726 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003727 }
3728 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3729 tasklet_wakeup(h2s->shut_tl);
3730 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003731 }
3732
3733 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3734}
3735
Willy Tarreaubc933932017-10-09 16:21:43 +02003736/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3737 * the end.
3738 */
3739static int h2_process_mux(struct h2c *h2c)
3740{
Willy Tarreau7838a792019-08-12 18:42:03 +02003741 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3742
Willy Tarreau01b44822018-10-03 14:26:37 +02003743 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3744 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3745 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3746 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003747 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003748 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003749 goto fail;
3750 }
3751 h2c->st0 = H2_CS_SETTINGS1;
3752 }
3753 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003754 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003755 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003756 }
3757
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003758 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003759 if (h2c->rcvd_s > 0 &&
3760 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3761 h2c_send_strm_wu(h2c) < 0)
3762 goto fail;
3763
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003764 if (h2c->rcvd_c > 0 &&
3765 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3766 h2c_send_conn_wu(h2c) < 0)
3767 goto fail;
3768
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003769 /* First we always process the flow control list because the streams
3770 * waiting there were already elected for immediate emission but were
3771 * blocked just on this.
3772 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003773 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3774 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003775
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003776 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003777 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003778 if (h2c->st0 == H2_CS_ERROR) {
3779 if (h2c->max_id >= 0) {
3780 h2c_send_goaway_error(h2c, NULL);
3781 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003782 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003783 }
3784
3785 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3786 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003787 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003788 done:
3789 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3790 return 1;
3791 out0:
3792 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3793 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003794}
3795
Willy Tarreau62f52692017-10-08 23:01:42 +02003796
Willy Tarreau479998a2018-11-18 06:30:59 +01003797/* Attempt to read data, and subscribe if none available.
3798 * The function returns 1 if data has been received, otherwise zero.
3799 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003800static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003801{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003802 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003803 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003804 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003805 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003806
Willy Tarreau7838a792019-08-12 18:42:03 +02003807 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3808
3809 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3810 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003811 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003812 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003813
Willy Tarreau7838a792019-08-12 18:42:03 +02003814 if (!h2_recv_allowed(h2c)) {
3815 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003816 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003817 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003818
Willy Tarreau44e973f2018-03-01 17:49:30 +01003819 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003820 if (!buf) {
3821 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003822 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003823 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003824 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003825
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003826 if (h2c->flags & H2_CF_RCVD_SHUT) {
3827 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003828 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003829 }
3830
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003831 if (!b_data(buf)) {
3832 /* try to pre-align the buffer like the
3833 * rxbufs will be to optimize memory copies. We'll make
3834 * sure that the frame header lands at the end of the
3835 * HTX block to alias it upon recv. We cannot use the
3836 * head because rcv_buf() will realign the buffer if
3837 * it's empty. Thus we cheat and pretend we already
3838 * have a few bytes there.
3839 */
3840 max = buf_room_for_htx_data(buf) + 9;
3841 buf->head = sizeof(struct htx) - 9;
3842 }
3843 else
3844 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003845
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003846 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003847
Christopher Fauletde9d6052021-04-23 12:25:18 +02003848 if (max && !ret && h2_recv_allowed(h2c)) {
3849 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3850 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003851 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003852 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003853 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3854 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003855
Christopher Fauletde9d6052021-04-23 12:25:18 +02003856 if (conn_xprt_read0_pending(h2c->conn)) {
3857 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3858 h2c->flags |= H2_CF_RCVD_SHUT;
3859 }
3860
Olivier Houcharda1411e62018-08-17 18:42:48 +02003861 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003862 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003863 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003864 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003865 }
3866
Willy Tarreau7838a792019-08-12 18:42:03 +02003867 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003868 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003869 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003870 }
3871
3872 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003873 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003874}
3875
Willy Tarreau479998a2018-11-18 06:30:59 +01003876/* Try to send data if possible.
3877 * The function returns 1 if data have been sent, otherwise zero.
3878 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003879static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003880{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003881 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003882 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003883 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003884
Willy Tarreau7838a792019-08-12 18:42:03 +02003885 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003886
Willy Tarreau7838a792019-08-12 18:42:03 +02003887 if (conn->flags & CO_FL_ERROR) {
3888 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3889 return 1;
3890 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003891
Willy Tarreau911db9b2020-01-23 16:27:54 +01003892 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003893 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003894 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003895 }
3896
Willy Tarreaubc933932017-10-09 16:21:43 +02003897 /* This loop is quite simple : it tries to fill as much as it can from
3898 * pending streams into the existing buffer until it's reportedly full
3899 * or the end of send requests is reached. Then it tries to send this
3900 * buffer's contents out, marks it not full if at least one byte could
3901 * be sent, and tries again.
3902 *
3903 * The snd_buf() function normally takes a "flags" argument which may
3904 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3905 * data immediately comes and CO_SFL_STREAMER to indicate that the
3906 * connection is streaming lots of data (used to increase TLS record
3907 * size at the expense of latency). The former can be sent any time
3908 * there's a buffer full flag, as it indicates at least one stream
3909 * attempted to send and failed so there are pending data. An
3910 * alternative would be to set it as long as there's an active stream
3911 * but that would be problematic for ACKs until we have an absolute
3912 * guarantee that all waiters have at least one byte to send. The
3913 * latter should possibly not be set for now.
3914 */
3915
3916 done = 0;
3917 while (!done) {
3918 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003919 unsigned int released = 0;
3920 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003921
3922 /* fill as much as we can into the current buffer */
3923 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3924 done = h2_process_mux(h2c);
3925
Olivier Houchard2b094432019-01-29 18:28:36 +01003926 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003927 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003928
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003929 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003930 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003931 break;
3932
3933 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3934 flags |= CO_SFL_MSG_MORE;
3935
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003936 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3937 if (b_data(buf)) {
3938 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003939 if (!ret) {
3940 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003941 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003942 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003943 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003944 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003945 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003946 if (b_data(buf)) {
3947 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003948 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003949 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003950 }
3951 b_free(buf);
3952 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003953 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003954
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003955 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003956 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003957
Willy Tarreaubc933932017-10-09 16:21:43 +02003958 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003959 if (sent)
3960 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003961 }
3962
Willy Tarreaua2af5122017-10-09 11:56:46 +02003963 if (conn->flags & CO_FL_SOCK_WR_SH) {
3964 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003965 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003966 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003967 /* We're not full anymore, so we can wake any task that are waiting
3968 * for us.
3969 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003970 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3971 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003972
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003973 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003974 if (!br_data(h2c->mbuf)) {
3975 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003976 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003977 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003978schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003979 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3980 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003981 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003982 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003983
Willy Tarreau7838a792019-08-12 18:42:03 +02003984 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003985 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003986}
3987
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003988/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003989struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003990{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003991 struct connection *conn;
3992 struct tasklet *tl = (struct tasklet *)t;
3993 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003994 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003995 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003996
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003997 if (state & TASK_F_USR1) {
3998 /* the tasklet was idling on an idle connection, it might have
3999 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004000 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004001 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4002 if (t->context == NULL) {
4003 /* The connection has been taken over by another thread,
4004 * we're no longer responsible for it, so just free the
4005 * tasklet, and do nothing.
4006 */
4007 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4008 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01004009 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004010 goto leave;
4011 }
4012 conn = h2c->conn;
4013 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004014
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004015 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004016
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004017 /* Remove the connection from the list, to be sure nobody attempts
4018 * to use it while we handle the I/O events
4019 */
4020 if (conn_in_list)
4021 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004022
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004023 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4024 } else {
4025 /* we're certain the connection was not in an idle list */
4026 conn = h2c->conn;
4027 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4028 conn_in_list = 0;
4029 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004030
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004031 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02004032 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004033 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02004034 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01004035 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004036 ret = h2_process(h2c);
4037
4038 /* If we were in an idle list, we want to add it back into it,
4039 * unless h2_process() returned -1, which mean it has destroyed
4040 * the connection (testing !ret is enough, if h2_process() wasn't
4041 * called then ret will be 0 anyway.
4042 */
Willy Tarreau74163142021-03-13 11:30:19 +01004043 if (ret < 0)
4044 t = NULL;
4045
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004046 if (!ret && conn_in_list) {
4047 struct server *srv = objt_server(conn->target);
4048
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004049 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004050 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004051 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004052 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004053 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004054 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004055 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004056
Willy Tarreau38468772020-06-28 00:31:13 +02004057leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02004058 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01004059 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004060}
Willy Tarreaua2af5122017-10-09 11:56:46 +02004061
Willy Tarreau62f52692017-10-08 23:01:42 +02004062/* callback called on any event by the connection handler.
4063 * It applies changes and returns zero, or < 0 if it wants immediate
4064 * destruction of the connection (which normally doesn not happen in h2).
4065 */
Olivier Houchard7505f942018-08-21 18:10:44 +02004066static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02004067{
Olivier Houchard7505f942018-08-21 18:10:44 +02004068 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004069
Willy Tarreau7838a792019-08-12 18:42:03 +02004070 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4071
Willy Tarreauf0961222021-02-05 11:41:46 +01004072 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4073 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004074 h2_process_demux(h2c);
4075
4076 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004077 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004078
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004079 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004080 h2c->flags &= ~H2_CF_DEM_DFULL;
4081 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004082 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004083
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004084 if (unlikely(h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !(h2c->flags & H2_CF_IS_BACK)) {
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004085 int send_goaway = 1;
4086 /* If a close-spread-time option is set, we want to avoid
4087 * closing all the active HTTP2 connections at once so we add a
4088 * random factor that will spread the closing.
4089 */
4090 if (tick_isset(global.close_spread_end)) {
4091 int remaining_window = tick_remain(now_ms, global.close_spread_end);
4092 if (remaining_window) {
4093 /* This should increase the closing rate the
4094 * further along the window we are. */
4095 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
4096 }
4097 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02004098 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
4099 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01004100 /* frontend is stopping, reload likely in progress, let's try
4101 * to announce a graceful shutdown if not yet done. We don't
4102 * care if it fails, it will be tried again later.
4103 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004104 if (send_goaway) {
4105 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
4106 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4107 if (h2c->last_sid < 0)
4108 h2c->last_sid = (1U << 31) - 1;
4109 h2c_send_goaway_error(h2c, NULL);
4110 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004111 }
4112 }
4113
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004114 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004115 * If we received early data, and the handshake is done, wake
4116 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004117 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004118 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004119 (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 +01004120 struct eb32_node *node;
4121 struct h2s *h2s;
4122
4123 h2c->flags |= H2_CF_WAIT_FOR_HS;
4124 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4125
4126 while (node) {
4127 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004128 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01004129 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004130 node = eb32_next(node);
4131 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004132 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004133
Christopher Fauletaade4ed2020-10-08 15:38:41 +02004134 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004135 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4136 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4137 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004138 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004139
4140 if (eb_is_empty(&h2c->streams_by_id)) {
4141 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004142 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004143 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004144 return -1;
4145 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004146
4147 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004148 if (conn->flags & CO_FL_LIST_MASK) {
4149 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004150 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004151 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4152 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004153 }
4154 else if (h2c->st0 == H2_CS_ERROR) {
4155 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004156 if (conn->flags & CO_FL_LIST_MASK) {
4157 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004158 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004159 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4160 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004161 }
4162
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004163 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004164 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004165
Olivier Houchard53216e72018-10-10 15:46:36 +02004166 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4167 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4168 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004169 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004170 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4171 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004172 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004173
Willy Tarreau15a47332022-03-18 15:57:34 +01004174 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004175 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004176 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004177 return 0;
4178}
4179
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004180/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004181static int h2_wake(struct connection *conn)
4182{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004183 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004184 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004185
Willy Tarreau7838a792019-08-12 18:42:03 +02004186 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4187 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004188 if (ret >= 0)
4189 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004190 TRACE_LEAVE(H2_EV_H2C_WAKE);
4191 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004192}
4193
Willy Tarreauea392822017-10-31 10:02:25 +01004194/* Connection timeout management. The principle is that if there's no receipt
4195 * nor sending for a certain amount of time, the connection is closed. If the
4196 * MUX buffer still has lying data or is not allocatable, the connection is
4197 * immediately killed. If it's allocatable and empty, we attempt to send a
4198 * GOAWAY frame.
4199 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004200struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004201{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004202 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004203 int expired = tick_is_expired(t->expire, now_ms);
4204
Willy Tarreau7838a792019-08-12 18:42:03 +02004205 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4206
Willy Tarreaubd42e922020-06-30 11:19:23 +02004207 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004208 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004209 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004210
4211 /* Somebody already stole the connection from us, so we should not
4212 * free it, we just have to free the task.
4213 */
4214 if (!t->context) {
4215 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004216 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004217 goto do_leave;
4218 }
4219
4220
Willy Tarreaubd42e922020-06-30 11:19:23 +02004221 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004222 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004223 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4224 return t;
4225 }
Willy Tarreauea392822017-10-31 10:02:25 +01004226
Willy Tarreaubd42e922020-06-30 11:19:23 +02004227 if (!h2c_may_expire(h2c)) {
4228 /* we do still have streams but all of them are idle, waiting
4229 * for the data layer, so we must not enforce the timeout here.
4230 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004231 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004232 t->expire = TICK_ETERNITY;
4233 return t;
4234 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004235
Willy Tarreaubd42e922020-06-30 11:19:23 +02004236 /* We're about to destroy the connection, so make sure nobody attempts
4237 * to steal it from us.
4238 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004239 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004240 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004241
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004242 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004243 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004244
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004245do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004246 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004247
4248 if (!h2c) {
4249 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004250 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004251 return NULL;
4252 }
4253
4254 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004255 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004256 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004257
Willy Tarreau662fafc2019-05-26 09:43:07 +02004258 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004259 /* don't even try to send a GOAWAY, the buffer is stuck */
4260 h2c->flags |= H2_CF_GOAWAY_FAILED;
4261 }
4262
4263 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004264 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004265 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4266 h2c->flags |= H2_CF_GOAWAY_FAILED;
4267
Willy Tarreau662fafc2019-05-26 09:43:07 +02004268 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004269 unsigned int released = 0;
4270 struct buffer *buf;
4271
4272 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4273 if (b_data(buf)) {
4274 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4275 if (!ret)
4276 break;
4277 b_del(buf, ret);
4278 if (b_data(buf))
4279 break;
4280 b_free(buf);
4281 released++;
4282 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004283 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004284
4285 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004286 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004287 }
Willy Tarreauea392822017-10-31 10:02:25 +01004288
Willy Tarreau4481e262019-10-31 15:36:30 +01004289 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004290 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4291 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004292 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004293 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4294 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004295
Willy Tarreau0975f112018-03-29 15:22:59 +02004296 /* either we can release everything now or it will be done later once
4297 * the last stream closes.
4298 */
4299 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004300 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004301
Willy Tarreau7838a792019-08-12 18:42:03 +02004302 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004303 return NULL;
4304}
4305
4306
Willy Tarreau62f52692017-10-08 23:01:42 +02004307/*******************************************/
4308/* functions below are used by the streams */
4309/*******************************************/
4310
4311/*
4312 * Attach a new stream to a connection
4313 * (Used for outgoing connections)
4314 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004315static int h2_attach(struct connection *conn, struct sedesc *sd, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004316{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004317 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004318 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004319
Willy Tarreau7838a792019-08-12 18:42:03 +02004320 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004321 h2s = h2c_bck_stream_new(h2c, sd->sc, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004322 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004323 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004324 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004325 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004326
4327 /* the connection is not idle anymore, let's mark this */
4328 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004329 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004330
Willy Tarreau7838a792019-08-12 18:42:03 +02004331 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004332 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004333}
4334
Willy Tarreau4596fe22022-05-17 19:07:51 +02004335/* Retrieves the first valid stream connector from this connection, or returns
4336 * NULL. We have to scan because we may have some orphan streams. It might be
Willy Tarreaufafd3982018-11-18 21:29:20 +01004337 * beneficial to scan backwards from the end to reduce the likeliness to find
4338 * orphans.
4339 */
Willy Tarreaud1373532022-05-27 11:00:59 +02004340static struct stconn *h2_get_first_sc(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004341{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004342 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004343 struct h2s *h2s;
4344 struct eb32_node *node;
4345
4346 node = eb32_first(&h2c->streams_by_id);
4347 while (node) {
4348 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004349 if (h2s_sc(h2s))
4350 return h2s_sc(h2s);
Willy Tarreaufafd3982018-11-18 21:29:20 +01004351 node = eb32_next(node);
4352 }
4353 return NULL;
4354}
4355
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004356static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4357{
4358 int ret = 0;
4359 struct h2c *h2c = conn->ctx;
4360
4361 switch (mux_ctl) {
4362 case MUX_STATUS:
4363 /* Only consider the mux to be ready if we're done with
4364 * the preface and settings, and we had no error.
4365 */
4366 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4367 ret |= MUX_STATUS_READY;
4368 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004369 case MUX_EXIT_STATUS:
4370 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004371 default:
4372 return -1;
4373 }
4374}
4375
Willy Tarreau62f52692017-10-08 23:01:42 +02004376/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004377 * Destroy the mux and the associated connection, if it is no longer used
4378 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004379static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004380{
Christopher Faulet73c12072019-04-08 11:23:22 +02004381 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004382
Willy Tarreau7838a792019-08-12 18:42:03 +02004383 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004384 if (eb_is_empty(&h2c->streams_by_id)) {
4385 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004386 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004387 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004388 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004389}
4390
4391/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004392 * Detach the stream from the connection and possibly release the connection.
4393 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004394static void h2_detach(struct sedesc *sd)
Willy Tarreau62f52692017-10-08 23:01:42 +02004395{
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004396 struct h2s *h2s = sd->se;
Willy Tarreau60935142017-10-16 18:11:19 +02004397 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004398 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004399
Willy Tarreau7838a792019-08-12 18:42:03 +02004400 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4401
Willy Tarreau7838a792019-08-12 18:42:03 +02004402 if (!h2s) {
4403 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004404 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004405 }
Willy Tarreau60935142017-10-16 18:11:19 +02004406
Willy Tarreaud9464162020-01-10 18:25:07 +01004407 /* there's no txbuf so we're certain not to be able to send anything */
4408 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004409
Olivier Houchardf502aca2018-12-14 19:42:40 +01004410 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004411 h2c = h2s->h2c;
Willy Tarreau36c22322022-05-27 10:41:24 +02004412 h2c->nb_sc--;
4413 if (!h2c->nb_sc)
Willy Tarreau15a47332022-03-18 15:57:34 +01004414 h2c->idle_start = now_ms;
4415
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004416 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
Willy Tarreau36c22322022-05-27 10:41:24 +02004417 !h2_frt_has_too_many_sc(h2c)) {
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004418 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004419 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004420 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004421 }
Willy Tarreau60935142017-10-16 18:11:19 +02004422
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004423 /* this stream may be blocked waiting for some data to leave (possibly
4424 * an ES or RST frame), so orphan it in this case.
4425 */
Christopher Faulet897d6122021-12-17 17:28:35 +01004426 if (!(h2c->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004427 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004428 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004429 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004430 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004431 /* refresh the timeout if none was active, so that the last
4432 * leaving stream may arm it.
4433 */
4434 if (!tick_isset(h2c->task->expire))
4435 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004436 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004437 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004438
Willy Tarreau45f752e2017-10-30 15:44:59 +01004439 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4440 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4441 /* unblock the connection if it was blocked on this
4442 * stream.
4443 */
4444 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4445 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004446 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004447 }
4448
Willy Tarreau71049cc2018-03-28 13:56:39 +02004449 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004450
Christopher Faulet9b79a102019-07-15 11:22:56 +02004451 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004452 if (!(h2c->conn->flags &
4453 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004454 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004455 /* Add the connection in the session server list, if not already done */
4456 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4457 h2c->conn->owner = NULL;
4458 if (eb_is_empty(&h2c->streams_by_id)) {
4459 h2c->conn->mux->destroy(h2c);
4460 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4461 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004462 }
4463 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004464 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004465 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4466 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4467 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004468 return;
4469 }
4470 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004471 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004472 else {
4473 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004474 /* If the connection is owned by the session, first remove it
4475 * from its list
4476 */
4477 if (h2c->conn->owner) {
4478 session_unown_conn(h2c->conn->owner, h2c->conn);
4479 h2c->conn->owner = NULL;
4480 }
4481
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004482 /* mark that the tasklet may lose its context to another thread and
4483 * that the handler needs to check it under the idle conns lock.
4484 */
4485 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004486 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4487
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004488 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004489 /* The server doesn't want it, let's kill the connection right away */
4490 h2c->conn->mux->destroy(h2c);
4491 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4492 return;
4493 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004494 /* At this point, the connection has been added to the
4495 * server idle list, so another thread may already have
4496 * hijacked it, so we can't do anything with it.
4497 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004498 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4499 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004500
Olivier Houchard8a786902018-12-15 16:05:40 +01004501 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004502 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004503 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004504 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004505 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004506 &h2c->conn->hash_node->node,
4507 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004508 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004509 }
4510 }
4511 }
4512
Willy Tarreaue323f342018-03-28 13:51:45 +02004513 /* We don't want to close right now unless we're removing the
4514 * last stream, and either the connection is in error, or it
4515 * reached the ID already specified in a GOAWAY frame received
4516 * or sent (as seen by last_sid >= 0).
4517 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004518 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004519 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004520 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004521 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004522 }
4523 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004524 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004525 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004526 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004527 else
4528 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004529}
4530
Willy Tarreau88bdba32019-05-13 18:17:53 +02004531/* Performs a synchronous or asynchronous shutr(). */
4532static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004533{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004534 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004535
Willy Tarreauf983d002019-05-14 10:40:21 +02004536 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004537 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004538
Willy Tarreau7838a792019-08-12 18:42:03 +02004539 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4540
Willy Tarreau18059042019-01-31 19:12:48 +01004541 /* a connstream may require us to immediately kill the whole connection
4542 * for example because of a "tcp-request content reject" rule that is
4543 * normally used to limit abuse. In this case we schedule a goaway to
4544 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004545 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004546 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004547 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004548 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004549 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4550 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4551 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004552 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4553 /* Nothing was never sent for this stream, so reset with
4554 * REFUSED_STREAM error to let the client retry the
4555 * request.
4556 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004557 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004558 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4559 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004560 else {
4561 /* a final response was already provided, we don't want this
4562 * stream anymore. This may happen when the server responds
4563 * before the end of an upload and closes quickly (redirect,
4564 * deny, ...)
4565 */
4566 h2s_error(h2s, H2_ERR_CANCEL);
4567 }
Willy Tarreau18059042019-01-31 19:12:48 +01004568
Willy Tarreau90c32322017-11-24 08:00:30 +01004569 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004570 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004571 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004572
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004573 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004574 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004575 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004576 done:
4577 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004578 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004579 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004580add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004581 /* Let the handler know we want to shutr, and add ourselves to the
4582 * most relevant list if not yet done. h2_deferred_shut() will be
4583 * automatically called via the shut_tl tasklet when there's room
4584 * again.
4585 */
4586 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004587 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004588 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004589 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004590 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004591 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004592 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004593 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004594 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004595}
4596
Willy Tarreau88bdba32019-05-13 18:17:53 +02004597/* Performs a synchronous or asynchronous shutw(). */
4598static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004599{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004600 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004601
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004602 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004603 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004604
Willy Tarreau7838a792019-08-12 18:42:03 +02004605 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4606
Willy Tarreau473e0e52022-08-18 16:12:15 +02004607 if (h2s->st != H2_SS_ERROR &&
4608 (h2s->flags & (H2_SF_HEADERS_SENT | H2_SF_MORE_HTX_DATA)) == H2_SF_HEADERS_SENT) {
4609 /* we can cleanly close using an empty data frame only after headers
4610 * and if no more data is expected to be sent.
4611 */
Willy Tarreau58e32082017-11-07 14:41:09 +01004612 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4613 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004614 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004615
4616 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004617 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004618 else
4619 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004620 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004621 /* a connstream may require us to immediately kill the whole connection
4622 * for example because of a "tcp-request content reject" rule that is
4623 * normally used to limit abuse. In this case we schedule a goaway to
4624 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004625 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004626 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004627 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004628 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004629 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4630 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4631 }
Willy Tarreau473e0e52022-08-18 16:12:15 +02004632 else if (h2s->flags & H2_SF_MORE_HTX_DATA) {
4633 /* some unsent data were pending (e.g. abort during an upload),
4634 * let's send a CANCEL.
4635 */
4636 TRACE_STATE("shutw before end of data, sending CANCEL", H2_EV_STRM_SHUT, h2c->conn, h2s);
4637 h2s_error(h2s, H2_ERR_CANCEL);
4638 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004639 else {
4640 /* Nothing was never sent for this stream, so reset with
4641 * REFUSED_STREAM error to let the client retry the
4642 * request.
4643 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004644 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004645 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4646 }
Willy Tarreau18059042019-01-31 19:12:48 +01004647
Willy Tarreau90c32322017-11-24 08:00:30 +01004648 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004649 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004650 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004651
Willy Tarreau00dd0782018-03-01 16:31:34 +01004652 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004653 }
4654
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004655 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004656 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004657
4658 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4659
Willy Tarreau88bdba32019-05-13 18:17:53 +02004660 done:
4661 h2s->flags &= ~H2_SF_WANT_SHUTW;
4662 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004663
4664 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004665 /* Let the handler know we want to shutw, and add ourselves to the
4666 * most relevant list if not yet done. h2_deferred_shut() will be
4667 * automatically called via the shut_tl tasklet when there's room
4668 * again.
4669 */
4670 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004671 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004672 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004673 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004674 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004675 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004676 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004677 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004678 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004679}
4680
Willy Tarreau5723f292020-01-10 15:16:57 +01004681/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004682 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4683 * and prevented the last frame from being emitted.
4684 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004685struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004686{
4687 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004688 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004689
Willy Tarreau7838a792019-08-12 18:42:03 +02004690 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4691
Willy Tarreau5723f292020-01-10 15:16:57 +01004692 if (h2s->flags & H2_SF_NOTIFIED) {
4693 /* some data processing remains to be done first */
4694 goto end;
4695 }
4696
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004697 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004698 h2_do_shutw(h2s);
4699
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004700 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004701 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004702
Willy Tarreau88bdba32019-05-13 18:17:53 +02004703 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004704 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004705 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004706
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004707 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004708 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004709 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004710 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004711 t = NULL;
4712 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004713 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004714 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004715 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004716 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004717 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004718}
4719
Willy Tarreau4596fe22022-05-17 19:07:51 +02004720/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004721static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004722{
Willy Tarreau36c22322022-05-27 10:41:24 +02004723 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004724
Willy Tarreau7838a792019-08-12 18:42:03 +02004725 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004726 if (mode)
4727 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004728 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004729}
4730
Willy Tarreau4596fe22022-05-17 19:07:51 +02004731/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004732static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004733{
Willy Tarreau36c22322022-05-27 10:41:24 +02004734 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004735
Willy Tarreau7838a792019-08-12 18:42:03 +02004736 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004737 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004738 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004739}
4740
Christopher Faulet9b79a102019-07-15 11:22:56 +02004741/* Decode the payload of a HEADERS frame and produce the HTX request or response
4742 * depending on the connection's side. Returns a positive value on success, a
4743 * negative value on failure, or 0 if it couldn't proceed. May report connection
4744 * errors in h2c->errcode if the frame is non-decodable and the connection
4745 * unrecoverable. In absence of connection error when a failure is reported, the
4746 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004747 *
4748 * The function may fold CONTINUATION frames into the initial HEADERS frame
4749 * by removing padding and next frame header, then moving the CONTINUATION
4750 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4751 * leaving a hole between the main frame and the beginning of the next one.
4752 * The possibly remaining incomplete or next frame at the end may be moved
4753 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4754 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4755 *
4756 * A buffer at the beginning of processing may look like this :
4757 *
4758 * ,---.---------.-----.--------------.--------------.------.---.
4759 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4760 * `---^---------^-----^--------------^--------------^------^---'
4761 * | | <-----> | |
4762 * area | dpl | wrap
4763 * |<--------------> |
4764 * | dfl |
4765 * |<-------------------------------------------------->|
4766 * head data
4767 *
4768 * Padding is automatically overwritten when folding, participating to the
4769 * hole size after dfl :
4770 *
4771 * ,---.------------------------.-----.--------------.------.---.
4772 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4773 * `---^------------------------^-----^--------------^------^---'
4774 * | | <-----> | |
4775 * area | hole | wrap
4776 * |<-----------------------> |
4777 * | dfl |
4778 * |<-------------------------------------------------->|
4779 * head data
4780 *
4781 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4782 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4783 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004784 *
4785 * The <flags> field must point to either the stream's flags or to a copy of it
4786 * so that the function can update the following flags :
4787 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004788 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004789 *
4790 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4791 * decoding, in order to detect if we're dealing with a headers or a trailers
4792 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004793 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004794static 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 +02004795{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004796 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004797 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004798 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004799 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004800 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004801 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004802 int flen; // header frame len
4803 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004804 int ret = 0;
4805 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004806 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004807
Willy Tarreau7838a792019-08-12 18:42:03 +02004808 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4809
Willy Tarreauea18f862018-12-22 20:19:26 +01004810next_frame:
4811 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4812 goto leave; // incomplete input frame
4813
4814 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4815 * this case, we'll try to paste it immediately after the initial
4816 * HEADERS frame payload and kill any possible padding. The initial
4817 * frame's length will be increased to represent the concatenation
4818 * of the two frames. The next frame is read from position <tlen>
4819 * and written at position <flen> (minus padding if some is present).
4820 */
4821 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4822 struct h2_fh hdr;
4823 int clen; // CONTINUATION frame's payload length
4824
Willy Tarreau7838a792019-08-12 18:42:03 +02004825 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 +01004826 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4827 /* no more data, the buffer may be full, either due to
4828 * too large a frame or because of too large a hole that
4829 * we're going to compact at the end.
4830 */
4831 goto leave;
4832 }
4833
4834 if (hdr.ft != H2_FT_CONTINUATION) {
4835 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004836 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 +01004837 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004838 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004839 goto fail;
4840 }
4841
4842 if (hdr.sid != h2c->dsi) {
4843 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004844 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 +01004845 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004846 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004847 goto fail;
4848 }
4849
4850 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4851 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004852 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 +01004853 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4854 goto fail;
4855 }
4856
4857 /* detect when we must stop aggragating frames */
4858 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4859
4860 /* Take as much as we can of the CONTINUATION frame's payload */
4861 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4862 if (clen > hdr.len)
4863 clen = hdr.len;
4864
4865 /* Move the frame's payload over the padding, hole and frame
4866 * header. At least one of hole or dpl is null (see diagrams
4867 * above). The hole moves after the new aggragated frame.
4868 */
4869 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 +02004870 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004871 hole += h2c->dpl + 9;
4872 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004873 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 +01004874 goto next_frame;
4875 }
4876
4877 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004878
Willy Tarreau13278b42017-10-13 19:23:14 +02004879 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004880 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004881 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004882 copy = alloc_trash_chunk();
4883 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004884 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 +02004885 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4886 goto fail;
4887 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004888 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4889 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4890 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004891 }
4892
Willy Tarreau13278b42017-10-13 19:23:14 +02004893 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4894 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004895 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004896 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004897 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 +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 Tarreaua0d11b62018-09-05 18:30:05 +02004900 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004901 }
4902
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004903 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004904 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 +01004905 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4906 goto fail;
4907 }
4908
Willy Tarreau13278b42017-10-13 19:23:14 +02004909 hdrs += 5; // stream dep = 4, weight = 1
4910 flen -= 5;
4911 }
4912
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004913 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004914 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 +01004915 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004916 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004917 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004918
Willy Tarreau937f7602018-02-26 15:22:17 +01004919 /* we can't retry a failed decompression operation so we must be very
4920 * careful not to take any risks. In practice the output buffer is
4921 * always empty except maybe for trailers, in which case we simply have
4922 * to wait for the upper layer to finish consuming what is available.
4923 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004924 htx = htx_from_buf(rxbuf);
4925 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004926 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 +02004927 h2c->flags |= H2_CF_DEM_SFULL;
4928 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004929 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004930
Willy Tarreau25919232019-01-03 14:48:18 +01004931 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004932 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4933 sizeof(list)/sizeof(list[0]), tmp);
4934 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004935 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 +01004936 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4937 goto fail;
4938 }
4939
Willy Tarreau25919232019-01-03 14:48:18 +01004940 /* The PACK decompressor was updated, let's update the input buffer and
4941 * the parser's state to commit these changes and allow us to later
4942 * fail solely on the stream if needed.
4943 */
4944 b_del(&h2c->dbuf, h2c->dfl + hole);
4945 h2c->dfl = hole = 0;
4946 h2c->st0 = H2_CS_FRAME_H;
4947
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004948 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004949 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004950 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004951 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004952 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004953 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004954
Willy Tarreau88d138e2019-01-02 19:38:14 +01004955 if (*flags & H2_SF_HEADERS_RCVD)
4956 goto trailers;
4957
4958 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004959 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004960 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004961 else
4962 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004963
Christopher Faulet3d875582021-04-26 17:46:13 +02004964 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004965 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004966 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4967 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004968 goto fail;
4969 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004970
Willy Tarreau174b06a2018-04-25 18:13:58 +02004971 if (msgf & H2_MSGF_BODY) {
4972 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004973 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004974 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004975 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004976 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004977 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004978 if (msgf & H2_MSGF_BODYLESS_RSP)
4979 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004980
Christopher Fauletd0db4232021-01-22 11:46:30 +01004981 if (msgf & H2_MSGF_BODY_TUNNEL)
4982 *flags |= H2_SF_BODY_TUNNEL;
4983 else {
4984 /* Abort the tunnel attempt, if any */
4985 if (*flags & H2_SF_BODY_TUNNEL)
4986 *flags |= H2_SF_TUNNEL_ABRT;
4987 *flags &= ~H2_SF_BODY_TUNNEL;
4988 }
4989
Willy Tarreau88d138e2019-01-02 19:38:14 +01004990 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004991 /* indicate that a HEADERS frame was received for this stream, except
4992 * for 1xx responses. For 1xx responses, another HEADERS frame is
4993 * expected.
4994 */
4995 if (!(msgf & H2_MSGF_RSP_1XX))
4996 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004997
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004998 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4999 /* no more data are expected for this message */
5000 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01005001 }
Willy Tarreau937f7602018-02-26 15:22:17 +01005002
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005003 if (msgf & H2_MSGF_EXT_CONNECT)
5004 *flags |= H2_SF_EXT_CONNECT_RCVD;
5005
Willy Tarreau86277d42019-01-02 15:36:11 +01005006 /* success */
5007 ret = 1;
5008
Willy Tarreau68dd9852017-07-03 14:44:26 +02005009 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01005010 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01005011 * move the remaining data over it.
5012 */
5013 if (hole) {
5014 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
5015 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
5016 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
5017 b_sub(&h2c->dbuf, hole);
5018 }
5019
Christopher Faulet07f88d72021-04-21 10:39:53 +02005020 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01005021 /* too large frames */
5022 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01005023 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01005024 }
5025
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005026 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01005027 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02005028 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02005029 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01005030 return ret;
5031
Willy Tarreau68dd9852017-07-03 14:44:26 +02005032 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01005033 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02005034 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01005035
5036 trailers:
5037 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01005038 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
5039 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02005040 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 +01005041 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02005042 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01005043 goto fail;
5044 }
5045
Christopher Faulet9b79a102019-07-15 11:22:56 +02005046 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02005047 if (h2_make_htx_trailers(list, htx) <= 0) {
5048 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 +02005049 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005050 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01005051 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02005052}
5053
Christopher Faulet9b79a102019-07-15 11:22:56 +02005054/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005055 * parser state is automatically updated. Returns > 0 if it could completely
5056 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02005057 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005058 * DATA frame can return 0 as a valid result). Stream errors are reported in
5059 * h2s->errcode and connection errors in h2c->errcode. The caller must already
5060 * have checked the frame header and ensured that the frame was complete or the
5061 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02005062 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01005063static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02005064{
5065 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005066 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005067 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005068 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005069 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005070 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02005071
Willy Tarreau7838a792019-08-12 18:42:03 +02005072 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5073
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005074 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02005075
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005076 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
5077 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005078 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02005079 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 +01005080 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005081 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005082 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005083
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005084try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005085 flen = h2c->dfl - h2c->dpl;
5086 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005087 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005088
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005089 if (flen > b_data(&h2c->dbuf)) {
5090 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005091 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005092 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005093 }
5094
Christopher Faulet9b79a102019-07-15 11:22:56 +02005095 block = htx_free_data_space(htx);
5096 if (!block) {
5097 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005098 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 +02005099 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005100 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005101 if (flen > block)
5102 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005103
Christopher Faulet9b79a102019-07-15 11:22:56 +02005104 /* here, flen is the max we can copy into the output buffer */
5105 block = b_contig_data(&h2c->dbuf, 0);
5106 if (flen > block)
5107 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005108
Christopher Faulet9b79a102019-07-15 11:22:56 +02005109 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005110 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 +02005111
Christopher Faulet9b79a102019-07-15 11:22:56 +02005112 b_del(&h2c->dbuf, sent);
5113 h2c->dfl -= sent;
5114 h2c->rcvd_c += sent;
5115 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005116
Christopher Faulet9b79a102019-07-15 11:22:56 +02005117 if (h2s->flags & H2_SF_DATA_CLEN) {
5118 h2s->body_len -= sent;
5119 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005120 }
5121
Christopher Faulet9b79a102019-07-15 11:22:56 +02005122 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005123 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005124 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 +01005125 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005126 }
5127
Christopher Faulet9b79a102019-07-15 11:22:56 +02005128 goto try_again;
5129
Willy Tarreau4a28da12018-01-04 14:41:00 +01005130 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005131 /* here we're done with the frame, all the payload (except padding) was
5132 * transferred.
5133 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005134
Christopher Faulet5be651d2021-01-22 15:28:03 +01005135 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5136 /* no more data are expected for this message. This add the EOM
5137 * flag but only on the response path or if no tunnel attempt
5138 * was aborted. Otherwise (request path + tunnel abrted), the
5139 * EOM was already reported.
5140 */
Christopher Faulet33724322021-02-10 09:04:59 +01005141 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5142 /* If we receive an empty DATA frame with ES flag while the HTX
5143 * message is empty, we must be sure to push a block to be sure
5144 * the HTX EOM flag will be handled on the other side. It is a
5145 * workaround because for now it is not possible to push empty
5146 * HTX DATA block. And without this block, there is no way to
5147 * "commit" the end of the message.
5148 */
5149 if (htx_is_empty(htx)) {
5150 if (!htx_add_endof(htx, HTX_BLK_EOT))
5151 goto fail;
5152 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005153 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005154 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005155 }
5156
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005157 h2c->rcvd_c += h2c->dpl;
5158 h2c->rcvd_s += h2c->dpl;
5159 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005160 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005161 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005162 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005163 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005164 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005165 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005166 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005167 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005168 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005169}
5170
Willy Tarreau115e83b2018-12-01 19:17:53 +01005171/* Try to send a HEADERS frame matching HTX response present in HTX message
5172 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5173 * must check the stream's status to detect any error which might have happened
5174 * subsequently to a successful send. The htx blocks are automatically removed
5175 * from the message. The htx message is assumed to be valid since produced from
5176 * the internal code, hence it contains a start line, an optional series of
5177 * header blocks and an end of header, otherwise an invalid frame could be
5178 * emitted and the resulting htx message could be left in an inconsistent state.
5179 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005180static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005181{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005182 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005183 struct h2c *h2c = h2s->h2c;
5184 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005185 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005186 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005187 struct htx_sl *sl;
5188 enum htx_blk_type type;
5189 int es_now = 0;
5190 int ret = 0;
5191 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005192
Willy Tarreau7838a792019-08-12 18:42:03 +02005193 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5194
Willy Tarreau115e83b2018-12-01 19:17:53 +01005195 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005196 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005197 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005198 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005199 return 0;
5200 }
5201
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005202 /* get the start line (we do have one) and the rest of the headers,
5203 * that we dump starting at header 0 */
5204 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005205 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005206 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005207 type = htx_get_blk_type(blk);
5208
5209 if (type == HTX_BLK_UNUSED)
5210 continue;
5211
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005212 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005213 break;
5214
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005215 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005216 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005217 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5218 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5219 goto fail;
5220 }
5221
5222 list[hdr].n = htx_get_blk_name(htx, blk);
5223 list[hdr].v = htx_get_blk_value(htx, blk);
5224 hdr++;
5225 }
5226 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005227 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005228 sl = htx_get_blk_ptr(htx, blk);
5229 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005230 if (h2s->status == 204 || h2s->status == 304)
5231 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005232 if (h2s->status < 100 || h2s->status > 999) {
5233 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5234 goto fail;
5235 }
5236 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005237 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5238 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5239 h2s->status = 200;
5240 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5241 }
5242 else {
5243 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5244 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5245 goto fail;
5246 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005247 }
5248 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5249 /* Abort the tunnel attempt */
5250 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5251 h2s->flags |= H2_SF_TUNNEL_ABRT;
5252 }
5253 }
5254 else {
5255 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 +01005256 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005257 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005258 }
5259
Christopher Faulet56498132021-01-29 11:39:43 +01005260 /* The start-line me be defined */
5261 BUG_ON(!sl);
5262
Willy Tarreau115e83b2018-12-01 19:17:53 +01005263 /* marker for end of headers */
5264 list[hdr].n = ist("");
5265
Willy Tarreau9c218e72019-05-26 10:08:28 +02005266 mbuf = br_tail(h2c->mbuf);
5267 retry:
5268 if (!h2_get_buf(h2c, mbuf)) {
5269 h2c->flags |= H2_CF_MUX_MALLOC;
5270 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005271 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 +02005272 return 0;
5273 }
5274
Willy Tarreau115e83b2018-12-01 19:17:53 +01005275 chunk_reset(&outbuf);
5276
5277 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005278 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5279 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005280 break;
5281 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005282 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005283 }
5284
5285 if (outbuf.size < 9)
5286 goto full;
5287
5288 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5289 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5290 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5291 outbuf.data = 9;
5292
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005293 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5294 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5295 * dynamic table size update so that some clients are not
5296 * confused. In practice we only need to send the DTSU when the
5297 * advertised size is lower than the current one, and since we
5298 * don't use it and don't care about the default 4096 bytes,
5299 * we only ack it with a zero size thus we at most have to deal
5300 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5301 * below for the whole context and interoperability risks:
5302 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5303 */
5304 if (b_room(&outbuf) < 1)
5305 goto full;
5306 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5307
5308 /* let's not update the flags now but only once the buffer is
5309 * really committed.
5310 */
5311 }
5312
Willy Tarreau115e83b2018-12-01 19:17:53 +01005313 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005314 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005315 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005316 goto realign_again;
5317 goto full;
5318 }
5319
5320 /* encode all headers, stop at empty name */
5321 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5322 /* these ones do not exist in H2 and must be dropped. */
5323 if (isteq(list[hdr].n, ist("connection")) ||
5324 isteq(list[hdr].n, ist("proxy-connection")) ||
5325 isteq(list[hdr].n, ist("keep-alive")) ||
5326 isteq(list[hdr].n, ist("upgrade")) ||
5327 isteq(list[hdr].n, ist("transfer-encoding")))
5328 continue;
5329
Christopher Faulet86d144c2019-08-14 16:32:25 +02005330 /* Skip all pseudo-headers */
5331 if (*(list[hdr].n.ptr) == ':')
5332 continue;
5333
Willy Tarreau115e83b2018-12-01 19:17:53 +01005334 if (isteq(list[hdr].n, ist("")))
5335 break; // end
5336
5337 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5338 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005339 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005340 goto realign_again;
5341 goto full;
5342 }
5343 }
5344
Willy Tarreaucb985a42019-10-07 16:56:34 +02005345 /* update the frame's size */
5346 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5347
5348 if (outbuf.data > h2c->mfs + 9) {
5349 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5350 /* output full */
5351 if (b_space_wraps(mbuf))
5352 goto realign_again;
5353 goto full;
5354 }
5355 }
5356
Willy Tarreau3a537072021-06-17 08:40:04 +02005357 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5358
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005359 /* remove all header blocks including the EOH and compute the
5360 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005361 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005362 ret = 0;
5363 blk = htx_get_head_blk(htx);
5364 while (blk) {
5365 type = htx_get_blk_type(blk);
5366 ret += htx_get_blksz(blk);
5367 blk = htx_remove_blk(htx, blk);
5368 /* The removed block is the EOH */
5369 if (type == HTX_BLK_EOH)
5370 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005371 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005372
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005373 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005374 /* Response already closed: add END_STREAM */
5375 es_now = 1;
5376 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005377 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5378 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005379 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005380 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005381 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5382 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005383 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005384
Willy Tarreau115e83b2018-12-01 19:17:53 +01005385 if (es_now)
5386 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5387
5388 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005389 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005390
5391 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5392 * 1xx responses, another HEADERS frame is expected.
5393 */
Christopher Faulet89899422020-12-07 18:24:43 +01005394 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005395 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005396
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005397 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5398 /* was sent above */
5399 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005400 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005401 }
5402
Willy Tarreau115e83b2018-12-01 19:17:53 +01005403 if (es_now) {
5404 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005405 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 +01005406 if (h2s->st == H2_SS_OPEN)
5407 h2s->st = H2_SS_HLOC;
5408 else
5409 h2s_close(h2s);
5410 }
5411
5412 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005413 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005414 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005415 return ret;
5416 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005417 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5418 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005419 h2c->flags |= H2_CF_MUX_MFULL;
5420 h2s->flags |= H2_SF_BLK_MROOM;
5421 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005422 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 +01005423 goto end;
5424 fail:
5425 /* unparsable HTX messages, too large ones to be produced in the local
5426 * list etc go here (unrecoverable errors).
5427 */
5428 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5429 ret = 0;
5430 goto end;
5431}
5432
Willy Tarreau80739692018-10-05 11:35:57 +02005433/* Try to send a HEADERS frame matching HTX request present in HTX message
5434 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5435 * must check the stream's status to detect any error which might have happened
5436 * subsequently to a successful send. The htx blocks are automatically removed
5437 * from the message. The htx message is assumed to be valid since produced from
5438 * the internal code, hence it contains a start line, an optional series of
5439 * header blocks and an end of header, otherwise an invalid frame could be
5440 * emitted and the resulting htx message could be left in an inconsistent state.
5441 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005442static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005443{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005444 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005445 struct h2c *h2c = h2s->h2c;
5446 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005447 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005448 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005449 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005450 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005451 enum htx_blk_type type;
5452 int es_now = 0;
5453 int ret = 0;
5454 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005455 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005456
Willy Tarreau7838a792019-08-12 18:42:03 +02005457 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5458
Willy Tarreau80739692018-10-05 11:35:57 +02005459 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005460 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005461 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005462 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005463 return 0;
5464 }
5465
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005466 /* get the start line (we do have one) and the rest of the headers,
5467 * that we dump starting at header 0 */
5468 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005469 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005470 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005471 type = htx_get_blk_type(blk);
5472
5473 if (type == HTX_BLK_UNUSED)
5474 continue;
5475
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005476 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005477 break;
5478
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005479 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005480 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005481 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5482 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5483 goto fail;
5484 }
Willy Tarreau80739692018-10-05 11:35:57 +02005485
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005486 list[hdr].n = htx_get_blk_name(htx, blk);
5487 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005488
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005489 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005490 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5491 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005492 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005493
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005494 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005495 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005496 /* rfc 7230 #6.1 Connection = list of tokens */
5497 struct ist connection_ist = list[hdr].v;
5498 do {
5499 if (isteqi(iststop(connection_ist, ','),
5500 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005501 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5502 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5503 goto fail;
5504 }
5505
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005506 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 +01005507 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5508 sl->info.req.meth = HTTP_METH_CONNECT;
5509 meth = ist("CONNECT");
5510
5511 extended_connect = 1;
5512 break;
5513 }
5514
5515 connection_ist = istadv(istfind(connection_ist, ','), 1);
5516 } while (istlen(connection_ist));
5517 }
5518
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005519 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005520 /* rfc 7230 #6.7 Upgrade = list of protocols
5521 * rfc 8441 #4 Extended connect = :protocol is single-valued
5522 *
5523 * only first HTTP/1 protocol is preserved
5524 */
5525 const struct ist protocol = iststop(list[hdr].v, ',');
5526 /* upgrade_protocol field is 16 bytes long in h2s */
5527 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5528 }
5529
5530 if (isteq(list[hdr].n, ist("host")))
5531 host = list[hdr].v;
5532
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005533 hdr++;
5534 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005535 else if (type == HTX_BLK_REQ_SL) {
5536 BUG_ON(sl); /* Only one start-line expected */
5537 sl = htx_get_blk_ptr(htx, blk);
5538 meth = htx_sl_req_meth(sl);
5539 uri = htx_sl_req_uri(sl);
5540 if (sl->info.req.meth == HTTP_METH_HEAD)
5541 h2s->flags |= H2_SF_BODYLESS_RESP;
5542 if (unlikely(uri.len == 0)) {
5543 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5544 goto fail;
5545 }
5546 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005547 else {
5548 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5549 goto fail;
5550 }
Willy Tarreau80739692018-10-05 11:35:57 +02005551 }
5552
Christopher Faulet56498132021-01-29 11:39:43 +01005553 /* The start-line me be defined */
5554 BUG_ON(!sl);
5555
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005556 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005557 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005558 struct server *srv = objt_server(h2c->conn->target);
5559
5560 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005561 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005562 list[hdr].v = ist(srv->id);
5563 hdr++;
5564 }
5565 }
5566
Willy Tarreau80739692018-10-05 11:35:57 +02005567 /* marker for end of headers */
5568 list[hdr].n = ist("");
5569
Willy Tarreau9c218e72019-05-26 10:08:28 +02005570 mbuf = br_tail(h2c->mbuf);
5571 retry:
5572 if (!h2_get_buf(h2c, mbuf)) {
5573 h2c->flags |= H2_CF_MUX_MALLOC;
5574 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005575 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 +02005576 return 0;
5577 }
5578
Willy Tarreau80739692018-10-05 11:35:57 +02005579 chunk_reset(&outbuf);
5580
5581 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005582 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5583 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005584 break;
5585 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005586 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005587 }
5588
5589 if (outbuf.size < 9)
5590 goto full;
5591
5592 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5593 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5594 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5595 outbuf.data = 9;
5596
5597 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005598 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005599 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005600 goto realign_again;
5601 goto full;
5602 }
5603
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005604 auth = ist(NULL);
5605
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005606 /* RFC7540 #8.3: the CONNECT method must have :
5607 * - :authority set to the URI part (host:port)
5608 * - :method set to CONNECT
5609 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005610 *
5611 * Note that this is not applicable in case of the Extended CONNECT
5612 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005613 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005614 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005615 auth = uri;
5616
5617 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5618 /* output full */
5619 if (b_space_wraps(mbuf))
5620 goto realign_again;
5621 goto full;
5622 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005623 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005624 } else {
5625 /* other methods need a :scheme. If an authority is known from
5626 * the request line, it must be sent, otherwise only host is
5627 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005628 *
5629 * This code is also applicable for Extended CONNECT protocol
5630 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005631 */
5632 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005633
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005634 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5635 /* the URI seems to start with a scheme */
5636 int len = 1;
5637
5638 while (len < uri.len && uri.ptr[len] != ':')
5639 len++;
5640
5641 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5642 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005643 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005644 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005645
5646 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005647 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005648 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5649 auth.len++;
5650
Tim Duesterhus154374c2021-03-02 18:57:27 +01005651 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005652 }
5653 }
5654
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005655 /* For Extended CONNECT, the :authority must be present.
5656 * Use host value for it.
5657 */
5658 if (unlikely(extended_connect) && isttest(host))
5659 auth = host;
5660
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005661 if (!scheme.len) {
5662 /* no explicit scheme, we're using an origin-form URI,
5663 * probably from an H1 request transcoded to H2 via an
5664 * external layer, then received as H2 without authority.
5665 * So we have to look up the scheme from the HTX flags.
5666 * In such a case only http and https are possible, and
5667 * https is the default (sent by browsers).
5668 */
5669 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5670 scheme = ist("http");
5671 else
5672 scheme = ist("https");
5673 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005674
5675 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005676 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005677 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005678 goto realign_again;
5679 goto full;
5680 }
Willy Tarreau80739692018-10-05 11:35:57 +02005681
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005682 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005683 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005684 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005685 goto realign_again;
5686 goto full;
5687 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005688
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005689 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5690 * be sent as '/' or '*'.
5691 */
5692 if (unlikely(!uri.len)) {
5693 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5694 uri = ist("*");
5695 else
5696 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005697 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005698
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005699 if (!hpack_encode_path(&outbuf, uri)) {
5700 /* output full */
5701 if (b_space_wraps(mbuf))
5702 goto realign_again;
5703 goto full;
5704 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005705
5706 /* encode the pseudo-header protocol from rfc8441 if using
5707 * Extended CONNECT method.
5708 */
5709 if (unlikely(extended_connect)) {
5710 const struct ist protocol = ist(h2s->upgrade_protocol);
5711 if (isttest(protocol)) {
5712 if (!hpack_encode_header(&outbuf,
5713 ist(":protocol"),
5714 protocol)) {
5715 /* output full */
5716 if (b_space_wraps(mbuf))
5717 goto realign_again;
5718 goto full;
5719 }
5720 }
5721 }
Willy Tarreau80739692018-10-05 11:35:57 +02005722 }
5723
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005724 /* encode all headers, stop at empty name. Host is only sent if we
5725 * do not provide an authority.
5726 */
Willy Tarreau80739692018-10-05 11:35:57 +02005727 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005728 struct ist n = list[hdr].n;
5729 struct ist v = list[hdr].v;
5730
Willy Tarreau80739692018-10-05 11:35:57 +02005731 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005732 if (isteq(n, ist("connection")) ||
5733 (auth.len && isteq(n, ist("host"))) ||
5734 isteq(n, ist("proxy-connection")) ||
5735 isteq(n, ist("keep-alive")) ||
5736 isteq(n, ist("upgrade")) ||
5737 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005738 continue;
5739
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005740 if (isteq(n, ist("te"))) {
5741 /* "te" may only be sent with "trailers" if this value
5742 * is present, otherwise it must be deleted.
5743 */
5744 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005745 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005746 continue;
5747 v = ist("trailers");
5748 }
5749
Christopher Faulet86d144c2019-08-14 16:32:25 +02005750 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005751 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005752 continue;
5753
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005754 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005755 break; // end
5756
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005757 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005758 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005759 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005760 goto realign_again;
5761 goto full;
5762 }
5763 }
5764
Willy Tarreaucb985a42019-10-07 16:56:34 +02005765 /* update the frame's size */
5766 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5767
5768 if (outbuf.data > h2c->mfs + 9) {
5769 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5770 /* output full */
5771 if (b_space_wraps(mbuf))
5772 goto realign_again;
5773 goto full;
5774 }
5775 }
5776
Willy Tarreau3a537072021-06-17 08:40:04 +02005777 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5778
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005779 /* remove all header blocks including the EOH and compute the
5780 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005781 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005782 ret = 0;
5783 blk = htx_get_head_blk(htx);
5784 while (blk) {
5785 type = htx_get_blk_type(blk);
5786 ret += htx_get_blksz(blk);
5787 blk = htx_remove_blk(htx, blk);
5788 /* The removed block is the EOH */
5789 if (type == HTX_BLK_EOH)
5790 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005791 }
Willy Tarreau80739692018-10-05 11:35:57 +02005792
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005793 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005794 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005795 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005796 }
5797 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5798 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5799 * request)
5800 */
5801 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5802 es_now = 1;
5803 }
Willy Tarreau80739692018-10-05 11:35:57 +02005804
Willy Tarreau80739692018-10-05 11:35:57 +02005805 if (es_now)
5806 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5807
5808 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005809 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005810 h2s->flags |= H2_SF_HEADERS_SENT;
5811 h2s->st = H2_SS_OPEN;
5812
Willy Tarreau80739692018-10-05 11:35:57 +02005813 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005814 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 +02005815 // trim any possibly pending data (eg: inconsistent content-length)
5816 h2s->flags |= H2_SF_ES_SENT;
5817 h2s->st = H2_SS_HLOC;
5818 }
5819
Willy Tarreau80739692018-10-05 11:35:57 +02005820 end:
5821 return ret;
5822 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005823 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5824 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005825 h2c->flags |= H2_CF_MUX_MFULL;
5826 h2s->flags |= H2_SF_BLK_MROOM;
5827 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005828 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 +02005829 goto end;
5830 fail:
5831 /* unparsable HTX messages, too large ones to be produced in the local
5832 * list etc go here (unrecoverable errors).
5833 */
5834 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5835 ret = 0;
5836 goto end;
5837}
5838
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005839/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005840 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5841 * caller must check the stream's status to detect any error which might have
5842 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005843 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005844 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005845static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005846{
5847 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005848 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005849 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005850 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005851 size_t total = 0;
5852 int es_now = 0;
5853 int bsize; /* htx block size */
5854 int fsize; /* h2 frame size */
5855 struct htx_blk *blk;
5856 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005857 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005858
Willy Tarreau7838a792019-08-12 18:42:03 +02005859 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5860
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005861 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005862 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005863 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005864 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005865 goto end;
5866 }
5867
Willy Tarreau98de12a2018-12-12 07:03:00 +01005868 htx = htx_from_buf(buf);
5869
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005870 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005871
5872 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005873 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005874 goto end;
5875
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005876 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005877 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5878 /* The response HEADERS frame not received yet. Thus the tunnel
5879 * is not fully established yet. In this situation, we block
5880 * data sending.
5881 */
5882 h2s->flags |= H2_SF_BLK_MBUSY;
5883 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5884 goto end;
5885 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005886 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5887 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5888 * Thus the stream is closed with the CANCEL error. The error will be reported to
5889 * the upper layer as aserver abort. But at this stage there is nothing more we can
5890 * do. We just wait for the end of the response to be sure to not truncate it.
5891 */
5892 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5893 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5894 h2s->flags |= H2_SF_BLK_MBUSY;
5895 }
5896 else {
5897 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5898 h2s_error(h2s, H2_ERR_CANCEL);
5899 }
5900 goto end;
5901 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005902
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005903 blk = htx_get_head_blk(htx);
5904 type = htx_get_blk_type(blk);
5905 bsize = htx_get_blksz(blk);
5906 fsize = bsize;
5907 trunc_out = 0;
5908 if (type != HTX_BLK_DATA)
5909 goto end;
5910
Willy Tarreau9c218e72019-05-26 10:08:28 +02005911 mbuf = br_tail(h2c->mbuf);
5912 retry:
5913 if (!h2_get_buf(h2c, mbuf)) {
5914 h2c->flags |= H2_CF_MUX_MALLOC;
5915 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005916 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 +02005917 goto end;
5918 }
5919
Willy Tarreau98de12a2018-12-12 07:03:00 +01005920 /* Perform some optimizations to reduce the number of buffer copies.
5921 * First, if the mux's buffer is empty and the htx area contains
5922 * exactly one data block of the same size as the requested count, and
5923 * this count fits within the frame size, the stream's window size, and
5924 * the connection's window size, then it's possible to simply swap the
5925 * caller's buffer with the mux's output buffer and adjust offsets and
5926 * length to match the entire DATA HTX block in the middle. In this
5927 * case we perform a true zero-copy operation from end-to-end. This is
5928 * the situation that happens all the time with large files. Second, if
5929 * this is not possible, but the mux's output buffer is empty, we still
5930 * have an opportunity to avoid the copy to the intermediary buffer, by
5931 * making the intermediary buffer's area point to the output buffer's
5932 * area. In this case we want to skip the HTX header to make sure that
5933 * copies remain aligned and that this operation remains possible all
5934 * the time. This goes for headers, data blocks and any data extracted
5935 * from the HTX blocks.
5936 */
5937 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005938 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005939 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005940 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005941
Willy Tarreaubcc45952019-05-26 10:05:50 +02005942 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005943 /* Too bad there are data left there. We're willing to memcpy/memmove
5944 * up to 1/4 of the buffer, which means that it's OK to copy a large
5945 * frame into a buffer containing few data if it needs to be realigned,
5946 * and that it's also OK to copy few data without realigning. Otherwise
5947 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005948 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005949 if (fsize + 9 <= b_room(mbuf) &&
5950 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005951 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5952 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 +01005953 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005954 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005955
Willy Tarreau9c218e72019-05-26 10:08:28 +02005956 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5957 goto retry;
5958
Willy Tarreau98de12a2018-12-12 07:03:00 +01005959 h2c->flags |= H2_CF_MUX_MFULL;
5960 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005961 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 +01005962 goto end;
5963 }
5964
Christopher Faulet925abdf2021-04-27 22:51:07 +02005965 if (htx->flags & HTX_FL_EOM) {
5966 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5967 * message)
5968 */
5969 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5970 es_now = 1;
5971 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005972 /* map an H2 frame to the HTX block so that we can put the
5973 * frame header there.
5974 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005975 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5976 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005977
5978 /* prepend an H2 DATA frame header just before the DATA block */
5979 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5980 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005981 if (es_now)
5982 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005983 h2_set_frame_size(outbuf.area, fsize);
5984
5985 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005986 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005987 h2c->mws -= fsize;
5988
5989 /* and exchange with our old area */
5990 buf->area = old_area;
5991 buf->data = buf->head = 0;
5992 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005993 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005994
5995 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 +02005996 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005997 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005998
Willy Tarreau98de12a2018-12-12 07:03:00 +01005999 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006000 /* for DATA and EOM we'll have to emit a frame, even if empty */
6001
6002 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006003 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6004 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006005 break;
6006 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006007 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006008 }
6009
6010 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02006011 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6012 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006013 h2c->flags |= H2_CF_MUX_MFULL;
6014 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006015 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006016 goto end;
6017 }
6018
6019 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
6020 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
6021 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6022 outbuf.data = 9;
6023
6024 /* we have in <fsize> the exact number of bytes we need to copy from
6025 * the HTX buffer. We need to check this against the connection's and
6026 * the stream's send windows, and to ensure that this fits in the max
6027 * frame size and in the buffer's available space minus 9 bytes (for
6028 * the frame header). The connection's flow control is applied last so
6029 * that we can use a separate list of streams which are immediately
6030 * unblocked on window opening. Note: we don't implement padding.
6031 */
6032
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006033 if (!fsize)
6034 goto send_empty;
6035
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006036 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006037 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02006038 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02006039 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02006040 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02006041 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 +01006042 goto end;
6043 }
6044
Willy Tarreauee573762018-12-04 15:25:57 +01006045 if (fsize > count)
6046 fsize = count;
6047
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006048 if (fsize > h2s_mws(h2s))
6049 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006050
6051 if (h2c->mfs && fsize > h2c->mfs)
6052 fsize = h2c->mfs; // >0
6053
6054 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02006055 /* It doesn't fit at once. If it at least fits once split and
6056 * the amount of data to move is low, let's defragment the
6057 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006058 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006059 if (b_space_wraps(mbuf) &&
6060 (fsize + 9 <= b_room(mbuf)) &&
6061 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006062 goto realign_again;
6063 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006064 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006065
6066 if (fsize <= 0) {
6067 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02006068 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6069 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006070 h2c->flags |= H2_CF_MUX_MFULL;
6071 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006072 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006073 goto end;
6074 }
6075 }
6076
6077 if (h2c->mws <= 0) {
6078 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02006079 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 +01006080 goto end;
6081 }
6082
6083 if (fsize > h2c->mws)
6084 fsize = h2c->mws;
6085
6086 /* now let's copy this this into the output buffer */
6087 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006088 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006089 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006090 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006091
6092 send_empty:
6093 /* update the frame's size */
6094 h2_set_frame_size(outbuf.area, fsize);
6095
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006096 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006097 total += fsize;
6098 if (fsize == bsize) {
6099 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006100 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6101 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6102 * message)
6103 */
6104 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6105 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006106 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006107 }
6108 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006109 /* we've truncated this block */
6110 htx_cut_data_blk(htx, blk, fsize);
6111 }
6112
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006113 if (es_now)
6114 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6115
6116 /* commit the H2 response */
6117 b_add(mbuf, fsize + 9);
6118
Christopher Faulet925abdf2021-04-27 22:51:07 +02006119 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006120 if (es_now) {
6121 if (h2s->st == H2_SS_OPEN)
6122 h2s->st = H2_SS_HLOC;
6123 else
6124 h2s_close(h2s);
6125
6126 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006127 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 +01006128 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006129 else if (fsize) {
6130 if (fsize == bsize) {
6131 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6132 goto new_frame;
6133 }
6134 else if (trunc_out) {
6135 /* we've truncated this block */
6136 goto new_frame;
6137 }
6138 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006139
6140 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006141 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006142 return total;
6143}
6144
Christopher Faulet991febd2020-12-02 15:17:31 +01006145/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6146 * ES flag set for stream <h2s>. This function is called for response known to
6147 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006148 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006149 * which might have happened subsequently to a successful send. Returns the
6150 * number of data bytes consumed, or zero if nothing done.
6151 */
6152static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6153{
6154 struct h2c *h2c = h2s->h2c;
6155 struct htx *htx;
6156 int bsize; /* htx block size */
6157 int fsize; /* h2 frame size */
6158 struct htx_blk *blk;
6159 enum htx_blk_type type;
6160 size_t total = 0;
6161
6162 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6163
6164 if (h2c_mux_busy(h2c, h2s)) {
6165 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6166 h2s->flags |= H2_SF_BLK_MBUSY;
6167 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6168 goto end;
6169 }
6170
6171 htx = htx_from_buf(buf);
6172
6173 next_data:
6174 if (!count || htx_is_empty(htx))
6175 goto end;
6176 blk = htx_get_head_blk(htx);
6177 type = htx_get_blk_type(blk);
6178 bsize = htx_get_blksz(blk);
6179 fsize = bsize;
6180 if (type != HTX_BLK_DATA)
6181 goto end;
6182
6183 if (fsize > count)
6184 fsize = count;
6185
6186 if (fsize != bsize)
6187 goto skip_data;
6188
6189 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6190 goto skip_data;
6191
6192 /* Here, it is the last block and it is also the end of the message. So
6193 * we can emit an empty DATA frame with the ES flag set
6194 */
6195 if (h2_send_empty_data_es(h2s) <= 0)
6196 goto end;
6197
6198 if (h2s->st == H2_SS_OPEN)
6199 h2s->st = H2_SS_HLOC;
6200 else
6201 h2s_close(h2s);
6202
6203 skip_data:
6204 /* consume incoming HTX block */
6205 total += fsize;
6206 if (fsize == bsize) {
6207 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6208 htx_remove_blk(htx, blk);
6209 goto next_data;
6210 }
6211 else {
6212 /* we've truncated this block */
6213 htx_cut_data_blk(htx, blk, fsize);
6214 }
6215
6216 end:
6217 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6218 return total;
6219}
6220
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006221/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6222 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6223 * processed. The caller must check the stream's status to detect any error
6224 * which might have happened subsequently to a successful send. The htx blocks
6225 * are automatically removed from the message. The htx message is assumed to be
6226 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006227 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6228 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006229 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006230static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006231{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006232 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006233 struct h2c *h2c = h2s->h2c;
6234 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006235 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006236 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006237 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006238 int ret = 0;
6239 int hdr;
6240 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006241
Willy Tarreau7838a792019-08-12 18:42:03 +02006242 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6243
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006244 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006245 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006246 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006247 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006248 goto end;
6249 }
6250
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006251 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006252 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006253 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006254 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006255
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006256 if (type == HTX_BLK_UNUSED)
6257 continue;
6258
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006259 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006260 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006261 if (type == HTX_BLK_TLR) {
6262 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6263 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6264 goto fail;
6265 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006266
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006267 list[hdr].n = htx_get_blk_name(htx, blk);
6268 list[hdr].v = htx_get_blk_value(htx, blk);
6269 hdr++;
6270 }
6271 else {
6272 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 +01006273 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006274 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006275 }
6276
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006277 /* marker for end of trailers */
6278 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006279
Willy Tarreau9c218e72019-05-26 10:08:28 +02006280 mbuf = br_tail(h2c->mbuf);
6281 retry:
6282 if (!h2_get_buf(h2c, mbuf)) {
6283 h2c->flags |= H2_CF_MUX_MALLOC;
6284 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006285 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 +02006286 goto end;
6287 }
6288
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006289 chunk_reset(&outbuf);
6290
6291 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006292 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6293 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006294 break;
6295 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006296 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006297 }
6298
6299 if (outbuf.size < 9)
6300 goto full;
6301
6302 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6303 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6304 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6305 outbuf.data = 9;
6306
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006307 /* encode all headers */
6308 for (idx = 0; idx < hdr; idx++) {
6309 /* these ones do not exist in H2 or must not appear in
6310 * trailers and must be dropped.
6311 */
6312 if (isteq(list[idx].n, ist("host")) ||
6313 isteq(list[idx].n, ist("content-length")) ||
6314 isteq(list[idx].n, ist("connection")) ||
6315 isteq(list[idx].n, ist("proxy-connection")) ||
6316 isteq(list[idx].n, ist("keep-alive")) ||
6317 isteq(list[idx].n, ist("upgrade")) ||
6318 isteq(list[idx].n, ist("te")) ||
6319 isteq(list[idx].n, ist("transfer-encoding")))
6320 continue;
6321
Christopher Faulet86d144c2019-08-14 16:32:25 +02006322 /* Skip all pseudo-headers */
6323 if (*(list[idx].n.ptr) == ':')
6324 continue;
6325
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006326 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6327 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006328 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006329 goto realign_again;
6330 goto full;
6331 }
6332 }
6333
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006334 if (outbuf.data == 9) {
6335 /* here we have a problem, we have nothing to emit (either we
6336 * received an empty trailers block followed or we removed its
6337 * contents above). Because of this we can't send a HEADERS
6338 * frame, so we have to cheat and instead send an empty DATA
6339 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006340 */
6341 outbuf.area[3] = H2_FT_DATA;
6342 outbuf.area[4] = H2_F_DATA_END_STREAM;
6343 }
6344
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006345 /* update the frame's size */
6346 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6347
Willy Tarreau572d9f52019-10-11 16:58:37 +02006348 if (outbuf.data > h2c->mfs + 9) {
6349 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6350 /* output full */
6351 if (b_space_wraps(mbuf))
6352 goto realign_again;
6353 goto full;
6354 }
6355 }
6356
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006357 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006358 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 +02006359 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006360 h2s->flags |= H2_SF_ES_SENT;
6361
6362 if (h2s->st == H2_SS_OPEN)
6363 h2s->st = H2_SS_HLOC;
6364 else
6365 h2s_close(h2s);
6366
6367 /* OK we could properly deliver the response */
6368 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006369 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006370 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006371 blk = htx_get_head_blk(htx);
6372 while (blk) {
6373 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006374 ret += htx_get_blksz(blk);
6375 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006376 /* The removed block is the EOT */
6377 if (type == HTX_BLK_EOT)
6378 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006379 }
6380
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006381 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006382 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006383 return ret;
6384 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006385 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6386 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006387 h2c->flags |= H2_CF_MUX_MFULL;
6388 h2s->flags |= H2_SF_BLK_MROOM;
6389 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006390 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 +01006391 goto end;
6392 fail:
6393 /* unparsable HTX messages, too large ones to be produced in the local
6394 * list etc go here (unrecoverable errors).
6395 */
6396 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6397 ret = 0;
6398 goto end;
6399}
6400
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006401/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6402 * event subscriber <es> is not allowed to change from a previous call as long
6403 * as at least one event is still subscribed. The <event_type> must only be a
6404 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006405 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006406static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006407{
Willy Tarreau36c22322022-05-27 10:41:24 +02006408 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006409 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006410
Willy Tarreau7838a792019-08-12 18:42:03 +02006411 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006412
6413 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006414 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006415
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006416 es->events |= event_type;
6417 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006418
6419 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006420 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006421
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006422 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006423 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006424 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006425 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006426 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006427 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006428 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006429 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006430 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006431 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006432 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006433 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006434}
6435
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006436/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6437 * The <es> pointer is not allowed to differ from the one passed to the
6438 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006439 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006440static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006441{
Willy Tarreau36c22322022-05-27 10:41:24 +02006442 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006443
Willy Tarreau7838a792019-08-12 18:42:03 +02006444 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006445
6446 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006447 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006448
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006449 es->events &= ~event_type;
6450 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006451 h2s->subs = NULL;
6452
6453 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006454 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006455
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006456 if (event_type & SUB_RETRY_SEND) {
Frédéric Lécaille67fda162022-06-30 12:01:54 +02006457 TRACE_DEVEL("unsubscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006458 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006459 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6460 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006461 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006462
Willy Tarreau7838a792019-08-12 18:42:03 +02006463 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006464 return 0;
6465}
6466
6467
Christopher Faulet564e39c2021-09-21 15:50:55 +02006468/* Called from the upper layer, to receive data
6469 *
6470 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6471 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6472 * means the caller wants to flush input data (from the mux buffer and the
6473 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6474 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6475 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6476 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6477 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6478 * copy as much data as possible.
6479 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006480static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006481{
Willy Tarreau36c22322022-05-27 10:41:24 +02006482 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006483 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006484 struct htx *h2s_htx = NULL;
6485 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006486 size_t ret = 0;
6487
Willy Tarreau7838a792019-08-12 18:42:03 +02006488 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6489
Olivier Houchard511efea2018-08-16 15:30:32 +02006490 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006491 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006492 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006493 /* Here htx_to_buf() will set buffer data to 0 because
6494 * the HTX is empty.
6495 */
6496 htx_to_buf(h2s_htx, &h2s->rxbuf);
6497 goto end;
6498 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006499
Christopher Faulet9b79a102019-07-15 11:22:56 +02006500 ret = h2s_htx->data;
6501 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006502
Christopher Faulet9b79a102019-07-15 11:22:56 +02006503 /* <buf> is empty and the message is small enough, swap the
6504 * buffers. */
6505 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006506 htx_to_buf(buf_htx, buf);
6507 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006508 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6509 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006510 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006511
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006512 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006513
6514 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6515 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6516 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006517 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006518 }
Christopher Faulet810df062020-07-22 16:20:34 +02006519 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006520 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006521
Christopher Faulet9b79a102019-07-15 11:22:56 +02006522 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6523 htx_to_buf(buf_htx, buf);
6524 htx_to_buf(h2s_htx, &h2s->rxbuf);
6525 ret -= h2s_htx->data;
6526
Christopher Faulet37070b22019-02-14 15:12:14 +01006527 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006528 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006529 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006530 else {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006531 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006532 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006533 se_fl_set(h2s->sd, SE_FL_EOI);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006534 /* Add EOS flag for tunnel */
6535 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006536 se_fl_set(h2s->sd, SE_FL_EOS);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006537 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006538 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006539 se_fl_set(h2s->sd, SE_FL_EOS);
6540 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
6541 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard638b7992018-08-16 15:41:52 +02006542 if (b_size(&h2s->rxbuf)) {
6543 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006544 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006545 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006546 }
6547
Willy Tarreau082f5592018-11-25 08:03:32 +01006548 if (ret && h2c->dsi == h2s->id) {
6549 /* demux is blocking on this stream's buffer */
6550 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006551 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006552 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006553
Willy Tarreau7838a792019-08-12 18:42:03 +02006554 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006555 return ret;
6556}
6557
Olivier Houchardd846c262018-10-19 17:24:29 +02006558
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006559/* Called from the upper layer, to send data from buffer <buf> for no more than
6560 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006561 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006562 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006563static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006564{
Willy Tarreau36c22322022-05-27 10:41:24 +02006565 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006566 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006567 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006568 struct htx *htx;
6569 struct htx_blk *blk;
6570 enum htx_blk_type btype;
6571 uint32_t bsize;
6572 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006573
Willy Tarreau7838a792019-08-12 18:42:03 +02006574 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6575
Olivier Houchardd360ac62019-03-22 17:37:16 +01006576 /* If we were not just woken because we wanted to send but couldn't,
6577 * and there's somebody else that is waiting to send, do nothing,
6578 * we will subscribe later and be put at the end of the list
6579 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006580 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006581 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6582 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 +01006583 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006584 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006585 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006586
Willy Tarreau7838a792019-08-12 18:42:03 +02006587 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6588 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 +02006589 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006590 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006591
Willy Tarreaucab22952019-10-31 15:48:18 +01006592 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006593 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006594 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);
6595 return 0;
6596 }
6597
Christopher Faulet9b79a102019-07-15 11:22:56 +02006598 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006599
Willy Tarreau0bad0432018-06-14 16:54:01 +02006600 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006601 h2s->flags |= H2_SF_OUTGOING_DATA;
6602
Willy Tarreau48770452022-08-18 16:03:51 +02006603 if (htx->extra)
6604 h2s->flags |= H2_SF_MORE_HTX_DATA;
6605 else
6606 h2s->flags &= ~H2_SF_MORE_HTX_DATA;
6607
Willy Tarreau751f2d02018-10-05 09:35:00 +02006608 if (h2s->id == 0) {
6609 int32_t id = h2c_get_next_sid(h2s->h2c);
6610
6611 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006612 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006613 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 +02006614 return 0;
6615 }
6616
6617 eb32_delete(&h2s->by_id);
6618 h2s->by_id.key = h2s->id = id;
6619 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006620 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006621 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6622 }
6623
Christopher Faulet9b79a102019-07-15 11:22:56 +02006624 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6625 count && !htx_is_empty(htx)) {
6626 idx = htx_get_head(htx);
6627 blk = htx_get_blk(htx, idx);
6628 btype = htx_get_blk_type(blk);
6629 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006630
Christopher Faulet9b79a102019-07-15 11:22:56 +02006631 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006632 case HTX_BLK_REQ_SL:
6633 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006634 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006635 if (ret > 0) {
6636 total += ret;
6637 count -= ret;
6638 if (ret < bsize)
6639 goto done;
6640 }
6641 break;
6642
Willy Tarreau115e83b2018-12-01 19:17:53 +01006643 case HTX_BLK_RES_SL:
6644 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006645 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006646 if (ret > 0) {
6647 total += ret;
6648 count -= ret;
6649 if (ret < bsize)
6650 goto done;
6651 }
6652 break;
6653
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006654 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006655 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006656 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6657 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6658 ret = h2s_skip_data(h2s, buf, count);
6659 else
6660 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006661 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006662 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006663 total += ret;
6664 count -= ret;
6665 if (ret < bsize)
6666 goto done;
6667 }
6668 break;
6669
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006670 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006671 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006672 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006673 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006674 if (ret > 0) {
6675 total += ret;
6676 count -= ret;
6677 if (ret < bsize)
6678 goto done;
6679 }
6680 break;
6681
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006682 default:
6683 htx_remove_blk(htx, blk);
6684 total += bsize;
6685 count -= bsize;
6686 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006687 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006688 }
6689
Christopher Faulet9b79a102019-07-15 11:22:56 +02006690 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006691 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006692 /* trim any possibly pending data after we close (extra CR-LF,
6693 * unprocessed trailers, abnormal extra data, ...)
6694 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006695 total += count;
6696 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006697 }
6698
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006699 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006700 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006701 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 Tarreau95acc8b2022-05-27 16:14:10 +02006702 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006703 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006704 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006705 }
6706
Christopher Faulet9b79a102019-07-15 11:22:56 +02006707 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006708
Olivier Houchard7505f942018-08-21 18:10:44 +02006709 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006710 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006711 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 +02006712 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006713 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006714
Olivier Houchard7505f942018-08-21 18:10:44 +02006715 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006716 /* If we're waiting for flow control, and we got a shutr on the
6717 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006718 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006719 */
6720 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6721 !b_data(&h2s->h2c->dbuf) &&
6722 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006723 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);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006724 if (se_fl_test(h2s->sd, SE_FL_EOS))
6725 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006726 else
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006727 se_fl_set(h2s->sd, SE_FL_ERR_PENDING);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006728 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006729
Willy Tarreau5723f292020-01-10 15:16:57 +01006730 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6731 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006732 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006733 LIST_DEL_INIT(&h2s->list);
6734 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006735
Willy Tarreau7838a792019-08-12 18:42:03 +02006736 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006737 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006738}
6739
Willy Tarreau90bffa22022-09-01 19:06:44 +02006740/* appends some info about stream <h2s> to buffer <msg>, or does nothing if
6741 * <h2s> is NULL. Returns non-zero if the stream is considered suspicious.
6742 */
6743static int h2_dump_h2s_info(struct buffer *msg, const struct h2s *h2s)
6744{
6745 int ret = 0;
6746
6747 if (!h2s)
6748 return ret;
6749
6750 chunk_appendf(msg, " h2s.id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u .sc=%p",
6751 h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
6752 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6753 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6754 h2s_sc(h2s));
6755 if (h2s_sc(h2s))
6756 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6757 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
6758
6759 chunk_appendf(msg, " sd=%p", h2s->sd);
6760 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
6761
6762 chunk_appendf(msg, " .subs=%p", h2s->subs);
6763 if (h2s->subs) {
6764 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6765 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
6766 h2s->subs->tasklet->calls,
6767 h2s->subs->tasklet->context);
6768 if (h2s->subs->tasklet->calls >= 1000000)
6769 ret = 1;
6770 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6771 chunk_appendf(msg, ")");
6772 }
6773 return ret;
6774}
6775
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006776/* appends some info about connection <h2c> to buffer <msg>, or does nothing if
6777 * <h2c> is NULL. Returns non-zero if the connection is considered suspicious.
6778 */
6779static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006780{
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006781 const struct buffer *hmbuf, *tmbuf;
6782 const struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006783 struct eb32_node *node;
6784 int fctl_cnt = 0;
6785 int send_cnt = 0;
6786 int tree_cnt = 0;
6787 int orph_cnt = 0;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006788 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006789
6790 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006791 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006792
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006793 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006794 fctl_cnt++;
6795
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006796 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006797 send_cnt++;
6798
6799 node = eb32_first(&h2c->streams_by_id);
6800 while (node) {
6801 h2s = container_of(node, struct h2s, by_id);
6802 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006803 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006804 orph_cnt++;
6805 node = eb32_next(node);
6806 }
6807
Willy Tarreau60f62682019-05-26 11:32:27 +02006808 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006809 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006810 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006811 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006812 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6813 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006814 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau36c22322022-05-27 10:41:24 +02006815 h2c->nb_streams, h2c->nb_sc, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006816 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006817 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6818 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6819 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006820 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6821 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6822 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006823 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6824 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006825
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006826 return ret;
6827}
6828
6829/* for debugging with CLI's "show fd" command */
6830static int h2_show_fd(struct buffer *msg, struct connection *conn)
6831{
6832 struct h2c *h2c = conn->ctx;
6833 const struct h2s *h2s;
6834 struct eb32_node *node;
6835 int ret = 0;
6836
6837 if (!h2c)
6838 return ret;
6839
6840 ret |= h2_dump_h2c_info(msg, h2c);
6841
6842 node = eb32_last(&h2c->streams_by_id);
6843 if (node) {
6844 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006845 chunk_appendf(msg, " last_h2s=%p", h2s);
6846 ret |= h2_dump_h2s_info(msg, h2s);
Willy Tarreau987c0632018-12-18 10:32:05 +01006847 }
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006848
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006849 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006850}
Willy Tarreau62f52692017-10-08 23:01:42 +02006851
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006852/* Migrate the the connection to the current thread.
6853 * Return 0 if successful, non-zero otherwise.
6854 * Expected to be called with the old thread lock held.
6855 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006856static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006857{
6858 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006859 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006860
6861 if (fd_takeover(conn->handle.fd, conn) != 0)
6862 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006863
6864 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6865 /* We failed to takeover the xprt, even if the connection may
6866 * still be valid, flag it as error'd, as we have already
6867 * taken over the fd, and wake the tasklet, so that it will
6868 * destroy it.
6869 */
6870 conn->flags |= CO_FL_ERROR;
6871 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6872 return -1;
6873 }
6874
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006875 if (h2c->wait_event.events)
6876 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6877 h2c->wait_event.events, &h2c->wait_event);
6878 /* To let the tasklet know it should free itself, and do nothing else,
6879 * set its context to NULL.
6880 */
6881 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006882 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006883
6884 task = h2c->task;
6885 if (task) {
6886 task->context = NULL;
6887 h2c->task = NULL;
6888 __ha_barrier_store();
6889 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006890
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006891 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006892 if (!h2c->task) {
6893 h2_release(h2c);
6894 return -1;
6895 }
6896 h2c->task->process = h2_timeout_task;
6897 h2c->task->context = h2c;
6898 }
6899 h2c->wait_event.tasklet = tasklet_new();
6900 if (!h2c->wait_event.tasklet) {
6901 h2_release(h2c);
6902 return -1;
6903 }
6904 h2c->wait_event.tasklet->process = h2_io_cb;
6905 h2c->wait_event.tasklet->context = h2c;
6906 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6907 SUB_RETRY_RECV, &h2c->wait_event);
6908
6909 return 0;
6910}
6911
Willy Tarreau62f52692017-10-08 23:01:42 +02006912/*******************************************************/
6913/* functions below are dedicated to the config parsers */
6914/*******************************************************/
6915
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006916/* config parser for global "tune.h2.header-table-size" */
6917static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006918 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006919 char **err)
6920{
6921 if (too_many_args(1, args, err, NULL))
6922 return -1;
6923
6924 h2_settings_header_table_size = atoi(args[1]);
6925 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6926 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6927 return -1;
6928 }
6929 return 0;
6930}
Willy Tarreau62f52692017-10-08 23:01:42 +02006931
Willy Tarreaue6baec02017-07-27 11:45:11 +02006932/* config parser for global "tune.h2.initial-window-size" */
6933static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006934 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006935 char **err)
6936{
6937 if (too_many_args(1, args, err, NULL))
6938 return -1;
6939
6940 h2_settings_initial_window_size = atoi(args[1]);
6941 if (h2_settings_initial_window_size < 0) {
6942 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6943 return -1;
6944 }
6945 return 0;
6946}
6947
Willy Tarreau5242ef82017-07-27 11:47:28 +02006948/* config parser for global "tune.h2.max-concurrent-streams" */
6949static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006950 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006951 char **err)
6952{
6953 if (too_many_args(1, args, err, NULL))
6954 return -1;
6955
6956 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006957 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006958 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6959 return -1;
6960 }
6961 return 0;
6962}
6963
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006964/* config parser for global "tune.h2.max-frame-size" */
6965static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006966 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006967 char **err)
6968{
6969 if (too_many_args(1, args, err, NULL))
6970 return -1;
6971
6972 h2_settings_max_frame_size = atoi(args[1]);
6973 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6974 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6975 return -1;
6976 }
6977 return 0;
6978}
6979
Willy Tarreau62f52692017-10-08 23:01:42 +02006980
6981/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006982/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006983/***************************************/
6984
6985/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006986static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006987 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006988 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006989 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006990 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006991 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006992 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006993 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02006994 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02006995 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006996 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006997 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006998 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006999 .shutr = h2_shutr,
7000 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02007001 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02007002 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01007003 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02007004 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02007005 .name = "H2",
7006};
7007
Christopher Faulet32f61c02018-04-10 14:33:41 +02007008static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02007009 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02007010
Willy Tarreau0108d902018-11-25 19:14:37 +01007011INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
7012
Willy Tarreau62f52692017-10-08 23:01:42 +02007013/* config keyword parsers */
7014static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02007015 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02007016 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02007017 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01007018 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02007019 { 0, NULL, NULL }
7020}};
7021
Willy Tarreau0108d902018-11-25 19:14:37 +01007022INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02007023
7024/* initialize internal structs after the config is parsed.
7025 * Returns zero on success, non-zero on error.
7026 */
7027static int init_h2()
7028{
7029 pool_head_hpack_tbl = create_pool("hpack_tbl",
7030 h2_settings_header_table_size,
7031 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01007032 if (!pool_head_hpack_tbl) {
7033 ha_alert("failed to allocate hpack_tbl memory pool\n");
7034 return (ERR_ALERT | ERR_FATAL);
7035 }
7036 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02007037}
7038
7039REGISTER_POST_CHECK(init_h2);