blob: 624a1bd7c42cb059bec488a056e57f6dc8902267 [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 Faulet1329f2a2021-12-16 17:32:56 +010018#include <haproxy/conn_stream.h>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020019#include <haproxy/dynbuf.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020020#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020021#include <haproxy/hpack-dec.h>
22#include <haproxy/hpack-enc.h>
23#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020024#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020025#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020027#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020028#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020029#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010030#include <haproxy/stats.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 Tarreauf2101912018-07-19 10:11:38 +020061#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
62#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 Tarreau2e5b60e2017-09-25 11:49:03 +020066
Willy Tarreau081d4722017-05-16 21:51:05 +020067/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020068#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
69#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
70#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 +020071#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010072#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
73#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
74#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020075
Amaury Denoyelle0df04362021-10-18 09:43:29 +020076#define H2_CF_RCVD_RFC8441 0x00100000 // settings from RFC8441 has been received indicating support for Extended CONNECT
Willy Tarreau39a0a1e2022-01-13 16:00:12 +010077#define H2_CF_SHTS_UPDATED 0x00200000 // SETTINGS_HEADER_TABLE_SIZE updated
78#define H2_CF_DTSU_EMITTED 0x00400000 // HPACK Dynamic Table Size Update opcode emitted
Amaury Denoyelle0df04362021-10-18 09:43:29 +020079
Willy Tarreau5ab6b572017-09-22 08:05:00 +020080/* H2 connection state, in h2c->st0 */
81enum h2_cs {
82 H2_CS_PREFACE, // init done, waiting for connection preface
83 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
84 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
85 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010086 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
87 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020088 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
89 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
90 H2_CS_ENTRIES // must be last
91} __attribute__((packed));
92
Willy Tarreau51330962019-05-26 09:38:07 +020093
Willy Tarreau9c218e72019-05-26 10:08:28 +020094/* 32 buffers: one for the ring's root, rest for the mbuf itself */
95#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020096
Willy Tarreau5ab6b572017-09-22 08:05:00 +020097/* H2 connection descriptor */
98struct h2c {
99 struct connection *conn;
100
101 enum h2_cs st0; /* mux state */
102 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
103
104 /* 16 bit hole here */
105 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100106 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200107 int32_t max_id; /* highest ID known on this connection, <0 before preface */
108 uint32_t rcvd_c; /* newly received data to ACK for the connection */
109 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
110
111 /* states for the demux direction */
112 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200113 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200114
115 int32_t dsi; /* demux stream ID (<0 = idle) */
116 int32_t dfl; /* demux frame length (if dsi >= 0) */
117 int8_t dft; /* demux frame type (if dsi >= 0) */
118 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100119 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
120 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200121 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
122
123 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200124 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200125 int32_t msi; /* mux stream ID (<0 = idle) */
126 int32_t mfl; /* mux frame length (if dsi >= 0) */
127 int8_t mft; /* mux frame type (if dsi >= 0) */
128 int8_t mff; /* mux frame flags (if dsi >= 0) */
129 /* 16 bit hole here */
130 int32_t miw; /* mux initial window size for all new streams */
131 int32_t mws; /* mux window size. Can be negative. */
132 int32_t mfs; /* mux's max frame size */
133
Willy Tarreauea392822017-10-31 10:02:25 +0100134 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100135 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau15a47332022-03-18 15:57:34 +0100136 int idle_start; /* date of the last time the connection went idle */
137 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +0100138 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200139 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100140 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100141 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200142 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100143 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100144 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200145 struct eb_root streams_by_id; /* all active streams by their ID */
146 struct list send_list; /* list of blocked streams requesting to send */
147 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200148 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100149 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200150 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200151};
152
Willy Tarreau18312642017-10-11 07:57:07 +0200153/* H2 stream state, in h2s->st */
154enum h2_ss {
155 H2_SS_IDLE = 0, // idle
156 H2_SS_RLOC, // reserved(local)
157 H2_SS_RREM, // reserved(remote)
158 H2_SS_OPEN, // open
159 H2_SS_HREM, // half-closed(remote)
160 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200161 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200162 H2_SS_CLOSED, // closed
163 H2_SS_ENTRIES // must be last
164} __attribute__((packed));
165
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200166#define H2_SS_MASK(state) (1UL << (state))
167#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
168#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
169#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
170#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
171#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
172#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
173#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
174#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200175
Willy Tarreau18312642017-10-11 07:57:07 +0200176/* HTTP/2 stream flags (32 bit), in h2s->flags */
177#define H2_SF_NONE 0x00000000
178#define H2_SF_ES_RCVD 0x00000001
179#define H2_SF_ES_SENT 0x00000002
180
181#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
182#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
183
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200184/* stream flags indicating the reason the stream is blocked */
185#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200186#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
187#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
188#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200189#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
190
Willy Tarreau454f9052017-10-26 19:40:35 +0200191/* stream flags indicating how data is supposed to be sent */
192#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100193#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100194#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
195
Willy Tarreau454f9052017-10-26 19:40:35 +0200196
Willy Tarreaud9464162020-01-10 18:25:07 +0100197#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100198#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100199#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100200
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100201#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
202
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200203#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
204#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
205
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100206#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100207#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100208
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100209#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200210
Willy Tarreau18312642017-10-11 07:57:07 +0200211/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100212 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200213 */
214struct h2s {
215 struct conn_stream *cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100216 struct cs_endpoint *endp;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100217 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200218 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200219 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200220 int32_t id; /* stream ID */
221 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200222 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200223 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
224 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200225 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100226 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200227 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100228 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200229 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100230 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
231 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100232
233 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200234};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200235
Willy Tarreauc6405142017-09-21 20:23:50 +0200236/* descriptor for an h2 frame header */
237struct h2_fh {
238 uint32_t len; /* length, host order, 24 bits */
239 uint32_t sid; /* stream id, host order, 31 bits */
240 uint8_t ft; /* frame type */
241 uint8_t ff; /* frame flags */
242};
243
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200245static void h2_trace(enum trace_level level, uint64_t mask, \
246 const struct trace_source *src,
247 const struct ist where, const struct ist func,
248 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200249
250/* The event representation is split like this :
251 * strm - application layer
252 * h2s - internal H2 stream
253 * h2c - internal H2 connection
254 * conn - external connection
255 *
256 */
257static const struct trace_event h2_trace_events[] = {
258#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200260#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200272#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200278#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .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 +0200280#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200286#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200298#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200300#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200304#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .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 +0200306#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200343 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200344#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200345 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200346#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200347 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200348#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200349 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200350#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200351 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200352#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200353 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200354#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200355 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200356#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200357 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200358#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200359 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200360#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200361 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200362 { }
363};
364
365static const struct name_desc h2_trace_lockon_args[4] = {
366 /* arg1 */ { /* already used by the connection */ },
367 /* arg2 */ { .name="h2s", .desc="H2 stream" },
368 /* arg3 */ { },
369 /* arg4 */ { }
370};
371
372static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200373#define H2_VERB_CLEAN 1
374 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
375#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200376 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200377#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200378 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200379#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200380 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200381#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200382 { .name="complete", .desc="add full data dump when available" },
383 { /* end */ }
384};
385
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200386static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200387 .name = IST("h2"),
388 .desc = "HTTP/2 multiplexer",
389 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200390 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200391 .known_events = h2_trace_events,
392 .lockon_args = h2_trace_lockon_args,
393 .decoding = h2_trace_decoding,
394 .report_events = ~0, // report everything by default
395};
396
397#define TRACE_SOURCE &trace_h2
398INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
399
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100400/* h2 stats module */
401enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100402 H2_ST_HEADERS_RCVD,
403 H2_ST_DATA_RCVD,
404 H2_ST_SETTINGS_RCVD,
405 H2_ST_RST_STREAM_RCVD,
406 H2_ST_GOAWAY_RCVD,
407
Amaury Denoyellea8879232020-10-27 17:16:03 +0100408 H2_ST_CONN_PROTO_ERR,
409 H2_ST_STRM_PROTO_ERR,
410 H2_ST_RST_STREAM_RESP,
411 H2_ST_GOAWAY_RESP,
412
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100413 H2_ST_OPEN_CONN,
414 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100415 H2_ST_TOTAL_CONN,
416 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100417
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100418 H2_STATS_COUNT /* must be the last member of the enum */
419};
420
421static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100422 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100423 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100424 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100425 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100426 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100427 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100428 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100429 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100430 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100431 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100432
433 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
434 .desc = "Total number of connection protocol errors" },
435 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
436 .desc = "Total number of stream protocol errors" },
437 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100438 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100439 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100440 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100441
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100442 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
443 .desc = "Count of currently open connections" },
444 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
445 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100446 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100447 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100448 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100449 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100450};
451
452static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100453 long long headers_rcvd; /* total number of HEADERS frame received */
454 long long data_rcvd; /* total number of DATA frame received */
455 long long settings_rcvd; /* total number of SETTINGS frame received */
456 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
457 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100458
459 long long conn_proto_err; /* total number of protocol errors detected */
460 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100461 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
462 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100463
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100464 long long open_conns; /* count of currently open connections */
465 long long open_streams; /* count of currently open streams */
466 long long total_conns; /* total number of connections */
467 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100468} h2_counters;
469
470static void h2_fill_stats(void *data, struct field *stats)
471{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100472 struct h2_counters *counters = data;
473
474 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
475 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
476 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
477 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
478 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100479
480 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
481 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
482 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
483 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100484
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100485 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
486 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
487 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
488 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100489}
490
491static struct stats_module h2_stats_module = {
492 .name = "h2",
493 .fill_stats = h2_fill_stats,
494 .stats = h2_stats,
495 .stats_count = H2_STATS_COUNT,
496 .counters = &h2_counters,
497 .counters_size = sizeof(h2_counters),
498 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
499 .clearable = 1,
500};
501
502INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
503
Willy Tarreau8ceae722018-11-26 11:58:30 +0100504/* the h2c connection pool */
505DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
506
507/* the h2s stream pool */
508DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
509
Willy Tarreaudc572362018-12-12 08:08:05 +0100510/* The default connection window size is 65535, it may only be enlarged using
511 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
512 * we'll pretend we already received the difference between the two to send
513 * an equivalent window update to enlarge it to 2G-1.
514 */
515#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
516
Willy Tarreau455d5682019-05-24 19:42:18 +0200517/* maximum amount of data we're OK with re-aligning for buffer optimizations */
518#define MAX_DATA_REALIGN 1024
519
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200520/* a few settings from the global section */
521static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200522static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100523static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100524static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200525
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200526/* a dummy closed endpoint */
527static const struct cs_endpoint closed_ep = {
528 . cs = NULL,
529 .flags = CS_EP_DETACHED,
530};
531
Willy Tarreau2a856182017-05-16 15:20:39 +0200532/* a dmumy closed stream */
533static const struct h2s *h2_closed_stream = &(const struct h2s){
534 .cs = NULL,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200535 .endp = (struct cs_endpoint *)&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){
545 .cs = NULL,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200546 .endp = (struct cs_endpoint *)&closed_ep,
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100547 .h2c = NULL,
548 .st = H2_SS_CLOSED,
549 .errcode = H2_ERR_PROTOCOL_ERROR,
550 .flags = 0,
551 .id = 0,
552};
553
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100554/* a dmumy closed stream returning a REFUSED_STREAM error */
555static const struct h2s *h2_refused_stream = &(const struct h2s){
556 .cs = NULL,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200557 .endp = (struct cs_endpoint *)&closed_ep,
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100558 .h2c = NULL,
559 .st = H2_SS_CLOSED,
560 .errcode = H2_ERR_REFUSED_STREAM,
561 .flags = 0,
562 .id = 0,
563};
564
Willy Tarreau2a856182017-05-16 15:20:39 +0200565/* and a dummy idle stream for use with any unannounced stream */
566static const struct h2s *h2_idle_stream = &(const struct h2s){
567 .cs = NULL,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200568 .endp = (struct cs_endpoint *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200569 .h2c = NULL,
570 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100571 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200572 .id = 0,
573};
574
Willy Tarreau144f84a2021-03-02 16:09:26 +0100575struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200576static int h2_send(struct h2c *h2c);
577static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200578static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100579/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100580struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100581static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100582static 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 +0100583static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100584struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100585static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100586static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200587
Willy Tarreauab2ec452019-08-30 07:07:08 +0200588/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
589static inline const char *h2c_st_to_str(enum h2_cs st)
590{
591 switch (st) {
592 case H2_CS_PREFACE: return "PRF";
593 case H2_CS_SETTINGS1: return "STG";
594 case H2_CS_FRAME_H: return "FRH";
595 case H2_CS_FRAME_P: return "FRP";
596 case H2_CS_FRAME_A: return "FRA";
597 case H2_CS_FRAME_E: return "FRE";
598 case H2_CS_ERROR: return "ERR";
599 case H2_CS_ERROR2: return "ER2";
600 default: return "???";
601 }
602}
603
604/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
605static inline const char *h2s_st_to_str(enum h2_ss st)
606{
607 switch (st) {
608 case H2_SS_IDLE: return "IDL"; // idle
609 case H2_SS_RLOC: return "RSL"; // reserved local
610 case H2_SS_RREM: return "RSR"; // reserved remote
611 case H2_SS_OPEN: return "OPN"; // open
612 case H2_SS_HREM: return "HCR"; // half-closed remote
613 case H2_SS_HLOC: return "HCL"; // half-closed local
614 case H2_SS_ERROR : return "ERR"; // error
615 case H2_SS_CLOSED: return "CLO"; // closed
616 default: return "???";
617 }
618}
619
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200620/* the H2 traces always expect that arg1, if non-null, is of type connection
621 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
622 * that arg3, if non-null, is either of type htx for tx headers, or of type
623 * buffer for everything else.
624 */
625static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
626 const struct ist where, const struct ist func,
627 const void *a1, const void *a2, const void *a3, const void *a4)
628{
629 const struct connection *conn = a1;
630 const struct h2c *h2c = conn ? conn->ctx : NULL;
631 const struct h2s *h2s = a2;
632 const struct buffer *buf = a3;
633 const struct htx *htx;
634 int pos;
635
636 if (!h2c) // nothing to add
637 return;
638
Willy Tarreau17104d42019-08-30 07:12:55 +0200639 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200640 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
641
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200642 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
643 conn_append_debug_info(&trace_buf, conn, " : ");
644
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100645 if (h2c->errcode)
646 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
647
Willy Tarreau73db4342019-09-25 07:28:44 +0200648 if (h2c->dsi >= 0 &&
649 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200650 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 +0200651 }
652
653 if (h2s) {
654 if (h2s->id <= 0)
655 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
656 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100657 if (h2s->id && h2s->errcode)
658 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200659 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200660 }
661
662 /* Let's dump decoded requests and responses right after parsing. They
663 * are traced at level USER with a few recognizable flags.
664 */
665 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
666 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
667 htx = htxbuf(buf); // recv req/res
668 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
669 htx = a3; // send req/res
670 else
671 htx = NULL;
672
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200673 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200674 const struct htx_blk *blk = htx_get_blk(htx, pos);
675 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
676 enum htx_blk_type type = htx_get_blk_type(blk);
677
678 if (type == HTX_BLK_REQ_SL)
679 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200680 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200681 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
682 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
683 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
684 else if (type == HTX_BLK_RES_SL)
685 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200686 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200687 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
688 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
689 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
690 }
691}
692
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200693
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100694/* Detect a pending read0 for a H2 connection. It happens if a read0 was
695 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
696 * to parse pending data, confirming no more progress is possible because
697 * we're facing a truncated frame. The function returns 1 to report a read0
698 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200699 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100700static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200701{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100702 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200703}
704
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200705/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100706 * connection may expire when it has no attached streams. As long as streams
707 * are attached, the application layer is responsible for timeout management,
708 * and each layer will detach when it doesn't want to wait anymore. When the
709 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200710 */
711static inline int h2c_may_expire(const struct h2c *h2c)
712{
Willy Tarreau34395832022-03-18 14:59:54 +0100713 return !h2c->nb_cs;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200714}
715
Willy Tarreau15a47332022-03-18 15:57:34 +0100716/* update h2c timeout if needed */
717static void h2c_update_timeout(struct h2c *h2c)
718{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200719 int is_idle_conn = 0;
720
Willy Tarreau15a47332022-03-18 15:57:34 +0100721 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
722
723 if (!h2c->task)
724 goto leave;
725
726 if (h2c_may_expire(h2c)) {
727 /* no more streams attached */
728 if (h2c->last_sid >= 0) {
729 /* GOAWAY sent, closing in progress */
730 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200731 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100732 } else if (br_data(h2c->mbuf)) {
733 /* pending output data: always the regular data timeout */
734 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau6ff91e22022-04-14 11:43:35 +0200735 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100736 /* idle after having seen one stream => keep-alive */
Willy Tarreau86b08a32022-04-13 17:40:28 +0200737 int to;
738
739 if (tick_isset(h2c->proxy->timeout.httpka))
740 to = h2c->proxy->timeout.httpka;
741 else
742 to = h2c->proxy->timeout.httpreq;
743
744 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200745 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100746 } else {
747 /* before first request, or started to deserialize a
748 * new req => http-request, but only set, not refresh.
749 */
750 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
751 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
752 }
753 /* if a timeout above was not set, fall back to the default one */
754 if (!tick_isset(h2c->task->expire))
755 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200756
757 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
758 is_idle_conn && tick_isset(global.close_spread_end)) {
759 /* If a soft-stop is in progress and a close-spread-time
760 * is set, we want to spread idle connection closing roughly
761 * evenly across the defined window. This should only
762 * act on idle frontend connections.
763 * If the window end is already in the past, we wake the
764 * timeout task up immediately so that it can be closed.
765 */
766 int remaining_window = tick_remain(now_ms, global.close_spread_end);
767 if (remaining_window) {
768 /* We don't need to reset the expire if it would
769 * already happen before the close window end.
770 */
771 if (tick_isset(h2c->task->expire) &&
772 tick_is_le(global.close_spread_end, h2c->task->expire)) {
773 /* Set an expire value shorter than the current value
774 * because the close spread window end comes earlier.
775 */
776 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
777 }
778 }
779 else {
780 /* We are past the soft close window end, wake the timeout
781 * task up immediately.
782 */
783 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
784 }
785 }
786
Willy Tarreau15a47332022-03-18 15:57:34 +0100787 } else {
788 h2c->task->expire = TICK_ETERNITY;
789 }
790 task_queue(h2c->task);
791 leave:
792 TRACE_LEAVE(H2_EV_H2C_WAKE);
793}
794
Olivier Houchard7a977432019-03-21 15:47:13 +0100795static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200796h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100797{
798 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
799 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
800 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
801 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200802 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100803 (conn_xprt_read0_pending(h2c->conn) ||
804 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
805 return 1;
806
807 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100808}
809
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200810/*****************************************************/
811/* functions below are for dynamic buffer management */
812/*****************************************************/
813
Willy Tarreau315d8072017-12-10 22:17:57 +0100814/* indicates whether or not the we may call the h2_recv() function to attempt
815 * to receive data into the buffer and/or demux pending data. The condition is
816 * a bit complex due to some API limits for now. The rules are the following :
817 * - if an error or a shutdown was detected on the connection and the buffer
818 * is empty, we must not attempt to receive
819 * - if the demux buf failed to be allocated, we must not try to receive and
820 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100821 * - if no flag indicates a blocking condition, we may attempt to receive,
822 * regardless of whether the demux buffer is full or not, so that only
823 * de demux part decides whether or not to block. This is needed because
824 * the connection API indeed prevents us from re-enabling receipt that is
825 * already enabled in a polled state, so we must always immediately stop
826 * as soon as the demux can't proceed so as never to hit an end of read
827 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100828 * - otherwise must may not attempt
829 */
830static inline int h2_recv_allowed(const struct h2c *h2c)
831{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200832 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100833 (h2c->st0 >= H2_CS_ERROR ||
834 h2c->conn->flags & CO_FL_ERROR ||
835 conn_xprt_read0_pending(h2c->conn)))
836 return 0;
837
838 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100839 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100840 return 1;
841
842 return 0;
843}
844
Willy Tarreau47b515a2018-12-21 16:09:41 +0100845/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200846static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100847{
848 if (!h2_recv_allowed(h2c))
849 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200850 if ((!consider_buffer || !b_data(&h2c->dbuf))
851 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100852 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200853 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100854}
855
856
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100857/* returns true if the front connection has too many conn_streams attached */
858static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200859{
Willy Tarreaua8754662018-12-23 20:43:58 +0100860 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200861}
862
Willy Tarreau44e973f2018-03-01 17:49:30 +0100863/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
864 * flags are used to figure what buffer was requested. It returns 1 if the
865 * allocation succeeds, in which case the connection is woken up, or 0 if it's
866 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200867 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100868static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200869{
870 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100871 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200872
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100873 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200874 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200875 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200876 return 1;
877 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200878
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100879 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100880 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200881
882 if (h2c->flags & H2_CF_DEM_MROOM) {
883 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200884 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200885 }
Willy Tarreau14398122017-09-22 14:26:04 +0200886 return 1;
887 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100888
889 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
890 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100891 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100892 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200893 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100894 return 1;
895 }
896
Willy Tarreau14398122017-09-22 14:26:04 +0200897 return 0;
898}
899
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200900static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200901{
902 struct buffer *buf = NULL;
903
Willy Tarreau2b718102021-04-21 07:32:39 +0200904 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100905 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100906 h2c->buf_wait.target = h2c;
907 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200908 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200909 }
910 return buf;
911}
912
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200913static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200914{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200915 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100916 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100917 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200918 }
919}
920
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200921static inline void h2_release_mbuf(struct h2c *h2c)
922{
923 struct buffer *buf;
924 unsigned int count = 0;
925
926 while (b_size(buf = br_head_pick(h2c->mbuf))) {
927 b_free(buf);
928 count++;
929 }
930 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100931 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200932}
933
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100934/* returns the number of allocatable outgoing streams for the connection taking
935 * the last_sid and the reserved ones into account.
936 */
937static inline int h2_streams_left(const struct h2c *h2c)
938{
939 int ret;
940
941 /* consider the number of outgoing streams we're allowed to create before
942 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
943 * nb_reserved is the number of streams which don't yet have an ID.
944 */
945 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
946 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
947 if (ret < 0)
948 ret = 0;
949 return ret;
950}
951
Willy Tarreau00f18a32019-01-26 12:19:01 +0100952/* returns the number of streams in use on a connection to figure if it's
953 * idle or not. We check nb_cs and not nb_streams as the caller will want
954 * to know if it was the last one after a detach().
955 */
956static int h2_used_streams(struct connection *conn)
957{
958 struct h2c *h2c = conn->ctx;
959
960 return h2c->nb_cs;
961}
962
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100963/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100964static int h2_avail_streams(struct connection *conn)
965{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100966 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100967 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100968 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100969
Willy Tarreau6afec462019-01-28 06:40:19 +0100970 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
971 * streams on the connection.
972 */
973 if (h2c->last_sid >= 0)
974 return 0;
975
Willy Tarreauc61966f2019-10-31 15:10:03 +0100976 if (h2c->st0 >= H2_CS_ERROR)
977 return 0;
978
Willy Tarreau86949782019-01-31 10:42:05 +0100979 /* note: may be negative if a SETTINGS frame changes the limit */
980 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100981
982 /* we must also consider the limit imposed by stream IDs */
983 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100984 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100985 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100986 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
987 ret1 = MIN(ret1, ret2);
988 }
989 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100990}
991
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200992
Willy Tarreau62f52692017-10-08 23:01:42 +0200993/*****************************************************************/
994/* functions below are dedicated to the mux setup and management */
995/*****************************************************************/
996
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200997/* Initialize the mux once it's attached. For outgoing connections, the context
998 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200999 * connections from the fact that the context is still NULL (even during mux
1000 * upgrades). <input> is always used as Input buffer and may contain data. It is
1001 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +02001002 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001003static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
1004 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +02001005{
1006 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +01001007 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +02001008 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001009
Christopher Fauletf81ef032019-10-04 15:19:43 +02001010 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +02001011
Willy Tarreaubafbe012017-11-24 17:34:44 +01001012 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001013 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +02001014 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001015
Christopher Faulete9b70722019-04-08 10:46:02 +02001016 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001017 h2c->flags = H2_CF_IS_BACK;
1018 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
1019 if (tick_isset(prx->timeout.serverfin))
1020 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001021
1022 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
1023 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001024 } else {
1025 h2c->flags = H2_CF_NONE;
1026 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
1027 if (tick_isset(prx->timeout.clientfin))
1028 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001029
1030 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
1031 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001032 }
Willy Tarreau3f133572017-10-31 19:21:06 +01001033
Willy Tarreau0b37d652018-10-03 10:33:02 +02001034 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +01001035 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +01001036 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +01001037 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001038 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +01001039 if (!t)
1040 goto fail;
1041
1042 h2c->task = t;
1043 t->process = h2_timeout_task;
1044 t->context = h2c;
1045 t->expire = tick_add(now_ms, h2c->timeout);
1046 }
Willy Tarreauea392822017-10-31 10:02:25 +01001047
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001048 h2c->wait_event.tasklet = tasklet_new();
1049 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001050 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001051 h2c->wait_event.tasklet->process = h2_io_cb;
1052 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001053 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001054 if (!conn_is_back(conn)) {
1055 /* Connection might already be in the stopping_list if subject
1056 * to h1->h2 upgrade.
1057 */
1058 if (!LIST_INLIST(&conn->stopping_list)) {
1059 LIST_APPEND(&mux_stopping_data[tid].list,
1060 &conn->stopping_list);
1061 }
1062 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001063
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001064 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001065 if (!h2c->ddht)
1066 goto fail;
1067
1068 /* Initialise the context. */
1069 h2c->st0 = H2_CS_PREFACE;
1070 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001071 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001072 h2c->max_id = -1;
1073 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001074 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001075 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001076 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001077 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001078 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001079 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001080
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001081 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001082 h2c->dsi = -1;
1083 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001084
Willy Tarreau32218eb2017-09-22 08:07:25 +02001085 h2c->last_sid = -1;
1086
Willy Tarreau51330962019-05-26 09:38:07 +02001087 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001088 h2c->miw = 65535; /* mux initial window size */
1089 h2c->mws = 65535; /* mux window size */
1090 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001091 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001092 LIST_INIT(&h2c->send_list);
1093 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001094 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001095 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001096
Christopher Fauletf81ef032019-10-04 15:19:43 +02001097 conn->ctx = h2c;
1098
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001099 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1100
Willy Tarreau3f133572017-10-31 19:21:06 +01001101 if (t)
1102 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001103
Willy Tarreau01b44822018-10-03 14:26:37 +02001104 if (h2c->flags & H2_CF_IS_BACK) {
1105 /* FIXME: this is temporary, for outgoing connections we need
1106 * to immediately allocate a stream until the code is modified
1107 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001108 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001109 */
1110 struct h2s *h2s;
1111
Christopher Fauletf81ef032019-10-04 15:19:43 +02001112 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001113 if (!h2s)
1114 goto fail_stream;
1115 }
1116
Willy Tarreau4781b152021-04-06 13:53:36 +02001117 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1118 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001119
Willy Tarreau0f383582018-10-03 14:22:21 +02001120 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001121 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001122 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001123 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001124 fail_stream:
1125 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001126 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001127 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001128 if (h2c->wait_event.tasklet)
1129 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001130 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001131 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001132 if (!conn_is_back(conn))
1133 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001134 conn->ctx = conn_ctx; /* restore saved ctx */
1135 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001136 return -1;
1137}
1138
Willy Tarreau751f2d02018-10-05 09:35:00 +02001139/* returns the next allocatable outgoing stream ID for the H2 connection, or
1140 * -1 if no more is allocatable.
1141 */
1142static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1143{
1144 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001145
1146 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001147 id = -1;
1148 return id;
1149}
1150
Willy Tarreau2373acc2017-10-12 17:35:14 +02001151/* returns the stream associated with id <id> or NULL if not found */
1152static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1153{
1154 struct eb32_node *node;
1155
Willy Tarreau751f2d02018-10-05 09:35:00 +02001156 if (id == 0)
1157 return (struct h2s *)h2_closed_stream;
1158
Willy Tarreau2a856182017-05-16 15:20:39 +02001159 if (id > h2c->max_id)
1160 return (struct h2s *)h2_idle_stream;
1161
Willy Tarreau2373acc2017-10-12 17:35:14 +02001162 node = eb32_lookup(&h2c->streams_by_id, id);
1163 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001164 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001165
1166 return container_of(node, struct h2s, by_id);
1167}
1168
Christopher Faulet73c12072019-04-08 11:23:22 +02001169/* release function. This one should be called to free all resources allocated
1170 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001171 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001172static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001173{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001174 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001175
Willy Tarreau7838a792019-08-12 18:42:03 +02001176 TRACE_ENTER(H2_EV_H2C_END);
1177
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001178 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001179
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001180 if (LIST_INLIST(&h2c->buf_wait.list))
1181 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001182
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001183 h2_release_buf(h2c, &h2c->dbuf);
1184 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001185
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001186 if (h2c->task) {
1187 h2c->task->context = NULL;
1188 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1189 h2c->task = NULL;
1190 }
1191 if (h2c->wait_event.tasklet)
1192 tasklet_free(h2c->wait_event.tasklet);
1193 if (conn && h2c->wait_event.events != 0)
1194 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1195 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001196
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001197 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001198
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001199 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001200
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001201 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001202 if (!conn_is_back(conn))
1203 LIST_DEL_INIT(&conn->stopping_list);
1204
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001205 conn->mux = NULL;
1206 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001207 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001208
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001209 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001210
1211 /* there might be a GOAWAY frame still pending in the TCP
1212 * stack, and if the peer continues to send (i.e. window
1213 * updates etc), this can result in losing the GOAWAY. For
1214 * this reason we try to drain anything received in between.
1215 */
1216 conn->flags |= CO_FL_WANT_DRAIN;
1217
1218 conn_xprt_shutw(conn);
1219 conn_xprt_close(conn);
1220 conn_sock_shutw(conn, !conn_is_back(conn));
1221 conn_ctrl_close(conn);
1222
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001223 if (conn->destroy_cb)
1224 conn->destroy_cb(conn);
1225 conn_free(conn);
1226 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001227
1228 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001229}
1230
1231
Willy Tarreau71681172017-10-23 14:39:06 +02001232/******************************************************/
1233/* functions below are for the H2 protocol processing */
1234/******************************************************/
1235
1236/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001237static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001238{
1239 return h2s ? h2s->id : 0;
1240}
1241
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001242/* returns the sum of the stream's own window size and the mux's initial
1243 * window, which together form the stream's effective window size.
1244 */
1245static inline int h2s_mws(const struct h2s *h2s)
1246{
1247 return h2s->sws + h2s->h2c->miw;
1248}
1249
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001250/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001251static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001252{
1253 if (h2c->msi < 0)
1254 return 0;
1255
1256 if (h2c->msi == h2s_id(h2s))
1257 return 0;
1258
1259 return 1;
1260}
1261
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001262/* marks an error on the connection. Before settings are sent, we must not send
1263 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1264 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1265 * even try.
1266 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001267static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001268{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001269 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001270 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001271 if (h2c->st0 < H2_CS_SETTINGS1)
1272 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001273 h2c->st0 = H2_CS_ERROR;
1274}
1275
Willy Tarreau175cebb2019-01-24 10:02:24 +01001276/* marks an error on the stream. It may also update an already closed stream
1277 * (e.g. to report an error after an RST was received).
1278 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001279static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001280{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001281 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001282 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001283 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001284 if (h2s->st < H2_SS_ERROR)
1285 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001286 if (h2s->cs)
Willy Tarreau386346f2022-05-10 08:46:07 +02001287 cs_ep_set_error(h2s->endp);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001288 }
1289}
1290
Willy Tarreau7e094452018-12-19 18:08:52 +01001291/* attempt to notify the data layer of recv availability */
1292static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1293{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001294 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001295 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001296 tasklet_wakeup(h2s->subs->tasklet);
1297 h2s->subs->events &= ~SUB_RETRY_RECV;
1298 if (!h2s->subs->events)
1299 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001300 }
1301}
1302
1303/* attempt to notify the data layer of send availability */
1304static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1305{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001306 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001307 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001308 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001309 tasklet_wakeup(h2s->subs->tasklet);
1310 h2s->subs->events &= ~SUB_RETRY_SEND;
1311 if (!h2s->subs->events)
1312 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001313 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001314 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1315 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1316 tasklet_wakeup(h2s->shut_tl);
1317 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001318}
1319
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001320/* alerts the data layer, trying to wake it up by all means, following
1321 * this sequence :
1322 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1323 * - if its subscribed to send, then it's woken up for send
1324 * - if it was subscribed to neither, its ->wake() callback is called
1325 * It is safe to call this function with a closed stream which doesn't have a
1326 * conn_stream anymore.
1327 */
1328static void __maybe_unused h2s_alert(struct h2s *h2s)
1329{
Willy Tarreau7838a792019-08-12 18:42:03 +02001330 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1331
Willy Tarreauf96508a2020-01-10 11:12:48 +01001332 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001333 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001334 h2s_notify_recv(h2s);
1335 h2s_notify_send(h2s);
1336 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001337 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1338 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001339 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001340 }
1341
1342 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001343}
1344
Willy Tarreaue4820742017-07-27 13:37:23 +02001345/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001346static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001347{
1348 uint8_t *out = frame;
1349
1350 *out = len >> 16;
1351 write_n16(out + 1, len);
1352}
1353
Willy Tarreau54c15062017-10-10 17:10:03 +02001354/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1355 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1356 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001357 * available in the buffer's input prior to calling this function. The buffer
1358 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001359 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001360static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001361 const struct buffer *b, int o)
1362{
Willy Tarreau591d4452018-06-15 17:21:00 +02001363 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 +02001364}
1365
Willy Tarreau1f094672017-11-20 21:27:45 +01001366static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001367{
Willy Tarreau591d4452018-06-15 17:21:00 +02001368 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001369}
1370
Willy Tarreau1f094672017-11-20 21:27:45 +01001371static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001372{
Willy Tarreau591d4452018-06-15 17:21:00 +02001373 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001374}
1375
Willy Tarreau1f094672017-11-20 21:27:45 +01001376static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001377{
Willy Tarreau591d4452018-06-15 17:21:00 +02001378 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001379}
1380
1381
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001382/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1383 * The algorithm is not obvious. It turns out that H2 headers are neither
1384 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1385 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001386 *
1387 * b0 b1 b2 b3 b4 b5..b8
1388 * +----------+---------+--------+----+----+----------------------+
1389 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1390 * +----------+---------+--------+----+----+----------------------+
1391 *
1392 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1393 * we get the sid properly aligned and ordered, and 16 bits of len properly
1394 * ordered as well. The type and flags can be extracted using bit shifts from
1395 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001396 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1397 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001398 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001399static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001400{
1401 uint64_t w;
1402
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001403 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001404 return 0;
1405
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001406 w = h2_get_n64(b, o + 1);
1407 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001408 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1409 h->ff = w >> 32;
1410 h->ft = w >> 40;
1411 h->len += w >> 48;
1412 return 1;
1413}
1414
1415/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1416 * h2_peek_frame_hdr() above.
1417 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001418static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001419{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001420 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001421}
1422
1423/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001424static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001425{
1426 int ret;
1427
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001428 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001429 if (ret > 0)
1430 h2_skip_frame_hdr(b);
1431 return ret;
1432}
1433
Willy Tarreaucb985a42019-10-07 16:56:34 +02001434
1435/* try to fragment the headers frame present at the beginning of buffer <b>,
1436 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1437 * success. Typical causes of failure include a buffer not large enough to
1438 * add extra frame headers. The existing frame size is read in the current
1439 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1440 * and its length will be adjusted. The stream ID for continuation frames will
1441 * be copied from the initial frame's.
1442 */
1443static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1444{
1445 size_t remain = b->data - 9;
1446 int extra_frames = (remain - 1) / mfs;
1447 size_t fsize;
1448 char *fptr;
1449 int frame;
1450
1451 if (b->data <= mfs + 9)
1452 return 1;
1453
1454 /* Too large a frame, we need to fragment it using CONTINUATION
1455 * frames. We start from the end and move tails as needed.
1456 */
1457 if (b->data + extra_frames * 9 > b->size)
1458 return 0;
1459
1460 for (frame = extra_frames; frame; frame--) {
1461 fsize = ((remain - 1) % mfs) + 1;
1462 remain -= fsize;
1463
1464 /* move data */
1465 fptr = b->area + 9 + remain + (frame - 1) * 9;
1466 memmove(fptr + 9, b->area + 9 + remain, fsize);
1467 b->data += 9;
1468
1469 /* write new frame header */
1470 h2_set_frame_size(fptr, fsize);
1471 fptr[3] = H2_FT_CONTINUATION;
1472 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1473 write_n32(fptr + 5, read_n32(b->area + 5));
1474 }
1475
1476 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1477 h2_set_frame_size(b->area, remain);
1478 return 1;
1479}
1480
1481
Willy Tarreau00dd0782018-03-01 16:31:34 +01001482/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1483 * its connection if the stream was not yet closed. Please use this exclusively
1484 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001485 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001486static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001487{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001488 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001489 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001490 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001491 if (!h2s->id)
1492 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001493 if (h2s->cs) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001494 if (!(h2s->endp->flags & CS_EP_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001495 h2s_notify_recv(h2s);
1496 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001497 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001498
Willy Tarreau7838a792019-08-12 18:42:03 +02001499 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001500 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001501 h2s->st = H2_SS_CLOSED;
1502}
1503
Willy Tarreau71049cc2018-03-28 13:56:39 +02001504/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001505/* h2s_destroy should only ever be called by the thread that owns the stream,
1506 * that means that a tasklet should be used if we want to destroy the h2s
1507 * from another thread
1508 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001509static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001510{
Willy Tarreau7838a792019-08-12 18:42:03 +02001511 struct connection *conn = h2s->h2c->conn;
1512
1513 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1514
Willy Tarreau0a10de62018-03-01 16:27:53 +01001515 h2s_close(h2s);
1516 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001517 if (b_size(&h2s->rxbuf)) {
1518 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001519 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001520 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001521
1522 if (h2s->subs)
1523 h2s->subs->events = 0;
1524
Joseph Herlantd77575d2018-11-25 10:54:45 -08001525 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001526 * reference left would be in the h2c send_list/fctl_list, and if
1527 * we're in it, we're getting out anyway
1528 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001529 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001530
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001531 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001532 tasklet_free(h2s->shut_tl);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001533 BUG_ON(h2s->endp && !(h2s->endp->flags & CS_EP_ORPHAN));
1534 cs_endpoint_free(h2s->endp);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001535 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001536
1537 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001538}
1539
Willy Tarreaua8e49542018-10-03 18:53:55 +02001540/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1541 * stream tree. In case of error, nothing is added and NULL is returned. The
1542 * causes of errors can be any failed memory allocation. The caller is
1543 * responsible for checking if the connection may support an extra stream
1544 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001545 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001546static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001547{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001548 struct h2s *h2s;
1549
Willy Tarreau7838a792019-08-12 18:42:03 +02001550 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1551
Willy Tarreaubafbe012017-11-24 17:34:44 +01001552 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001553 if (!h2s)
1554 goto out;
1555
Willy Tarreau5723f292020-01-10 15:16:57 +01001556 h2s->shut_tl = tasklet_new();
1557 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001558 pool_free(pool_head_h2s, h2s);
1559 goto out;
1560 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001561 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001562 h2s->shut_tl->process = h2_deferred_shut;
1563 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001564 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001565 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001566 h2s->cs = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001567 h2s->endp = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001568 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001569 h2s->flags = H2_SF_NONE;
1570 h2s->errcode = H2_ERR_NO_ERROR;
1571 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001572 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001573 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001574 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001575 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001576
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001577 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001578 if (id > 0)
1579 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001580 else
1581 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001582
1583 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001584 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001585 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001586
Willy Tarreau4781b152021-04-06 13:53:36 +02001587 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1588 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001589
Willy Tarreau7838a792019-08-12 18:42:03 +02001590 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001591 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001592 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001593 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001594 return NULL;
1595}
1596
1597/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001598 * case of memory allocation error. <input> is used as input buffer for the new
1599 * stream. On success, it is transferred to the stream and the mux is no longer
1600 * responsible of it. On error, <input> is unchanged, thus the mux must still
1601 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001602 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001603static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001604{
1605 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001606 struct h2s *h2s;
1607
Willy Tarreau7838a792019-08-12 18:42:03 +02001608 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1609
Willy Tarreaue872f752022-05-12 09:24:41 +02001610 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1611 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 +02001612 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001613 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001614
1615 h2s = h2s_new(h2c, id);
1616 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001617 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001618
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001619 h2s->endp = cs_endpoint_new();
1620 if (!h2s->endp)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001621 goto out_close;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001622 h2s->endp->target = h2s;
1623 h2s->endp->ctx = h2c->conn;
1624 h2s->endp->flags |= (CS_EP_T_MUX|CS_EP_ORPHAN|CS_EP_NOT_FIRST);
1625
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001626 /* FIXME wrong analogy between ext-connect and websocket, this need to
1627 * be refine.
1628 */
1629 if (flags & H2_SF_EXT_CONNECT_RCVD)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001630 h2s->endp->flags |= CS_EP_WEBSOCKET;
Christopher Fauletb669d682022-03-22 18:37:19 +01001631
Willy Tarreaud0de6772022-02-04 09:05:37 +01001632 /* The stream will record the request's accept date (which is either the
1633 * end of the connection's or the date immediately after the previous
1634 * request) and the idle time, which is the delay since the previous
1635 * request. We can set the value now, it will be copied by stream_new().
1636 */
1637 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001638
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001639 h2s->cs = cs_new_from_mux(h2s->endp, sess, input);
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001640 if (!h2s->cs) {
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001641 goto out_close;
1642 }
1643 h2c->nb_cs++;
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 Tarreaufa1d3572019-01-31 10:31:51 +01001656 if (h2_frt_has_too_many_cs(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 Tarreau751f2d02018-10-05 09:35:00 +02001671/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1672 * and returns it, or NULL in case of memory allocation error or if the highest
1673 * possible stream ID was reached.
1674 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001675static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, 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
Christopher Faulet070b91b2022-03-31 19:27:18 +02001698 if (cs_attach_mux(cs, 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 Tarreau751f2d02018-10-05 09:35:00 +02001704 h2s->cs = cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001705 h2s->endp = cs->endp;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001706 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001707 h2c->nb_cs++;
1708
Willy Tarreau751f2d02018-10-05 09:35:00 +02001709 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001710 if (likely(h2s))
1711 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1712 else
1713 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001714 return h2s;
1715}
1716
Willy Tarreaube5b7152017-09-25 16:25:39 +02001717/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1718 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1719 * the various settings codes.
1720 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001721static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001722{
1723 struct buffer *res;
1724 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001725 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001726 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001727 int ret = 0;
1728
1729 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001730
1731 if (h2c_mux_busy(h2c, NULL)) {
1732 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001733 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001734 }
1735
Willy Tarreaube5b7152017-09-25 16:25:39 +02001736 chunk_init(&buf, buf_data, sizeof(buf_data));
1737 chunk_memcpy(&buf,
1738 "\x00\x00\x00" /* length : 0 for now */
1739 "\x04\x00" /* type : 4 (settings), flags : 0 */
1740 "\x00\x00\x00\x00", /* stream ID : 0 */
1741 9);
1742
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001743 if (h2c->flags & H2_CF_IS_BACK) {
1744 /* send settings_enable_push=0 */
1745 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1746 }
1747
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001748 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1749 * sent automatically unless disabled in the global config */
1750 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1751 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001752
Willy Tarreaube5b7152017-09-25 16:25:39 +02001753 if (h2_settings_header_table_size != 4096) {
1754 char str[6] = "\x00\x01"; /* header_table_size */
1755
1756 write_n32(str + 2, h2_settings_header_table_size);
1757 chunk_memcat(&buf, str, 6);
1758 }
1759
1760 if (h2_settings_initial_window_size != 65535) {
1761 char str[6] = "\x00\x04"; /* initial_window_size */
1762
1763 write_n32(str + 2, h2_settings_initial_window_size);
1764 chunk_memcat(&buf, str, 6);
1765 }
1766
1767 if (h2_settings_max_concurrent_streams != 0) {
1768 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1769
1770 /* Note: 0 means "unlimited" for haproxy's config but not for
1771 * the protocol, so never send this value!
1772 */
1773 write_n32(str + 2, h2_settings_max_concurrent_streams);
1774 chunk_memcat(&buf, str, 6);
1775 }
1776
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001777 mfs = h2_settings_max_frame_size;
1778 if (mfs > global.tune.bufsize)
1779 mfs = global.tune.bufsize;
1780
1781 if (!mfs)
1782 mfs = global.tune.bufsize;
1783
1784 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001785 char str[6] = "\x00\x05"; /* max_frame_size */
1786
1787 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1788 * match bufsize - rewrite size, but at the moment it seems
1789 * that clients don't take care of it.
1790 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001791 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001792 chunk_memcat(&buf, str, 6);
1793 }
1794
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001795 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001796
1797 res = br_tail(h2c->mbuf);
1798 retry:
1799 if (!h2_get_buf(h2c, res)) {
1800 h2c->flags |= H2_CF_MUX_MALLOC;
1801 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001802 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001803 }
1804
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001805 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001806 if (unlikely(ret <= 0)) {
1807 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001808 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1809 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001810 h2c->flags |= H2_CF_MUX_MFULL;
1811 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001812 }
1813 else {
1814 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001815 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001816 }
1817 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001818 out:
1819 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001820 return ret;
1821}
1822
Willy Tarreau52eed752017-09-22 15:05:09 +02001823/* Try to receive a connection preface, then upon success try to send our
1824 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1825 * missing data. It may return an error in h2c.
1826 */
1827static int h2c_frt_recv_preface(struct h2c *h2c)
1828{
1829 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001830 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001831
Willy Tarreau7838a792019-08-12 18:42:03 +02001832 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1833
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001834 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001835
1836 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001837 if (!ret1)
1838 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001839 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001840 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 +02001841 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001842 if (b_data(&h2c->dbuf) ||
1843 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1844 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001845 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001846 ret2 = 0;
1847 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001848 }
1849
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001850 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001851 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001852 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001853 out:
1854 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001855 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001856}
1857
Willy Tarreau01b44822018-10-03 14:26:37 +02001858/* Try to send a connection preface, then upon success try to send our
1859 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1860 * missing data. It may return an error in h2c.
1861 */
1862static int h2c_bck_send_preface(struct h2c *h2c)
1863{
1864 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001865 int ret = 0;
1866
1867 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001868
1869 if (h2c_mux_busy(h2c, NULL)) {
1870 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001871 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001872 }
1873
Willy Tarreaubcc45952019-05-26 10:05:50 +02001874 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001875 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001876 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001877 h2c->flags |= H2_CF_MUX_MALLOC;
1878 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001879 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001880 }
1881
1882 if (!b_data(res)) {
1883 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001884 ret = b_istput(res, ist(H2_CONN_PREFACE));
1885 if (unlikely(ret <= 0)) {
1886 if (!ret) {
1887 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1888 goto retry;
1889 h2c->flags |= H2_CF_MUX_MFULL;
1890 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001891 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001892 }
1893 else {
1894 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001895 ret = 0;
1896 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001897 }
1898 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001899 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001900 ret = h2c_send_settings(h2c);
1901 out:
1902 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1903 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001904}
1905
Willy Tarreau081d4722017-05-16 21:51:05 +02001906/* try to send a GOAWAY frame on the connection to report an error or a graceful
1907 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1908 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1909 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1910 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1911 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1912 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001913 * case, nor will it send one if settings were not sent (e.g. still waiting for
1914 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001915 */
1916static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1917{
1918 struct buffer *res;
1919 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001920 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001921
Willy Tarreau7838a792019-08-12 18:42:03 +02001922 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1923
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001924 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001925 ret = 1; // claim that it worked
1926 goto out;
1927 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001928
1929 if (h2c_mux_busy(h2c, h2s)) {
1930 if (h2s)
1931 h2s->flags |= H2_SF_BLK_MBUSY;
1932 else
1933 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001934 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001935 }
1936
Willy Tarreau9c218e72019-05-26 10:08:28 +02001937 /* len: 8, type: 7, flags: none, sid: 0 */
1938 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1939
1940 if (h2c->last_sid < 0)
1941 h2c->last_sid = h2c->max_id;
1942
1943 write_n32(str + 9, h2c->last_sid);
1944 write_n32(str + 13, h2c->errcode);
1945
Willy Tarreaubcc45952019-05-26 10:05:50 +02001946 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001947 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001948 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001949 h2c->flags |= H2_CF_MUX_MALLOC;
1950 if (h2s)
1951 h2s->flags |= H2_SF_BLK_MROOM;
1952 else
1953 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001954 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001955 }
1956
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001957 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001958 if (unlikely(ret <= 0)) {
1959 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001960 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1961 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001962 h2c->flags |= H2_CF_MUX_MFULL;
1963 if (h2s)
1964 h2s->flags |= H2_SF_BLK_MROOM;
1965 else
1966 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001967 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001968 }
1969 else {
1970 /* we cannot report this error using GOAWAY, so we mark
1971 * it and claim a success.
1972 */
1973 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1974 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001975 ret = 1;
1976 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001977 }
1978 }
1979 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001980
1981 /* some codes are not for real errors, just attempts to close cleanly */
1982 switch (h2c->errcode) {
1983 case H2_ERR_NO_ERROR:
1984 case H2_ERR_ENHANCE_YOUR_CALM:
1985 case H2_ERR_REFUSED_STREAM:
1986 case H2_ERR_CANCEL:
1987 break;
1988 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001989 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001990 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001991 out:
1992 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001993 return ret;
1994}
1995
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001996/* Try to send an RST_STREAM frame on the connection for the indicated stream
1997 * during mux operations. This stream must be valid and cannot be closed
1998 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1999 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
2000 * not yet.
2001 *
2002 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2003 * to write the message, it subscribes the stream to future notifications.
2004 */
2005static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2006{
2007 struct buffer *res;
2008 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002009 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002010
Willy Tarreau7838a792019-08-12 18:42:03 +02002011 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
2012
2013 if (!h2s || h2s->st == H2_SS_CLOSED) {
2014 ret = 1;
2015 goto out;
2016 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002017
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002018 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2019 * RST_STREAM in response to a RST_STREAM frame.
2020 */
Willy Tarreau231f6162019-08-06 10:01:40 +02002021 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002022 ret = 1;
2023 goto ignore;
2024 }
2025
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002026 if (h2c_mux_busy(h2c, h2s)) {
2027 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002028 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002029 }
2030
Willy Tarreau9c218e72019-05-26 10:08:28 +02002031 /* len: 4, type: 3, flags: none */
2032 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2033 write_n32(str + 5, h2s->id);
2034 write_n32(str + 9, h2s->errcode);
2035
Willy Tarreaubcc45952019-05-26 10:05:50 +02002036 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002037 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002038 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002039 h2c->flags |= H2_CF_MUX_MALLOC;
2040 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002041 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002042 }
2043
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002044 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002045 if (unlikely(ret <= 0)) {
2046 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002047 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2048 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002049 h2c->flags |= H2_CF_MUX_MFULL;
2050 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002051 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002052 }
2053 else {
2054 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002055 ret = 0;
2056 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002057 }
2058 }
2059
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002060 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002061 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002062 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002063 out:
2064 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002065 return ret;
2066}
2067
2068/* Try to send an RST_STREAM frame on the connection for the stream being
2069 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002070 * error code, even if the stream is one of the dummy ones, and will update
2071 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002072 *
2073 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2074 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002075 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002076 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002077 */
2078static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2079{
2080 struct buffer *res;
2081 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002082 int ret = 0;
2083
2084 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002085
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002086 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2087 * RST_STREAM in response to a RST_STREAM frame.
2088 */
2089 if (h2c->dft == H2_FT_RST_STREAM) {
2090 ret = 1;
2091 goto ignore;
2092 }
2093
Willy Tarreau27a84c92017-10-17 08:10:17 +02002094 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002095 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002096 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002097 }
2098
Willy Tarreau9c218e72019-05-26 10:08:28 +02002099 /* len: 4, type: 3, flags: none */
2100 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2101
2102 write_n32(str + 5, h2c->dsi);
2103 write_n32(str + 9, h2s->errcode);
2104
Willy Tarreaubcc45952019-05-26 10:05:50 +02002105 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002106 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002107 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002108 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002109 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002110 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002111 }
2112
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002113 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002114 if (unlikely(ret <= 0)) {
2115 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002116 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2117 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002118 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002119 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002120 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002121 }
2122 else {
2123 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002124 ret = 0;
2125 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002126 }
2127 }
2128
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002129 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002130 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002131 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002132 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002133 }
2134
Willy Tarreau7838a792019-08-12 18:42:03 +02002135 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002136 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002137 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002138 return ret;
2139}
2140
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002141/* try to send an empty DATA frame with the ES flag set to notify about the
2142 * end of stream and match a shutdown(write). If an ES was already sent as
2143 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2144 * on success or zero if nothing was done. In case of lack of room to write the
2145 * message, it subscribes the requesting stream to future notifications.
2146 */
2147static int h2_send_empty_data_es(struct h2s *h2s)
2148{
2149 struct h2c *h2c = h2s->h2c;
2150 struct buffer *res;
2151 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002152 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002153
Willy Tarreau7838a792019-08-12 18:42:03 +02002154 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2155
2156 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2157 ret = 1;
2158 goto out;
2159 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002160
2161 if (h2c_mux_busy(h2c, h2s)) {
2162 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002163 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002164 }
2165
Willy Tarreau9c218e72019-05-26 10:08:28 +02002166 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2167 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2168 write_n32(str + 5, h2s->id);
2169
Willy Tarreaubcc45952019-05-26 10:05:50 +02002170 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002171 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002172 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002173 h2c->flags |= H2_CF_MUX_MALLOC;
2174 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002175 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002176 }
2177
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002178 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002179 if (likely(ret > 0)) {
2180 h2s->flags |= H2_SF_ES_SENT;
2181 }
2182 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002183 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2184 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002185 h2c->flags |= H2_CF_MUX_MFULL;
2186 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002187 }
2188 else {
2189 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002190 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002191 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002192 out:
2193 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002194 return ret;
2195}
2196
Christopher Fauletb041b232022-03-24 10:27:02 +01002197/* wake a specific stream and assign its conn_stream some CS_EP_* flags among
2198 * CS_EP_ERR_PENDING and CS_EP_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002199 * is automatically updated accordingly. If the stream is orphaned, it is
2200 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002201 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002202static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002203{
Willy Tarreau7838a792019-08-12 18:42:03 +02002204 struct h2c *h2c = h2s->h2c;
2205
2206 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2207
Christopher Fauletf02ca002019-03-07 16:21:34 +01002208 if (!h2s->cs) {
2209 /* this stream was already orphaned */
2210 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002211 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002212 return;
2213 }
2214
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002215 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002216 if (h2s->st == H2_SS_OPEN)
2217 h2s->st = H2_SS_HREM;
2218 else if (h2s->st == H2_SS_HLOC)
2219 h2s_close(h2s);
2220 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002221
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002222 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2223 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Christopher Fauletb041b232022-03-24 10:27:02 +01002224 h2s->endp->flags |= CS_EP_ERR_PENDING;
2225 if (h2s->endp->flags & CS_EP_EOS)
2226 h2s->endp->flags |= CS_EP_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002227
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002228 if (h2s->st < H2_SS_ERROR)
2229 h2s->st = H2_SS_ERROR;
2230 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002231
2232 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002233 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002234}
2235
2236/* wake the streams attached to the connection, whose id is greater than <last>
2237 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002238 */
Willy Tarreau23482912019-05-07 15:23:14 +02002239static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002240{
2241 struct eb32_node *node;
2242 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002243
Willy Tarreau7838a792019-08-12 18:42:03 +02002244 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2245
Christopher Fauletf02ca002019-03-07 16:21:34 +01002246 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002247 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2248 while (node) {
2249 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002250 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002251 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002252 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002253
Christopher Fauletf02ca002019-03-07 16:21:34 +01002254 /* Wake all streams with unassigned ID (ID == 0) */
2255 node = eb32_lookup(&h2c->streams_by_id, 0);
2256 while (node) {
2257 h2s = container_of(node, struct h2s, by_id);
2258 if (h2s->id > 0)
2259 break;
2260 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002261 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002262 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002263
2264 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002265}
2266
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002267/* Wake up all blocked streams whose window size has become positive after the
2268 * mux's initial window was adjusted. This should be done after having processed
2269 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002270 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002271static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002272{
2273 struct h2s *h2s;
2274 struct eb32_node *node;
2275
Willy Tarreau7838a792019-08-12 18:42:03 +02002276 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2277
Willy Tarreau3421aba2017-07-27 15:41:03 +02002278 node = eb32_first(&h2c->streams_by_id);
2279 while (node) {
2280 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002281 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002282 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002283 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002284 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2285 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002286 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002287 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002288 node = eb32_next(node);
2289 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002290
2291 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002292}
2293
2294/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2295 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002296 * return an error in h2c. The caller must have already verified frame length
2297 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002298 */
2299static int h2c_handle_settings(struct h2c *h2c)
2300{
2301 unsigned int offset;
2302 int error;
2303
Willy Tarreau7838a792019-08-12 18:42:03 +02002304 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2305
Willy Tarreau3421aba2017-07-27 15:41:03 +02002306 if (h2c->dff & H2_F_SETTINGS_ACK) {
2307 if (h2c->dfl) {
2308 error = H2_ERR_FRAME_SIZE_ERROR;
2309 goto fail;
2310 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002311 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002312 }
2313
Willy Tarreau3421aba2017-07-27 15:41:03 +02002314 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002315 if (b_data(&h2c->dbuf) < h2c->dfl) {
2316 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002317 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002318 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002319
2320 /* parse the frame */
2321 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002322 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2323 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002324
2325 switch (type) {
2326 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2327 /* we need to update all existing streams with the
2328 * difference from the previous iws.
2329 */
2330 if (arg < 0) { // RFC7540#6.5.2
2331 error = H2_ERR_FLOW_CONTROL_ERROR;
2332 goto fail;
2333 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002334 h2c->miw = arg;
2335 break;
2336 case H2_SETTINGS_MAX_FRAME_SIZE:
2337 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002338 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 +02002339 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002340 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002341 goto fail;
2342 }
2343 h2c->mfs = arg;
2344 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002345 case H2_SETTINGS_HEADER_TABLE_SIZE:
2346 h2c->flags |= H2_CF_SHTS_UPDATED;
2347 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002348 case H2_SETTINGS_ENABLE_PUSH:
2349 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002350 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002351 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002352 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002353 goto fail;
2354 }
2355 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002356 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2357 if (h2c->flags & H2_CF_IS_BACK) {
2358 /* the limit is only for the backend; for the frontend it is our limit */
2359 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2360 arg = h2_settings_max_concurrent_streams;
2361 h2c->streams_limit = arg;
2362 }
2363 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002364 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002365 if (arg == 1)
2366 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002367 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002368 }
2369 }
2370
2371 /* need to ACK this frame now */
2372 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002373 done:
2374 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002375 return 1;
2376 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002377 if (!(h2c->flags & H2_CF_IS_BACK))
2378 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002379 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002380 out0:
2381 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 +02002382 return 0;
2383}
2384
2385/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2386 * success or one of the h2_status values.
2387 */
2388static int h2c_ack_settings(struct h2c *h2c)
2389{
2390 struct buffer *res;
2391 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002392 int ret = 0;
2393
2394 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002395
2396 if (h2c_mux_busy(h2c, NULL)) {
2397 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002398 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002399 }
2400
Willy Tarreau9c218e72019-05-26 10:08:28 +02002401 memcpy(str,
2402 "\x00\x00\x00" /* length : 0 (no data) */
2403 "\x04" "\x01" /* type : 4, flags : ACK */
2404 "\x00\x00\x00\x00" /* stream ID */, 9);
2405
Willy Tarreaubcc45952019-05-26 10:05:50 +02002406 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002407 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002408 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002409 h2c->flags |= H2_CF_MUX_MALLOC;
2410 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002411 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002412 }
2413
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002414 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002415 if (unlikely(ret <= 0)) {
2416 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002417 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2418 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002419 h2c->flags |= H2_CF_MUX_MFULL;
2420 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002421 }
2422 else {
2423 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002424 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002425 }
2426 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002427 out:
2428 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002429 return ret;
2430}
2431
Willy Tarreaucf68c782017-10-10 17:11:41 +02002432/* processes a PING frame and schedules an ACK if needed. The caller must pass
2433 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002434 * missing data. The caller must have already verified frame length
2435 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002436 */
2437static int h2c_handle_ping(struct h2c *h2c)
2438{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002439 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002440 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002441 h2c->st0 = H2_CS_FRAME_A;
2442 return 1;
2443}
2444
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002445/* Try to send a window update for stream id <sid> and value <increment>.
2446 * Returns > 0 on success or zero on missing room or failure. It may return an
2447 * error in h2c.
2448 */
2449static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2450{
2451 struct buffer *res;
2452 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002453 int ret = 0;
2454
2455 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002456
2457 if (h2c_mux_busy(h2c, NULL)) {
2458 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002459 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002460 }
2461
Willy Tarreau9c218e72019-05-26 10:08:28 +02002462 /* length: 4, type: 8, flags: none */
2463 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2464 write_n32(str + 5, sid);
2465 write_n32(str + 9, increment);
2466
Willy Tarreaubcc45952019-05-26 10:05:50 +02002467 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002468 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002469 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002470 h2c->flags |= H2_CF_MUX_MALLOC;
2471 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002472 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002473 }
2474
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002475 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002476 if (unlikely(ret <= 0)) {
2477 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002478 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2479 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002480 h2c->flags |= H2_CF_MUX_MFULL;
2481 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002482 }
2483 else {
2484 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002485 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002486 }
2487 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002488 out:
2489 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002490 return ret;
2491}
2492
2493/* try to send pending window update for the connection. It's safe to call it
2494 * with no pending updates. Returns > 0 on success or zero on missing room or
2495 * failure. It may return an error in h2c.
2496 */
2497static int h2c_send_conn_wu(struct h2c *h2c)
2498{
2499 int ret = 1;
2500
Willy Tarreau7838a792019-08-12 18:42:03 +02002501 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2502
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002503 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002504 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002505
Willy Tarreau97aaa672018-12-23 09:49:04 +01002506 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2507 /* increase the advertised connection window to 2G on
2508 * first update.
2509 */
2510 h2c->flags |= H2_CF_WINDOW_OPENED;
2511 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2512 }
2513
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002514 /* send WU for the connection */
2515 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2516 if (ret > 0)
2517 h2c->rcvd_c = 0;
2518
Willy Tarreau7838a792019-08-12 18:42:03 +02002519 out:
2520 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002521 return ret;
2522}
2523
2524/* try to send pending window update for the current dmux stream. It's safe to
2525 * call it with no pending updates. Returns > 0 on success or zero on missing
2526 * room or failure. It may return an error in h2c.
2527 */
2528static int h2c_send_strm_wu(struct h2c *h2c)
2529{
2530 int ret = 1;
2531
Willy Tarreau7838a792019-08-12 18:42:03 +02002532 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2533
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002534 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002535 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002536
2537 /* send WU for the stream */
2538 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2539 if (ret > 0)
2540 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002541 out:
2542 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002543 return ret;
2544}
2545
Willy Tarreaucf68c782017-10-10 17:11:41 +02002546/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2547 * success, 0 on missing data or one of the h2_status values.
2548 */
2549static int h2c_ack_ping(struct h2c *h2c)
2550{
2551 struct buffer *res;
2552 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002553 int ret = 0;
2554
2555 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002556
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002557 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002558 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002559
2560 if (h2c_mux_busy(h2c, NULL)) {
2561 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002562 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002563 }
2564
Willy Tarreaucf68c782017-10-10 17:11:41 +02002565 memcpy(str,
2566 "\x00\x00\x08" /* length : 8 (same payload) */
2567 "\x06" "\x01" /* type : 6, flags : ACK */
2568 "\x00\x00\x00\x00" /* stream ID */, 9);
2569
2570 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002571 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002572
Willy Tarreau9c218e72019-05-26 10:08:28 +02002573 res = br_tail(h2c->mbuf);
2574 retry:
2575 if (!h2_get_buf(h2c, res)) {
2576 h2c->flags |= H2_CF_MUX_MALLOC;
2577 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002578 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002579 }
2580
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002581 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002582 if (unlikely(ret <= 0)) {
2583 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002584 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2585 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002586 h2c->flags |= H2_CF_MUX_MFULL;
2587 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002588 }
2589 else {
2590 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002592 }
2593 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002594 out:
2595 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002596 return ret;
2597}
2598
Willy Tarreau26f95952017-07-27 17:18:30 +02002599/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2600 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002601 * h2c or h2s. The caller must have already verified frame length and stream ID
2602 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002603 */
2604static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2605{
2606 int32_t inc;
2607 int error;
2608
Willy Tarreau7838a792019-08-12 18:42:03 +02002609 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2610
Willy Tarreau26f95952017-07-27 17:18:30 +02002611 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002612 if (b_data(&h2c->dbuf) < h2c->dfl) {
2613 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002614 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002615 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002616
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002617 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002618
2619 if (h2c->dsi != 0) {
2620 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002621
2622 /* it's not an error to receive WU on a closed stream */
2623 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002624 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002625
2626 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002627 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 +02002628 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002629 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002630 goto strm_err;
2631 }
2632
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002633 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002634 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 +02002635 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002636 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002637 goto strm_err;
2638 }
2639
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002640 h2s->sws += inc;
2641 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002642 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002643 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002644 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2645 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002646 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002647 }
2648 }
2649 else {
2650 /* connection window update */
2651 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002652 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002653 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002654 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002655 goto conn_err;
2656 }
2657
2658 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2659 error = H2_ERR_FLOW_CONTROL_ERROR;
2660 goto conn_err;
2661 }
2662
2663 h2c->mws += inc;
2664 }
2665
Willy Tarreau7838a792019-08-12 18:42:03 +02002666 done:
2667 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002668 return 1;
2669
2670 conn_err:
2671 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002672 out0:
2673 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 +02002674 return 0;
2675
2676 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002677 h2s_error(h2s, error);
2678 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002679 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002680 return 0;
2681}
2682
Willy Tarreaue96b0922017-10-30 00:28:29 +01002683/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002684 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2685 * have already verified frame length and stream ID validity. Described in
2686 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002687 */
2688static int h2c_handle_goaway(struct h2c *h2c)
2689{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002690 int last;
2691
Willy Tarreau7838a792019-08-12 18:42:03 +02002692 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002693 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002694 if (b_data(&h2c->dbuf) < h2c->dfl) {
2695 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002696 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002697 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002698 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002699
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002700 last = h2_get_n32(&h2c->dbuf, 0);
2701 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002702 if (h2c->last_sid < 0)
2703 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002704 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002705 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002706 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002707}
2708
Willy Tarreau92153fc2017-12-03 19:46:19 +01002709/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002710 * invalid. Returns > 0 on success or zero on missing data. It may return an
2711 * error in h2c. The caller must have already verified frame length and stream
2712 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002713 */
2714static int h2c_handle_priority(struct h2c *h2c)
2715{
Willy Tarreau7838a792019-08-12 18:42:03 +02002716 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2717
Willy Tarreau92153fc2017-12-03 19:46:19 +01002718 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002719 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002720 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002721 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002722 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002723 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002724
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002725 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002726 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002727 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002728 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002729 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002730 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002731 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002732 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002733 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002734 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002735}
2736
Willy Tarreaucd234e92017-08-18 10:59:39 +02002737/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002738 * Returns > 0 on success or zero on missing data. The caller must have already
2739 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002740 */
2741static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2742{
Willy Tarreau7838a792019-08-12 18:42:03 +02002743 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2744
Willy Tarreaucd234e92017-08-18 10:59:39 +02002745 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002746 if (b_data(&h2c->dbuf) < h2c->dfl) {
2747 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 +02002748 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002749 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002750 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002751
2752 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002753 if (h2s->st == H2_SS_CLOSED) {
2754 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 +02002755 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002756 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002757
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002758 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002759 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002760
2761 if (h2s->cs) {
Willy Tarreau386346f2022-05-10 08:46:07 +02002762 cs_ep_set_error(h2s->endp);
Willy Tarreauf830f012018-12-19 17:44:55 +01002763 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002764 }
2765
2766 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002767 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002768 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002769}
2770
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002771/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2772 * It may return an error in h2c or h2s. The caller must consider that the
2773 * return value is the new h2s in case one was allocated (most common case).
2774 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002775 * errors here are reported as connection errors since it's impossible to
2776 * recover from such errors after the compression context has been altered.
2777 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002778static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002779{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002780 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002781 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002782 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002783 int error;
2784
Willy Tarreau7838a792019-08-12 18:42:03 +02002785 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2786
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002787 if (!b_size(&h2c->dbuf)) {
2788 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002789 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002790 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002791
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002792 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2793 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002794 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002795 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002796
2797 /* now either the frame is complete or the buffer is complete */
2798 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002799 /* The stream exists/existed, this must be a trailers frame */
2800 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002801 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002802 /* unrecoverable error ? */
2803 if (h2c->st0 >= H2_CS_ERROR)
2804 goto out;
2805
Christopher Faulet485da0b2021-10-08 08:56:00 +02002806 if (error == 0) {
2807 /* Demux not blocked because of the stream, it is an incomplete frame */
2808 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2809 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002810 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002811 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002812
2813 if (error < 0) {
2814 /* Failed to decode this frame (e.g. too large request)
2815 * but the HPACK decompressor is still synchronized.
2816 */
2817 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2818 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002819 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002820 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002821 goto done;
2822 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002823 /* the connection was already killed by an RST, let's consume
2824 * the data and send another RST.
2825 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002826 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002827 h2s = (struct h2s*)h2_error_stream;
2828 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002829 }
2830 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2831 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2832 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002833 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002834 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002835 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002836 goto conn_err;
2837 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002838 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2839 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002840
Amaury Denoyelle74162742020-12-11 17:53:05 +01002841 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002842
Willy Tarreau25919232019-01-03 14:48:18 +01002843 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002844 if (h2c->st0 >= H2_CS_ERROR)
2845 goto out;
2846
Willy Tarreau25919232019-01-03 14:48:18 +01002847 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002848 if (error == 0) {
2849 /* Demux not blocked because of the stream, it is an incomplete frame */
2850 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2851 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002852 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002853 }
Willy Tarreau25919232019-01-03 14:48:18 +01002854
2855 /* Failed to decode this stream (e.g. too large request)
2856 * but the HPACK decompressor is still synchronized.
2857 */
2858 h2s = (struct h2s*)h2_error_stream;
2859 goto send_rst;
2860 }
2861
Willy Tarreau29268e92021-06-17 08:29:14 +02002862 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2863
Willy Tarreau198b5072022-05-12 09:08:51 +02002864 /* Now we cannot roll back and we won't come back here anymore for this
2865 * stream, this stream ID is open.
2866 */
2867 if (h2c->dsi > h2c->max_id)
2868 h2c->max_id = h2c->dsi;
2869
Willy Tarreau22de8d32018-09-05 19:55:58 +02002870 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002871 * positively from h2c_frt_stream_new(), the stream will report the error,
2872 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002873 *
2874 * Xfer the rxbuf to the stream. On success, the new stream owns the
2875 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002876 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002877 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002878 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002879 h2s = (struct h2s*)h2_refused_stream;
2880 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002881 }
2882
2883 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002884 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002885 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002886
Willy Tarreau88d138e2019-01-02 19:38:14 +01002887 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002888 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002889 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002890
2891 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002892 if (h2s->st == H2_SS_OPEN)
2893 h2s->st = H2_SS_HREM;
2894 else
2895 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002896 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002897 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002898
2899 conn_err:
2900 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002901 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002902
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002903 out:
2904 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002905 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 +01002906 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002907
2908 send_rst:
2909 /* make the demux send an RST for the current stream. We may only
2910 * do this if we're certain that the HEADERS frame was properly
2911 * decompressed so that the HPACK decoder is still kept up to date.
2912 */
2913 h2_release_buf(h2c, &rxbuf);
2914 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002915
Willy Tarreau022e5e52020-09-10 09:33:15 +02002916 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 +02002917 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002918 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002919}
2920
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002921/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2922 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2923 * errors here are reported as connection errors since it's impossible to
2924 * recover from such errors after the compression context has been altered.
2925 */
2926static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2927{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002928 struct buffer rxbuf = BUF_NULL;
2929 unsigned long long body_len = 0;
2930 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002931 int error;
2932
Willy Tarreau7838a792019-08-12 18:42:03 +02002933 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2934
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002935 if (!b_size(&h2c->dbuf)) {
2936 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002937 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002938 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002939
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002940 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2941 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002942 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002943 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002944
Christopher Faulet6884aa32019-09-23 15:28:20 +02002945 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002946 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002947 }
2948 else {
2949 /* the connection was already killed by an RST, let's consume
2950 * the data and send another RST.
2951 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002952 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002953 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002954 h2c->st0 = H2_CS_FRAME_E;
2955 goto send_rst;
2956 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002957
Willy Tarreau25919232019-01-03 14:48:18 +01002958 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002959 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002960 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002961
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002962 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2963 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002964 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 +01002965 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2966 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002967 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002968 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002969 }
2970
Willy Tarreau25919232019-01-03 14:48:18 +01002971 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002972 if (error == 0) {
2973 /* Demux not blocked because of the stream, it is an incomplete frame */
2974 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2975 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002976 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002977 }
Willy Tarreau25919232019-01-03 14:48:18 +01002978
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002979 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002980 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 +01002981 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002982 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002983 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002984 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002985 }
2986
Christopher Fauletfa922f02019-05-07 10:55:17 +02002987 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002988 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002989
Christopher Fauletb041b232022-03-24 10:27:02 +01002990 if (h2s->cs && (h2s->endp->flags & CS_EP_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002991 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002992 else if (h2s->flags & H2_SF_ES_RCVD) {
2993 if (h2s->st == H2_SS_OPEN)
2994 h2s->st = H2_SS_HREM;
2995 else if (h2s->st == H2_SS_HLOC)
2996 h2s_close(h2s);
2997 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002998
Christopher Fauletf95f8762021-01-22 11:59:07 +01002999 /* Unblock busy server h2s waiting for the response headers to validate
3000 * the tunnel establishment or the end of the response of an oborted
3001 * tunnel
3002 */
3003 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
3004 (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)) {
3005 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3006 h2s->flags &= ~H2_SF_BLK_MBUSY;
3007 }
3008
Willy Tarreau9abb3172021-06-16 18:32:42 +02003009 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 +02003010 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003011 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02003012 fail:
3013 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3014 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003015
3016 send_rst:
3017 /* make the demux send an RST for the current stream. We may only
3018 * do this if we're certain that the HEADERS frame was properly
3019 * decompressed so that the HPACK decoder is still kept up to date.
3020 */
3021 h2_release_buf(h2c, &rxbuf);
3022 h2c->st0 = H2_CS_FRAME_E;
3023
Willy Tarreau022e5e52020-09-10 09:33:15 +02003024 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 +02003025 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3026 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003027}
3028
Willy Tarreau454f9052017-10-26 19:40:35 +02003029/* processes a DATA frame. Returns > 0 on success or zero on missing data.
3030 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
3031 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003032static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003033{
3034 int error;
3035
Willy Tarreau7838a792019-08-12 18:42:03 +02003036 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3037
Willy Tarreau454f9052017-10-26 19:40:35 +02003038 /* note that empty DATA frames are perfectly valid and sometimes used
3039 * to signal an end of stream (with the ES flag).
3040 */
3041
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003042 if (!b_size(&h2c->dbuf) && h2c->dfl) {
3043 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003044 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003045 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003046
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003047 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
3048 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003049 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003050 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003051
3052 /* now either the frame is complete or the buffer is complete */
3053
Willy Tarreau454f9052017-10-26 19:40:35 +02003054 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3055 /* RFC7540#6.1 */
3056 error = H2_ERR_STREAM_CLOSED;
3057 goto strm_err;
3058 }
3059
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003060 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003061 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003062 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 +01003063 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003064 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003065 goto strm_err;
3066 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003067 if (!(h2c->flags & H2_CF_IS_BACK) &&
3068 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3069 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3070 /* a tunnel attempt was aborted but the client still try to send some raw data.
3071 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3072 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3073 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003074 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003075 */
3076 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3077 error = H2_ERR_CANCEL;
3078 goto strm_err;
3079 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003080
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003081 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003082 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003083
Willy Tarreau454f9052017-10-26 19:40:35 +02003084 /* call the upper layers to process the frame, then let the upper layer
3085 * notify the stream about any change.
3086 */
3087 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003088 /* The upper layer has already closed, this may happen on
3089 * 4xx/redirects during POST, or when receiving a response
3090 * from an H2 server after the client has aborted.
3091 */
3092 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003093 goto strm_err;
3094 }
3095
Willy Tarreau8f650c32017-11-21 19:36:21 +01003096 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003097 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003098
Willy Tarreau721c9742017-11-07 11:05:42 +01003099 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003100 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003101 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003102 }
3103
3104 /* check for completion : the callee will change this to FRAME_A or
3105 * FRAME_H once done.
3106 */
3107 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003108 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003109
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003110 /* last frame */
3111 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003112 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003113 if (h2s->st == H2_SS_OPEN)
3114 h2s->st = H2_SS_HREM;
3115 else
3116 h2s_close(h2s);
3117
Willy Tarreau1915ca22019-01-24 11:49:37 +01003118 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3119 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003120 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 +01003121 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003122 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003123 goto strm_err;
3124 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003125 }
3126
Christopher Fauletf95f8762021-01-22 11:59:07 +01003127 /* Unblock busy server h2s waiting for the end of the response for an
3128 * aborted tunnel
3129 */
3130 if ((h2c->flags & H2_CF_IS_BACK) &&
3131 (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)) {
3132 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3133 h2s->flags &= ~H2_SF_BLK_MBUSY;
3134 }
3135
Willy Tarreau7838a792019-08-12 18:42:03 +02003136 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003137 return 1;
3138
Willy Tarreau454f9052017-10-26 19:40:35 +02003139 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003140 h2s_error(h2s, error);
3141 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003142 fail:
3143 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 +02003144 return 0;
3145}
3146
Willy Tarreau63864812019-08-07 14:25:20 +02003147/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3148 * valid for the current stream state. This is needed only after parsing the
3149 * frame header but in practice it can be performed at any time during
3150 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3151 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3152 */
3153static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3154{
Willy Tarreau7838a792019-08-12 18:42:03 +02003155 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3156
Willy Tarreau63864812019-08-07 14:25:20 +02003157 if (h2s->st == H2_SS_IDLE &&
3158 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3159 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3160 * this state MUST be treated as a connection error
3161 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003162 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 +02003163 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003164 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003165 /* only log if no other stream can report the error */
3166 sess_log(h2c->conn->owner);
3167 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003168 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003169 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 +02003170 return 0;
3171 }
3172
Willy Tarreau57a18162019-11-24 14:57:53 +01003173 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3174 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003175 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 +01003176 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003177 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003178 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3179 return 0;
3180 }
3181
Willy Tarreau63864812019-08-07 14:25:20 +02003182 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3183 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3184 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3185 * this state MUST be treated as a stream error.
3186 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3187 * PUSH_PROMISE/CONTINUATION cause connection errors.
3188 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003189 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003190 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 +02003191 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003192 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003193 }
3194 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003195 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003196 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003197 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 +02003198 return 0;
3199 }
3200
3201 /* Below the management of frames received in closed state is a
3202 * bit hackish because the spec makes strong differences between
3203 * streams closed by receiving RST, sending RST, and seeing ES
3204 * in both directions. In addition to this, the creation of a
3205 * new stream reusing the identifier of a closed one will be
3206 * detected here. Given that we cannot keep track of all closed
3207 * streams forever, we consider that unknown closed streams were
3208 * closed on RST received, which allows us to respond with an
3209 * RST without breaking the connection (eg: to abort a transfer).
3210 * Some frames have to be silently ignored as well.
3211 */
3212 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3213 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3214 /* #5.1.1: The identifier of a newly
3215 * established stream MUST be numerically
3216 * greater than all streams that the initiating
3217 * endpoint has opened or reserved. This
3218 * governs streams that are opened using a
3219 * HEADERS frame and streams that are reserved
3220 * using PUSH_PROMISE. An endpoint that
3221 * receives an unexpected stream identifier
3222 * MUST respond with a connection error.
3223 */
3224 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003225 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 +02003226 return 0;
3227 }
3228
Willy Tarreau4c08f122019-09-26 08:47:15 +02003229 if (h2s->flags & H2_SF_RST_RCVD &&
3230 !(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 +02003231 /* RFC7540#5.1:closed: an endpoint that
3232 * receives any frame other than PRIORITY after
3233 * receiving a RST_STREAM MUST treat that as a
3234 * stream error of type STREAM_CLOSED.
3235 *
3236 * Note that old streams fall into this category
3237 * and will lead to an RST being sent.
3238 *
3239 * However, we cannot generalize this to all frame types. Those
3240 * carrying compression state must still be processed before
3241 * being dropped or we'll desynchronize the decoder. This can
3242 * happen with request trailers received after sending an
3243 * RST_STREAM, or with header/trailers responses received after
3244 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003245 *
3246 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003247 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003248 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003249 */
3250 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3251 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003252 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 +02003253 return 0;
3254 }
3255
3256 /* RFC7540#5.1:closed: if this state is reached as a
3257 * result of sending a RST_STREAM frame, the peer that
3258 * receives the RST_STREAM might have already sent
3259 * frames on the stream that cannot be withdrawn. An
3260 * endpoint MUST ignore frames that it receives on
3261 * closed streams after it has sent a RST_STREAM
3262 * frame. An endpoint MAY choose to limit the period
3263 * over which it ignores frames and treat frames that
3264 * arrive after this time as being in error.
3265 */
3266 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3267 /* RFC7540#5.1:closed: any frame other than
3268 * PRIO/WU/RST in this state MUST be treated as
3269 * a connection error
3270 */
3271 if (h2c->dft != H2_FT_RST_STREAM &&
3272 h2c->dft != H2_FT_PRIORITY &&
3273 h2c->dft != H2_FT_WINDOW_UPDATE) {
3274 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003275 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 +02003276 return 0;
3277 }
3278 }
3279 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003280 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003281 return 1;
3282}
3283
Willy Tarreaubc933932017-10-09 16:21:43 +02003284/* process Rx frames to be demultiplexed */
3285static void h2_process_demux(struct h2c *h2c)
3286{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003287 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003288 struct h2_fh hdr;
3289 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003290 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003291
Willy Tarreau7838a792019-08-12 18:42:03 +02003292 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3293
Willy Tarreau081d4722017-05-16 21:51:05 +02003294 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003295 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003296
3297 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3298 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003299 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003300 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003301 goto out;
3302
Willy Tarreau52eed752017-09-22 15:05:09 +02003303 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3304 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003305 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003306 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003307 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003308 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003309 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003310 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003311 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003312 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003313 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003314 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003315
3316 h2c->max_id = 0;
3317 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003318 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003319 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003320
3321 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003322 /* ensure that what is pending is a valid SETTINGS frame
3323 * without an ACK.
3324 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003325 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 +02003326 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003327 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003328 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003329 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003330 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 +02003331 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003332 if (!(h2c->flags & H2_CF_IS_BACK))
3333 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003334 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003335 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003336 }
3337
3338 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3339 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003340 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 +02003341 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3342 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003343 if (!(h2c->flags & H2_CF_IS_BACK))
3344 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003345 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003346 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003347 }
3348
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003349 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003350 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003351 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 +02003352 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3353 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003354 if (!(h2c->flags & H2_CF_IS_BACK))
3355 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003356 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003357 }
3358
Willy Tarreau3bf69182018-12-21 15:34:50 +01003359 /* that's OK, switch to FRAME_P to process it. This is
3360 * a SETTINGS frame whose header has already been
3361 * deleted above.
3362 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003363 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003364 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003365 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003366 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003367 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003368
3369 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003370 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003371 int ret = 0;
3372
Willy Tarreau7838a792019-08-12 18:42:03 +02003373 if (!b_data(&h2c->dbuf)) {
3374 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003375 h2c->flags |= H2_CF_DEM_SHORT_READ;
3376 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003377 }
3378
3379 if (h2c->st0 >= H2_CS_ERROR) {
3380 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003381 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003383
3384 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003385 h2c->rcvd_s = 0;
3386
Willy Tarreau7838a792019-08-12 18:42:03 +02003387 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003388 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3389 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003390 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003391 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003392
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003393 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003394 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 +02003395 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003396 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003397 /* only log if no other stream can report the error */
3398 sess_log(h2c->conn->owner);
3399 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003400 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003401 break;
3402 }
3403
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003404 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003405 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3406 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3407 * we read the pad length and drop it from the remaining
3408 * payload (one byte + the 9 remaining ones = 10 total
3409 * removed), so we have a frame payload starting after the
3410 * pad len. Flow controlled frames (DATA) also count the
3411 * padlen in the flow control, so it must be adjusted.
3412 */
3413 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003414 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 +01003415 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003416 if (!(h2c->flags & H2_CF_IS_BACK))
3417 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003418 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003419 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003420 }
3421 hdr.len--;
3422
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003423 if (b_data(&h2c->dbuf) < 10) {
3424 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003425 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003426 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003427
3428 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3429
3430 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003431 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 +01003432 /* RFC7540#6.1 : pad length = length of
3433 * frame payload or greater => error.
3434 */
3435 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003436 if (!(h2c->flags & H2_CF_IS_BACK))
3437 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003438 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003439 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003440 }
3441
3442 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3443 h2c->rcvd_c++;
3444 h2c->rcvd_s++;
3445 }
3446 b_del(&h2c->dbuf, 1);
3447 }
3448 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003449
3450 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003451 h2c->dfl = hdr.len;
3452 h2c->dsi = hdr.sid;
3453 h2c->dft = hdr.ft;
3454 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003455 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003456 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 +02003457 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003458
3459 /* check for minimum basic frame format validity */
3460 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3461 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003462 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 +01003463 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003464 if (!(h2c->flags & H2_CF_IS_BACK))
3465 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003466 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003467 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003468 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003469
3470 /* transition to HEADERS frame ends the keep-alive idle
3471 * timer and starts the http-request idle delay.
3472 */
3473 if (hdr.ft == H2_FT_HEADERS)
3474 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003475 }
3476
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003477 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3478 * H2_CS_FRAME_P indicates an incomplete previous operation
3479 * (most often the first attempt) and requires some validity
3480 * checks for the frame and the current state. The two other
3481 * ones are set after completion (or abortion) and must skip
3482 * validity checks.
3483 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003484 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3485
Willy Tarreau567beb82018-12-18 16:52:44 +01003486 if (tmp_h2s != h2s && h2s && h2s->cs &&
3487 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003488 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003489 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003490 (h2s->flags & H2_SF_ES_RCVD) ||
Christopher Fauletb041b232022-03-24 10:27:02 +01003491 (h2s->endp->flags & (CS_EP_ERROR|CS_EP_ERR_PENDING|CS_EP_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003492 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003493 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Christopher Fauletb041b232022-03-24 10:27:02 +01003494 h2s->endp->flags |= CS_EP_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003495 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003496 }
3497 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003498
Willy Tarreau63864812019-08-07 14:25:20 +02003499 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003500 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3501 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003502 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003503 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003504
Willy Tarreau7e98c052017-10-10 15:56:59 +02003505 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003506 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003507 if (h2c->st0 == H2_CS_FRAME_P) {
3508 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003509 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003510 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003511 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003512
Willy Tarreau7838a792019-08-12 18:42:03 +02003513 if (h2c->st0 == H2_CS_FRAME_A) {
3514 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 +02003515 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003516 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003517 break;
3518
Willy Tarreaucf68c782017-10-10 17:11:41 +02003519 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003520 if (h2c->st0 == H2_CS_FRAME_P) {
3521 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003522 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003523 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003524
Willy Tarreau7838a792019-08-12 18:42:03 +02003525 if (h2c->st0 == H2_CS_FRAME_A) {
3526 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 +02003527 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003528 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003529 break;
3530
Willy Tarreau26f95952017-07-27 17:18:30 +02003531 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003532 if (h2c->st0 == H2_CS_FRAME_P) {
3533 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 +02003534 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003535 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003536 break;
3537
Willy Tarreau61290ec2017-10-17 08:19:21 +02003538 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003539 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003540 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3541 * frames' parsers consume all following CONTINUATION
3542 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003543 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003544 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 +01003545 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003546 if (!(h2c->flags & H2_CF_IS_BACK))
3547 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003548 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003549 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003550
Willy Tarreau13278b42017-10-13 19:23:14 +02003551 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003552 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003553 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003554 if (h2c->flags & H2_CF_IS_BACK)
3555 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3556 else
3557 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003558 if (tmp_h2s) {
3559 h2s = tmp_h2s;
3560 ret = 1;
3561 }
3562 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003563 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003564 break;
3565
Willy Tarreau454f9052017-10-26 19:40:35 +02003566 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003567 if (h2c->st0 == H2_CS_FRAME_P) {
3568 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003569 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003570 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003571 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003572
Willy Tarreau7838a792019-08-12 18:42:03 +02003573 if (h2c->st0 == H2_CS_FRAME_A) {
3574 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003575 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003576 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003577 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003578
Willy Tarreau92153fc2017-12-03 19:46:19 +01003579 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003580 if (h2c->st0 == H2_CS_FRAME_P) {
3581 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003582 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003583 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003584 break;
3585
Willy Tarreaucd234e92017-08-18 10:59:39 +02003586 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003587 if (h2c->st0 == H2_CS_FRAME_P) {
3588 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 +02003589 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003590 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003591 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003592 break;
3593
Willy Tarreaue96b0922017-10-30 00:28:29 +01003594 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003595 if (h2c->st0 == H2_CS_FRAME_P) {
3596 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003597 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003598 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003599 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003600 break;
3601
Willy Tarreau1c661982017-10-30 13:52:01 +01003602 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003603 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003604 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003605 /* drop frames that we ignore. They may be larger than
3606 * the buffer so we drain all of their contents until
3607 * we reach the end.
3608 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003609 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3610 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003611 h2c->dfl -= ret;
3612 ret = h2c->dfl == 0;
3613 }
3614
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003615 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003616 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003617 if (h2s->st == H2_SS_ERROR) {
3618 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 +01003619 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003620 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003621
Willy Tarreau7838a792019-08-12 18:42:03 +02003622 if (h2c->st0 == H2_CS_FRAME_E) {
3623 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 +01003624 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003625 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003626
Willy Tarreau7e98c052017-10-10 15:56:59 +02003627 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003628 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003629 break;
3630
3631 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003632 if (h2c->dfl)
3633 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003634 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3635 b_del(&h2c->dbuf, ret);
3636 h2c->dfl -= ret;
3637 if (!h2c->dfl) {
3638 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3639 h2c->st0 = H2_CS_FRAME_H;
3640 h2c->dsi = -1;
3641 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003642 }
3643 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003644
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003645 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003646 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3647 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003648 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003649 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003650
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003651 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003652 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3653 if (h2c->flags & H2_CF_RCVD_SHUT)
3654 h2c->flags |= H2_CF_END_REACHED;
3655 }
3656
Willy Tarreau567beb82018-12-18 16:52:44 +01003657 if (h2s && h2s->cs &&
3658 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003659 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003660 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003661 (h2s->flags & H2_SF_ES_RCVD) ||
Christopher Fauletb041b232022-03-24 10:27:02 +01003662 (h2s->endp->flags & (CS_EP_ERROR|CS_EP_ERR_PENDING|CS_EP_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003663 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003664 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Christopher Fauletb041b232022-03-24 10:27:02 +01003665 h2s->endp->flags |= CS_EP_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003666 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003667 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003668
Willy Tarreau7838a792019-08-12 18:42:03 +02003669 if (old_iw != h2c->miw) {
3670 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003671 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003672 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003673
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003674 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003675 out:
3676 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003677 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003678}
3679
Willy Tarreau989539b2020-01-10 17:01:29 +01003680/* resume each h2s eligible for sending in list head <head> */
3681static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3682{
3683 struct h2s *h2s, *h2s_back;
3684
3685 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3686
3687 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3688 if (h2c->mws <= 0 ||
3689 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3690 h2c->st0 >= H2_CS_ERROR)
3691 break;
3692
3693 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003694
Willy Tarreaud9464162020-01-10 18:25:07 +01003695 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003696 continue;
3697
Willy Tarreau5723f292020-01-10 15:16:57 +01003698 /* If the sender changed his mind and unsubscribed, let's just
3699 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003700 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003701 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3702 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003703 LIST_DEL_INIT(&h2s->list);
3704 continue;
3705 }
3706
Willy Tarreauf96508a2020-01-10 11:12:48 +01003707 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003708 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003709 tasklet_wakeup(h2s->subs->tasklet);
3710 h2s->subs->events &= ~SUB_RETRY_SEND;
3711 if (!h2s->subs->events)
3712 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003713 }
3714 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3715 tasklet_wakeup(h2s->shut_tl);
3716 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003717 }
3718
3719 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3720}
3721
Willy Tarreaubc933932017-10-09 16:21:43 +02003722/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3723 * the end.
3724 */
3725static int h2_process_mux(struct h2c *h2c)
3726{
Willy Tarreau7838a792019-08-12 18:42:03 +02003727 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3728
Willy Tarreau01b44822018-10-03 14:26:37 +02003729 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3730 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3731 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3732 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003733 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003734 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003735 goto fail;
3736 }
3737 h2c->st0 = H2_CS_SETTINGS1;
3738 }
3739 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003740 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003741 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003742 }
3743
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003744 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003745 if (h2c->rcvd_s > 0 &&
3746 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3747 h2c_send_strm_wu(h2c) < 0)
3748 goto fail;
3749
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003750 if (h2c->rcvd_c > 0 &&
3751 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3752 h2c_send_conn_wu(h2c) < 0)
3753 goto fail;
3754
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003755 /* First we always process the flow control list because the streams
3756 * waiting there were already elected for immediate emission but were
3757 * blocked just on this.
3758 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003759 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3760 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003761
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003762 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003763 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003764 if (h2c->st0 == H2_CS_ERROR) {
3765 if (h2c->max_id >= 0) {
3766 h2c_send_goaway_error(h2c, NULL);
3767 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003768 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003769 }
3770
3771 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3772 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003773 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003774 done:
3775 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3776 return 1;
3777 out0:
3778 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3779 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003780}
3781
Willy Tarreau62f52692017-10-08 23:01:42 +02003782
Willy Tarreau479998a2018-11-18 06:30:59 +01003783/* Attempt to read data, and subscribe if none available.
3784 * The function returns 1 if data has been received, otherwise zero.
3785 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003786static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003787{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003788 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003789 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003790 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003791 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003792
Willy Tarreau7838a792019-08-12 18:42:03 +02003793 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3794
3795 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3796 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003797 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003798 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003799
Willy Tarreau7838a792019-08-12 18:42:03 +02003800 if (!h2_recv_allowed(h2c)) {
3801 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003802 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003803 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003804
Willy Tarreau44e973f2018-03-01 17:49:30 +01003805 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003806 if (!buf) {
3807 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003808 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003809 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003810 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003811
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003812 if (h2c->flags & H2_CF_RCVD_SHUT) {
3813 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003814 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003815 }
3816
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003817 if (!b_data(buf)) {
3818 /* try to pre-align the buffer like the
3819 * rxbufs will be to optimize memory copies. We'll make
3820 * sure that the frame header lands at the end of the
3821 * HTX block to alias it upon recv. We cannot use the
3822 * head because rcv_buf() will realign the buffer if
3823 * it's empty. Thus we cheat and pretend we already
3824 * have a few bytes there.
3825 */
3826 max = buf_room_for_htx_data(buf) + 9;
3827 buf->head = sizeof(struct htx) - 9;
3828 }
3829 else
3830 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003831
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003832 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003833
Christopher Fauletde9d6052021-04-23 12:25:18 +02003834 if (max && !ret && h2_recv_allowed(h2c)) {
3835 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3836 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003837 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003838 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003839 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3840 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003841
Christopher Fauletde9d6052021-04-23 12:25:18 +02003842 if (conn_xprt_read0_pending(h2c->conn)) {
3843 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3844 h2c->flags |= H2_CF_RCVD_SHUT;
3845 }
3846
Olivier Houcharda1411e62018-08-17 18:42:48 +02003847 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003848 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003849 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003850 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003851 }
3852
Willy Tarreau7838a792019-08-12 18:42:03 +02003853 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003854 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003855 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003856 }
3857
3858 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003859 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003860}
3861
Willy Tarreau479998a2018-11-18 06:30:59 +01003862/* Try to send data if possible.
3863 * The function returns 1 if data have been sent, otherwise zero.
3864 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003865static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003866{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003867 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003868 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003869 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003870
Willy Tarreau7838a792019-08-12 18:42:03 +02003871 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003872
Willy Tarreau7838a792019-08-12 18:42:03 +02003873 if (conn->flags & CO_FL_ERROR) {
3874 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3875 return 1;
3876 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003877
Willy Tarreau911db9b2020-01-23 16:27:54 +01003878 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003879 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003880 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003881 }
3882
Willy Tarreaubc933932017-10-09 16:21:43 +02003883 /* This loop is quite simple : it tries to fill as much as it can from
3884 * pending streams into the existing buffer until it's reportedly full
3885 * or the end of send requests is reached. Then it tries to send this
3886 * buffer's contents out, marks it not full if at least one byte could
3887 * be sent, and tries again.
3888 *
3889 * The snd_buf() function normally takes a "flags" argument which may
3890 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3891 * data immediately comes and CO_SFL_STREAMER to indicate that the
3892 * connection is streaming lots of data (used to increase TLS record
3893 * size at the expense of latency). The former can be sent any time
3894 * there's a buffer full flag, as it indicates at least one stream
3895 * attempted to send and failed so there are pending data. An
3896 * alternative would be to set it as long as there's an active stream
3897 * but that would be problematic for ACKs until we have an absolute
3898 * guarantee that all waiters have at least one byte to send. The
3899 * latter should possibly not be set for now.
3900 */
3901
3902 done = 0;
3903 while (!done) {
3904 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003905 unsigned int released = 0;
3906 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003907
3908 /* fill as much as we can into the current buffer */
3909 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3910 done = h2_process_mux(h2c);
3911
Olivier Houchard2b094432019-01-29 18:28:36 +01003912 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003913 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003914
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003915 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003916 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003917 break;
3918
3919 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3920 flags |= CO_SFL_MSG_MORE;
3921
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003922 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3923 if (b_data(buf)) {
3924 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003925 if (!ret) {
3926 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003927 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003928 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003929 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003930 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003931 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003932 if (b_data(buf)) {
3933 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003934 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003935 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003936 }
3937 b_free(buf);
3938 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003939 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003940
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003941 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003942 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003943
Willy Tarreaubc933932017-10-09 16:21:43 +02003944 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003945 if (sent)
3946 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003947 }
3948
Willy Tarreaua2af5122017-10-09 11:56:46 +02003949 if (conn->flags & CO_FL_SOCK_WR_SH) {
3950 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003951 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003952 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003953 /* We're not full anymore, so we can wake any task that are waiting
3954 * for us.
3955 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003956 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3957 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003958
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003959 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003960 if (!br_data(h2c->mbuf)) {
3961 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003962 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003963 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003964schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003965 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3966 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003967 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003968 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003969
Willy Tarreau7838a792019-08-12 18:42:03 +02003970 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003971 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003972}
3973
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003974/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003975struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003976{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003977 struct connection *conn;
3978 struct tasklet *tl = (struct tasklet *)t;
3979 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003980 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003981 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003982
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003983 if (state & TASK_F_USR1) {
3984 /* the tasklet was idling on an idle connection, it might have
3985 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003986 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003987 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3988 if (t->context == NULL) {
3989 /* The connection has been taken over by another thread,
3990 * we're no longer responsible for it, so just free the
3991 * tasklet, and do nothing.
3992 */
3993 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3994 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003995 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003996 goto leave;
3997 }
3998 conn = h2c->conn;
3999 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004000
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004001 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004002
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004003 /* Remove the connection from the list, to be sure nobody attempts
4004 * to use it while we handle the I/O events
4005 */
4006 if (conn_in_list)
4007 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004008
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004009 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4010 } else {
4011 /* we're certain the connection was not in an idle list */
4012 conn = h2c->conn;
4013 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4014 conn_in_list = 0;
4015 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004016
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004017 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02004018 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004019 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02004020 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01004021 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004022 ret = h2_process(h2c);
4023
4024 /* If we were in an idle list, we want to add it back into it,
4025 * unless h2_process() returned -1, which mean it has destroyed
4026 * the connection (testing !ret is enough, if h2_process() wasn't
4027 * called then ret will be 0 anyway.
4028 */
Willy Tarreau74163142021-03-13 11:30:19 +01004029 if (ret < 0)
4030 t = NULL;
4031
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004032 if (!ret && conn_in_list) {
4033 struct server *srv = objt_server(conn->target);
4034
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004035 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004036 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004037 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004038 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004039 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004040 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004041 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004042
Willy Tarreau38468772020-06-28 00:31:13 +02004043leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02004044 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01004045 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004046}
Willy Tarreaua2af5122017-10-09 11:56:46 +02004047
Willy Tarreau62f52692017-10-08 23:01:42 +02004048/* callback called on any event by the connection handler.
4049 * It applies changes and returns zero, or < 0 if it wants immediate
4050 * destruction of the connection (which normally doesn not happen in h2).
4051 */
Olivier Houchard7505f942018-08-21 18:10:44 +02004052static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02004053{
Olivier Houchard7505f942018-08-21 18:10:44 +02004054 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004055
Willy Tarreau7838a792019-08-12 18:42:03 +02004056 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4057
Willy Tarreauf0961222021-02-05 11:41:46 +01004058 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4059 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004060 h2_process_demux(h2c);
4061
4062 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004063 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004064
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004065 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004066 h2c->flags &= ~H2_CF_DEM_DFULL;
4067 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004068 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004069
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004070 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 +02004071 int send_goaway = 1;
4072 /* If a close-spread-time option is set, we want to avoid
4073 * closing all the active HTTP2 connections at once so we add a
4074 * random factor that will spread the closing.
4075 */
4076 if (tick_isset(global.close_spread_end)) {
4077 int remaining_window = tick_remain(now_ms, global.close_spread_end);
4078 if (remaining_window) {
4079 /* This should increase the closing rate the
4080 * further along the window we are. */
4081 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
4082 }
4083 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02004084 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
4085 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01004086 /* frontend is stopping, reload likely in progress, let's try
4087 * to announce a graceful shutdown if not yet done. We don't
4088 * care if it fails, it will be tried again later.
4089 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004090 if (send_goaway) {
4091 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
4092 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4093 if (h2c->last_sid < 0)
4094 h2c->last_sid = (1U << 31) - 1;
4095 h2c_send_goaway_error(h2c, NULL);
4096 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004097 }
4098 }
4099
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004100 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004101 * If we received early data, and the handshake is done, wake
4102 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004103 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004104 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004105 (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 +01004106 struct eb32_node *node;
4107 struct h2s *h2s;
4108
4109 h2c->flags |= H2_CF_WAIT_FOR_HS;
4110 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4111
4112 while (node) {
4113 h2s = container_of(node, struct h2s, by_id);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01004114 if (h2s->cs && h2s->endp->flags & CS_EP_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01004115 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004116 node = eb32_next(node);
4117 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004118 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004119
Christopher Fauletaade4ed2020-10-08 15:38:41 +02004120 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004121 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4122 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4123 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004124 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004125
4126 if (eb_is_empty(&h2c->streams_by_id)) {
4127 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004128 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004129 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004130 return -1;
4131 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004132
4133 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004134 if (conn->flags & CO_FL_LIST_MASK) {
4135 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004136 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004137 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4138 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004139 }
4140 else if (h2c->st0 == H2_CS_ERROR) {
4141 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004142 if (conn->flags & CO_FL_LIST_MASK) {
4143 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004144 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004145 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4146 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004147 }
4148
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004149 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004150 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004151
Olivier Houchard53216e72018-10-10 15:46:36 +02004152 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4153 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4154 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004155 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004156 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4157 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004158 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004159
Willy Tarreau15a47332022-03-18 15:57:34 +01004160 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004161 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004162 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004163 return 0;
4164}
4165
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004166/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004167static int h2_wake(struct connection *conn)
4168{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004169 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004170 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004171
Willy Tarreau7838a792019-08-12 18:42:03 +02004172 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4173 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004174 if (ret >= 0)
4175 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004176 TRACE_LEAVE(H2_EV_H2C_WAKE);
4177 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004178}
4179
Willy Tarreauea392822017-10-31 10:02:25 +01004180/* Connection timeout management. The principle is that if there's no receipt
4181 * nor sending for a certain amount of time, the connection is closed. If the
4182 * MUX buffer still has lying data or is not allocatable, the connection is
4183 * immediately killed. If it's allocatable and empty, we attempt to send a
4184 * GOAWAY frame.
4185 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004186struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004187{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004188 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004189 int expired = tick_is_expired(t->expire, now_ms);
4190
Willy Tarreau7838a792019-08-12 18:42:03 +02004191 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4192
Willy Tarreaubd42e922020-06-30 11:19:23 +02004193 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004194 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004195 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004196
4197 /* Somebody already stole the connection from us, so we should not
4198 * free it, we just have to free the task.
4199 */
4200 if (!t->context) {
4201 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004202 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004203 goto do_leave;
4204 }
4205
4206
Willy Tarreaubd42e922020-06-30 11:19:23 +02004207 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004208 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004209 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4210 return t;
4211 }
Willy Tarreauea392822017-10-31 10:02:25 +01004212
Willy Tarreaubd42e922020-06-30 11:19:23 +02004213 if (!h2c_may_expire(h2c)) {
4214 /* we do still have streams but all of them are idle, waiting
4215 * for the data layer, so we must not enforce the timeout here.
4216 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004217 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004218 t->expire = TICK_ETERNITY;
4219 return t;
4220 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004221
Willy Tarreaubd42e922020-06-30 11:19:23 +02004222 /* We're about to destroy the connection, so make sure nobody attempts
4223 * to steal it from us.
4224 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004225 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004226 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004227
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004228 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004229 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004230
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004231do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004232 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004233
4234 if (!h2c) {
4235 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004236 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004237 return NULL;
4238 }
4239
4240 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004241 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004242 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004243
Willy Tarreau662fafc2019-05-26 09:43:07 +02004244 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004245 /* don't even try to send a GOAWAY, the buffer is stuck */
4246 h2c->flags |= H2_CF_GOAWAY_FAILED;
4247 }
4248
4249 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004250 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004251 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4252 h2c->flags |= H2_CF_GOAWAY_FAILED;
4253
Willy Tarreau662fafc2019-05-26 09:43:07 +02004254 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004255 unsigned int released = 0;
4256 struct buffer *buf;
4257
4258 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4259 if (b_data(buf)) {
4260 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4261 if (!ret)
4262 break;
4263 b_del(buf, ret);
4264 if (b_data(buf))
4265 break;
4266 b_free(buf);
4267 released++;
4268 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004269 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004270
4271 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004272 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004273 }
Willy Tarreauea392822017-10-31 10:02:25 +01004274
Willy Tarreau4481e262019-10-31 15:36:30 +01004275 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004276 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4277 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004278 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004279 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4280 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004281
Willy Tarreau0975f112018-03-29 15:22:59 +02004282 /* either we can release everything now or it will be done later once
4283 * the last stream closes.
4284 */
4285 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004286 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004287
Willy Tarreau7838a792019-08-12 18:42:03 +02004288 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004289 return NULL;
4290}
4291
4292
Willy Tarreau62f52692017-10-08 23:01:42 +02004293/*******************************************/
4294/* functions below are used by the streams */
4295/*******************************************/
4296
4297/*
4298 * Attach a new stream to a connection
4299 * (Used for outgoing connections)
4300 */
Christopher Faulete00ad352021-12-16 14:44:31 +01004301static int h2_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004302{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004303 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004304 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004305
Willy Tarreau7838a792019-08-12 18:42:03 +02004306 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchardf502aca2018-12-14 19:42:40 +01004307 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004308 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004309 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004310 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004311 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004312
4313 /* the connection is not idle anymore, let's mark this */
4314 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004315 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004316
Willy Tarreau7838a792019-08-12 18:42:03 +02004317 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004318 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004319}
4320
Willy Tarreaufafd3982018-11-18 21:29:20 +01004321/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4322 * We have to scan because we may have some orphan streams. It might be
4323 * beneficial to scan backwards from the end to reduce the likeliness to find
4324 * orphans.
4325 */
Christopher Faulet64b8d332022-04-01 13:21:41 +02004326static struct conn_stream *h2_get_first_cs(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004327{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004328 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004329 struct h2s *h2s;
4330 struct eb32_node *node;
4331
4332 node = eb32_first(&h2c->streams_by_id);
4333 while (node) {
4334 h2s = container_of(node, struct h2s, by_id);
4335 if (h2s->cs)
4336 return h2s->cs;
4337 node = eb32_next(node);
4338 }
4339 return NULL;
4340}
4341
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004342static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4343{
4344 int ret = 0;
4345 struct h2c *h2c = conn->ctx;
4346
4347 switch (mux_ctl) {
4348 case MUX_STATUS:
4349 /* Only consider the mux to be ready if we're done with
4350 * the preface and settings, and we had no error.
4351 */
4352 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4353 ret |= MUX_STATUS_READY;
4354 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004355 case MUX_EXIT_STATUS:
4356 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004357 default:
4358 return -1;
4359 }
4360}
4361
Willy Tarreau62f52692017-10-08 23:01:42 +02004362/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004363 * Destroy the mux and the associated connection, if it is no longer used
4364 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004365static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004366{
Christopher Faulet73c12072019-04-08 11:23:22 +02004367 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004368
Willy Tarreau7838a792019-08-12 18:42:03 +02004369 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004370 if (eb_is_empty(&h2c->streams_by_id)) {
4371 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004372 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004373 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004374 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004375}
4376
4377/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004378 * Detach the stream from the connection and possibly release the connection.
4379 */
4380static void h2_detach(struct conn_stream *cs)
4381{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004382 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau60935142017-10-16 18:11:19 +02004383 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004384 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004385
Willy Tarreau7838a792019-08-12 18:42:03 +02004386 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4387
Willy Tarreau7838a792019-08-12 18:42:03 +02004388 if (!h2s) {
4389 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004390 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004391 }
Willy Tarreau60935142017-10-16 18:11:19 +02004392
Willy Tarreaud9464162020-01-10 18:25:07 +01004393 /* there's no txbuf so we're certain not to be able to send anything */
4394 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004395
Olivier Houchardf502aca2018-12-14 19:42:40 +01004396 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004397 h2c = h2s->h2c;
4398 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004399 h2c->nb_cs--;
Willy Tarreau15a47332022-03-18 15:57:34 +01004400 if (!h2c->nb_cs)
4401 h2c->idle_start = now_ms;
4402
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004403 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4404 !h2_frt_has_too_many_cs(h2c)) {
4405 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004406 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004407 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004408 }
Willy Tarreau60935142017-10-16 18:11:19 +02004409
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004410 /* this stream may be blocked waiting for some data to leave (possibly
4411 * an ES or RST frame), so orphan it in this case.
4412 */
Christopher Faulet897d6122021-12-17 17:28:35 +01004413 if (!(h2c->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004414 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004415 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004416 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004417 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004418 /* refresh the timeout if none was active, so that the last
4419 * leaving stream may arm it.
4420 */
4421 if (!tick_isset(h2c->task->expire))
4422 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004423 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004424 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004425
Willy Tarreau45f752e2017-10-30 15:44:59 +01004426 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4427 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4428 /* unblock the connection if it was blocked on this
4429 * stream.
4430 */
4431 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4432 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004433 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004434 }
4435
Willy Tarreau71049cc2018-03-28 13:56:39 +02004436 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004437
Christopher Faulet9b79a102019-07-15 11:22:56 +02004438 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004439 if (!(h2c->conn->flags &
4440 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004441 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004442 /* Add the connection in the session server list, if not already done */
4443 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4444 h2c->conn->owner = NULL;
4445 if (eb_is_empty(&h2c->streams_by_id)) {
4446 h2c->conn->mux->destroy(h2c);
4447 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4448 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004449 }
4450 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004451 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004452 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4453 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4454 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004455 return;
4456 }
4457 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004458 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004459 else {
4460 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004461 /* If the connection is owned by the session, first remove it
4462 * from its list
4463 */
4464 if (h2c->conn->owner) {
4465 session_unown_conn(h2c->conn->owner, h2c->conn);
4466 h2c->conn->owner = NULL;
4467 }
4468
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004469 /* mark that the tasklet may lose its context to another thread and
4470 * that the handler needs to check it under the idle conns lock.
4471 */
4472 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004473 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4474
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004475 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004476 /* The server doesn't want it, let's kill the connection right away */
4477 h2c->conn->mux->destroy(h2c);
4478 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4479 return;
4480 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004481 /* At this point, the connection has been added to the
4482 * server idle list, so another thread may already have
4483 * hijacked it, so we can't do anything with it.
4484 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004485 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4486 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004487
Olivier Houchard8a786902018-12-15 16:05:40 +01004488 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004489 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004490 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004491 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004492 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004493 &h2c->conn->hash_node->node,
4494 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004495 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004496 }
4497 }
4498 }
4499
Willy Tarreaue323f342018-03-28 13:51:45 +02004500 /* We don't want to close right now unless we're removing the
4501 * last stream, and either the connection is in error, or it
4502 * reached the ID already specified in a GOAWAY frame received
4503 * or sent (as seen by last_sid >= 0).
4504 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004505 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004506 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004507 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004508 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004509 }
4510 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004511 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004512 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004513 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004514 else
4515 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004516}
4517
Willy Tarreau88bdba32019-05-13 18:17:53 +02004518/* Performs a synchronous or asynchronous shutr(). */
4519static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004520{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004521 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004522
Willy Tarreauf983d002019-05-14 10:40:21 +02004523 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004524 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004525
Willy Tarreau7838a792019-08-12 18:42:03 +02004526 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4527
Willy Tarreau18059042019-01-31 19:12:48 +01004528 /* a connstream may require us to immediately kill the whole connection
4529 * for example because of a "tcp-request content reject" rule that is
4530 * normally used to limit abuse. In this case we schedule a goaway to
4531 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004532 */
Christopher Fauletca2b5272022-03-30 14:48:10 +02004533 if ((h2s->endp->flags & CS_EP_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004534 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004535 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004536 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4537 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4538 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004539 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4540 /* Nothing was never sent for this stream, so reset with
4541 * REFUSED_STREAM error to let the client retry the
4542 * request.
4543 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004544 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004545 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4546 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004547 else {
4548 /* a final response was already provided, we don't want this
4549 * stream anymore. This may happen when the server responds
4550 * before the end of an upload and closes quickly (redirect,
4551 * deny, ...)
4552 */
4553 h2s_error(h2s, H2_ERR_CANCEL);
4554 }
Willy Tarreau18059042019-01-31 19:12:48 +01004555
Willy Tarreau90c32322017-11-24 08:00:30 +01004556 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004557 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004558 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004559
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004560 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004561 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004562 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004563 done:
4564 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004565 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004566 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004567add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004568 /* Let the handler know we want to shutr, and add ourselves to the
4569 * most relevant list if not yet done. h2_deferred_shut() will be
4570 * automatically called via the shut_tl tasklet when there's room
4571 * again.
4572 */
4573 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004574 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004575 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004576 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004577 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004578 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004579 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004580 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004581 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004582}
4583
Willy Tarreau88bdba32019-05-13 18:17:53 +02004584/* Performs a synchronous or asynchronous shutw(). */
4585static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004586{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004587 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004588
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004589 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004590 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004591
Willy Tarreau7838a792019-08-12 18:42:03 +02004592 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4593
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004594 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004595 /* we can cleanly close using an empty data frame only after headers */
4596
4597 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4598 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004599 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004600
4601 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004602 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004603 else
4604 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004605 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004606 /* a connstream may require us to immediately kill the whole connection
4607 * for example because of a "tcp-request content reject" rule that is
4608 * normally used to limit abuse. In this case we schedule a goaway to
4609 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004610 */
Christopher Fauletca2b5272022-03-30 14:48:10 +02004611 if ((h2s->endp->flags & CS_EP_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004612 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004613 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004614 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4615 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4616 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004617 else {
4618 /* Nothing was never sent for this stream, so reset with
4619 * REFUSED_STREAM error to let the client retry the
4620 * request.
4621 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004622 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004623 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4624 }
Willy Tarreau18059042019-01-31 19:12:48 +01004625
Willy Tarreau90c32322017-11-24 08:00:30 +01004626 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004627 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004628 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004629
Willy Tarreau00dd0782018-03-01 16:31:34 +01004630 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004631 }
4632
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004633 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004634 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004635
4636 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4637
Willy Tarreau88bdba32019-05-13 18:17:53 +02004638 done:
4639 h2s->flags &= ~H2_SF_WANT_SHUTW;
4640 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004641
4642 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004643 /* Let the handler know we want to shutw, and add ourselves to the
4644 * most relevant list if not yet done. h2_deferred_shut() will be
4645 * automatically called via the shut_tl tasklet when there's room
4646 * again.
4647 */
4648 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004649 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004650 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004651 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004652 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004653 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004654 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004655 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004656 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004657}
4658
Willy Tarreau5723f292020-01-10 15:16:57 +01004659/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004660 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4661 * and prevented the last frame from being emitted.
4662 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004663struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004664{
4665 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004666 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004667
Willy Tarreau7838a792019-08-12 18:42:03 +02004668 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4669
Willy Tarreau5723f292020-01-10 15:16:57 +01004670 if (h2s->flags & H2_SF_NOTIFIED) {
4671 /* some data processing remains to be done first */
4672 goto end;
4673 }
4674
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004675 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004676 h2_do_shutw(h2s);
4677
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004678 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004679 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004680
Willy Tarreau88bdba32019-05-13 18:17:53 +02004681 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004682 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004683 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004684
Willy Tarreau88bdba32019-05-13 18:17:53 +02004685 if (!h2s->cs) {
4686 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004687 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004688 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004689 t = NULL;
4690 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004691 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004692 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004693 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004694 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004695 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004696}
4697
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004698/* shutr() called by the conn_stream (mux_ops.shutr) */
Christopher Faulet07976562022-03-31 11:05:05 +02004699static void h2_shutr(struct conn_stream *cs, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004700{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004701 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004702
Willy Tarreau7838a792019-08-12 18:42:03 +02004703 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004704 if (mode)
4705 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004706 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004707}
4708
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004709/* shutw() called by the conn_stream (mux_ops.shutw) */
Christopher Faulet07976562022-03-31 11:05:05 +02004710static void h2_shutw(struct conn_stream *cs, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004711{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004712 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004713
Willy Tarreau7838a792019-08-12 18:42:03 +02004714 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004715 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004716 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004717}
4718
Christopher Faulet9b79a102019-07-15 11:22:56 +02004719/* Decode the payload of a HEADERS frame and produce the HTX request or response
4720 * depending on the connection's side. Returns a positive value on success, a
4721 * negative value on failure, or 0 if it couldn't proceed. May report connection
4722 * errors in h2c->errcode if the frame is non-decodable and the connection
4723 * unrecoverable. In absence of connection error when a failure is reported, the
4724 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004725 *
4726 * The function may fold CONTINUATION frames into the initial HEADERS frame
4727 * by removing padding and next frame header, then moving the CONTINUATION
4728 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4729 * leaving a hole between the main frame and the beginning of the next one.
4730 * The possibly remaining incomplete or next frame at the end may be moved
4731 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4732 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4733 *
4734 * A buffer at the beginning of processing may look like this :
4735 *
4736 * ,---.---------.-----.--------------.--------------.------.---.
4737 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4738 * `---^---------^-----^--------------^--------------^------^---'
4739 * | | <-----> | |
4740 * area | dpl | wrap
4741 * |<--------------> |
4742 * | dfl |
4743 * |<-------------------------------------------------->|
4744 * head data
4745 *
4746 * Padding is automatically overwritten when folding, participating to the
4747 * hole size after dfl :
4748 *
4749 * ,---.------------------------.-----.--------------.------.---.
4750 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4751 * `---^------------------------^-----^--------------^------^---'
4752 * | | <-----> | |
4753 * area | hole | wrap
4754 * |<-----------------------> |
4755 * | dfl |
4756 * |<-------------------------------------------------->|
4757 * head data
4758 *
4759 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4760 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4761 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004762 *
4763 * The <flags> field must point to either the stream's flags or to a copy of it
4764 * so that the function can update the following flags :
4765 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004766 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004767 *
4768 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4769 * decoding, in order to detect if we're dealing with a headers or a trailers
4770 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004771 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004772static 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 +02004773{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004774 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004775 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004776 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004777 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004778 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004779 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004780 int flen; // header frame len
4781 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004782 int ret = 0;
4783 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004784 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004785
Willy Tarreau7838a792019-08-12 18:42:03 +02004786 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4787
Willy Tarreauea18f862018-12-22 20:19:26 +01004788next_frame:
4789 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4790 goto leave; // incomplete input frame
4791
4792 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4793 * this case, we'll try to paste it immediately after the initial
4794 * HEADERS frame payload and kill any possible padding. The initial
4795 * frame's length will be increased to represent the concatenation
4796 * of the two frames. The next frame is read from position <tlen>
4797 * and written at position <flen> (minus padding if some is present).
4798 */
4799 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4800 struct h2_fh hdr;
4801 int clen; // CONTINUATION frame's payload length
4802
Willy Tarreau7838a792019-08-12 18:42:03 +02004803 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 +01004804 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4805 /* no more data, the buffer may be full, either due to
4806 * too large a frame or because of too large a hole that
4807 * we're going to compact at the end.
4808 */
4809 goto leave;
4810 }
4811
4812 if (hdr.ft != H2_FT_CONTINUATION) {
4813 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004814 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 +01004815 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004816 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004817 goto fail;
4818 }
4819
4820 if (hdr.sid != h2c->dsi) {
4821 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004822 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 +01004823 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004824 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004825 goto fail;
4826 }
4827
4828 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4829 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004830 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 +01004831 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4832 goto fail;
4833 }
4834
4835 /* detect when we must stop aggragating frames */
4836 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4837
4838 /* Take as much as we can of the CONTINUATION frame's payload */
4839 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4840 if (clen > hdr.len)
4841 clen = hdr.len;
4842
4843 /* Move the frame's payload over the padding, hole and frame
4844 * header. At least one of hole or dpl is null (see diagrams
4845 * above). The hole moves after the new aggragated frame.
4846 */
4847 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 +02004848 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004849 hole += h2c->dpl + 9;
4850 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004851 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 +01004852 goto next_frame;
4853 }
4854
4855 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004856
Willy Tarreau13278b42017-10-13 19:23:14 +02004857 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004858 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004859 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004860 copy = alloc_trash_chunk();
4861 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004862 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 +02004863 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4864 goto fail;
4865 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004866 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4867 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4868 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004869 }
4870
Willy Tarreau13278b42017-10-13 19:23:14 +02004871 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4872 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004873 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004874 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004875 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 +01004876 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004877 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004878 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004879 }
4880
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004881 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004882 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 +01004883 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4884 goto fail;
4885 }
4886
Willy Tarreau13278b42017-10-13 19:23:14 +02004887 hdrs += 5; // stream dep = 4, weight = 1
4888 flen -= 5;
4889 }
4890
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004891 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004892 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 +01004893 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004894 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004895 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004896
Willy Tarreau937f7602018-02-26 15:22:17 +01004897 /* we can't retry a failed decompression operation so we must be very
4898 * careful not to take any risks. In practice the output buffer is
4899 * always empty except maybe for trailers, in which case we simply have
4900 * to wait for the upper layer to finish consuming what is available.
4901 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004902 htx = htx_from_buf(rxbuf);
4903 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004904 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 +02004905 h2c->flags |= H2_CF_DEM_SFULL;
4906 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004907 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004908
Willy Tarreau25919232019-01-03 14:48:18 +01004909 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004910 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4911 sizeof(list)/sizeof(list[0]), tmp);
4912 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004913 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 +01004914 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4915 goto fail;
4916 }
4917
Willy Tarreau25919232019-01-03 14:48:18 +01004918 /* The PACK decompressor was updated, let's update the input buffer and
4919 * the parser's state to commit these changes and allow us to later
4920 * fail solely on the stream if needed.
4921 */
4922 b_del(&h2c->dbuf, h2c->dfl + hole);
4923 h2c->dfl = hole = 0;
4924 h2c->st0 = H2_CS_FRAME_H;
4925
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004926 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004927 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004928 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004929 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004930 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004931 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004932
Willy Tarreau88d138e2019-01-02 19:38:14 +01004933 if (*flags & H2_SF_HEADERS_RCVD)
4934 goto trailers;
4935
4936 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004937 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004938 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004939 else
4940 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004941
Christopher Faulet3d875582021-04-26 17:46:13 +02004942 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004943 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004944 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4945 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004946 goto fail;
4947 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004948
Willy Tarreau174b06a2018-04-25 18:13:58 +02004949 if (msgf & H2_MSGF_BODY) {
4950 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004951 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004952 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004953 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004954 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004955 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004956 if (msgf & H2_MSGF_BODYLESS_RSP)
4957 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004958
Christopher Fauletd0db4232021-01-22 11:46:30 +01004959 if (msgf & H2_MSGF_BODY_TUNNEL)
4960 *flags |= H2_SF_BODY_TUNNEL;
4961 else {
4962 /* Abort the tunnel attempt, if any */
4963 if (*flags & H2_SF_BODY_TUNNEL)
4964 *flags |= H2_SF_TUNNEL_ABRT;
4965 *flags &= ~H2_SF_BODY_TUNNEL;
4966 }
4967
Willy Tarreau88d138e2019-01-02 19:38:14 +01004968 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004969 /* indicate that a HEADERS frame was received for this stream, except
4970 * for 1xx responses. For 1xx responses, another HEADERS frame is
4971 * expected.
4972 */
4973 if (!(msgf & H2_MSGF_RSP_1XX))
4974 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004975
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004976 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4977 /* no more data are expected for this message */
4978 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004979 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004980
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004981 if (msgf & H2_MSGF_EXT_CONNECT)
4982 *flags |= H2_SF_EXT_CONNECT_RCVD;
4983
Willy Tarreau86277d42019-01-02 15:36:11 +01004984 /* success */
4985 ret = 1;
4986
Willy Tarreau68dd9852017-07-03 14:44:26 +02004987 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004988 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004989 * move the remaining data over it.
4990 */
4991 if (hole) {
4992 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4993 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4994 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4995 b_sub(&h2c->dbuf, hole);
4996 }
4997
Christopher Faulet07f88d72021-04-21 10:39:53 +02004998 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004999 /* too large frames */
5000 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01005001 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01005002 }
5003
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005004 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01005005 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02005006 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02005007 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01005008 return ret;
5009
Willy Tarreau68dd9852017-07-03 14:44:26 +02005010 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01005011 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02005012 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01005013
5014 trailers:
5015 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01005016 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
5017 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02005018 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 +01005019 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02005020 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01005021 goto fail;
5022 }
5023
Christopher Faulet9b79a102019-07-15 11:22:56 +02005024 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02005025 if (h2_make_htx_trailers(list, htx) <= 0) {
5026 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 +02005027 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005028 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01005029 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02005030}
5031
Christopher Faulet9b79a102019-07-15 11:22:56 +02005032/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005033 * parser state is automatically updated. Returns > 0 if it could completely
5034 * send the current frame, 0 if it couldn't complete, in which case
Christopher Fauletb041b232022-03-24 10:27:02 +01005035 * CS_EP_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005036 * DATA frame can return 0 as a valid result). Stream errors are reported in
5037 * h2s->errcode and connection errors in h2c->errcode. The caller must already
5038 * have checked the frame header and ensured that the frame was complete or the
5039 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02005040 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01005041static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02005042{
5043 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005044 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005045 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005046 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005047 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005048 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02005049
Willy Tarreau7838a792019-08-12 18:42:03 +02005050 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5051
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005052 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02005053
Olivier Houchard638b7992018-08-16 15:41:52 +02005054 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005055 if (!csbuf) {
5056 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02005057 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 +01005058 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005059 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005060 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005061
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005062try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005063 flen = h2c->dfl - h2c->dpl;
5064 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005065 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005066
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005067 if (flen > b_data(&h2c->dbuf)) {
5068 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005069 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005070 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005071 }
5072
Christopher Faulet9b79a102019-07-15 11:22:56 +02005073 block = htx_free_data_space(htx);
5074 if (!block) {
5075 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005076 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 +02005077 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005078 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005079 if (flen > block)
5080 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005081
Christopher Faulet9b79a102019-07-15 11:22:56 +02005082 /* here, flen is the max we can copy into the output buffer */
5083 block = b_contig_data(&h2c->dbuf, 0);
5084 if (flen > block)
5085 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005086
Christopher Faulet9b79a102019-07-15 11:22:56 +02005087 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005088 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 +02005089
Christopher Faulet9b79a102019-07-15 11:22:56 +02005090 b_del(&h2c->dbuf, sent);
5091 h2c->dfl -= sent;
5092 h2c->rcvd_c += sent;
5093 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005094
Christopher Faulet9b79a102019-07-15 11:22:56 +02005095 if (h2s->flags & H2_SF_DATA_CLEN) {
5096 h2s->body_len -= sent;
5097 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005098 }
5099
Christopher Faulet9b79a102019-07-15 11:22:56 +02005100 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005101 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005102 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 +01005103 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005104 }
5105
Christopher Faulet9b79a102019-07-15 11:22:56 +02005106 goto try_again;
5107
Willy Tarreau4a28da12018-01-04 14:41:00 +01005108 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005109 /* here we're done with the frame, all the payload (except padding) was
5110 * transferred.
5111 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005112
Christopher Faulet5be651d2021-01-22 15:28:03 +01005113 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5114 /* no more data are expected for this message. This add the EOM
5115 * flag but only on the response path or if no tunnel attempt
5116 * was aborted. Otherwise (request path + tunnel abrted), the
5117 * EOM was already reported.
5118 */
Christopher Faulet33724322021-02-10 09:04:59 +01005119 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5120 /* If we receive an empty DATA frame with ES flag while the HTX
5121 * message is empty, we must be sure to push a block to be sure
5122 * the HTX EOM flag will be handled on the other side. It is a
5123 * workaround because for now it is not possible to push empty
5124 * HTX DATA block. And without this block, there is no way to
5125 * "commit" the end of the message.
5126 */
5127 if (htx_is_empty(htx)) {
5128 if (!htx_add_endof(htx, HTX_BLK_EOT))
5129 goto fail;
5130 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005131 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005132 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005133 }
5134
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005135 h2c->rcvd_c += h2c->dpl;
5136 h2c->rcvd_s += h2c->dpl;
5137 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005138 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005139 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005140 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005141 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005142 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005143 if (htx)
5144 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005145 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005146 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005147}
5148
Willy Tarreau115e83b2018-12-01 19:17:53 +01005149/* Try to send a HEADERS frame matching HTX response present in HTX message
5150 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5151 * must check the stream's status to detect any error which might have happened
5152 * subsequently to a successful send. The htx blocks are automatically removed
5153 * from the message. The htx message is assumed to be valid since produced from
5154 * the internal code, hence it contains a start line, an optional series of
5155 * header blocks and an end of header, otherwise an invalid frame could be
5156 * emitted and the resulting htx message could be left in an inconsistent state.
5157 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005158static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005159{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005160 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005161 struct h2c *h2c = h2s->h2c;
5162 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005163 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005164 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005165 struct htx_sl *sl;
5166 enum htx_blk_type type;
5167 int es_now = 0;
5168 int ret = 0;
5169 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005170
Willy Tarreau7838a792019-08-12 18:42:03 +02005171 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5172
Willy Tarreau115e83b2018-12-01 19:17:53 +01005173 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005174 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005175 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005176 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005177 return 0;
5178 }
5179
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005180 /* get the start line (we do have one) and the rest of the headers,
5181 * that we dump starting at header 0 */
5182 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005183 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005184 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005185 type = htx_get_blk_type(blk);
5186
5187 if (type == HTX_BLK_UNUSED)
5188 continue;
5189
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005190 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005191 break;
5192
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005193 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005194 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005195 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5196 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5197 goto fail;
5198 }
5199
5200 list[hdr].n = htx_get_blk_name(htx, blk);
5201 list[hdr].v = htx_get_blk_value(htx, blk);
5202 hdr++;
5203 }
5204 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005205 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005206 sl = htx_get_blk_ptr(htx, blk);
5207 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005208 if (h2s->status == 204 || h2s->status == 304)
5209 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005210 if (h2s->status < 100 || h2s->status > 999) {
5211 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5212 goto fail;
5213 }
5214 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005215 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5216 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5217 h2s->status = 200;
5218 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5219 }
5220 else {
5221 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5222 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5223 goto fail;
5224 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005225 }
5226 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5227 /* Abort the tunnel attempt */
5228 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5229 h2s->flags |= H2_SF_TUNNEL_ABRT;
5230 }
5231 }
5232 else {
5233 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 +01005234 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005235 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005236 }
5237
Christopher Faulet56498132021-01-29 11:39:43 +01005238 /* The start-line me be defined */
5239 BUG_ON(!sl);
5240
Willy Tarreau115e83b2018-12-01 19:17:53 +01005241 /* marker for end of headers */
5242 list[hdr].n = ist("");
5243
Willy Tarreau9c218e72019-05-26 10:08:28 +02005244 mbuf = br_tail(h2c->mbuf);
5245 retry:
5246 if (!h2_get_buf(h2c, mbuf)) {
5247 h2c->flags |= H2_CF_MUX_MALLOC;
5248 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005249 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 +02005250 return 0;
5251 }
5252
Willy Tarreau115e83b2018-12-01 19:17:53 +01005253 chunk_reset(&outbuf);
5254
5255 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005256 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5257 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005258 break;
5259 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005260 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005261 }
5262
5263 if (outbuf.size < 9)
5264 goto full;
5265
5266 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5267 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5268 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5269 outbuf.data = 9;
5270
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005271 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5272 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5273 * dynamic table size update so that some clients are not
5274 * confused. In practice we only need to send the DTSU when the
5275 * advertised size is lower than the current one, and since we
5276 * don't use it and don't care about the default 4096 bytes,
5277 * we only ack it with a zero size thus we at most have to deal
5278 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5279 * below for the whole context and interoperability risks:
5280 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5281 */
5282 if (b_room(&outbuf) < 1)
5283 goto full;
5284 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5285
5286 /* let's not update the flags now but only once the buffer is
5287 * really committed.
5288 */
5289 }
5290
Willy Tarreau115e83b2018-12-01 19:17:53 +01005291 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005292 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005293 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005294 goto realign_again;
5295 goto full;
5296 }
5297
5298 /* encode all headers, stop at empty name */
5299 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5300 /* these ones do not exist in H2 and must be dropped. */
5301 if (isteq(list[hdr].n, ist("connection")) ||
5302 isteq(list[hdr].n, ist("proxy-connection")) ||
5303 isteq(list[hdr].n, ist("keep-alive")) ||
5304 isteq(list[hdr].n, ist("upgrade")) ||
5305 isteq(list[hdr].n, ist("transfer-encoding")))
5306 continue;
5307
Christopher Faulet86d144c2019-08-14 16:32:25 +02005308 /* Skip all pseudo-headers */
5309 if (*(list[hdr].n.ptr) == ':')
5310 continue;
5311
Willy Tarreau115e83b2018-12-01 19:17:53 +01005312 if (isteq(list[hdr].n, ist("")))
5313 break; // end
5314
5315 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5316 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005317 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005318 goto realign_again;
5319 goto full;
5320 }
5321 }
5322
Willy Tarreaucb985a42019-10-07 16:56:34 +02005323 /* update the frame's size */
5324 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5325
5326 if (outbuf.data > h2c->mfs + 9) {
5327 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5328 /* output full */
5329 if (b_space_wraps(mbuf))
5330 goto realign_again;
5331 goto full;
5332 }
5333 }
5334
Willy Tarreau3a537072021-06-17 08:40:04 +02005335 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5336
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005337 /* remove all header blocks including the EOH and compute the
5338 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005339 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005340 ret = 0;
5341 blk = htx_get_head_blk(htx);
5342 while (blk) {
5343 type = htx_get_blk_type(blk);
5344 ret += htx_get_blksz(blk);
5345 blk = htx_remove_blk(htx, blk);
5346 /* The removed block is the EOH */
5347 if (type == HTX_BLK_EOH)
5348 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005349 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005350
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01005351 if (!h2s->cs || h2s->endp->flags & CS_EP_SHW) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005352 /* Response already closed: add END_STREAM */
5353 es_now = 1;
5354 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005355 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5356 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005357 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005358 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005359 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5360 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005361 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005362
Willy Tarreau115e83b2018-12-01 19:17:53 +01005363 if (es_now)
5364 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5365
5366 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005367 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005368
5369 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5370 * 1xx responses, another HEADERS frame is expected.
5371 */
Christopher Faulet89899422020-12-07 18:24:43 +01005372 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005373 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005374
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005375 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5376 /* was sent above */
5377 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005378 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005379 }
5380
Willy Tarreau115e83b2018-12-01 19:17:53 +01005381 if (es_now) {
5382 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005383 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 +01005384 if (h2s->st == H2_SS_OPEN)
5385 h2s->st = H2_SS_HLOC;
5386 else
5387 h2s_close(h2s);
5388 }
5389
5390 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005391 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005392 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005393 return ret;
5394 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005395 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5396 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005397 h2c->flags |= H2_CF_MUX_MFULL;
5398 h2s->flags |= H2_SF_BLK_MROOM;
5399 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005400 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 +01005401 goto end;
5402 fail:
5403 /* unparsable HTX messages, too large ones to be produced in the local
5404 * list etc go here (unrecoverable errors).
5405 */
5406 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5407 ret = 0;
5408 goto end;
5409}
5410
Willy Tarreau80739692018-10-05 11:35:57 +02005411/* Try to send a HEADERS frame matching HTX request present in HTX message
5412 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5413 * must check the stream's status to detect any error which might have happened
5414 * subsequently to a successful send. The htx blocks are automatically removed
5415 * from the message. The htx message is assumed to be valid since produced from
5416 * the internal code, hence it contains a start line, an optional series of
5417 * header blocks and an end of header, otherwise an invalid frame could be
5418 * emitted and the resulting htx message could be left in an inconsistent state.
5419 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005420static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005421{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005422 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005423 struct h2c *h2c = h2s->h2c;
5424 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005425 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005426 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005427 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005428 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005429 enum htx_blk_type type;
5430 int es_now = 0;
5431 int ret = 0;
5432 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005433 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005434
Willy Tarreau7838a792019-08-12 18:42:03 +02005435 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5436
Willy Tarreau80739692018-10-05 11:35:57 +02005437 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005438 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005439 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005440 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005441 return 0;
5442 }
5443
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005444 /* get the start line (we do have one) and the rest of the headers,
5445 * that we dump starting at header 0 */
5446 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005447 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005448 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005449 type = htx_get_blk_type(blk);
5450
5451 if (type == HTX_BLK_UNUSED)
5452 continue;
5453
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005454 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005455 break;
5456
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005457 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005458 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005459 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5460 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5461 goto fail;
5462 }
Willy Tarreau80739692018-10-05 11:35:57 +02005463
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005464 list[hdr].n = htx_get_blk_name(htx, blk);
5465 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005466
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005467 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005468 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5469 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005470 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005471
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005472 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005473 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005474 /* rfc 7230 #6.1 Connection = list of tokens */
5475 struct ist connection_ist = list[hdr].v;
5476 do {
5477 if (isteqi(iststop(connection_ist, ','),
5478 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005479 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5480 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5481 goto fail;
5482 }
5483
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005484 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 +01005485 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5486 sl->info.req.meth = HTTP_METH_CONNECT;
5487 meth = ist("CONNECT");
5488
5489 extended_connect = 1;
5490 break;
5491 }
5492
5493 connection_ist = istadv(istfind(connection_ist, ','), 1);
5494 } while (istlen(connection_ist));
5495 }
5496
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005497 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005498 /* rfc 7230 #6.7 Upgrade = list of protocols
5499 * rfc 8441 #4 Extended connect = :protocol is single-valued
5500 *
5501 * only first HTTP/1 protocol is preserved
5502 */
5503 const struct ist protocol = iststop(list[hdr].v, ',');
5504 /* upgrade_protocol field is 16 bytes long in h2s */
5505 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5506 }
5507
5508 if (isteq(list[hdr].n, ist("host")))
5509 host = list[hdr].v;
5510
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005511 hdr++;
5512 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005513 else if (type == HTX_BLK_REQ_SL) {
5514 BUG_ON(sl); /* Only one start-line expected */
5515 sl = htx_get_blk_ptr(htx, blk);
5516 meth = htx_sl_req_meth(sl);
5517 uri = htx_sl_req_uri(sl);
5518 if (sl->info.req.meth == HTTP_METH_HEAD)
5519 h2s->flags |= H2_SF_BODYLESS_RESP;
5520 if (unlikely(uri.len == 0)) {
5521 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5522 goto fail;
5523 }
5524 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005525 else {
5526 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5527 goto fail;
5528 }
Willy Tarreau80739692018-10-05 11:35:57 +02005529 }
5530
Christopher Faulet56498132021-01-29 11:39:43 +01005531 /* The start-line me be defined */
5532 BUG_ON(!sl);
5533
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005534 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005535 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005536 struct server *srv = objt_server(h2c->conn->target);
5537
5538 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005539 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005540 list[hdr].v = ist(srv->id);
5541 hdr++;
5542 }
5543 }
5544
Willy Tarreau80739692018-10-05 11:35:57 +02005545 /* marker for end of headers */
5546 list[hdr].n = ist("");
5547
Willy Tarreau9c218e72019-05-26 10:08:28 +02005548 mbuf = br_tail(h2c->mbuf);
5549 retry:
5550 if (!h2_get_buf(h2c, mbuf)) {
5551 h2c->flags |= H2_CF_MUX_MALLOC;
5552 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005553 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 +02005554 return 0;
5555 }
5556
Willy Tarreau80739692018-10-05 11:35:57 +02005557 chunk_reset(&outbuf);
5558
5559 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005560 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5561 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005562 break;
5563 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005564 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005565 }
5566
5567 if (outbuf.size < 9)
5568 goto full;
5569
5570 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5571 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5572 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5573 outbuf.data = 9;
5574
5575 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005576 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005577 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005578 goto realign_again;
5579 goto full;
5580 }
5581
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005582 auth = ist(NULL);
5583
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005584 /* RFC7540 #8.3: the CONNECT method must have :
5585 * - :authority set to the URI part (host:port)
5586 * - :method set to CONNECT
5587 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005588 *
5589 * Note that this is not applicable in case of the Extended CONNECT
5590 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005591 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005592 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005593 auth = uri;
5594
5595 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5596 /* output full */
5597 if (b_space_wraps(mbuf))
5598 goto realign_again;
5599 goto full;
5600 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005601 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005602 } else {
5603 /* other methods need a :scheme. If an authority is known from
5604 * the request line, it must be sent, otherwise only host is
5605 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005606 *
5607 * This code is also applicable for Extended CONNECT protocol
5608 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005609 */
5610 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005611
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005612 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5613 /* the URI seems to start with a scheme */
5614 int len = 1;
5615
5616 while (len < uri.len && uri.ptr[len] != ':')
5617 len++;
5618
5619 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5620 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005621 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005622 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005623
5624 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005625 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005626 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5627 auth.len++;
5628
Tim Duesterhus154374c2021-03-02 18:57:27 +01005629 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005630 }
5631 }
5632
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005633 /* For Extended CONNECT, the :authority must be present.
5634 * Use host value for it.
5635 */
5636 if (unlikely(extended_connect) && isttest(host))
5637 auth = host;
5638
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005639 if (!scheme.len) {
5640 /* no explicit scheme, we're using an origin-form URI,
5641 * probably from an H1 request transcoded to H2 via an
5642 * external layer, then received as H2 without authority.
5643 * So we have to look up the scheme from the HTX flags.
5644 * In such a case only http and https are possible, and
5645 * https is the default (sent by browsers).
5646 */
5647 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5648 scheme = ist("http");
5649 else
5650 scheme = ist("https");
5651 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005652
5653 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005654 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005655 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005656 goto realign_again;
5657 goto full;
5658 }
Willy Tarreau80739692018-10-05 11:35:57 +02005659
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005660 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005661 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005662 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005663 goto realign_again;
5664 goto full;
5665 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005666
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005667 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5668 * be sent as '/' or '*'.
5669 */
5670 if (unlikely(!uri.len)) {
5671 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5672 uri = ist("*");
5673 else
5674 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005675 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005676
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005677 if (!hpack_encode_path(&outbuf, uri)) {
5678 /* output full */
5679 if (b_space_wraps(mbuf))
5680 goto realign_again;
5681 goto full;
5682 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005683
5684 /* encode the pseudo-header protocol from rfc8441 if using
5685 * Extended CONNECT method.
5686 */
5687 if (unlikely(extended_connect)) {
5688 const struct ist protocol = ist(h2s->upgrade_protocol);
5689 if (isttest(protocol)) {
5690 if (!hpack_encode_header(&outbuf,
5691 ist(":protocol"),
5692 protocol)) {
5693 /* output full */
5694 if (b_space_wraps(mbuf))
5695 goto realign_again;
5696 goto full;
5697 }
5698 }
5699 }
Willy Tarreau80739692018-10-05 11:35:57 +02005700 }
5701
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005702 /* encode all headers, stop at empty name. Host is only sent if we
5703 * do not provide an authority.
5704 */
Willy Tarreau80739692018-10-05 11:35:57 +02005705 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005706 struct ist n = list[hdr].n;
5707 struct ist v = list[hdr].v;
5708
Willy Tarreau80739692018-10-05 11:35:57 +02005709 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005710 if (isteq(n, ist("connection")) ||
5711 (auth.len && isteq(n, ist("host"))) ||
5712 isteq(n, ist("proxy-connection")) ||
5713 isteq(n, ist("keep-alive")) ||
5714 isteq(n, ist("upgrade")) ||
5715 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005716 continue;
5717
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005718 if (isteq(n, ist("te"))) {
5719 /* "te" may only be sent with "trailers" if this value
5720 * is present, otherwise it must be deleted.
5721 */
5722 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005723 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005724 continue;
5725 v = ist("trailers");
5726 }
5727
Christopher Faulet86d144c2019-08-14 16:32:25 +02005728 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005729 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005730 continue;
5731
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005732 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005733 break; // end
5734
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005735 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005736 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005737 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005738 goto realign_again;
5739 goto full;
5740 }
5741 }
5742
Willy Tarreaucb985a42019-10-07 16:56:34 +02005743 /* update the frame's size */
5744 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5745
5746 if (outbuf.data > h2c->mfs + 9) {
5747 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5748 /* output full */
5749 if (b_space_wraps(mbuf))
5750 goto realign_again;
5751 goto full;
5752 }
5753 }
5754
Willy Tarreau3a537072021-06-17 08:40:04 +02005755 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5756
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005757 /* remove all header blocks including the EOH and compute the
5758 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005759 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005760 ret = 0;
5761 blk = htx_get_head_blk(htx);
5762 while (blk) {
5763 type = htx_get_blk_type(blk);
5764 ret += htx_get_blksz(blk);
5765 blk = htx_remove_blk(htx, blk);
5766 /* The removed block is the EOH */
5767 if (type == HTX_BLK_EOH)
5768 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005769 }
Willy Tarreau80739692018-10-05 11:35:57 +02005770
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01005771 if (!h2s->cs || h2s->endp->flags & CS_EP_SHW) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005772 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005773 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005774 }
5775 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5776 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5777 * request)
5778 */
5779 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5780 es_now = 1;
5781 }
Willy Tarreau80739692018-10-05 11:35:57 +02005782
Willy Tarreau80739692018-10-05 11:35:57 +02005783 if (es_now)
5784 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5785
5786 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005787 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005788 h2s->flags |= H2_SF_HEADERS_SENT;
5789 h2s->st = H2_SS_OPEN;
5790
Willy Tarreau80739692018-10-05 11:35:57 +02005791 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005792 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 +02005793 // trim any possibly pending data (eg: inconsistent content-length)
5794 h2s->flags |= H2_SF_ES_SENT;
5795 h2s->st = H2_SS_HLOC;
5796 }
5797
Willy Tarreau80739692018-10-05 11:35:57 +02005798 end:
5799 return ret;
5800 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005801 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5802 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005803 h2c->flags |= H2_CF_MUX_MFULL;
5804 h2s->flags |= H2_SF_BLK_MROOM;
5805 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005806 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 +02005807 goto end;
5808 fail:
5809 /* unparsable HTX messages, too large ones to be produced in the local
5810 * list etc go here (unrecoverable errors).
5811 */
5812 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5813 ret = 0;
5814 goto end;
5815}
5816
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005817/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005818 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5819 * caller must check the stream's status to detect any error which might have
5820 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005821 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005822 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005823static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005824{
5825 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005826 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005827 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005828 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005829 size_t total = 0;
5830 int es_now = 0;
5831 int bsize; /* htx block size */
5832 int fsize; /* h2 frame size */
5833 struct htx_blk *blk;
5834 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005835 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005836
Willy Tarreau7838a792019-08-12 18:42:03 +02005837 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5838
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005839 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005840 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005841 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005842 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005843 goto end;
5844 }
5845
Willy Tarreau98de12a2018-12-12 07:03:00 +01005846 htx = htx_from_buf(buf);
5847
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005848 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005849
5850 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005851 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005852 goto end;
5853
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005854 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005855 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5856 /* The response HEADERS frame not received yet. Thus the tunnel
5857 * is not fully established yet. In this situation, we block
5858 * data sending.
5859 */
5860 h2s->flags |= H2_SF_BLK_MBUSY;
5861 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5862 goto end;
5863 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005864 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5865 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5866 * Thus the stream is closed with the CANCEL error. The error will be reported to
5867 * the upper layer as aserver abort. But at this stage there is nothing more we can
5868 * do. We just wait for the end of the response to be sure to not truncate it.
5869 */
5870 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5871 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5872 h2s->flags |= H2_SF_BLK_MBUSY;
5873 }
5874 else {
5875 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5876 h2s_error(h2s, H2_ERR_CANCEL);
5877 }
5878 goto end;
5879 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005880
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005881 blk = htx_get_head_blk(htx);
5882 type = htx_get_blk_type(blk);
5883 bsize = htx_get_blksz(blk);
5884 fsize = bsize;
5885 trunc_out = 0;
5886 if (type != HTX_BLK_DATA)
5887 goto end;
5888
Willy Tarreau9c218e72019-05-26 10:08:28 +02005889 mbuf = br_tail(h2c->mbuf);
5890 retry:
5891 if (!h2_get_buf(h2c, mbuf)) {
5892 h2c->flags |= H2_CF_MUX_MALLOC;
5893 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005894 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 +02005895 goto end;
5896 }
5897
Willy Tarreau98de12a2018-12-12 07:03:00 +01005898 /* Perform some optimizations to reduce the number of buffer copies.
5899 * First, if the mux's buffer is empty and the htx area contains
5900 * exactly one data block of the same size as the requested count, and
5901 * this count fits within the frame size, the stream's window size, and
5902 * the connection's window size, then it's possible to simply swap the
5903 * caller's buffer with the mux's output buffer and adjust offsets and
5904 * length to match the entire DATA HTX block in the middle. In this
5905 * case we perform a true zero-copy operation from end-to-end. This is
5906 * the situation that happens all the time with large files. Second, if
5907 * this is not possible, but the mux's output buffer is empty, we still
5908 * have an opportunity to avoid the copy to the intermediary buffer, by
5909 * making the intermediary buffer's area point to the output buffer's
5910 * area. In this case we want to skip the HTX header to make sure that
5911 * copies remain aligned and that this operation remains possible all
5912 * the time. This goes for headers, data blocks and any data extracted
5913 * from the HTX blocks.
5914 */
5915 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005916 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005917 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005918 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005919
Willy Tarreaubcc45952019-05-26 10:05:50 +02005920 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005921 /* Too bad there are data left there. We're willing to memcpy/memmove
5922 * up to 1/4 of the buffer, which means that it's OK to copy a large
5923 * frame into a buffer containing few data if it needs to be realigned,
5924 * and that it's also OK to copy few data without realigning. Otherwise
5925 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005926 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005927 if (fsize + 9 <= b_room(mbuf) &&
5928 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005929 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5930 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 +01005931 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005932 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005933
Willy Tarreau9c218e72019-05-26 10:08:28 +02005934 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5935 goto retry;
5936
Willy Tarreau98de12a2018-12-12 07:03:00 +01005937 h2c->flags |= H2_CF_MUX_MFULL;
5938 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005939 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 +01005940 goto end;
5941 }
5942
Christopher Faulet925abdf2021-04-27 22:51:07 +02005943 if (htx->flags & HTX_FL_EOM) {
5944 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5945 * message)
5946 */
5947 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5948 es_now = 1;
5949 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005950 /* map an H2 frame to the HTX block so that we can put the
5951 * frame header there.
5952 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005953 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5954 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005955
5956 /* prepend an H2 DATA frame header just before the DATA block */
5957 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5958 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005959 if (es_now)
5960 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005961 h2_set_frame_size(outbuf.area, fsize);
5962
5963 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005964 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005965 h2c->mws -= fsize;
5966
5967 /* and exchange with our old area */
5968 buf->area = old_area;
5969 buf->data = buf->head = 0;
5970 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005971 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005972
5973 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 +02005974 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005975 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005976
Willy Tarreau98de12a2018-12-12 07:03:00 +01005977 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005978 /* for DATA and EOM we'll have to emit a frame, even if empty */
5979
5980 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005981 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5982 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005983 break;
5984 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005985 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005986 }
5987
5988 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005989 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5990 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005991 h2c->flags |= H2_CF_MUX_MFULL;
5992 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005993 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005994 goto end;
5995 }
5996
5997 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5998 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5999 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6000 outbuf.data = 9;
6001
6002 /* we have in <fsize> the exact number of bytes we need to copy from
6003 * the HTX buffer. We need to check this against the connection's and
6004 * the stream's send windows, and to ensure that this fits in the max
6005 * frame size and in the buffer's available space minus 9 bytes (for
6006 * the frame header). The connection's flow control is applied last so
6007 * that we can use a separate list of streams which are immediately
6008 * unblocked on window opening. Note: we don't implement padding.
6009 */
6010
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006011 if (!fsize)
6012 goto send_empty;
6013
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006014 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006015 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02006016 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02006017 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02006018 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02006019 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 +01006020 goto end;
6021 }
6022
Willy Tarreauee573762018-12-04 15:25:57 +01006023 if (fsize > count)
6024 fsize = count;
6025
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006026 if (fsize > h2s_mws(h2s))
6027 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006028
6029 if (h2c->mfs && fsize > h2c->mfs)
6030 fsize = h2c->mfs; // >0
6031
6032 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02006033 /* It doesn't fit at once. If it at least fits once split and
6034 * the amount of data to move is low, let's defragment the
6035 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006036 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006037 if (b_space_wraps(mbuf) &&
6038 (fsize + 9 <= b_room(mbuf)) &&
6039 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006040 goto realign_again;
6041 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006042 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006043
6044 if (fsize <= 0) {
6045 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02006046 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6047 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006048 h2c->flags |= H2_CF_MUX_MFULL;
6049 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006050 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006051 goto end;
6052 }
6053 }
6054
6055 if (h2c->mws <= 0) {
6056 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02006057 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 +01006058 goto end;
6059 }
6060
6061 if (fsize > h2c->mws)
6062 fsize = h2c->mws;
6063
6064 /* now let's copy this this into the output buffer */
6065 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006066 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006067 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006068 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006069
6070 send_empty:
6071 /* update the frame's size */
6072 h2_set_frame_size(outbuf.area, fsize);
6073
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006074 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006075 total += fsize;
6076 if (fsize == bsize) {
6077 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006078 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6079 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6080 * message)
6081 */
6082 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6083 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006084 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006085 }
6086 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006087 /* we've truncated this block */
6088 htx_cut_data_blk(htx, blk, fsize);
6089 }
6090
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006091 if (es_now)
6092 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6093
6094 /* commit the H2 response */
6095 b_add(mbuf, fsize + 9);
6096
Christopher Faulet925abdf2021-04-27 22:51:07 +02006097 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006098 if (es_now) {
6099 if (h2s->st == H2_SS_OPEN)
6100 h2s->st = H2_SS_HLOC;
6101 else
6102 h2s_close(h2s);
6103
6104 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006105 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 +01006106 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006107 else if (fsize) {
6108 if (fsize == bsize) {
6109 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6110 goto new_frame;
6111 }
6112 else if (trunc_out) {
6113 /* we've truncated this block */
6114 goto new_frame;
6115 }
6116 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006117
6118 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006119 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006120 return total;
6121}
6122
Christopher Faulet991febd2020-12-02 15:17:31 +01006123/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6124 * ES flag set for stream <h2s>. This function is called for response known to
6125 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006126 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006127 * which might have happened subsequently to a successful send. Returns the
6128 * number of data bytes consumed, or zero if nothing done.
6129 */
6130static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6131{
6132 struct h2c *h2c = h2s->h2c;
6133 struct htx *htx;
6134 int bsize; /* htx block size */
6135 int fsize; /* h2 frame size */
6136 struct htx_blk *blk;
6137 enum htx_blk_type type;
6138 size_t total = 0;
6139
6140 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6141
6142 if (h2c_mux_busy(h2c, h2s)) {
6143 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6144 h2s->flags |= H2_SF_BLK_MBUSY;
6145 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6146 goto end;
6147 }
6148
6149 htx = htx_from_buf(buf);
6150
6151 next_data:
6152 if (!count || htx_is_empty(htx))
6153 goto end;
6154 blk = htx_get_head_blk(htx);
6155 type = htx_get_blk_type(blk);
6156 bsize = htx_get_blksz(blk);
6157 fsize = bsize;
6158 if (type != HTX_BLK_DATA)
6159 goto end;
6160
6161 if (fsize > count)
6162 fsize = count;
6163
6164 if (fsize != bsize)
6165 goto skip_data;
6166
6167 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6168 goto skip_data;
6169
6170 /* Here, it is the last block and it is also the end of the message. So
6171 * we can emit an empty DATA frame with the ES flag set
6172 */
6173 if (h2_send_empty_data_es(h2s) <= 0)
6174 goto end;
6175
6176 if (h2s->st == H2_SS_OPEN)
6177 h2s->st = H2_SS_HLOC;
6178 else
6179 h2s_close(h2s);
6180
6181 skip_data:
6182 /* consume incoming HTX block */
6183 total += fsize;
6184 if (fsize == bsize) {
6185 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6186 htx_remove_blk(htx, blk);
6187 goto next_data;
6188 }
6189 else {
6190 /* we've truncated this block */
6191 htx_cut_data_blk(htx, blk, fsize);
6192 }
6193
6194 end:
6195 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6196 return total;
6197}
6198
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006199/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6200 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6201 * processed. The caller must check the stream's status to detect any error
6202 * which might have happened subsequently to a successful send. The htx blocks
6203 * are automatically removed from the message. The htx message is assumed to be
6204 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006205 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6206 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006207 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006208static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006209{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006210 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006211 struct h2c *h2c = h2s->h2c;
6212 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006213 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006214 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006215 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006216 int ret = 0;
6217 int hdr;
6218 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006219
Willy Tarreau7838a792019-08-12 18:42:03 +02006220 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6221
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006222 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006223 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006224 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006225 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006226 goto end;
6227 }
6228
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006229 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006230 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006231 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006232 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006233
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006234 if (type == HTX_BLK_UNUSED)
6235 continue;
6236
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006237 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006238 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006239 if (type == HTX_BLK_TLR) {
6240 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6241 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6242 goto fail;
6243 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006244
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006245 list[hdr].n = htx_get_blk_name(htx, blk);
6246 list[hdr].v = htx_get_blk_value(htx, blk);
6247 hdr++;
6248 }
6249 else {
6250 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 +01006251 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006252 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006253 }
6254
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006255 /* marker for end of trailers */
6256 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006257
Willy Tarreau9c218e72019-05-26 10:08:28 +02006258 mbuf = br_tail(h2c->mbuf);
6259 retry:
6260 if (!h2_get_buf(h2c, mbuf)) {
6261 h2c->flags |= H2_CF_MUX_MALLOC;
6262 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006263 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 +02006264 goto end;
6265 }
6266
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006267 chunk_reset(&outbuf);
6268
6269 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006270 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6271 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006272 break;
6273 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006274 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006275 }
6276
6277 if (outbuf.size < 9)
6278 goto full;
6279
6280 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6281 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6282 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6283 outbuf.data = 9;
6284
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006285 /* encode all headers */
6286 for (idx = 0; idx < hdr; idx++) {
6287 /* these ones do not exist in H2 or must not appear in
6288 * trailers and must be dropped.
6289 */
6290 if (isteq(list[idx].n, ist("host")) ||
6291 isteq(list[idx].n, ist("content-length")) ||
6292 isteq(list[idx].n, ist("connection")) ||
6293 isteq(list[idx].n, ist("proxy-connection")) ||
6294 isteq(list[idx].n, ist("keep-alive")) ||
6295 isteq(list[idx].n, ist("upgrade")) ||
6296 isteq(list[idx].n, ist("te")) ||
6297 isteq(list[idx].n, ist("transfer-encoding")))
6298 continue;
6299
Christopher Faulet86d144c2019-08-14 16:32:25 +02006300 /* Skip all pseudo-headers */
6301 if (*(list[idx].n.ptr) == ':')
6302 continue;
6303
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006304 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6305 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006306 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006307 goto realign_again;
6308 goto full;
6309 }
6310 }
6311
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006312 if (outbuf.data == 9) {
6313 /* here we have a problem, we have nothing to emit (either we
6314 * received an empty trailers block followed or we removed its
6315 * contents above). Because of this we can't send a HEADERS
6316 * frame, so we have to cheat and instead send an empty DATA
6317 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006318 */
6319 outbuf.area[3] = H2_FT_DATA;
6320 outbuf.area[4] = H2_F_DATA_END_STREAM;
6321 }
6322
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006323 /* update the frame's size */
6324 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6325
Willy Tarreau572d9f52019-10-11 16:58:37 +02006326 if (outbuf.data > h2c->mfs + 9) {
6327 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6328 /* output full */
6329 if (b_space_wraps(mbuf))
6330 goto realign_again;
6331 goto full;
6332 }
6333 }
6334
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006335 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006336 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 +02006337 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006338 h2s->flags |= H2_SF_ES_SENT;
6339
6340 if (h2s->st == H2_SS_OPEN)
6341 h2s->st = H2_SS_HLOC;
6342 else
6343 h2s_close(h2s);
6344
6345 /* OK we could properly deliver the response */
6346 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006347 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006348 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006349 blk = htx_get_head_blk(htx);
6350 while (blk) {
6351 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006352 ret += htx_get_blksz(blk);
6353 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006354 /* The removed block is the EOT */
6355 if (type == HTX_BLK_EOT)
6356 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006357 }
6358
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006359 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006360 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006361 return ret;
6362 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006363 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6364 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006365 h2c->flags |= H2_CF_MUX_MFULL;
6366 h2s->flags |= H2_SF_BLK_MROOM;
6367 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006368 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 +01006369 goto end;
6370 fail:
6371 /* unparsable HTX messages, too large ones to be produced in the local
6372 * list etc go here (unrecoverable errors).
6373 */
6374 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6375 ret = 0;
6376 goto end;
6377}
6378
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006379/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6380 * event subscriber <es> is not allowed to change from a previous call as long
6381 * as at least one event is still subscribed. The <event_type> must only be a
6382 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006383 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006384static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006385{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006386 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006387 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006388
Willy Tarreau7838a792019-08-12 18:42:03 +02006389 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006390
6391 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006392 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006393
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006394 es->events |= event_type;
6395 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006396
6397 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006398 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006399
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006400 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006401 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006402 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006403 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006404 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006405 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006406 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006407 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006408 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006409 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006410 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006411 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006412}
6413
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006414/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6415 * The <es> pointer is not allowed to differ from the one passed to the
6416 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006417 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006418static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006419{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006420 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006421
Willy Tarreau7838a792019-08-12 18:42:03 +02006422 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006423
6424 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006425 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006426
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006427 es->events &= ~event_type;
6428 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006429 h2s->subs = NULL;
6430
6431 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006432 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006433
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006434 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006435 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006436 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006437 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6438 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006439 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006440
Willy Tarreau7838a792019-08-12 18:42:03 +02006441 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006442 return 0;
6443}
6444
6445
Christopher Faulet564e39c2021-09-21 15:50:55 +02006446/* Called from the upper layer, to receive data
6447 *
6448 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6449 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6450 * means the caller wants to flush input data (from the mux buffer and the
6451 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6452 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6453 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6454 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6455 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6456 * copy as much data as possible.
6457 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006458static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6459{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006460 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau082f5592018-11-25 08:03:32 +01006461 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006462 struct htx *h2s_htx = NULL;
6463 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006464 size_t ret = 0;
6465
Willy Tarreau7838a792019-08-12 18:42:03 +02006466 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6467
Olivier Houchard511efea2018-08-16 15:30:32 +02006468 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006469 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006470 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006471 /* Here htx_to_buf() will set buffer data to 0 because
6472 * the HTX is empty.
6473 */
6474 htx_to_buf(h2s_htx, &h2s->rxbuf);
6475 goto end;
6476 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006477
Christopher Faulet9b79a102019-07-15 11:22:56 +02006478 ret = h2s_htx->data;
6479 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006480
Christopher Faulet9b79a102019-07-15 11:22:56 +02006481 /* <buf> is empty and the message is small enough, swap the
6482 * buffers. */
6483 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006484 htx_to_buf(buf_htx, buf);
6485 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006486 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6487 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006488 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006489
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006490 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006491
6492 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6493 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6494 if (htx_is_empty(buf_htx))
Willy Tarreauaff21f92022-05-10 10:31:08 +02006495 h2s->endp->flags |= CS_EP_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006496 }
Christopher Faulet810df062020-07-22 16:20:34 +02006497 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006498 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006499
Christopher Faulet9b79a102019-07-15 11:22:56 +02006500 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6501 htx_to_buf(buf_htx, buf);
6502 htx_to_buf(h2s_htx, &h2s->rxbuf);
6503 ret -= h2s_htx->data;
6504
Christopher Faulet37070b22019-02-14 15:12:14 +01006505 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006506 if (b_data(&h2s->rxbuf))
Willy Tarreauaff21f92022-05-10 10:31:08 +02006507 h2s->endp->flags |= (CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006508 else {
Willy Tarreauaff21f92022-05-10 10:31:08 +02006509 h2s->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006510 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreauaff21f92022-05-10 10:31:08 +02006511 h2s->endp->flags |= CS_EP_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006512 /* Add EOS flag for tunnel */
6513 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreauaff21f92022-05-10 10:31:08 +02006514 h2s->endp->flags |= CS_EP_EOS;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006515 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006516 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreauaff21f92022-05-10 10:31:08 +02006517 h2s->endp->flags |= CS_EP_EOS;
6518 if (h2s->endp->flags & CS_EP_ERR_PENDING)
6519 h2s->endp->flags |= CS_EP_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006520 if (b_size(&h2s->rxbuf)) {
6521 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006522 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006523 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006524 }
6525
Willy Tarreau082f5592018-11-25 08:03:32 +01006526 if (ret && h2c->dsi == h2s->id) {
6527 /* demux is blocking on this stream's buffer */
6528 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006529 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006530 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006531
Willy Tarreau7838a792019-08-12 18:42:03 +02006532 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006533 return ret;
6534}
6535
Olivier Houchardd846c262018-10-19 17:24:29 +02006536
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006537/* Called from the upper layer, to send data from buffer <buf> for no more than
6538 * <count> bytes. Returns the number of bytes effectively sent. Some status
6539 * flags may be updated on the conn_stream.
6540 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006541static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006542{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006543 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006544 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006545 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006546 struct htx *htx;
6547 struct htx_blk *blk;
6548 enum htx_blk_type btype;
6549 uint32_t bsize;
6550 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006551
Willy Tarreau7838a792019-08-12 18:42:03 +02006552 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6553
Olivier Houchardd360ac62019-03-22 17:37:16 +01006554 /* If we were not just woken because we wanted to send but couldn't,
6555 * and there's somebody else that is waiting to send, do nothing,
6556 * we will subscribe later and be put at the end of the list
6557 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006558 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006559 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6560 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 +01006561 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006562 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006563 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006564
Willy Tarreau7838a792019-08-12 18:42:03 +02006565 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6566 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 +02006567 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006568 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006569
Willy Tarreaucab22952019-10-31 15:48:18 +01006570 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreauaff21f92022-05-10 10:31:08 +02006571 h2s->endp->flags |= CS_EP_ERROR;
Willy Tarreaucab22952019-10-31 15:48:18 +01006572 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);
6573 return 0;
6574 }
6575
Christopher Faulet9b79a102019-07-15 11:22:56 +02006576 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006577
Willy Tarreau0bad0432018-06-14 16:54:01 +02006578 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006579 h2s->flags |= H2_SF_OUTGOING_DATA;
6580
Willy Tarreau751f2d02018-10-05 09:35:00 +02006581 if (h2s->id == 0) {
6582 int32_t id = h2c_get_next_sid(h2s->h2c);
6583
6584 if (id < 0) {
Willy Tarreauaff21f92022-05-10 10:31:08 +02006585 h2s->endp->flags |= CS_EP_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006586 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 +02006587 return 0;
6588 }
6589
6590 eb32_delete(&h2s->by_id);
6591 h2s->by_id.key = h2s->id = id;
6592 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006593 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006594 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6595 }
6596
Christopher Faulet9b79a102019-07-15 11:22:56 +02006597 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6598 count && !htx_is_empty(htx)) {
6599 idx = htx_get_head(htx);
6600 blk = htx_get_blk(htx, idx);
6601 btype = htx_get_blk_type(blk);
6602 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006603
Christopher Faulet9b79a102019-07-15 11:22:56 +02006604 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006605 case HTX_BLK_REQ_SL:
6606 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006607 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006608 if (ret > 0) {
6609 total += ret;
6610 count -= ret;
6611 if (ret < bsize)
6612 goto done;
6613 }
6614 break;
6615
Willy Tarreau115e83b2018-12-01 19:17:53 +01006616 case HTX_BLK_RES_SL:
6617 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006618 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006619 if (ret > 0) {
6620 total += ret;
6621 count -= ret;
6622 if (ret < bsize)
6623 goto done;
6624 }
6625 break;
6626
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006627 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006628 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006629 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6630 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6631 ret = h2s_skip_data(h2s, buf, count);
6632 else
6633 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006634 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006635 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006636 total += ret;
6637 count -= ret;
6638 if (ret < bsize)
6639 goto done;
6640 }
6641 break;
6642
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006643 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006644 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006645 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006646 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006647 if (ret > 0) {
6648 total += ret;
6649 count -= ret;
6650 if (ret < bsize)
6651 goto done;
6652 }
6653 break;
6654
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006655 default:
6656 htx_remove_blk(htx, blk);
6657 total += bsize;
6658 count -= bsize;
6659 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006660 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006661 }
6662
Christopher Faulet9b79a102019-07-15 11:22:56 +02006663 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006664 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006665 /* trim any possibly pending data after we close (extra CR-LF,
6666 * unprocessed trailers, abnormal extra data, ...)
6667 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006668 total += count;
6669 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006670 }
6671
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006672 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006673 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006674 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 Tarreauaff21f92022-05-10 10:31:08 +02006675 cs_ep_set_error(h2s->endp);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006676 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006677 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006678 }
6679
Christopher Faulet9b79a102019-07-15 11:22:56 +02006680 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006681
Olivier Houchard7505f942018-08-21 18:10:44 +02006682 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006683 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006684 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 +02006685 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006686 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006687
Olivier Houchard7505f942018-08-21 18:10:44 +02006688 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006689 /* If we're waiting for flow control, and we got a shutr on the
6690 * connection, we will never be unlocked, so add an error on
6691 * the conn_stream.
6692 */
6693 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6694 !b_data(&h2s->h2c->dbuf) &&
6695 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006696 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 Tarreauaff21f92022-05-10 10:31:08 +02006697 if (h2s->endp->flags & CS_EP_EOS)
6698 h2s->endp->flags |= CS_EP_ERROR;
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006699 else
Willy Tarreauaff21f92022-05-10 10:31:08 +02006700 h2s->endp->flags |= CS_EP_ERR_PENDING;
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006701 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006702
Willy Tarreau5723f292020-01-10 15:16:57 +01006703 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6704 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006705 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006706 LIST_DEL_INIT(&h2s->list);
6707 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006708
Willy Tarreau7838a792019-08-12 18:42:03 +02006709 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006710 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006711}
6712
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006713/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006714static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006715{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006716 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006717 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006718 struct eb32_node *node;
6719 int fctl_cnt = 0;
6720 int send_cnt = 0;
6721 int tree_cnt = 0;
6722 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006723 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006724 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006725
6726 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006727 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006728
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006729 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006730 fctl_cnt++;
6731
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006732 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006733 send_cnt++;
6734
Willy Tarreau3af37712018-12-18 14:34:41 +01006735 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006736 node = eb32_first(&h2c->streams_by_id);
6737 while (node) {
6738 h2s = container_of(node, struct h2s, by_id);
6739 tree_cnt++;
6740 if (!h2s->cs)
6741 orph_cnt++;
6742 node = eb32_next(node);
6743 }
6744
Willy Tarreau60f62682019-05-26 11:32:27 +02006745 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006746 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006747 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006748 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006749 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6750 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006751 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006752 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006753 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006754 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6755 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6756 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006757 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6758 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6759 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006760 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6761 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006762
6763 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006764 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006765 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006766 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6767 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6768 h2s->cs);
6769 if (h2s->cs)
Christopher Fauletf835dea2021-12-21 14:35:17 +01006770 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6771 h2s->cs->flags, h2s->cs->app);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006772
Christopher Faulet22050e02022-04-13 12:08:09 +02006773 chunk_appendf(msg, "endp=%p", h2s->endp);
6774 if (h2s->endp)
6775 chunk_appendf(msg, "(.flg=0x%08x)",
6776 h2s->endp->flags);
6777
Willy Tarreau98e40b92021-01-20 16:27:01 +01006778 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6779 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006780 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6781 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6782 h2s->subs->tasklet->calls,
6783 h2s->subs->tasklet->context);
6784 if (h2s->subs->tasklet->calls >= 1000000)
6785 ret = 1;
6786 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6787 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006788 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006789 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006790 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006791}
Willy Tarreau62f52692017-10-08 23:01:42 +02006792
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006793/* Migrate the the connection to the current thread.
6794 * Return 0 if successful, non-zero otherwise.
6795 * Expected to be called with the old thread lock held.
6796 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006797static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006798{
6799 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006800 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006801
6802 if (fd_takeover(conn->handle.fd, conn) != 0)
6803 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006804
6805 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6806 /* We failed to takeover the xprt, even if the connection may
6807 * still be valid, flag it as error'd, as we have already
6808 * taken over the fd, and wake the tasklet, so that it will
6809 * destroy it.
6810 */
6811 conn->flags |= CO_FL_ERROR;
6812 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6813 return -1;
6814 }
6815
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006816 if (h2c->wait_event.events)
6817 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6818 h2c->wait_event.events, &h2c->wait_event);
6819 /* To let the tasklet know it should free itself, and do nothing else,
6820 * set its context to NULL.
6821 */
6822 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006823 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006824
6825 task = h2c->task;
6826 if (task) {
6827 task->context = NULL;
6828 h2c->task = NULL;
6829 __ha_barrier_store();
6830 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006831
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006832 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006833 if (!h2c->task) {
6834 h2_release(h2c);
6835 return -1;
6836 }
6837 h2c->task->process = h2_timeout_task;
6838 h2c->task->context = h2c;
6839 }
6840 h2c->wait_event.tasklet = tasklet_new();
6841 if (!h2c->wait_event.tasklet) {
6842 h2_release(h2c);
6843 return -1;
6844 }
6845 h2c->wait_event.tasklet->process = h2_io_cb;
6846 h2c->wait_event.tasklet->context = h2c;
6847 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6848 SUB_RETRY_RECV, &h2c->wait_event);
6849
6850 return 0;
6851}
6852
Willy Tarreau62f52692017-10-08 23:01:42 +02006853/*******************************************************/
6854/* functions below are dedicated to the config parsers */
6855/*******************************************************/
6856
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006857/* config parser for global "tune.h2.header-table-size" */
6858static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006859 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006860 char **err)
6861{
6862 if (too_many_args(1, args, err, NULL))
6863 return -1;
6864
6865 h2_settings_header_table_size = atoi(args[1]);
6866 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6867 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6868 return -1;
6869 }
6870 return 0;
6871}
Willy Tarreau62f52692017-10-08 23:01:42 +02006872
Willy Tarreaue6baec02017-07-27 11:45:11 +02006873/* config parser for global "tune.h2.initial-window-size" */
6874static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006875 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006876 char **err)
6877{
6878 if (too_many_args(1, args, err, NULL))
6879 return -1;
6880
6881 h2_settings_initial_window_size = atoi(args[1]);
6882 if (h2_settings_initial_window_size < 0) {
6883 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6884 return -1;
6885 }
6886 return 0;
6887}
6888
Willy Tarreau5242ef82017-07-27 11:47:28 +02006889/* config parser for global "tune.h2.max-concurrent-streams" */
6890static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006891 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006892 char **err)
6893{
6894 if (too_many_args(1, args, err, NULL))
6895 return -1;
6896
6897 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006898 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006899 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6900 return -1;
6901 }
6902 return 0;
6903}
6904
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006905/* config parser for global "tune.h2.max-frame-size" */
6906static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006907 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006908 char **err)
6909{
6910 if (too_many_args(1, args, err, NULL))
6911 return -1;
6912
6913 h2_settings_max_frame_size = atoi(args[1]);
6914 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6915 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6916 return -1;
6917 }
6918 return 0;
6919}
6920
Willy Tarreau62f52692017-10-08 23:01:42 +02006921
6922/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006923/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006924/***************************************/
6925
6926/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006927static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006928 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006929 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006930 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006931 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006932 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006933 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006934 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006935 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006936 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006937 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006938 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006939 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006940 .shutr = h2_shutr,
6941 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006942 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006943 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006944 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02006945 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006946 .name = "H2",
6947};
6948
Christopher Faulet32f61c02018-04-10 14:33:41 +02006949static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006950 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006951
Willy Tarreau0108d902018-11-25 19:14:37 +01006952INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6953
Willy Tarreau62f52692017-10-08 23:01:42 +02006954/* config keyword parsers */
6955static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006956 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006957 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006958 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006959 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006960 { 0, NULL, NULL }
6961}};
6962
Willy Tarreau0108d902018-11-25 19:14:37 +01006963INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006964
6965/* initialize internal structs after the config is parsed.
6966 * Returns zero on success, non-zero on error.
6967 */
6968static int init_h2()
6969{
6970 pool_head_hpack_tbl = create_pool("hpack_tbl",
6971 h2_settings_header_table_size,
6972 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006973 if (!pool_head_hpack_tbl) {
6974 ha_alert("failed to allocate hpack_tbl memory pool\n");
6975 return (ERR_ALERT | ERR_FATAL);
6976 }
6977 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006978}
6979
6980REGISTER_POST_CHECK(init_h2);