blob: cd3b5799c407d75522553723c2cee8824fa5e9ed [file] [log] [blame]
Willy Tarreau62f52692017-10-08 23:01:42 +02001/*
2 * HTTP/2 mux-demux for connections
3 *
4 * Copyright 2017 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaudfd3de82020-06-04 23:46:14 +020013#include <import/eb32tree.h>
Willy Tarreau63617db2021-10-06 18:23:40 +020014#include <import/ebmbtree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020017#include <haproxy/connection.h>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020018#include <haproxy/dynbuf.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020019#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020020#include <haproxy/hpack-dec.h>
21#include <haproxy/hpack-enc.h>
22#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020023#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020024#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020026#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020027#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020028#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010029#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020030#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020031#include <haproxy/stream.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020032#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020033
34
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020036static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010037static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010038static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020039static const struct h2s *h2_idle_stream;
40
Willy Tarreau5ab6b572017-09-22 08:05:00 +020041/* Connection flags (32 bit), in h2c->flags */
42#define H2_CF_NONE 0x00000000
43
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020044/* Flags indicating why writing to the mux is blocked. */
45#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
46#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
47#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
48
Willy Tarreau315d8072017-12-10 22:17:57 +010049/* Flags indicating why writing to the demux is blocked.
50 * The first two ones directly affect the ability for the mux to receive data
51 * from the connection. The other ones affect the mux's ability to demux
52 * received data.
53 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020054#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
55#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010056
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020057#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
58#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
59#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
60#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreau4596fe22022-05-17 19:07:51 +020061#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some stream connectors to leave
Willy Tarreauf2101912018-07-19 10:11:38 +020062#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Christopher Fauletb5f7b522021-07-26 12:06:53 +020063 // (SHORT_READ is also excluded)
64
Christopher Faulet47940c32021-11-10 17:50:10 +010065#define H2_CF_DEM_SHORT_READ 0x00000200 // demux blocked on incomplete frame
Willy 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 */
Willy Tarreau617592c2022-06-08 16:32:22 +0200109 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) or zero */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200110
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 Tarreau36c22322022-05-27 10:41:24 +0200139 unsigned int nb_sc; /* number of attached stream connectors */
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 {
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200215 struct sedesc *sd;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100216 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200217 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200218 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200219 int32_t id; /* stream ID */
220 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200221 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200222 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
223 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200224 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100225 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200226 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreau4596fe22022-05-17 19:07:51 +0200227 struct wait_event *subs; /* recv wait_event the stream connector associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200228 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100229 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
230 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100231
232 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200233};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200234
Willy Tarreauc6405142017-09-21 20:23:50 +0200235/* descriptor for an h2 frame header */
236struct h2_fh {
237 uint32_t len; /* length, host order, 24 bits */
238 uint32_t sid; /* stream id, host order, 31 bits */
239 uint8_t ft; /* frame type */
240 uint8_t ff; /* frame flags */
241};
242
Willy Tarreau12ae2122019-08-08 18:23:12 +0200243/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200244static void h2_trace(enum trace_level level, uint64_t mask, \
245 const struct trace_source *src,
246 const struct ist where, const struct ist func,
247 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200248
249/* The event representation is split like this :
250 * strm - application layer
251 * h2s - internal H2 stream
252 * h2c - internal H2 connection
253 * conn - external connection
254 *
255 */
256static const struct trace_event h2_trace_events[] = {
257#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .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 +0200279#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .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 +0200305#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200344 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200345#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200346 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200347#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200348 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200349#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200350 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200351#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200352 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200353#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200354 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200355#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200356 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200358 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200359#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200360 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200361 { }
362};
363
364static const struct name_desc h2_trace_lockon_args[4] = {
365 /* arg1 */ { /* already used by the connection */ },
366 /* arg2 */ { .name="h2s", .desc="H2 stream" },
367 /* arg3 */ { },
368 /* arg4 */ { }
369};
370
371static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200372#define H2_VERB_CLEAN 1
373 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
374#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200375 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200376#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200377 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200378#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200379 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200380#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200381 { .name="complete", .desc="add full data dump when available" },
382 { /* end */ }
383};
384
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200385static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200386 .name = IST("h2"),
387 .desc = "HTTP/2 multiplexer",
388 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200389 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200390 .known_events = h2_trace_events,
391 .lockon_args = h2_trace_lockon_args,
392 .decoding = h2_trace_decoding,
393 .report_events = ~0, // report everything by default
394};
395
396#define TRACE_SOURCE &trace_h2
397INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
398
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100399/* h2 stats module */
400enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100401 H2_ST_HEADERS_RCVD,
402 H2_ST_DATA_RCVD,
403 H2_ST_SETTINGS_RCVD,
404 H2_ST_RST_STREAM_RCVD,
405 H2_ST_GOAWAY_RCVD,
406
Amaury Denoyellea8879232020-10-27 17:16:03 +0100407 H2_ST_CONN_PROTO_ERR,
408 H2_ST_STRM_PROTO_ERR,
409 H2_ST_RST_STREAM_RESP,
410 H2_ST_GOAWAY_RESP,
411
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100412 H2_ST_OPEN_CONN,
413 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100414 H2_ST_TOTAL_CONN,
415 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100416
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100417 H2_STATS_COUNT /* must be the last member of the enum */
418};
419
420static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100421 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100422 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100423 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100424 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100425 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100426 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100427 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100428 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100429 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100430 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100431
432 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
433 .desc = "Total number of connection protocol errors" },
434 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
435 .desc = "Total number of stream protocol errors" },
436 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100437 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100438 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100439 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100440
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100441 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
442 .desc = "Count of currently open connections" },
443 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
444 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100445 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100446 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100447 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100448 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100449};
450
451static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100452 long long headers_rcvd; /* total number of HEADERS frame received */
453 long long data_rcvd; /* total number of DATA frame received */
454 long long settings_rcvd; /* total number of SETTINGS frame received */
455 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
456 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100457
458 long long conn_proto_err; /* total number of protocol errors detected */
459 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100460 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
461 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100462
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100463 long long open_conns; /* count of currently open connections */
464 long long open_streams; /* count of currently open streams */
465 long long total_conns; /* total number of connections */
466 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100467} h2_counters;
468
469static void h2_fill_stats(void *data, struct field *stats)
470{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100471 struct h2_counters *counters = data;
472
473 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
474 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
475 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
476 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
477 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100478
479 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
480 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
481 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
482 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100483
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100484 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
485 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
486 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
487 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100488}
489
490static struct stats_module h2_stats_module = {
491 .name = "h2",
492 .fill_stats = h2_fill_stats,
493 .stats = h2_stats,
494 .stats_count = H2_STATS_COUNT,
495 .counters = &h2_counters,
496 .counters_size = sizeof(h2_counters),
497 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
498 .clearable = 1,
499};
500
501INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
502
Willy Tarreau8ceae722018-11-26 11:58:30 +0100503/* the h2c connection pool */
504DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
505
506/* the h2s stream pool */
507DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
508
Willy Tarreaudc572362018-12-12 08:08:05 +0100509/* The default connection window size is 65535, it may only be enlarged using
510 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
511 * we'll pretend we already received the difference between the two to send
512 * an equivalent window update to enlarge it to 2G-1.
513 */
514#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
515
Willy Tarreau455d5682019-05-24 19:42:18 +0200516/* maximum amount of data we're OK with re-aligning for buffer optimizations */
517#define MAX_DATA_REALIGN 1024
518
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200519/* a few settings from the global section */
520static int h2_settings_header_table_size = 4096; /* initial value */
Glenn Strauss0012f892022-06-04 22:11:50 -0400521static int h2_settings_initial_window_size = 65536; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100522static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100523static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200524
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200525/* a dummy closed endpoint */
Willy Tarreauea59b022022-05-17 17:53:22 +0200526static const struct sedesc closed_ep = {
Willy Tarreauc1054922022-05-18 07:43:52 +0200527 .sc = NULL,
Willy Tarreaub605c422022-05-17 17:04:55 +0200528 .flags = SE_FL_DETACHED,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200529};
530
Willy Tarreau2a856182017-05-16 15:20:39 +0200531/* a dmumy closed stream */
532static const struct h2s *h2_closed_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200533 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200534 .h2c = NULL,
535 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100536 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100537 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200538 .id = 0,
539};
540
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100541/* a dmumy closed stream returning a PROTOCOL_ERROR error */
542static const struct h2s *h2_error_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200543 .sd = (struct sedesc *)&closed_ep,
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100544 .h2c = NULL,
545 .st = H2_SS_CLOSED,
546 .errcode = H2_ERR_PROTOCOL_ERROR,
547 .flags = 0,
548 .id = 0,
549};
550
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100551/* a dmumy closed stream returning a REFUSED_STREAM error */
552static const struct h2s *h2_refused_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200553 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100554 .h2c = NULL,
555 .st = H2_SS_CLOSED,
556 .errcode = H2_ERR_REFUSED_STREAM,
557 .flags = 0,
558 .id = 0,
559};
560
Willy Tarreau2a856182017-05-16 15:20:39 +0200561/* and a dummy idle stream for use with any unannounced stream */
562static const struct h2s *h2_idle_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200563 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200564 .h2c = NULL,
565 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100566 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200567 .id = 0,
568};
569
Willy Tarreau144f84a2021-03-02 16:09:26 +0100570struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200571static int h2_send(struct h2c *h2c);
572static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200573static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100574/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100575struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100576static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100577static 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 +0100578static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100579struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Willy Tarreau36c22322022-05-27 10:41:24 +0200580static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100581static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200582
Willy Tarreauab2ec452019-08-30 07:07:08 +0200583/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
584static inline const char *h2c_st_to_str(enum h2_cs st)
585{
586 switch (st) {
587 case H2_CS_PREFACE: return "PRF";
588 case H2_CS_SETTINGS1: return "STG";
589 case H2_CS_FRAME_H: return "FRH";
590 case H2_CS_FRAME_P: return "FRP";
591 case H2_CS_FRAME_A: return "FRA";
592 case H2_CS_FRAME_E: return "FRE";
593 case H2_CS_ERROR: return "ERR";
594 case H2_CS_ERROR2: return "ER2";
595 default: return "???";
596 }
597}
598
599/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
600static inline const char *h2s_st_to_str(enum h2_ss st)
601{
602 switch (st) {
603 case H2_SS_IDLE: return "IDL"; // idle
604 case H2_SS_RLOC: return "RSL"; // reserved local
605 case H2_SS_RREM: return "RSR"; // reserved remote
606 case H2_SS_OPEN: return "OPN"; // open
607 case H2_SS_HREM: return "HCR"; // half-closed remote
608 case H2_SS_HLOC: return "HCL"; // half-closed local
609 case H2_SS_ERROR : return "ERR"; // error
610 case H2_SS_CLOSED: return "CLO"; // closed
611 default: return "???";
612 }
613}
614
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200615/* returns the stconn associated to the H2 stream */
616static forceinline struct stconn *h2s_sc(const struct h2s *h2s)
617{
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200618 return h2s->sd->sc;
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200619}
620
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200621/* the H2 traces always expect that arg1, if non-null, is of type connection
622 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
623 * that arg3, if non-null, is either of type htx for tx headers, or of type
624 * buffer for everything else.
625 */
626static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
627 const struct ist where, const struct ist func,
628 const void *a1, const void *a2, const void *a3, const void *a4)
629{
630 const struct connection *conn = a1;
631 const struct h2c *h2c = conn ? conn->ctx : NULL;
632 const struct h2s *h2s = a2;
633 const struct buffer *buf = a3;
634 const struct htx *htx;
635 int pos;
636
637 if (!h2c) // nothing to add
638 return;
639
Willy Tarreau17104d42019-08-30 07:12:55 +0200640 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200641 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
642
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200643 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
644 conn_append_debug_info(&trace_buf, conn, " : ");
645
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100646 if (h2c->errcode)
647 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
648
Willy Tarreau73db4342019-09-25 07:28:44 +0200649 if (h2c->dsi >= 0 &&
650 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200651 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 +0200652 }
653
654 if (h2s) {
655 if (h2s->id <= 0)
656 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
657 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100658 if (h2s->id && h2s->errcode)
659 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200660 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200661 }
662
663 /* Let's dump decoded requests and responses right after parsing. They
664 * are traced at level USER with a few recognizable flags.
665 */
666 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
667 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
668 htx = htxbuf(buf); // recv req/res
669 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
670 htx = a3; // send req/res
671 else
672 htx = NULL;
673
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200674 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200675 const struct htx_blk *blk = htx_get_blk(htx, pos);
676 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
677 enum htx_blk_type type = htx_get_blk_type(blk);
678
679 if (type == HTX_BLK_REQ_SL)
680 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200681 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200682 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
683 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
684 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
685 else if (type == HTX_BLK_RES_SL)
686 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200687 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200688 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
689 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
690 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
691 }
692}
693
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200694
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100695/* Detect a pending read0 for a H2 connection. It happens if a read0 was
696 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
697 * to parse pending data, confirming no more progress is possible because
698 * we're facing a truncated frame. The function returns 1 to report a read0
699 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200700 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100701static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200702{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100703 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200704}
705
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200706/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100707 * connection may expire when it has no attached streams. As long as streams
708 * are attached, the application layer is responsible for timeout management,
709 * and each layer will detach when it doesn't want to wait anymore. When the
710 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200711 */
712static inline int h2c_may_expire(const struct h2c *h2c)
713{
Willy Tarreau36c22322022-05-27 10:41:24 +0200714 return !h2c->nb_sc;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200715}
716
Willy Tarreau15a47332022-03-18 15:57:34 +0100717/* update h2c timeout if needed */
718static void h2c_update_timeout(struct h2c *h2c)
719{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200720 int is_idle_conn = 0;
721
Willy Tarreau15a47332022-03-18 15:57:34 +0100722 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
723
724 if (!h2c->task)
725 goto leave;
726
727 if (h2c_may_expire(h2c)) {
728 /* no more streams attached */
729 if (h2c->last_sid >= 0) {
730 /* GOAWAY sent, closing in progress */
731 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200732 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100733 } else if (br_data(h2c->mbuf)) {
734 /* pending output data: always the regular data timeout */
735 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau6ff91e22022-04-14 11:43:35 +0200736 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100737 /* idle after having seen one stream => keep-alive */
Willy Tarreau86b08a32022-04-13 17:40:28 +0200738 int to;
739
740 if (tick_isset(h2c->proxy->timeout.httpka))
741 to = h2c->proxy->timeout.httpka;
742 else
743 to = h2c->proxy->timeout.httpreq;
744
745 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200746 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100747 } else {
748 /* before first request, or started to deserialize a
749 * new req => http-request, but only set, not refresh.
750 */
751 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
752 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
753 }
754 /* if a timeout above was not set, fall back to the default one */
755 if (!tick_isset(h2c->task->expire))
756 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200757
758 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
759 is_idle_conn && tick_isset(global.close_spread_end)) {
760 /* If a soft-stop is in progress and a close-spread-time
761 * is set, we want to spread idle connection closing roughly
762 * evenly across the defined window. This should only
763 * act on idle frontend connections.
764 * If the window end is already in the past, we wake the
765 * timeout task up immediately so that it can be closed.
766 */
767 int remaining_window = tick_remain(now_ms, global.close_spread_end);
768 if (remaining_window) {
769 /* We don't need to reset the expire if it would
770 * already happen before the close window end.
771 */
772 if (tick_isset(h2c->task->expire) &&
773 tick_is_le(global.close_spread_end, h2c->task->expire)) {
774 /* Set an expire value shorter than the current value
775 * because the close spread window end comes earlier.
776 */
777 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
778 }
779 }
780 else {
781 /* We are past the soft close window end, wake the timeout
782 * task up immediately.
783 */
784 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
785 }
786 }
787
Willy Tarreau15a47332022-03-18 15:57:34 +0100788 } else {
789 h2c->task->expire = TICK_ETERNITY;
790 }
791 task_queue(h2c->task);
792 leave:
793 TRACE_LEAVE(H2_EV_H2C_WAKE);
794}
795
Olivier Houchard7a977432019-03-21 15:47:13 +0100796static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200797h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100798{
799 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
800 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
801 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
802 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200803 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100804 (conn_xprt_read0_pending(h2c->conn) ||
805 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
806 return 1;
807
808 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100809}
810
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200811/*****************************************************/
812/* functions below are for dynamic buffer management */
813/*****************************************************/
814
Willy Tarreau315d8072017-12-10 22:17:57 +0100815/* indicates whether or not the we may call the h2_recv() function to attempt
816 * to receive data into the buffer and/or demux pending data. The condition is
817 * a bit complex due to some API limits for now. The rules are the following :
818 * - if an error or a shutdown was detected on the connection and the buffer
819 * is empty, we must not attempt to receive
820 * - if the demux buf failed to be allocated, we must not try to receive and
821 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100822 * - if no flag indicates a blocking condition, we may attempt to receive,
823 * regardless of whether the demux buffer is full or not, so that only
824 * de demux part decides whether or not to block. This is needed because
825 * the connection API indeed prevents us from re-enabling receipt that is
826 * already enabled in a polled state, so we must always immediately stop
827 * as soon as the demux can't proceed so as never to hit an end of read
828 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100829 * - otherwise must may not attempt
830 */
831static inline int h2_recv_allowed(const struct h2c *h2c)
832{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200833 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100834 (h2c->st0 >= H2_CS_ERROR ||
835 h2c->conn->flags & CO_FL_ERROR ||
836 conn_xprt_read0_pending(h2c->conn)))
837 return 0;
838
839 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100840 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100841 return 1;
842
843 return 0;
844}
845
Willy Tarreau47b515a2018-12-21 16:09:41 +0100846/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200847static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100848{
849 if (!h2_recv_allowed(h2c))
850 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200851 if ((!consider_buffer || !b_data(&h2c->dbuf))
852 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100853 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200854 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100855}
856
857
Willy Tarreau4596fe22022-05-17 19:07:51 +0200858/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200859static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200860{
Willy Tarreau36c22322022-05-27 10:41:24 +0200861 return h2c->nb_sc > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200862}
863
Willy Tarreau44e973f2018-03-01 17:49:30 +0100864/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
865 * flags are used to figure what buffer was requested. It returns 1 if the
866 * allocation succeeds, in which case the connection is woken up, or 0 if it's
867 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200868 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100869static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200870{
871 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100872 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200873
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100874 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200875 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200876 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200877 return 1;
878 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200879
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100880 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100881 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200882
883 if (h2c->flags & H2_CF_DEM_MROOM) {
884 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200885 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200886 }
Willy Tarreau14398122017-09-22 14:26:04 +0200887 return 1;
888 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100889
890 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200891 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100892 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100893 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200894 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100895 return 1;
896 }
897
Willy Tarreau14398122017-09-22 14:26:04 +0200898 return 0;
899}
900
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200901static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200902{
903 struct buffer *buf = NULL;
904
Willy Tarreau2b718102021-04-21 07:32:39 +0200905 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100906 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100907 h2c->buf_wait.target = h2c;
908 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200909 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200910 }
911 return buf;
912}
913
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200914static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200915{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200916 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100917 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100918 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200919 }
920}
921
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200922static inline void h2_release_mbuf(struct h2c *h2c)
923{
924 struct buffer *buf;
925 unsigned int count = 0;
926
927 while (b_size(buf = br_head_pick(h2c->mbuf))) {
928 b_free(buf);
929 count++;
930 }
931 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100932 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200933}
934
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100935/* returns the number of allocatable outgoing streams for the connection taking
936 * the last_sid and the reserved ones into account.
937 */
938static inline int h2_streams_left(const struct h2c *h2c)
939{
940 int ret;
941
942 /* consider the number of outgoing streams we're allowed to create before
943 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
944 * nb_reserved is the number of streams which don't yet have an ID.
945 */
946 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
947 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
948 if (ret < 0)
949 ret = 0;
950 return ret;
951}
952
Willy Tarreau00f18a32019-01-26 12:19:01 +0100953/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200954 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100955 * to know if it was the last one after a detach().
956 */
957static int h2_used_streams(struct connection *conn)
958{
959 struct h2c *h2c = conn->ctx;
960
Willy Tarreau36c22322022-05-27 10:41:24 +0200961 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100962}
963
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100964/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100965static int h2_avail_streams(struct connection *conn)
966{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100967 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100968 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100969 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100970
Willy Tarreau6afec462019-01-28 06:40:19 +0100971 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
972 * streams on the connection.
973 */
974 if (h2c->last_sid >= 0)
975 return 0;
976
Willy Tarreauc61966f2019-10-31 15:10:03 +0100977 if (h2c->st0 >= H2_CS_ERROR)
978 return 0;
979
Willy Tarreau86949782019-01-31 10:42:05 +0100980 /* note: may be negative if a SETTINGS frame changes the limit */
981 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100982
983 /* we must also consider the limit imposed by stream IDs */
984 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100985 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100986 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100987 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
988 ret1 = MIN(ret1, ret2);
989 }
990 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100991}
992
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200993
Willy Tarreau62f52692017-10-08 23:01:42 +0200994/*****************************************************************/
995/* functions below are dedicated to the mux setup and management */
996/*****************************************************************/
997
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200998/* Initialize the mux once it's attached. For outgoing connections, the context
999 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001000 * connections from the fact that the context is still NULL (even during mux
1001 * upgrades). <input> is always used as Input buffer and may contain data. It is
1002 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +02001003 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001004static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
1005 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +02001006{
1007 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +01001008 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +02001009 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001010
Christopher Fauletf81ef032019-10-04 15:19:43 +02001011 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +02001012
Willy Tarreaubafbe012017-11-24 17:34:44 +01001013 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001014 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +02001015 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001016
Christopher Faulete9b70722019-04-08 10:46:02 +02001017 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001018 h2c->flags = H2_CF_IS_BACK;
1019 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
1020 if (tick_isset(prx->timeout.serverfin))
1021 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001022
1023 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
1024 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001025 } else {
1026 h2c->flags = H2_CF_NONE;
1027 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
1028 if (tick_isset(prx->timeout.clientfin))
1029 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001030
1031 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
1032 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001033 }
Willy Tarreau3f133572017-10-31 19:21:06 +01001034
Willy Tarreau0b37d652018-10-03 10:33:02 +02001035 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +01001036 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +01001037 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +01001038 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001039 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +01001040 if (!t)
1041 goto fail;
1042
1043 h2c->task = t;
1044 t->process = h2_timeout_task;
1045 t->context = h2c;
1046 t->expire = tick_add(now_ms, h2c->timeout);
1047 }
Willy Tarreauea392822017-10-31 10:02:25 +01001048
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001049 h2c->wait_event.tasklet = tasklet_new();
1050 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001051 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001052 h2c->wait_event.tasklet->process = h2_io_cb;
1053 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001054 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001055 if (!conn_is_back(conn)) {
1056 /* Connection might already be in the stopping_list if subject
1057 * to h1->h2 upgrade.
1058 */
1059 if (!LIST_INLIST(&conn->stopping_list)) {
1060 LIST_APPEND(&mux_stopping_data[tid].list,
1061 &conn->stopping_list);
1062 }
1063 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001064
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001065 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001066 if (!h2c->ddht)
1067 goto fail;
1068
1069 /* Initialise the context. */
1070 h2c->st0 = H2_CS_PREFACE;
1071 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001072 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001073 h2c->max_id = -1;
1074 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001075 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001076 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001077 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +02001078 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001079 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001080 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001081
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001082 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001083 h2c->dsi = -1;
1084 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001085
Willy Tarreau32218eb2017-09-22 08:07:25 +02001086 h2c->last_sid = -1;
1087
Willy Tarreau51330962019-05-26 09:38:07 +02001088 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001089 h2c->miw = 65535; /* mux initial window size */
1090 h2c->mws = 65535; /* mux window size */
1091 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001092 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001093 LIST_INIT(&h2c->send_list);
1094 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001095 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001096 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001097
Christopher Fauletf81ef032019-10-04 15:19:43 +02001098 conn->ctx = h2c;
1099
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001100 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1101
Willy Tarreau3f133572017-10-31 19:21:06 +01001102 if (t)
1103 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001104
Willy Tarreau01b44822018-10-03 14:26:37 +02001105 if (h2c->flags & H2_CF_IS_BACK) {
1106 /* FIXME: this is temporary, for outgoing connections we need
1107 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +02001108 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +02001109 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001110 */
1111 struct h2s *h2s;
1112
Christopher Fauletf81ef032019-10-04 15:19:43 +02001113 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001114 if (!h2s)
1115 goto fail_stream;
1116 }
1117
Willy Tarreau4781b152021-04-06 13:53:36 +02001118 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1119 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001120
Willy Tarreau0f383582018-10-03 14:22:21 +02001121 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001122 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001123 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001124 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001125 fail_stream:
1126 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001127 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001128 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001129 if (h2c->wait_event.tasklet)
1130 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001131 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001132 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001133 if (!conn_is_back(conn))
1134 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001135 conn->ctx = conn_ctx; /* restore saved ctx */
1136 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001137 return -1;
1138}
1139
Willy Tarreau751f2d02018-10-05 09:35:00 +02001140/* returns the next allocatable outgoing stream ID for the H2 connection, or
1141 * -1 if no more is allocatable.
1142 */
1143static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1144{
1145 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001146
1147 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001148 id = -1;
1149 return id;
1150}
1151
Willy Tarreau2373acc2017-10-12 17:35:14 +02001152/* returns the stream associated with id <id> or NULL if not found */
1153static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1154{
1155 struct eb32_node *node;
1156
Willy Tarreau751f2d02018-10-05 09:35:00 +02001157 if (id == 0)
1158 return (struct h2s *)h2_closed_stream;
1159
Willy Tarreau2a856182017-05-16 15:20:39 +02001160 if (id > h2c->max_id)
1161 return (struct h2s *)h2_idle_stream;
1162
Willy Tarreau2373acc2017-10-12 17:35:14 +02001163 node = eb32_lookup(&h2c->streams_by_id, id);
1164 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001165 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001166
1167 return container_of(node, struct h2s, by_id);
1168}
1169
Christopher Faulet73c12072019-04-08 11:23:22 +02001170/* release function. This one should be called to free all resources allocated
1171 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001172 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001173static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001174{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001175 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001176
Willy Tarreau7838a792019-08-12 18:42:03 +02001177 TRACE_ENTER(H2_EV_H2C_END);
1178
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001179 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001180
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001181 if (LIST_INLIST(&h2c->buf_wait.list))
1182 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001183
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001184 h2_release_buf(h2c, &h2c->dbuf);
1185 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001186
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001187 if (h2c->task) {
1188 h2c->task->context = NULL;
1189 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1190 h2c->task = NULL;
1191 }
1192 if (h2c->wait_event.tasklet)
1193 tasklet_free(h2c->wait_event.tasklet);
1194 if (conn && h2c->wait_event.events != 0)
1195 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1196 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001197
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001198 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001199
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001200 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001201
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001202 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001203 if (!conn_is_back(conn))
1204 LIST_DEL_INIT(&conn->stopping_list);
1205
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001206 conn->mux = NULL;
1207 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001208 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001209
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001210 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001211
1212 /* there might be a GOAWAY frame still pending in the TCP
1213 * stack, and if the peer continues to send (i.e. window
1214 * updates etc), this can result in losing the GOAWAY. For
1215 * this reason we try to drain anything received in between.
1216 */
1217 conn->flags |= CO_FL_WANT_DRAIN;
1218
1219 conn_xprt_shutw(conn);
1220 conn_xprt_close(conn);
1221 conn_sock_shutw(conn, !conn_is_back(conn));
1222 conn_ctrl_close(conn);
1223
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001224 if (conn->destroy_cb)
1225 conn->destroy_cb(conn);
1226 conn_free(conn);
1227 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001228
1229 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001230}
1231
1232
Willy Tarreau71681172017-10-23 14:39:06 +02001233/******************************************************/
1234/* functions below are for the H2 protocol processing */
1235/******************************************************/
1236
1237/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001238static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001239{
1240 return h2s ? h2s->id : 0;
1241}
1242
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001243/* returns the sum of the stream's own window size and the mux's initial
1244 * window, which together form the stream's effective window size.
1245 */
1246static inline int h2s_mws(const struct h2s *h2s)
1247{
1248 return h2s->sws + h2s->h2c->miw;
1249}
1250
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001251/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001252static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001253{
1254 if (h2c->msi < 0)
1255 return 0;
1256
1257 if (h2c->msi == h2s_id(h2s))
1258 return 0;
1259
1260 return 1;
1261}
1262
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001263/* marks an error on the connection. Before settings are sent, we must not send
1264 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1265 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1266 * even try.
1267 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001268static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001269{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001270 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001271 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001272 if (h2c->st0 < H2_CS_SETTINGS1)
1273 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001274 h2c->st0 = H2_CS_ERROR;
1275}
1276
Willy Tarreau175cebb2019-01-24 10:02:24 +01001277/* marks an error on the stream. It may also update an already closed stream
1278 * (e.g. to report an error after an RST was received).
1279 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001280static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001281{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001282 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001283 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001284 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001285 if (h2s->st < H2_SS_ERROR)
1286 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001287 se_fl_set_error(h2s->sd);
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
Willy Tarreau4596fe22022-05-17 19:07:51 +02001326 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001327 */
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 Tarreau2f2318d2022-05-18 10:17:16 +02001337 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001338 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001339 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
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 Tarreau7be4ee02022-05-18 07:31:41 +02001493 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001494 if (!se_fl_test(h2s->sd, SE_FL_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);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001533 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1534 sedesc_free(h2s->sd);
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 Tarreau95acc8b2022-05-27 16:14:10 +02001566 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001567 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001568 h2s->flags = H2_SF_NONE;
1569 h2s->errcode = H2_ERR_NO_ERROR;
1570 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001571 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001572 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001573 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001574 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001575
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001576 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001577 if (id > 0)
1578 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001579 else
1580 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001581
1582 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001583 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001584 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001585
Willy Tarreau4781b152021-04-06 13:53:36 +02001586 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1587 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001588
Willy Tarreau7838a792019-08-12 18:42:03 +02001589 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001590 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001591 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001592 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001593 return NULL;
1594}
1595
1596/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001597 * case of memory allocation error. <input> is used as input buffer for the new
1598 * stream. On success, it is transferred to the stream and the mux is no longer
1599 * responsible of it. On error, <input> is unchanged, thus the mux must still
1600 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001601 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001602static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001603{
1604 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001605 struct h2s *h2s;
1606
Willy Tarreau7838a792019-08-12 18:42:03 +02001607 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1608
Willy Tarreaue872f752022-05-12 09:24:41 +02001609 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1610 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 +02001611 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001612 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001613
1614 h2s = h2s_new(h2c, id);
1615 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001616 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001617
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001618 h2s->sd = sedesc_new();
1619 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001620 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001621 h2s->sd->se = h2s;
1622 h2s->sd->conn = h2c->conn;
1623 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001624
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001625 /* FIXME wrong analogy between ext-connect and websocket, this need to
1626 * be refine.
1627 */
1628 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001629 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001630
Willy Tarreaud0de6772022-02-04 09:05:37 +01001631 /* The stream will record the request's accept date (which is either the
1632 * end of the connection's or the date immediately after the previous
1633 * request) and the idle time, which is the delay since the previous
1634 * request. We can set the value now, it will be copied by stream_new().
1635 */
1636 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001637
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001638 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001639 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001640
Willy Tarreau36c22322022-05-27 10:41:24 +02001641 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001642
Willy Tarreau590a0512018-09-05 11:56:48 +02001643 /* We want the accept date presented to the next stream to be the one
1644 * we have now, the handshake time to be null (since the next stream
1645 * is not delayed by a handshake), and the idle time to count since
1646 * right now.
1647 */
1648 sess->accept_date = date;
1649 sess->tv_accept = now;
1650 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001651 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001652
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001653 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001654 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001655 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001656 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001657 return h2s;
1658
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001659 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001660 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001661 out_alloc:
1662 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 +02001663 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001664 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001665 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001666 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001667}
1668
Willy Tarreau36c22322022-05-27 10:41:24 +02001669/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001670 * connection and returns it, or NULL in case of memory allocation error or if
1671 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001672 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001673static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001674{
1675 struct h2s *h2s = NULL;
1676
Willy Tarreau7838a792019-08-12 18:42:03 +02001677 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1678
Willy Tarreaue872f752022-05-12 09:24:41 +02001679 if (h2c->nb_streams >= h2c->streams_limit) {
1680 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001681 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001682 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001683
Willy Tarreaue872f752022-05-12 09:24:41 +02001684 if (h2_streams_left(h2c) < 1) {
1685 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001686 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001687 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001688
Willy Tarreau751f2d02018-10-05 09:35:00 +02001689 /* Defer choosing the ID until we send the first message to create the stream */
1690 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001691 if (!h2s) {
1692 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001693 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001694 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001695
Willy Tarreau36c22322022-05-27 10:41:24 +02001696 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001697 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001698 h2s_destroy(h2s);
1699 h2s = NULL;
1700 goto out;
1701 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001702 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001703 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001704 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001705
Willy Tarreau751f2d02018-10-05 09:35:00 +02001706 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001707 if (likely(h2s))
1708 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1709 else
1710 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001711 return h2s;
1712}
1713
Willy Tarreaube5b7152017-09-25 16:25:39 +02001714/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1715 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1716 * the various settings codes.
1717 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001718static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001719{
1720 struct buffer *res;
1721 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001722 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001723 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001724 int ret = 0;
1725
1726 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001727
1728 if (h2c_mux_busy(h2c, NULL)) {
1729 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001730 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001731 }
1732
Willy Tarreaube5b7152017-09-25 16:25:39 +02001733 chunk_init(&buf, buf_data, sizeof(buf_data));
1734 chunk_memcpy(&buf,
1735 "\x00\x00\x00" /* length : 0 for now */
1736 "\x04\x00" /* type : 4 (settings), flags : 0 */
1737 "\x00\x00\x00\x00", /* stream ID : 0 */
1738 9);
1739
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001740 if (h2c->flags & H2_CF_IS_BACK) {
1741 /* send settings_enable_push=0 */
1742 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1743 }
1744
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001745 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1746 * sent automatically unless disabled in the global config */
1747 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1748 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001749
Willy Tarreaube5b7152017-09-25 16:25:39 +02001750 if (h2_settings_header_table_size != 4096) {
1751 char str[6] = "\x00\x01"; /* header_table_size */
1752
1753 write_n32(str + 2, h2_settings_header_table_size);
1754 chunk_memcat(&buf, str, 6);
1755 }
1756
1757 if (h2_settings_initial_window_size != 65535) {
1758 char str[6] = "\x00\x04"; /* initial_window_size */
1759
1760 write_n32(str + 2, h2_settings_initial_window_size);
1761 chunk_memcat(&buf, str, 6);
1762 }
1763
1764 if (h2_settings_max_concurrent_streams != 0) {
1765 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1766
1767 /* Note: 0 means "unlimited" for haproxy's config but not for
1768 * the protocol, so never send this value!
1769 */
1770 write_n32(str + 2, h2_settings_max_concurrent_streams);
1771 chunk_memcat(&buf, str, 6);
1772 }
1773
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001774 mfs = h2_settings_max_frame_size;
1775 if (mfs > global.tune.bufsize)
1776 mfs = global.tune.bufsize;
1777
1778 if (!mfs)
1779 mfs = global.tune.bufsize;
1780
1781 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001782 char str[6] = "\x00\x05"; /* max_frame_size */
1783
1784 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1785 * match bufsize - rewrite size, but at the moment it seems
1786 * that clients don't take care of it.
1787 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001788 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001789 chunk_memcat(&buf, str, 6);
1790 }
1791
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001792 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001793
1794 res = br_tail(h2c->mbuf);
1795 retry:
1796 if (!h2_get_buf(h2c, res)) {
1797 h2c->flags |= H2_CF_MUX_MALLOC;
1798 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001799 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001800 }
1801
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001802 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001803 if (unlikely(ret <= 0)) {
1804 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001805 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1806 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001807 h2c->flags |= H2_CF_MUX_MFULL;
1808 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001809 }
1810 else {
1811 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001812 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001813 }
1814 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001815 out:
1816 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001817 return ret;
1818}
1819
Willy Tarreau52eed752017-09-22 15:05:09 +02001820/* Try to receive a connection preface, then upon success try to send our
1821 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1822 * missing data. It may return an error in h2c.
1823 */
1824static int h2c_frt_recv_preface(struct h2c *h2c)
1825{
1826 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001827 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001828
Willy Tarreau7838a792019-08-12 18:42:03 +02001829 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1830
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001831 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001832
1833 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001834 if (!ret1)
1835 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001836 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001837 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 +02001838 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001839 if (b_data(&h2c->dbuf) ||
1840 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1841 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001842 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001843 ret2 = 0;
1844 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001845 }
1846
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001847 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001848 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001849 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001850 out:
1851 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001852 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001853}
1854
Willy Tarreau01b44822018-10-03 14:26:37 +02001855/* Try to send a connection preface, then upon success try to send our
1856 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1857 * missing data. It may return an error in h2c.
1858 */
1859static int h2c_bck_send_preface(struct h2c *h2c)
1860{
1861 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001862 int ret = 0;
1863
1864 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001865
1866 if (h2c_mux_busy(h2c, NULL)) {
1867 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001868 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001869 }
1870
Willy Tarreaubcc45952019-05-26 10:05:50 +02001871 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001872 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001873 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001874 h2c->flags |= H2_CF_MUX_MALLOC;
1875 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001876 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001877 }
1878
1879 if (!b_data(res)) {
1880 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001881 ret = b_istput(res, ist(H2_CONN_PREFACE));
1882 if (unlikely(ret <= 0)) {
1883 if (!ret) {
1884 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1885 goto retry;
1886 h2c->flags |= H2_CF_MUX_MFULL;
1887 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001888 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001889 }
1890 else {
1891 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001892 ret = 0;
1893 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001894 }
1895 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001896 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001897 ret = h2c_send_settings(h2c);
1898 out:
1899 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1900 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001901}
1902
Willy Tarreau081d4722017-05-16 21:51:05 +02001903/* try to send a GOAWAY frame on the connection to report an error or a graceful
1904 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1905 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1906 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1907 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1908 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1909 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001910 * case, nor will it send one if settings were not sent (e.g. still waiting for
1911 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001912 */
1913static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1914{
1915 struct buffer *res;
1916 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001917 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001918
Willy Tarreau7838a792019-08-12 18:42:03 +02001919 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1920
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001921 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001922 ret = 1; // claim that it worked
1923 goto out;
1924 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001925
1926 if (h2c_mux_busy(h2c, h2s)) {
1927 if (h2s)
1928 h2s->flags |= H2_SF_BLK_MBUSY;
1929 else
1930 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001931 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001932 }
1933
Willy Tarreau9c218e72019-05-26 10:08:28 +02001934 /* len: 8, type: 7, flags: none, sid: 0 */
1935 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1936
1937 if (h2c->last_sid < 0)
1938 h2c->last_sid = h2c->max_id;
1939
1940 write_n32(str + 9, h2c->last_sid);
1941 write_n32(str + 13, h2c->errcode);
1942
Willy Tarreaubcc45952019-05-26 10:05:50 +02001943 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001944 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001945 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001946 h2c->flags |= H2_CF_MUX_MALLOC;
1947 if (h2s)
1948 h2s->flags |= H2_SF_BLK_MROOM;
1949 else
1950 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001951 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001952 }
1953
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001954 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001955 if (unlikely(ret <= 0)) {
1956 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001957 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1958 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001959 h2c->flags |= H2_CF_MUX_MFULL;
1960 if (h2s)
1961 h2s->flags |= H2_SF_BLK_MROOM;
1962 else
1963 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001964 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001965 }
1966 else {
1967 /* we cannot report this error using GOAWAY, so we mark
1968 * it and claim a success.
1969 */
1970 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1971 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001972 ret = 1;
1973 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001974 }
1975 }
1976 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001977
1978 /* some codes are not for real errors, just attempts to close cleanly */
1979 switch (h2c->errcode) {
1980 case H2_ERR_NO_ERROR:
1981 case H2_ERR_ENHANCE_YOUR_CALM:
1982 case H2_ERR_REFUSED_STREAM:
1983 case H2_ERR_CANCEL:
1984 break;
1985 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001986 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001987 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001988 out:
1989 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001990 return ret;
1991}
1992
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001993/* Try to send an RST_STREAM frame on the connection for the indicated stream
1994 * during mux operations. This stream must be valid and cannot be closed
1995 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1996 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1997 * not yet.
1998 *
1999 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2000 * to write the message, it subscribes the stream to future notifications.
2001 */
2002static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2003{
2004 struct buffer *res;
2005 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002006 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002007
Willy Tarreau7838a792019-08-12 18:42:03 +02002008 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
2009
2010 if (!h2s || h2s->st == H2_SS_CLOSED) {
2011 ret = 1;
2012 goto out;
2013 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002014
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002015 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2016 * RST_STREAM in response to a RST_STREAM frame.
2017 */
Willy Tarreau231f6162019-08-06 10:01:40 +02002018 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002019 ret = 1;
2020 goto ignore;
2021 }
2022
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002023 if (h2c_mux_busy(h2c, h2s)) {
2024 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002025 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002026 }
2027
Willy Tarreau9c218e72019-05-26 10:08:28 +02002028 /* len: 4, type: 3, flags: none */
2029 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2030 write_n32(str + 5, h2s->id);
2031 write_n32(str + 9, h2s->errcode);
2032
Willy Tarreaubcc45952019-05-26 10:05:50 +02002033 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002034 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002035 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002036 h2c->flags |= H2_CF_MUX_MALLOC;
2037 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002038 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002039 }
2040
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002041 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002042 if (unlikely(ret <= 0)) {
2043 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002044 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2045 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002046 h2c->flags |= H2_CF_MUX_MFULL;
2047 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002048 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002049 }
2050 else {
2051 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002052 ret = 0;
2053 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002054 }
2055 }
2056
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002057 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002058 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002059 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002060 out:
2061 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002062 return ret;
2063}
2064
2065/* Try to send an RST_STREAM frame on the connection for the stream being
2066 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002067 * error code, even if the stream is one of the dummy ones, and will update
2068 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002069 *
2070 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2071 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002072 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002073 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002074 */
2075static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2076{
2077 struct buffer *res;
2078 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002079 int ret = 0;
2080
2081 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002082
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002083 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2084 * RST_STREAM in response to a RST_STREAM frame.
2085 */
2086 if (h2c->dft == H2_FT_RST_STREAM) {
2087 ret = 1;
2088 goto ignore;
2089 }
2090
Willy Tarreau27a84c92017-10-17 08:10:17 +02002091 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002092 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002093 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002094 }
2095
Willy Tarreau9c218e72019-05-26 10:08:28 +02002096 /* len: 4, type: 3, flags: none */
2097 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2098
2099 write_n32(str + 5, h2c->dsi);
2100 write_n32(str + 9, h2s->errcode);
2101
Willy Tarreaubcc45952019-05-26 10:05:50 +02002102 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002103 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002104 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002105 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002106 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002107 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002108 }
2109
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002110 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002111 if (unlikely(ret <= 0)) {
2112 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002113 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2114 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002115 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002116 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002117 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002118 }
2119 else {
2120 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002121 ret = 0;
2122 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002123 }
2124 }
2125
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002126 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002127 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002128 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002129 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002130 }
2131
Willy Tarreau7838a792019-08-12 18:42:03 +02002132 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002133 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002134 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002135 return ret;
2136}
2137
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002138/* try to send an empty DATA frame with the ES flag set to notify about the
2139 * end of stream and match a shutdown(write). If an ES was already sent as
2140 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2141 * on success or zero if nothing was done. In case of lack of room to write the
2142 * message, it subscribes the requesting stream to future notifications.
2143 */
2144static int h2_send_empty_data_es(struct h2s *h2s)
2145{
2146 struct h2c *h2c = h2s->h2c;
2147 struct buffer *res;
2148 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002149 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002150
Willy Tarreau7838a792019-08-12 18:42:03 +02002151 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2152
2153 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2154 ret = 1;
2155 goto out;
2156 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002157
2158 if (h2c_mux_busy(h2c, h2s)) {
2159 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002160 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002161 }
2162
Willy Tarreau9c218e72019-05-26 10:08:28 +02002163 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2164 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2165 write_n32(str + 5, h2s->id);
2166
Willy Tarreaubcc45952019-05-26 10:05:50 +02002167 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002168 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002169 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002170 h2c->flags |= H2_CF_MUX_MALLOC;
2171 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002172 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002173 }
2174
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002175 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002176 if (likely(ret > 0)) {
2177 h2s->flags |= H2_SF_ES_SENT;
2178 }
2179 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002180 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2181 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002182 h2c->flags |= H2_CF_MUX_MFULL;
2183 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002184 }
2185 else {
2186 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002187 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002188 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002189 out:
2190 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002191 return ret;
2192}
2193
Willy Tarreau4596fe22022-05-17 19:07:51 +02002194/* wake a specific stream and assign its stream connector some SE_FL_* flags
2195 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002196 * is automatically updated accordingly. If the stream is orphaned, it is
2197 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002198 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002199static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002200{
Willy Tarreau7838a792019-08-12 18:42:03 +02002201 struct h2c *h2c = h2s->h2c;
2202
2203 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2204
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002205 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002206 /* this stream was already orphaned */
2207 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002208 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002209 return;
2210 }
2211
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002212 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002213 if (h2s->st == H2_SS_OPEN)
2214 h2s->st = H2_SS_HREM;
2215 else if (h2s->st == H2_SS_HLOC)
2216 h2s_close(h2s);
2217 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002218
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002219 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2220 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002221 se_fl_set(h2s->sd, SE_FL_ERR_PENDING);
2222 if (se_fl_test(h2s->sd, SE_FL_EOS))
2223 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02002224
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002225 if (h2s->st < H2_SS_ERROR)
2226 h2s->st = H2_SS_ERROR;
2227 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002228
2229 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002230 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002231}
2232
2233/* wake the streams attached to the connection, whose id is greater than <last>
2234 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002235 */
Willy Tarreau23482912019-05-07 15:23:14 +02002236static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002237{
2238 struct eb32_node *node;
2239 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002240
Willy Tarreau7838a792019-08-12 18:42:03 +02002241 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2242
Christopher Fauletf02ca002019-03-07 16:21:34 +01002243 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002244 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2245 while (node) {
2246 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002247 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002248 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002249 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002250
Christopher Fauletf02ca002019-03-07 16:21:34 +01002251 /* Wake all streams with unassigned ID (ID == 0) */
2252 node = eb32_lookup(&h2c->streams_by_id, 0);
2253 while (node) {
2254 h2s = container_of(node, struct h2s, by_id);
2255 if (h2s->id > 0)
2256 break;
2257 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002258 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002259 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002260
2261 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002262}
2263
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002264/* Wake up all blocked streams whose window size has become positive after the
2265 * mux's initial window was adjusted. This should be done after having processed
2266 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002267 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002268static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002269{
2270 struct h2s *h2s;
2271 struct eb32_node *node;
2272
Willy Tarreau7838a792019-08-12 18:42:03 +02002273 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2274
Willy Tarreau3421aba2017-07-27 15:41:03 +02002275 node = eb32_first(&h2c->streams_by_id);
2276 while (node) {
2277 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002278 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002279 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002280 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002281 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2282 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002283 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002284 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002285 node = eb32_next(node);
2286 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002287
2288 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002289}
2290
2291/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2292 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002293 * return an error in h2c. The caller must have already verified frame length
2294 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002295 */
2296static int h2c_handle_settings(struct h2c *h2c)
2297{
2298 unsigned int offset;
2299 int error;
2300
Willy Tarreau7838a792019-08-12 18:42:03 +02002301 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2302
Willy Tarreau3421aba2017-07-27 15:41:03 +02002303 if (h2c->dff & H2_F_SETTINGS_ACK) {
2304 if (h2c->dfl) {
2305 error = H2_ERR_FRAME_SIZE_ERROR;
2306 goto fail;
2307 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002308 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002309 }
2310
Willy Tarreau3421aba2017-07-27 15:41:03 +02002311 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002312 if (b_data(&h2c->dbuf) < h2c->dfl) {
2313 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002314 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002315 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002316
2317 /* parse the frame */
2318 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002319 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2320 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002321
2322 switch (type) {
2323 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2324 /* we need to update all existing streams with the
2325 * difference from the previous iws.
2326 */
2327 if (arg < 0) { // RFC7540#6.5.2
2328 error = H2_ERR_FLOW_CONTROL_ERROR;
2329 goto fail;
2330 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002331 h2c->miw = arg;
2332 break;
2333 case H2_SETTINGS_MAX_FRAME_SIZE:
2334 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002335 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 +02002336 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002337 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002338 goto fail;
2339 }
2340 h2c->mfs = arg;
2341 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002342 case H2_SETTINGS_HEADER_TABLE_SIZE:
2343 h2c->flags |= H2_CF_SHTS_UPDATED;
2344 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002345 case H2_SETTINGS_ENABLE_PUSH:
2346 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002347 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002348 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002349 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002350 goto fail;
2351 }
2352 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002353 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2354 if (h2c->flags & H2_CF_IS_BACK) {
2355 /* the limit is only for the backend; for the frontend it is our limit */
2356 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2357 arg = h2_settings_max_concurrent_streams;
2358 h2c->streams_limit = arg;
2359 }
2360 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002361 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002362 if (arg == 1)
2363 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002364 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002365 }
2366 }
2367
2368 /* need to ACK this frame now */
2369 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002370 done:
2371 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002372 return 1;
2373 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002374 if (!(h2c->flags & H2_CF_IS_BACK))
2375 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002376 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002377 out0:
2378 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 +02002379 return 0;
2380}
2381
2382/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2383 * success or one of the h2_status values.
2384 */
2385static int h2c_ack_settings(struct h2c *h2c)
2386{
2387 struct buffer *res;
2388 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002389 int ret = 0;
2390
2391 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002392
2393 if (h2c_mux_busy(h2c, NULL)) {
2394 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002395 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002396 }
2397
Willy Tarreau9c218e72019-05-26 10:08:28 +02002398 memcpy(str,
2399 "\x00\x00\x00" /* length : 0 (no data) */
2400 "\x04" "\x01" /* type : 4, flags : ACK */
2401 "\x00\x00\x00\x00" /* stream ID */, 9);
2402
Willy Tarreaubcc45952019-05-26 10:05:50 +02002403 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002404 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002405 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002406 h2c->flags |= H2_CF_MUX_MALLOC;
2407 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002408 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002409 }
2410
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002411 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002412 if (unlikely(ret <= 0)) {
2413 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002414 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2415 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002416 h2c->flags |= H2_CF_MUX_MFULL;
2417 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002418 }
2419 else {
2420 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002421 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002422 }
2423 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002424 out:
2425 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002426 return ret;
2427}
2428
Willy Tarreaucf68c782017-10-10 17:11:41 +02002429/* processes a PING frame and schedules an ACK if needed. The caller must pass
2430 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002431 * missing data. The caller must have already verified frame length
2432 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002433 */
2434static int h2c_handle_ping(struct h2c *h2c)
2435{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002436 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002437 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002438 h2c->st0 = H2_CS_FRAME_A;
2439 return 1;
2440}
2441
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002442/* Try to send a window update for stream id <sid> and value <increment>.
2443 * Returns > 0 on success or zero on missing room or failure. It may return an
2444 * error in h2c.
2445 */
2446static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2447{
2448 struct buffer *res;
2449 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002450 int ret = 0;
2451
2452 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002453
2454 if (h2c_mux_busy(h2c, NULL)) {
2455 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002456 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002457 }
2458
Willy Tarreau9c218e72019-05-26 10:08:28 +02002459 /* length: 4, type: 8, flags: none */
2460 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2461 write_n32(str + 5, sid);
2462 write_n32(str + 9, increment);
2463
Willy Tarreaubcc45952019-05-26 10:05:50 +02002464 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002465 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002466 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002467 h2c->flags |= H2_CF_MUX_MALLOC;
2468 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002469 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002470 }
2471
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002472 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002473 if (unlikely(ret <= 0)) {
2474 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002475 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2476 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002477 h2c->flags |= H2_CF_MUX_MFULL;
2478 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002479 }
2480 else {
2481 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002482 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002483 }
2484 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002485 out:
2486 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002487 return ret;
2488}
2489
2490/* try to send pending window update for the connection. It's safe to call it
2491 * with no pending updates. Returns > 0 on success or zero on missing room or
2492 * failure. It may return an error in h2c.
2493 */
2494static int h2c_send_conn_wu(struct h2c *h2c)
2495{
2496 int ret = 1;
2497
Willy Tarreau7838a792019-08-12 18:42:03 +02002498 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2499
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002500 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002501 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002502
Willy Tarreau97aaa672018-12-23 09:49:04 +01002503 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2504 /* increase the advertised connection window to 2G on
2505 * first update.
2506 */
2507 h2c->flags |= H2_CF_WINDOW_OPENED;
2508 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2509 }
2510
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002511 /* send WU for the connection */
2512 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2513 if (ret > 0)
2514 h2c->rcvd_c = 0;
2515
Willy Tarreau7838a792019-08-12 18:42:03 +02002516 out:
2517 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002518 return ret;
2519}
2520
2521/* try to send pending window update for the current dmux stream. It's safe to
2522 * call it with no pending updates. Returns > 0 on success or zero on missing
2523 * room or failure. It may return an error in h2c.
2524 */
2525static int h2c_send_strm_wu(struct h2c *h2c)
2526{
2527 int ret = 1;
2528
Willy Tarreau7838a792019-08-12 18:42:03 +02002529 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2530
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002531 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002532 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002533
2534 /* send WU for the stream */
2535 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2536 if (ret > 0)
2537 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002538 out:
2539 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002540 return ret;
2541}
2542
Willy Tarreaucf68c782017-10-10 17:11:41 +02002543/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2544 * success, 0 on missing data or one of the h2_status values.
2545 */
2546static int h2c_ack_ping(struct h2c *h2c)
2547{
2548 struct buffer *res;
2549 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002550 int ret = 0;
2551
2552 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002553
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002554 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002555 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002556
2557 if (h2c_mux_busy(h2c, NULL)) {
2558 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002559 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002560 }
2561
Willy Tarreaucf68c782017-10-10 17:11:41 +02002562 memcpy(str,
2563 "\x00\x00\x08" /* length : 8 (same payload) */
2564 "\x06" "\x01" /* type : 6, flags : ACK */
2565 "\x00\x00\x00\x00" /* stream ID */, 9);
2566
2567 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002568 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002569
Willy Tarreau9c218e72019-05-26 10:08:28 +02002570 res = br_tail(h2c->mbuf);
2571 retry:
2572 if (!h2_get_buf(h2c, res)) {
2573 h2c->flags |= H2_CF_MUX_MALLOC;
2574 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002575 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002576 }
2577
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002578 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002579 if (unlikely(ret <= 0)) {
2580 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002581 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2582 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002583 h2c->flags |= H2_CF_MUX_MFULL;
2584 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002585 }
2586 else {
2587 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002588 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002589 }
2590 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 out:
2592 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002593 return ret;
2594}
2595
Willy Tarreau26f95952017-07-27 17:18:30 +02002596/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2597 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002598 * h2c or h2s. The caller must have already verified frame length and stream ID
2599 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002600 */
2601static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2602{
2603 int32_t inc;
2604 int error;
2605
Willy Tarreau7838a792019-08-12 18:42:03 +02002606 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2607
Willy Tarreau26f95952017-07-27 17:18:30 +02002608 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002609 if (b_data(&h2c->dbuf) < h2c->dfl) {
2610 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002611 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002612 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002613
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002614 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002615
2616 if (h2c->dsi != 0) {
2617 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002618
2619 /* it's not an error to receive WU on a closed stream */
2620 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002621 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002622
2623 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002624 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 +02002625 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002626 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002627 goto strm_err;
2628 }
2629
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002630 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002631 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 +02002632 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002633 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002634 goto strm_err;
2635 }
2636
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002637 h2s->sws += inc;
2638 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002639 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002640 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002641 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2642 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002643 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002644 }
2645 }
2646 else {
2647 /* connection window update */
2648 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002649 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002650 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002651 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002652 goto conn_err;
2653 }
2654
2655 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2656 error = H2_ERR_FLOW_CONTROL_ERROR;
2657 goto conn_err;
2658 }
2659
2660 h2c->mws += inc;
2661 }
2662
Willy Tarreau7838a792019-08-12 18:42:03 +02002663 done:
2664 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002665 return 1;
2666
2667 conn_err:
2668 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002669 out0:
2670 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 +02002671 return 0;
2672
2673 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002674 h2s_error(h2s, error);
2675 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002676 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002677 return 0;
2678}
2679
Willy Tarreaue96b0922017-10-30 00:28:29 +01002680/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002681 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2682 * have already verified frame length and stream ID validity. Described in
2683 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002684 */
2685static int h2c_handle_goaway(struct h2c *h2c)
2686{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002687 int last;
2688
Willy Tarreau7838a792019-08-12 18:42:03 +02002689 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002690 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002691 if (b_data(&h2c->dbuf) < h2c->dfl) {
2692 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002693 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002694 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002695 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002696
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002697 last = h2_get_n32(&h2c->dbuf, 0);
2698 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002699 if (h2c->last_sid < 0)
2700 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002701 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002702 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002703 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002704}
2705
Willy Tarreau92153fc2017-12-03 19:46:19 +01002706/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002707 * invalid. Returns > 0 on success or zero on missing data. It may return an
2708 * error in h2c. The caller must have already verified frame length and stream
2709 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002710 */
2711static int h2c_handle_priority(struct h2c *h2c)
2712{
Willy Tarreau7838a792019-08-12 18:42:03 +02002713 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2714
Willy Tarreau92153fc2017-12-03 19:46:19 +01002715 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002716 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002717 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002718 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002719 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002720 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002721
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002722 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002723 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002724 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002725 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002726 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002727 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002728 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002729 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002730 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002731 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002732}
2733
Willy Tarreaucd234e92017-08-18 10:59:39 +02002734/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002735 * Returns > 0 on success or zero on missing data. The caller must have already
2736 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002737 */
2738static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2739{
Willy Tarreau7838a792019-08-12 18:42:03 +02002740 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2741
Willy Tarreaucd234e92017-08-18 10:59:39 +02002742 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002743 if (b_data(&h2c->dbuf) < h2c->dfl) {
2744 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 +02002745 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002746 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002747 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002748
2749 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002750 if (h2s->st == H2_SS_CLOSED) {
2751 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 +02002752 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002753 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002754
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002755 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002756 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002757
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002758 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002759 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002760 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002761 }
2762
2763 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002764 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002765 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002766}
2767
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002768/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2769 * It may return an error in h2c or h2s. The caller must consider that the
2770 * return value is the new h2s in case one was allocated (most common case).
2771 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002772 * errors here are reported as connection errors since it's impossible to
2773 * recover from such errors after the compression context has been altered.
2774 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002775static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002776{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002777 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002778 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002779 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002780 int error;
2781
Willy Tarreau7838a792019-08-12 18:42:03 +02002782 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2783
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002784 if (!b_size(&h2c->dbuf)) {
2785 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002786 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002787 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002788
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002789 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2790 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002791 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002792 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002793
2794 /* now either the frame is complete or the buffer is complete */
2795 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002796 /* The stream exists/existed, this must be a trailers frame */
2797 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002798 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002799 /* unrecoverable error ? */
2800 if (h2c->st0 >= H2_CS_ERROR)
2801 goto out;
2802
Christopher Faulet485da0b2021-10-08 08:56:00 +02002803 if (error == 0) {
2804 /* Demux not blocked because of the stream, it is an incomplete frame */
2805 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2806 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002807 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002808 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002809
2810 if (error < 0) {
2811 /* Failed to decode this frame (e.g. too large request)
2812 * but the HPACK decompressor is still synchronized.
2813 */
2814 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2815 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002816 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002817 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002818 goto done;
2819 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002820 /* the connection was already killed by an RST, let's consume
2821 * the data and send another RST.
2822 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002823 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002824 h2s = (struct h2s*)h2_error_stream;
2825 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002826 }
2827 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2828 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2829 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002830 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002831 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002832 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002833 goto conn_err;
2834 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002835 else if (h2c->flags & H2_CF_DEM_TOOMANY)
Willy Tarreau36c22322022-05-27 10:41:24 +02002836 goto out; // IDLE but too many sc still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002837
Amaury Denoyelle74162742020-12-11 17:53:05 +01002838 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002839
Willy Tarreau25919232019-01-03 14:48:18 +01002840 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002841 if (h2c->st0 >= H2_CS_ERROR)
2842 goto out;
2843
Willy Tarreau25919232019-01-03 14:48:18 +01002844 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002845 if (error == 0) {
2846 /* Demux not blocked because of the stream, it is an incomplete frame */
2847 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2848 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002849 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002850 }
Willy Tarreau25919232019-01-03 14:48:18 +01002851
2852 /* Failed to decode this stream (e.g. too large request)
2853 * but the HPACK decompressor is still synchronized.
2854 */
2855 h2s = (struct h2s*)h2_error_stream;
2856 goto send_rst;
2857 }
2858
Willy Tarreau29268e92021-06-17 08:29:14 +02002859 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2860
Willy Tarreau198b5072022-05-12 09:08:51 +02002861 /* Now we cannot roll back and we won't come back here anymore for this
2862 * stream, this stream ID is open.
2863 */
2864 if (h2c->dsi > h2c->max_id)
2865 h2c->max_id = h2c->dsi;
2866
Willy Tarreau22de8d32018-09-05 19:55:58 +02002867 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002868 * positively from h2c_frt_stream_new(), the stream will report the error,
2869 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002870 *
2871 * Xfer the rxbuf to the stream. On success, the new stream owns the
2872 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002873 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002874 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002875 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002876 h2s = (struct h2s*)h2_refused_stream;
2877 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002878 }
2879
2880 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002881 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002882 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002883
Willy Tarreau88d138e2019-01-02 19:38:14 +01002884 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002885 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002886 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002887
2888 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002889 if (h2s->st == H2_SS_OPEN)
2890 h2s->st = H2_SS_HREM;
2891 else
2892 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002893 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002894 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002895
2896 conn_err:
2897 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002898 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002899
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002900 out:
2901 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002902 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 +01002903 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002904
2905 send_rst:
2906 /* make the demux send an RST for the current stream. We may only
2907 * do this if we're certain that the HEADERS frame was properly
2908 * decompressed so that the HPACK decoder is still kept up to date.
2909 */
2910 h2_release_buf(h2c, &rxbuf);
2911 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002912
Willy Tarreau022e5e52020-09-10 09:33:15 +02002913 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 +02002914 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002915 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002916}
2917
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002918/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2919 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2920 * errors here are reported as connection errors since it's impossible to
2921 * recover from such errors after the compression context has been altered.
2922 */
2923static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2924{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002925 struct buffer rxbuf = BUF_NULL;
2926 unsigned long long body_len = 0;
2927 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002928 int error;
2929
Willy Tarreau7838a792019-08-12 18:42:03 +02002930 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2931
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002932 if (!b_size(&h2c->dbuf)) {
2933 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002934 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002935 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002936
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002937 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2938 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002939 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002940 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002941
Christopher Faulet6884aa32019-09-23 15:28:20 +02002942 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002943 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002944 }
2945 else {
2946 /* the connection was already killed by an RST, let's consume
2947 * the data and send another RST.
2948 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002949 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002950 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002951 h2c->st0 = H2_CS_FRAME_E;
2952 goto send_rst;
2953 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002954
Willy Tarreau25919232019-01-03 14:48:18 +01002955 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002956 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002957 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002958
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002959 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2960 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002961 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 +01002962 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2963 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002964 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002965 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002966 }
2967
Willy Tarreau25919232019-01-03 14:48:18 +01002968 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002969 if (error == 0) {
2970 /* Demux not blocked because of the stream, it is an incomplete frame */
2971 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2972 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002973 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002974 }
Willy Tarreau25919232019-01-03 14:48:18 +01002975
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002976 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002977 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 +01002978 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002979 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002980 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002981 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002982 }
2983
Christopher Fauletfa922f02019-05-07 10:55:17 +02002984 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002985 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002986
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002987 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002988 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002989 else if (h2s->flags & H2_SF_ES_RCVD) {
2990 if (h2s->st == H2_SS_OPEN)
2991 h2s->st = H2_SS_HREM;
2992 else if (h2s->st == H2_SS_HLOC)
2993 h2s_close(h2s);
2994 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002995
Christopher Fauletf95f8762021-01-22 11:59:07 +01002996 /* Unblock busy server h2s waiting for the response headers to validate
2997 * the tunnel establishment or the end of the response of an oborted
2998 * tunnel
2999 */
3000 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
3001 (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)) {
3002 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3003 h2s->flags &= ~H2_SF_BLK_MBUSY;
3004 }
3005
Willy Tarreau9abb3172021-06-16 18:32:42 +02003006 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 +02003007 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003008 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02003009 fail:
3010 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3011 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003012
3013 send_rst:
3014 /* make the demux send an RST for the current stream. We may only
3015 * do this if we're certain that the HEADERS frame was properly
3016 * decompressed so that the HPACK decoder is still kept up to date.
3017 */
3018 h2_release_buf(h2c, &rxbuf);
3019 h2c->st0 = H2_CS_FRAME_E;
3020
Willy Tarreau022e5e52020-09-10 09:33:15 +02003021 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 +02003022 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3023 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003024}
3025
Willy Tarreau454f9052017-10-26 19:40:35 +02003026/* processes a DATA frame. Returns > 0 on success or zero on missing data.
3027 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
3028 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003029static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003030{
3031 int error;
3032
Willy Tarreau7838a792019-08-12 18:42:03 +02003033 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3034
Willy Tarreau454f9052017-10-26 19:40:35 +02003035 /* note that empty DATA frames are perfectly valid and sometimes used
3036 * to signal an end of stream (with the ES flag).
3037 */
3038
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003039 if (!b_size(&h2c->dbuf) && h2c->dfl) {
3040 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003041 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003042 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003043
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003044 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
3045 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003046 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003047 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003048
3049 /* now either the frame is complete or the buffer is complete */
3050
Willy Tarreau454f9052017-10-26 19:40:35 +02003051 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3052 /* RFC7540#6.1 */
3053 error = H2_ERR_STREAM_CLOSED;
3054 goto strm_err;
3055 }
3056
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003057 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003058 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003059 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 +01003060 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003061 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003062 goto strm_err;
3063 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003064 if (!(h2c->flags & H2_CF_IS_BACK) &&
3065 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3066 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3067 /* a tunnel attempt was aborted but the client still try to send some raw data.
3068 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3069 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3070 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003071 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003072 */
3073 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3074 error = H2_ERR_CANCEL;
3075 goto strm_err;
3076 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003077
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003078 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003079 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003080
Willy Tarreau454f9052017-10-26 19:40:35 +02003081 /* call the upper layers to process the frame, then let the upper layer
3082 * notify the stream about any change.
3083 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003084 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003085 /* The upper layer has already closed, this may happen on
3086 * 4xx/redirects during POST, or when receiving a response
3087 * from an H2 server after the client has aborted.
3088 */
3089 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003090 goto strm_err;
3091 }
3092
Willy Tarreau8f650c32017-11-21 19:36:21 +01003093 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003094 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003095
Willy Tarreau721c9742017-11-07 11:05:42 +01003096 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003097 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003098 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003099 }
3100
3101 /* check for completion : the callee will change this to FRAME_A or
3102 * FRAME_H once done.
3103 */
3104 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003105 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003106
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003107 /* last frame */
3108 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003109 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003110 if (h2s->st == H2_SS_OPEN)
3111 h2s->st = H2_SS_HREM;
3112 else
3113 h2s_close(h2s);
3114
Willy Tarreau1915ca22019-01-24 11:49:37 +01003115 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3116 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003117 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 +01003118 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003119 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003120 goto strm_err;
3121 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003122 }
3123
Christopher Fauletf95f8762021-01-22 11:59:07 +01003124 /* Unblock busy server h2s waiting for the end of the response for an
3125 * aborted tunnel
3126 */
3127 if ((h2c->flags & H2_CF_IS_BACK) &&
3128 (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)) {
3129 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3130 h2s->flags &= ~H2_SF_BLK_MBUSY;
3131 }
3132
Willy Tarreau7838a792019-08-12 18:42:03 +02003133 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003134 return 1;
3135
Willy Tarreau454f9052017-10-26 19:40:35 +02003136 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003137 h2s_error(h2s, error);
3138 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003139 fail:
3140 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 +02003141 return 0;
3142}
3143
Willy Tarreau63864812019-08-07 14:25:20 +02003144/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3145 * valid for the current stream state. This is needed only after parsing the
3146 * frame header but in practice it can be performed at any time during
3147 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3148 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3149 */
3150static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3151{
Willy Tarreau7838a792019-08-12 18:42:03 +02003152 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3153
Willy Tarreau63864812019-08-07 14:25:20 +02003154 if (h2s->st == H2_SS_IDLE &&
3155 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3156 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3157 * this state MUST be treated as a connection error
3158 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003159 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 +02003160 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003161 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003162 /* only log if no other stream can report the error */
3163 sess_log(h2c->conn->owner);
3164 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003165 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003166 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 +02003167 return 0;
3168 }
3169
Willy Tarreau57a18162019-11-24 14:57:53 +01003170 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3171 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003172 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 +01003173 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003174 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003175 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3176 return 0;
3177 }
3178
Willy Tarreau63864812019-08-07 14:25:20 +02003179 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3180 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3181 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3182 * this state MUST be treated as a stream error.
3183 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3184 * PUSH_PROMISE/CONTINUATION cause connection errors.
3185 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003186 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003187 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 +02003188 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003189 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003190 }
3191 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003192 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003193 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003194 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 +02003195 return 0;
3196 }
3197
3198 /* Below the management of frames received in closed state is a
3199 * bit hackish because the spec makes strong differences between
3200 * streams closed by receiving RST, sending RST, and seeing ES
3201 * in both directions. In addition to this, the creation of a
3202 * new stream reusing the identifier of a closed one will be
3203 * detected here. Given that we cannot keep track of all closed
3204 * streams forever, we consider that unknown closed streams were
3205 * closed on RST received, which allows us to respond with an
3206 * RST without breaking the connection (eg: to abort a transfer).
3207 * Some frames have to be silently ignored as well.
3208 */
3209 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3210 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3211 /* #5.1.1: The identifier of a newly
3212 * established stream MUST be numerically
3213 * greater than all streams that the initiating
3214 * endpoint has opened or reserved. This
3215 * governs streams that are opened using a
3216 * HEADERS frame and streams that are reserved
3217 * using PUSH_PROMISE. An endpoint that
3218 * receives an unexpected stream identifier
3219 * MUST respond with a connection error.
3220 */
3221 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003222 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 +02003223 return 0;
3224 }
3225
Willy Tarreau4c08f122019-09-26 08:47:15 +02003226 if (h2s->flags & H2_SF_RST_RCVD &&
3227 !(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 +02003228 /* RFC7540#5.1:closed: an endpoint that
3229 * receives any frame other than PRIORITY after
3230 * receiving a RST_STREAM MUST treat that as a
3231 * stream error of type STREAM_CLOSED.
3232 *
3233 * Note that old streams fall into this category
3234 * and will lead to an RST being sent.
3235 *
3236 * However, we cannot generalize this to all frame types. Those
3237 * carrying compression state must still be processed before
3238 * being dropped or we'll desynchronize the decoder. This can
3239 * happen with request trailers received after sending an
3240 * RST_STREAM, or with header/trailers responses received after
3241 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003242 *
3243 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003244 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003245 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003246 */
3247 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3248 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003249 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 +02003250 return 0;
3251 }
3252
3253 /* RFC7540#5.1:closed: if this state is reached as a
3254 * result of sending a RST_STREAM frame, the peer that
3255 * receives the RST_STREAM might have already sent
3256 * frames on the stream that cannot be withdrawn. An
3257 * endpoint MUST ignore frames that it receives on
3258 * closed streams after it has sent a RST_STREAM
3259 * frame. An endpoint MAY choose to limit the period
3260 * over which it ignores frames and treat frames that
3261 * arrive after this time as being in error.
3262 */
3263 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3264 /* RFC7540#5.1:closed: any frame other than
3265 * PRIO/WU/RST in this state MUST be treated as
3266 * a connection error
3267 */
3268 if (h2c->dft != H2_FT_RST_STREAM &&
3269 h2c->dft != H2_FT_PRIORITY &&
3270 h2c->dft != H2_FT_WINDOW_UPDATE) {
3271 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003272 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 +02003273 return 0;
3274 }
3275 }
3276 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003277 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003278 return 1;
3279}
3280
Willy Tarreaubc933932017-10-09 16:21:43 +02003281/* process Rx frames to be demultiplexed */
3282static void h2_process_demux(struct h2c *h2c)
3283{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003284 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003285 struct h2_fh hdr;
3286 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003287 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003288
Willy Tarreau7838a792019-08-12 18:42:03 +02003289 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3290
Willy Tarreau081d4722017-05-16 21:51:05 +02003291 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003292 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003293
3294 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3295 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003296 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003297 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003298 goto out;
3299
Willy Tarreau52eed752017-09-22 15:05:09 +02003300 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3301 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003302 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003303 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003304 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003305 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003306 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003307 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003308 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003309 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003310 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003311 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003312
3313 h2c->max_id = 0;
3314 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003315 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003316 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003317
3318 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003319 /* ensure that what is pending is a valid SETTINGS frame
3320 * without an ACK.
3321 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003322 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 +02003323 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003324 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003325 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003326 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003327 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 +02003328 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003329 if (!(h2c->flags & H2_CF_IS_BACK))
3330 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003331 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003332 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003333 }
3334
3335 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3336 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003337 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 +02003338 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3339 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003340 if (!(h2c->flags & H2_CF_IS_BACK))
3341 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003342 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003343 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003344 }
3345
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003346 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003347 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003348 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 +02003349 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3350 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003351 if (!(h2c->flags & H2_CF_IS_BACK))
3352 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003353 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003354 }
3355
Willy Tarreau3bf69182018-12-21 15:34:50 +01003356 /* that's OK, switch to FRAME_P to process it. This is
3357 * a SETTINGS frame whose header has already been
3358 * deleted above.
3359 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003360 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003361 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003362 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003363 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003364 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003365
3366 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003367 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003368 int ret = 0;
3369
Willy Tarreau7838a792019-08-12 18:42:03 +02003370 if (!b_data(&h2c->dbuf)) {
3371 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003372 h2c->flags |= H2_CF_DEM_SHORT_READ;
3373 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003374 }
3375
3376 if (h2c->st0 >= H2_CS_ERROR) {
3377 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003378 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003379 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003380
3381 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003382 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003383 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3384 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003385 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003386 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003387
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003388 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003389 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 +02003390 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003391 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003392 /* only log if no other stream can report the error */
3393 sess_log(h2c->conn->owner);
3394 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003395 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003396 break;
3397 }
3398
Willy Tarreau617592c2022-06-08 16:32:22 +02003399 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3400 /* changed stream with a pending WU, need to
3401 * send it now.
3402 */
3403 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3404 ret = h2c_send_strm_wu(h2c);
3405 if (ret <= 0)
3406 break;
3407 }
3408
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003409 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003410 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3411 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3412 * we read the pad length and drop it from the remaining
3413 * payload (one byte + the 9 remaining ones = 10 total
3414 * removed), so we have a frame payload starting after the
3415 * pad len. Flow controlled frames (DATA) also count the
3416 * padlen in the flow control, so it must be adjusted.
3417 */
3418 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003419 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 +01003420 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003421 if (!(h2c->flags & H2_CF_IS_BACK))
3422 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003423 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003424 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003425 }
3426 hdr.len--;
3427
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003428 if (b_data(&h2c->dbuf) < 10) {
3429 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003430 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003431 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003432
3433 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3434
3435 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003436 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 +01003437 /* RFC7540#6.1 : pad length = length of
3438 * frame payload or greater => error.
3439 */
3440 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003441 if (!(h2c->flags & H2_CF_IS_BACK))
3442 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003443 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003444 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003445 }
3446
3447 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3448 h2c->rcvd_c++;
3449 h2c->rcvd_s++;
3450 }
3451 b_del(&h2c->dbuf, 1);
3452 }
3453 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003454
3455 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003456 h2c->dfl = hdr.len;
3457 h2c->dsi = hdr.sid;
3458 h2c->dft = hdr.ft;
3459 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003460 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003461 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 +02003462 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003463
3464 /* check for minimum basic frame format validity */
3465 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3466 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003467 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 +01003468 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003469 if (!(h2c->flags & H2_CF_IS_BACK))
3470 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003471 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003472 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003473 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003474
3475 /* transition to HEADERS frame ends the keep-alive idle
3476 * timer and starts the http-request idle delay.
3477 */
3478 if (hdr.ft == H2_FT_HEADERS)
3479 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003480 }
3481
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003482 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3483 * H2_CS_FRAME_P indicates an incomplete previous operation
3484 * (most often the first attempt) and requires some validity
3485 * checks for the frame and the current state. The two other
3486 * ones are set after completion (or abortion) and must skip
3487 * validity checks.
3488 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003489 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3490
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003491 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003492 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003493 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003494 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003495 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003496 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003497 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003498 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003499 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003500 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003501 }
3502 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003503
Willy Tarreau63864812019-08-07 14:25:20 +02003504 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003505 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3506 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003507 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003508 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003509
Willy Tarreau7e98c052017-10-10 15:56:59 +02003510 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003511 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003512 if (h2c->st0 == H2_CS_FRAME_P) {
3513 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003514 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003515 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003516 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003517
Willy Tarreau7838a792019-08-12 18:42:03 +02003518 if (h2c->st0 == H2_CS_FRAME_A) {
3519 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 +02003520 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003521 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003522 break;
3523
Willy Tarreaucf68c782017-10-10 17:11:41 +02003524 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003525 if (h2c->st0 == H2_CS_FRAME_P) {
3526 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003527 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003528 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003529
Willy Tarreau7838a792019-08-12 18:42:03 +02003530 if (h2c->st0 == H2_CS_FRAME_A) {
3531 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 +02003532 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003533 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003534 break;
3535
Willy Tarreau26f95952017-07-27 17:18:30 +02003536 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003537 if (h2c->st0 == H2_CS_FRAME_P) {
3538 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 +02003539 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003540 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003541 break;
3542
Willy Tarreau61290ec2017-10-17 08:19:21 +02003543 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003544 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003545 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3546 * frames' parsers consume all following CONTINUATION
3547 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003548 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003549 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 +01003550 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003551 if (!(h2c->flags & H2_CF_IS_BACK))
3552 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003553 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003554 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003555
Willy Tarreau13278b42017-10-13 19:23:14 +02003556 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003557 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003558 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003559 if (h2c->flags & H2_CF_IS_BACK)
3560 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3561 else
3562 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003563 if (tmp_h2s) {
3564 h2s = tmp_h2s;
3565 ret = 1;
3566 }
3567 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003568 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003569 break;
3570
Willy Tarreau454f9052017-10-26 19:40:35 +02003571 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003572 if (h2c->st0 == H2_CS_FRAME_P) {
3573 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003574 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003575 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003576 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003577
Willy Tarreau7838a792019-08-12 18:42:03 +02003578 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003579 /* rcvd_s will suffice to trigger the sending of a WU */
3580 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003581 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003582 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003583
Willy Tarreau92153fc2017-12-03 19:46:19 +01003584 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003585 if (h2c->st0 == H2_CS_FRAME_P) {
3586 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003587 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003588 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003589 break;
3590
Willy Tarreaucd234e92017-08-18 10:59:39 +02003591 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003592 if (h2c->st0 == H2_CS_FRAME_P) {
3593 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 +02003594 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003595 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003596 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003597 break;
3598
Willy Tarreaue96b0922017-10-30 00:28:29 +01003599 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003600 if (h2c->st0 == H2_CS_FRAME_P) {
3601 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003602 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003603 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003604 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003605 break;
3606
Willy Tarreau1c661982017-10-30 13:52:01 +01003607 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003608 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003609 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003610 /* drop frames that we ignore. They may be larger than
3611 * the buffer so we drain all of their contents until
3612 * we reach the end.
3613 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003614 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3615 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003616 h2c->dfl -= ret;
3617 ret = h2c->dfl == 0;
3618 }
3619
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003620 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003621 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003622 if (h2s->st == H2_SS_ERROR) {
3623 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 +01003624 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003625 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003626
Willy Tarreau7838a792019-08-12 18:42:03 +02003627 if (h2c->st0 == H2_CS_FRAME_E) {
3628 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 +01003629 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003630 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003631
Willy Tarreau7e98c052017-10-10 15:56:59 +02003632 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003633 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003634 break;
3635
3636 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003637 if (h2c->dfl)
3638 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003639 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3640 b_del(&h2c->dbuf, ret);
3641 h2c->dfl -= ret;
3642 if (!h2c->dfl) {
3643 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3644 h2c->st0 = H2_CS_FRAME_H;
3645 h2c->dsi = -1;
3646 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003647 }
3648 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003649
Willy Tarreau617592c2022-06-08 16:32:22 +02003650 if (h2c->rcvd_s > 0 &&
3651 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3652 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3653 h2c_send_strm_wu(h2c);
3654 }
3655
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003656 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003657 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3658 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003659 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003660 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003661
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003662 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003663 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3664 if (h2c->flags & H2_CF_RCVD_SHUT)
3665 h2c->flags |= H2_CF_END_REACHED;
3666 }
3667
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003668 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003669 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003670 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003671 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003672 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003673 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003674 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003675 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003676 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003677 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003678 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003679
Willy Tarreau7838a792019-08-12 18:42:03 +02003680 if (old_iw != h2c->miw) {
3681 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003682 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003683 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003684
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003685 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003686 out:
3687 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003688 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003689}
3690
Willy Tarreau989539b2020-01-10 17:01:29 +01003691/* resume each h2s eligible for sending in list head <head> */
3692static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3693{
3694 struct h2s *h2s, *h2s_back;
3695
3696 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3697
3698 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3699 if (h2c->mws <= 0 ||
3700 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3701 h2c->st0 >= H2_CS_ERROR)
3702 break;
3703
3704 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003705
Willy Tarreaud9464162020-01-10 18:25:07 +01003706 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003707 continue;
3708
Willy Tarreau5723f292020-01-10 15:16:57 +01003709 /* If the sender changed his mind and unsubscribed, let's just
3710 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003711 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003712 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3713 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003714 LIST_DEL_INIT(&h2s->list);
3715 continue;
3716 }
3717
Willy Tarreauf96508a2020-01-10 11:12:48 +01003718 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003719 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003720 tasklet_wakeup(h2s->subs->tasklet);
3721 h2s->subs->events &= ~SUB_RETRY_SEND;
3722 if (!h2s->subs->events)
3723 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003724 }
3725 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3726 tasklet_wakeup(h2s->shut_tl);
3727 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003728 }
3729
3730 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3731}
3732
Willy Tarreaubc933932017-10-09 16:21:43 +02003733/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3734 * the end.
3735 */
3736static int h2_process_mux(struct h2c *h2c)
3737{
Willy Tarreau7838a792019-08-12 18:42:03 +02003738 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3739
Willy Tarreau01b44822018-10-03 14:26:37 +02003740 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3741 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3742 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3743 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003744 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003745 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003746 goto fail;
3747 }
3748 h2c->st0 = H2_CS_SETTINGS1;
3749 }
3750 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003751 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003752 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003753 }
3754
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003755 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003756 if (h2c->rcvd_s > 0 &&
3757 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3758 h2c_send_strm_wu(h2c) < 0)
3759 goto fail;
3760
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003761 if (h2c->rcvd_c > 0 &&
3762 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3763 h2c_send_conn_wu(h2c) < 0)
3764 goto fail;
3765
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003766 /* First we always process the flow control list because the streams
3767 * waiting there were already elected for immediate emission but were
3768 * blocked just on this.
3769 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003770 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3771 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003772
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003773 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003774 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003775 if (h2c->st0 == H2_CS_ERROR) {
3776 if (h2c->max_id >= 0) {
3777 h2c_send_goaway_error(h2c, NULL);
3778 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003779 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003780 }
3781
3782 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3783 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003784 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003785 done:
3786 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3787 return 1;
3788 out0:
3789 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3790 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003791}
3792
Willy Tarreau62f52692017-10-08 23:01:42 +02003793
Willy Tarreau479998a2018-11-18 06:30:59 +01003794/* Attempt to read data, and subscribe if none available.
3795 * The function returns 1 if data has been received, otherwise zero.
3796 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003797static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003798{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003799 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003800 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003801 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003802 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003803
Willy Tarreau7838a792019-08-12 18:42:03 +02003804 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3805
3806 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3807 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003808 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003809 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003810
Willy Tarreau7838a792019-08-12 18:42:03 +02003811 if (!h2_recv_allowed(h2c)) {
3812 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003813 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003814 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003815
Willy Tarreau44e973f2018-03-01 17:49:30 +01003816 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003817 if (!buf) {
3818 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003819 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003820 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003821 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003822
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003823 if (h2c->flags & H2_CF_RCVD_SHUT) {
3824 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003825 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003826 }
3827
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003828 if (!b_data(buf)) {
3829 /* try to pre-align the buffer like the
3830 * rxbufs will be to optimize memory copies. We'll make
3831 * sure that the frame header lands at the end of the
3832 * HTX block to alias it upon recv. We cannot use the
3833 * head because rcv_buf() will realign the buffer if
3834 * it's empty. Thus we cheat and pretend we already
3835 * have a few bytes there.
3836 */
3837 max = buf_room_for_htx_data(buf) + 9;
3838 buf->head = sizeof(struct htx) - 9;
3839 }
3840 else
3841 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003842
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003843 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003844
Christopher Fauletde9d6052021-04-23 12:25:18 +02003845 if (max && !ret && h2_recv_allowed(h2c)) {
3846 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3847 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003848 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003849 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003850 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3851 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003852
Christopher Fauletde9d6052021-04-23 12:25:18 +02003853 if (conn_xprt_read0_pending(h2c->conn)) {
3854 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3855 h2c->flags |= H2_CF_RCVD_SHUT;
3856 }
3857
Olivier Houcharda1411e62018-08-17 18:42:48 +02003858 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003859 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003860 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003861 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003862 }
3863
Willy Tarreau7838a792019-08-12 18:42:03 +02003864 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003865 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003866 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003867 }
3868
3869 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003870 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003871}
3872
Willy Tarreau479998a2018-11-18 06:30:59 +01003873/* Try to send data if possible.
3874 * The function returns 1 if data have been sent, otherwise zero.
3875 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003876static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003877{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003878 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003879 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003880 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003881
Willy Tarreau7838a792019-08-12 18:42:03 +02003882 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003883
Willy Tarreau7838a792019-08-12 18:42:03 +02003884 if (conn->flags & CO_FL_ERROR) {
3885 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3886 return 1;
3887 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003888
Willy Tarreau911db9b2020-01-23 16:27:54 +01003889 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003890 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003891 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003892 }
3893
Willy Tarreaubc933932017-10-09 16:21:43 +02003894 /* This loop is quite simple : it tries to fill as much as it can from
3895 * pending streams into the existing buffer until it's reportedly full
3896 * or the end of send requests is reached. Then it tries to send this
3897 * buffer's contents out, marks it not full if at least one byte could
3898 * be sent, and tries again.
3899 *
3900 * The snd_buf() function normally takes a "flags" argument which may
3901 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3902 * data immediately comes and CO_SFL_STREAMER to indicate that the
3903 * connection is streaming lots of data (used to increase TLS record
3904 * size at the expense of latency). The former can be sent any time
3905 * there's a buffer full flag, as it indicates at least one stream
3906 * attempted to send and failed so there are pending data. An
3907 * alternative would be to set it as long as there's an active stream
3908 * but that would be problematic for ACKs until we have an absolute
3909 * guarantee that all waiters have at least one byte to send. The
3910 * latter should possibly not be set for now.
3911 */
3912
3913 done = 0;
3914 while (!done) {
3915 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003916 unsigned int released = 0;
3917 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003918
3919 /* fill as much as we can into the current buffer */
3920 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3921 done = h2_process_mux(h2c);
3922
Olivier Houchard2b094432019-01-29 18:28:36 +01003923 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003924 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003925
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003926 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003927 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003928 break;
3929
3930 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3931 flags |= CO_SFL_MSG_MORE;
3932
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003933 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3934 if (b_data(buf)) {
3935 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003936 if (!ret) {
3937 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003938 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003939 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003940 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003941 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003942 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003943 if (b_data(buf)) {
3944 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003945 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003946 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003947 }
3948 b_free(buf);
3949 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003950 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003951
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003952 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003953 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003954
Willy Tarreaubc933932017-10-09 16:21:43 +02003955 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003956 if (sent)
3957 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003958 }
3959
Willy Tarreaua2af5122017-10-09 11:56:46 +02003960 if (conn->flags & CO_FL_SOCK_WR_SH) {
3961 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003962 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003963 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003964 /* We're not full anymore, so we can wake any task that are waiting
3965 * for us.
3966 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003967 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3968 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003969
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003970 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003971 if (!br_data(h2c->mbuf)) {
3972 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003973 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003974 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003975schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003976 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3977 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003978 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003979 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003980
Willy Tarreau7838a792019-08-12 18:42:03 +02003981 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003982 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003983}
3984
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003985/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003986struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003987{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003988 struct connection *conn;
3989 struct tasklet *tl = (struct tasklet *)t;
3990 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003991 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003992 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003993
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003994 if (state & TASK_F_USR1) {
3995 /* the tasklet was idling on an idle connection, it might have
3996 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003997 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003998 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3999 if (t->context == NULL) {
4000 /* The connection has been taken over by another thread,
4001 * we're no longer responsible for it, so just free the
4002 * tasklet, and do nothing.
4003 */
4004 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4005 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01004006 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004007 goto leave;
4008 }
4009 conn = h2c->conn;
4010 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004011
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004012 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004013
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004014 /* Remove the connection from the list, to be sure nobody attempts
4015 * to use it while we handle the I/O events
4016 */
4017 if (conn_in_list)
4018 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004019
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004020 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4021 } else {
4022 /* we're certain the connection was not in an idle list */
4023 conn = h2c->conn;
4024 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4025 conn_in_list = 0;
4026 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004027
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004028 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02004029 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004030 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02004031 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01004032 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004033 ret = h2_process(h2c);
4034
4035 /* If we were in an idle list, we want to add it back into it,
4036 * unless h2_process() returned -1, which mean it has destroyed
4037 * the connection (testing !ret is enough, if h2_process() wasn't
4038 * called then ret will be 0 anyway.
4039 */
Willy Tarreau74163142021-03-13 11:30:19 +01004040 if (ret < 0)
4041 t = NULL;
4042
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004043 if (!ret && conn_in_list) {
4044 struct server *srv = objt_server(conn->target);
4045
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004046 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004047 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004048 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004049 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004050 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004051 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004052 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004053
Willy Tarreau38468772020-06-28 00:31:13 +02004054leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02004055 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01004056 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004057}
Willy Tarreaua2af5122017-10-09 11:56:46 +02004058
Willy Tarreau62f52692017-10-08 23:01:42 +02004059/* callback called on any event by the connection handler.
4060 * It applies changes and returns zero, or < 0 if it wants immediate
4061 * destruction of the connection (which normally doesn not happen in h2).
4062 */
Olivier Houchard7505f942018-08-21 18:10:44 +02004063static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02004064{
Olivier Houchard7505f942018-08-21 18:10:44 +02004065 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004066
Willy Tarreau7838a792019-08-12 18:42:03 +02004067 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4068
Willy Tarreauf0961222021-02-05 11:41:46 +01004069 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4070 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004071 h2_process_demux(h2c);
4072
4073 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004074 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004075
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004076 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004077 h2c->flags &= ~H2_CF_DEM_DFULL;
4078 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004079 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004080
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004081 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 +02004082 int send_goaway = 1;
4083 /* If a close-spread-time option is set, we want to avoid
4084 * closing all the active HTTP2 connections at once so we add a
4085 * random factor that will spread the closing.
4086 */
4087 if (tick_isset(global.close_spread_end)) {
4088 int remaining_window = tick_remain(now_ms, global.close_spread_end);
4089 if (remaining_window) {
4090 /* This should increase the closing rate the
4091 * further along the window we are. */
4092 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
4093 }
4094 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02004095 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
4096 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01004097 /* frontend is stopping, reload likely in progress, let's try
4098 * to announce a graceful shutdown if not yet done. We don't
4099 * care if it fails, it will be tried again later.
4100 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004101 if (send_goaway) {
4102 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
4103 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4104 if (h2c->last_sid < 0)
4105 h2c->last_sid = (1U << 31) - 1;
4106 h2c_send_goaway_error(h2c, NULL);
4107 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004108 }
4109 }
4110
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004111 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004112 * If we received early data, and the handshake is done, wake
4113 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004114 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004115 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004116 (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 +01004117 struct eb32_node *node;
4118 struct h2s *h2s;
4119
4120 h2c->flags |= H2_CF_WAIT_FOR_HS;
4121 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4122
4123 while (node) {
4124 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004125 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01004126 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004127 node = eb32_next(node);
4128 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004129 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004130
Christopher Fauletaade4ed2020-10-08 15:38:41 +02004131 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004132 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4133 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4134 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004135 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004136
4137 if (eb_is_empty(&h2c->streams_by_id)) {
4138 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004139 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004140 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004141 return -1;
4142 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004143
4144 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004145 if (conn->flags & CO_FL_LIST_MASK) {
4146 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004147 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004148 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4149 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004150 }
4151 else if (h2c->st0 == H2_CS_ERROR) {
4152 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004153 if (conn->flags & CO_FL_LIST_MASK) {
4154 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004155 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004156 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4157 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004158 }
4159
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004160 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004161 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004162
Olivier Houchard53216e72018-10-10 15:46:36 +02004163 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4164 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4165 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004166 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004167 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4168 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004169 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004170
Willy Tarreau15a47332022-03-18 15:57:34 +01004171 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004172 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004173 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004174 return 0;
4175}
4176
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004177/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004178static int h2_wake(struct connection *conn)
4179{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004180 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004181 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004182
Willy Tarreau7838a792019-08-12 18:42:03 +02004183 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4184 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004185 if (ret >= 0)
4186 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004187 TRACE_LEAVE(H2_EV_H2C_WAKE);
4188 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004189}
4190
Willy Tarreauea392822017-10-31 10:02:25 +01004191/* Connection timeout management. The principle is that if there's no receipt
4192 * nor sending for a certain amount of time, the connection is closed. If the
4193 * MUX buffer still has lying data or is not allocatable, the connection is
4194 * immediately killed. If it's allocatable and empty, we attempt to send a
4195 * GOAWAY frame.
4196 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004197struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004198{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004199 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004200 int expired = tick_is_expired(t->expire, now_ms);
4201
Willy Tarreau7838a792019-08-12 18:42:03 +02004202 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4203
Willy Tarreaubd42e922020-06-30 11:19:23 +02004204 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004205 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004206 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004207
4208 /* Somebody already stole the connection from us, so we should not
4209 * free it, we just have to free the task.
4210 */
4211 if (!t->context) {
4212 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004213 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004214 goto do_leave;
4215 }
4216
4217
Willy Tarreaubd42e922020-06-30 11:19:23 +02004218 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004219 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004220 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4221 return t;
4222 }
Willy Tarreauea392822017-10-31 10:02:25 +01004223
Willy Tarreaubd42e922020-06-30 11:19:23 +02004224 if (!h2c_may_expire(h2c)) {
4225 /* we do still have streams but all of them are idle, waiting
4226 * for the data layer, so we must not enforce the timeout here.
4227 */
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 t->expire = TICK_ETERNITY;
4230 return t;
4231 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004232
Willy Tarreaubd42e922020-06-30 11:19:23 +02004233 /* We're about to destroy the connection, so make sure nobody attempts
4234 * to steal it from us.
4235 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004236 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004237 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004238
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004239 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004240 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004241
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004242do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004243 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004244
4245 if (!h2c) {
4246 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004247 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004248 return NULL;
4249 }
4250
4251 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004252 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004253 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004254
Willy Tarreau662fafc2019-05-26 09:43:07 +02004255 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004256 /* don't even try to send a GOAWAY, the buffer is stuck */
4257 h2c->flags |= H2_CF_GOAWAY_FAILED;
4258 }
4259
4260 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004261 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004262 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4263 h2c->flags |= H2_CF_GOAWAY_FAILED;
4264
Willy Tarreau662fafc2019-05-26 09:43:07 +02004265 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004266 unsigned int released = 0;
4267 struct buffer *buf;
4268
4269 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4270 if (b_data(buf)) {
4271 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4272 if (!ret)
4273 break;
4274 b_del(buf, ret);
4275 if (b_data(buf))
4276 break;
4277 b_free(buf);
4278 released++;
4279 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004280 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004281
4282 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004283 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004284 }
Willy Tarreauea392822017-10-31 10:02:25 +01004285
Willy Tarreau4481e262019-10-31 15:36:30 +01004286 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004287 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4288 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004289 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004290 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4291 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004292
Willy Tarreau0975f112018-03-29 15:22:59 +02004293 /* either we can release everything now or it will be done later once
4294 * the last stream closes.
4295 */
4296 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004297 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004298
Willy Tarreau7838a792019-08-12 18:42:03 +02004299 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004300 return NULL;
4301}
4302
4303
Willy Tarreau62f52692017-10-08 23:01:42 +02004304/*******************************************/
4305/* functions below are used by the streams */
4306/*******************************************/
4307
4308/*
4309 * Attach a new stream to a connection
4310 * (Used for outgoing connections)
4311 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004312static int h2_attach(struct connection *conn, struct sedesc *sd, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004313{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004314 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004315 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004316
Willy Tarreau7838a792019-08-12 18:42:03 +02004317 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004318 h2s = h2c_bck_stream_new(h2c, sd->sc, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004319 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004320 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004321 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004322 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004323
4324 /* the connection is not idle anymore, let's mark this */
4325 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004326 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004327
Willy Tarreau7838a792019-08-12 18:42:03 +02004328 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004329 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004330}
4331
Willy Tarreau4596fe22022-05-17 19:07:51 +02004332/* Retrieves the first valid stream connector from this connection, or returns
4333 * NULL. We have to scan because we may have some orphan streams. It might be
Willy Tarreaufafd3982018-11-18 21:29:20 +01004334 * beneficial to scan backwards from the end to reduce the likeliness to find
4335 * orphans.
4336 */
Willy Tarreaud1373532022-05-27 11:00:59 +02004337static struct stconn *h2_get_first_sc(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004338{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004339 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004340 struct h2s *h2s;
4341 struct eb32_node *node;
4342
4343 node = eb32_first(&h2c->streams_by_id);
4344 while (node) {
4345 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004346 if (h2s_sc(h2s))
4347 return h2s_sc(h2s);
Willy Tarreaufafd3982018-11-18 21:29:20 +01004348 node = eb32_next(node);
4349 }
4350 return NULL;
4351}
4352
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004353static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4354{
4355 int ret = 0;
4356 struct h2c *h2c = conn->ctx;
4357
4358 switch (mux_ctl) {
4359 case MUX_STATUS:
4360 /* Only consider the mux to be ready if we're done with
4361 * the preface and settings, and we had no error.
4362 */
4363 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4364 ret |= MUX_STATUS_READY;
4365 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004366 case MUX_EXIT_STATUS:
4367 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004368 default:
4369 return -1;
4370 }
4371}
4372
Willy Tarreau62f52692017-10-08 23:01:42 +02004373/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004374 * Destroy the mux and the associated connection, if it is no longer used
4375 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004376static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004377{
Christopher Faulet73c12072019-04-08 11:23:22 +02004378 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004379
Willy Tarreau7838a792019-08-12 18:42:03 +02004380 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004381 if (eb_is_empty(&h2c->streams_by_id)) {
4382 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004383 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004384 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004385 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004386}
4387
4388/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004389 * Detach the stream from the connection and possibly release the connection.
4390 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004391static void h2_detach(struct sedesc *sd)
Willy Tarreau62f52692017-10-08 23:01:42 +02004392{
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004393 struct h2s *h2s = sd->se;
Willy Tarreau60935142017-10-16 18:11:19 +02004394 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004395 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004396
Willy Tarreau7838a792019-08-12 18:42:03 +02004397 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4398
Willy Tarreau7838a792019-08-12 18:42:03 +02004399 if (!h2s) {
4400 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004401 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004402 }
Willy Tarreau60935142017-10-16 18:11:19 +02004403
Willy Tarreaud9464162020-01-10 18:25:07 +01004404 /* there's no txbuf so we're certain not to be able to send anything */
4405 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004406
Olivier Houchardf502aca2018-12-14 19:42:40 +01004407 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004408 h2c = h2s->h2c;
Willy Tarreau36c22322022-05-27 10:41:24 +02004409 h2c->nb_sc--;
4410 if (!h2c->nb_sc)
Willy Tarreau15a47332022-03-18 15:57:34 +01004411 h2c->idle_start = now_ms;
4412
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004413 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
Willy Tarreau36c22322022-05-27 10:41:24 +02004414 !h2_frt_has_too_many_sc(h2c)) {
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004415 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004416 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004417 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004418 }
Willy Tarreau60935142017-10-16 18:11:19 +02004419
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004420 /* this stream may be blocked waiting for some data to leave (possibly
4421 * an ES or RST frame), so orphan it in this case.
4422 */
Christopher Faulet897d6122021-12-17 17:28:35 +01004423 if (!(h2c->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004424 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004425 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004426 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004427 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004428 /* refresh the timeout if none was active, so that the last
4429 * leaving stream may arm it.
4430 */
4431 if (!tick_isset(h2c->task->expire))
4432 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004433 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004434 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004435
Willy Tarreau45f752e2017-10-30 15:44:59 +01004436 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4437 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4438 /* unblock the connection if it was blocked on this
4439 * stream.
4440 */
4441 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4442 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004443 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004444 }
4445
Willy Tarreau71049cc2018-03-28 13:56:39 +02004446 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004447
Christopher Faulet9b79a102019-07-15 11:22:56 +02004448 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004449 if (!(h2c->conn->flags &
4450 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004451 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004452 /* Add the connection in the session server list, if not already done */
4453 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4454 h2c->conn->owner = NULL;
4455 if (eb_is_empty(&h2c->streams_by_id)) {
4456 h2c->conn->mux->destroy(h2c);
4457 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4458 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004459 }
4460 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004461 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004462 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4463 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4464 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004465 return;
4466 }
4467 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004468 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004469 else {
4470 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004471 /* If the connection is owned by the session, first remove it
4472 * from its list
4473 */
4474 if (h2c->conn->owner) {
4475 session_unown_conn(h2c->conn->owner, h2c->conn);
4476 h2c->conn->owner = NULL;
4477 }
4478
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004479 /* mark that the tasklet may lose its context to another thread and
4480 * that the handler needs to check it under the idle conns lock.
4481 */
4482 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004483 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4484
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004485 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004486 /* The server doesn't want it, let's kill the connection right away */
4487 h2c->conn->mux->destroy(h2c);
4488 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4489 return;
4490 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004491 /* At this point, the connection has been added to the
4492 * server idle list, so another thread may already have
4493 * hijacked it, so we can't do anything with it.
4494 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004495 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4496 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004497
Olivier Houchard8a786902018-12-15 16:05:40 +01004498 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004499 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004500 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004501 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004502 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004503 &h2c->conn->hash_node->node,
4504 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004505 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004506 }
4507 }
4508 }
4509
Willy Tarreaue323f342018-03-28 13:51:45 +02004510 /* We don't want to close right now unless we're removing the
4511 * last stream, and either the connection is in error, or it
4512 * reached the ID already specified in a GOAWAY frame received
4513 * or sent (as seen by last_sid >= 0).
4514 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004515 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004516 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004517 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004518 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004519 }
4520 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004521 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004522 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004523 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004524 else
4525 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004526}
4527
Willy Tarreau88bdba32019-05-13 18:17:53 +02004528/* Performs a synchronous or asynchronous shutr(). */
4529static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004530{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004531 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004532
Willy Tarreauf983d002019-05-14 10:40:21 +02004533 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004534 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004535
Willy Tarreau7838a792019-08-12 18:42:03 +02004536 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4537
Willy Tarreau18059042019-01-31 19:12:48 +01004538 /* a connstream may require us to immediately kill the whole connection
4539 * for example because of a "tcp-request content reject" rule that is
4540 * normally used to limit abuse. In this case we schedule a goaway to
4541 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004542 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004543 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004544 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004545 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004546 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4547 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4548 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004549 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4550 /* Nothing was never sent for this stream, so reset with
4551 * REFUSED_STREAM error to let the client retry the
4552 * request.
4553 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004554 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004555 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4556 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004557 else {
4558 /* a final response was already provided, we don't want this
4559 * stream anymore. This may happen when the server responds
4560 * before the end of an upload and closes quickly (redirect,
4561 * deny, ...)
4562 */
4563 h2s_error(h2s, H2_ERR_CANCEL);
4564 }
Willy Tarreau18059042019-01-31 19:12:48 +01004565
Willy Tarreau90c32322017-11-24 08:00:30 +01004566 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004567 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004568 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004569
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004570 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004571 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004572 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004573 done:
4574 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004575 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004576 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004577add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004578 /* Let the handler know we want to shutr, and add ourselves to the
4579 * most relevant list if not yet done. h2_deferred_shut() will be
4580 * automatically called via the shut_tl tasklet when there's room
4581 * again.
4582 */
4583 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004584 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004585 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004586 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004587 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004588 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004589 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004590 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004591 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004592}
4593
Willy Tarreau88bdba32019-05-13 18:17:53 +02004594/* Performs a synchronous or asynchronous shutw(). */
4595static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004596{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004597 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004598
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004599 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004600 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004601
Willy Tarreau7838a792019-08-12 18:42:03 +02004602 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4603
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004604 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004605 /* we can cleanly close using an empty data frame only after headers */
4606
4607 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4608 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004609 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004610
4611 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004612 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004613 else
4614 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004615 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004616 /* a connstream may require us to immediately kill the whole connection
4617 * for example because of a "tcp-request content reject" rule that is
4618 * normally used to limit abuse. In this case we schedule a goaway to
4619 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004620 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004621 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004622 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004623 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004624 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4625 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4626 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004627 else {
4628 /* Nothing was never sent for this stream, so reset with
4629 * REFUSED_STREAM error to let the client retry the
4630 * request.
4631 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004632 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004633 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4634 }
Willy Tarreau18059042019-01-31 19:12:48 +01004635
Willy Tarreau90c32322017-11-24 08:00:30 +01004636 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004637 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004638 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004639
Willy Tarreau00dd0782018-03-01 16:31:34 +01004640 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004641 }
4642
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004643 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004644 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004645
4646 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4647
Willy Tarreau88bdba32019-05-13 18:17:53 +02004648 done:
4649 h2s->flags &= ~H2_SF_WANT_SHUTW;
4650 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004651
4652 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004653 /* Let the handler know we want to shutw, and add ourselves to the
4654 * most relevant list if not yet done. h2_deferred_shut() will be
4655 * automatically called via the shut_tl tasklet when there's room
4656 * again.
4657 */
4658 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004659 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004660 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004661 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004662 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004663 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004664 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004665 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004666 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004667}
4668
Willy Tarreau5723f292020-01-10 15:16:57 +01004669/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004670 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4671 * and prevented the last frame from being emitted.
4672 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004673struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004674{
4675 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004676 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004677
Willy Tarreau7838a792019-08-12 18:42:03 +02004678 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4679
Willy Tarreau5723f292020-01-10 15:16:57 +01004680 if (h2s->flags & H2_SF_NOTIFIED) {
4681 /* some data processing remains to be done first */
4682 goto end;
4683 }
4684
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004685 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004686 h2_do_shutw(h2s);
4687
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004688 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004689 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004690
Willy Tarreau88bdba32019-05-13 18:17:53 +02004691 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004692 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004693 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004694
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004695 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004696 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004697 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004698 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004699 t = NULL;
4700 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004701 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004702 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004703 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004704 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004705 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004706}
4707
Willy Tarreau4596fe22022-05-17 19:07:51 +02004708/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004709static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004710{
Willy Tarreau36c22322022-05-27 10:41:24 +02004711 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004712
Willy Tarreau7838a792019-08-12 18:42:03 +02004713 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004714 if (mode)
4715 h2_do_shutr(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
Willy Tarreau4596fe22022-05-17 19:07:51 +02004719/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004720static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004721{
Willy Tarreau36c22322022-05-27 10:41:24 +02004722 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004723
Willy Tarreau7838a792019-08-12 18:42:03 +02004724 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004725 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004726 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004727}
4728
Christopher Faulet9b79a102019-07-15 11:22:56 +02004729/* Decode the payload of a HEADERS frame and produce the HTX request or response
4730 * depending on the connection's side. Returns a positive value on success, a
4731 * negative value on failure, or 0 if it couldn't proceed. May report connection
4732 * errors in h2c->errcode if the frame is non-decodable and the connection
4733 * unrecoverable. In absence of connection error when a failure is reported, the
4734 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004735 *
4736 * The function may fold CONTINUATION frames into the initial HEADERS frame
4737 * by removing padding and next frame header, then moving the CONTINUATION
4738 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4739 * leaving a hole between the main frame and the beginning of the next one.
4740 * The possibly remaining incomplete or next frame at the end may be moved
4741 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4742 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4743 *
4744 * A buffer at the beginning of processing may look like this :
4745 *
4746 * ,---.---------.-----.--------------.--------------.------.---.
4747 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4748 * `---^---------^-----^--------------^--------------^------^---'
4749 * | | <-----> | |
4750 * area | dpl | wrap
4751 * |<--------------> |
4752 * | dfl |
4753 * |<-------------------------------------------------->|
4754 * head data
4755 *
4756 * Padding is automatically overwritten when folding, participating to the
4757 * hole size after dfl :
4758 *
4759 * ,---.------------------------.-----.--------------.------.---.
4760 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4761 * `---^------------------------^-----^--------------^------^---'
4762 * | | <-----> | |
4763 * area | hole | wrap
4764 * |<-----------------------> |
4765 * | dfl |
4766 * |<-------------------------------------------------->|
4767 * head data
4768 *
4769 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4770 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4771 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004772 *
4773 * The <flags> field must point to either the stream's flags or to a copy of it
4774 * so that the function can update the following flags :
4775 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004776 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004777 *
4778 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4779 * decoding, in order to detect if we're dealing with a headers or a trailers
4780 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004781 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004782static 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 +02004783{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004784 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004785 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004786 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004787 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004788 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004789 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004790 int flen; // header frame len
4791 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004792 int ret = 0;
4793 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004794 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004795
Willy Tarreau7838a792019-08-12 18:42:03 +02004796 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4797
Willy Tarreauea18f862018-12-22 20:19:26 +01004798next_frame:
4799 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4800 goto leave; // incomplete input frame
4801
4802 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4803 * this case, we'll try to paste it immediately after the initial
4804 * HEADERS frame payload and kill any possible padding. The initial
4805 * frame's length will be increased to represent the concatenation
4806 * of the two frames. The next frame is read from position <tlen>
4807 * and written at position <flen> (minus padding if some is present).
4808 */
4809 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4810 struct h2_fh hdr;
4811 int clen; // CONTINUATION frame's payload length
4812
Willy Tarreau7838a792019-08-12 18:42:03 +02004813 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 +01004814 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4815 /* no more data, the buffer may be full, either due to
4816 * too large a frame or because of too large a hole that
4817 * we're going to compact at the end.
4818 */
4819 goto leave;
4820 }
4821
4822 if (hdr.ft != H2_FT_CONTINUATION) {
4823 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004824 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 +01004825 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004826 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004827 goto fail;
4828 }
4829
4830 if (hdr.sid != h2c->dsi) {
4831 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004832 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 +01004833 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004834 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004835 goto fail;
4836 }
4837
4838 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4839 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004840 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 +01004841 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4842 goto fail;
4843 }
4844
4845 /* detect when we must stop aggragating frames */
4846 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4847
4848 /* Take as much as we can of the CONTINUATION frame's payload */
4849 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4850 if (clen > hdr.len)
4851 clen = hdr.len;
4852
4853 /* Move the frame's payload over the padding, hole and frame
4854 * header. At least one of hole or dpl is null (see diagrams
4855 * above). The hole moves after the new aggragated frame.
4856 */
4857 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 +02004858 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004859 hole += h2c->dpl + 9;
4860 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004861 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 +01004862 goto next_frame;
4863 }
4864
4865 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004866
Willy Tarreau13278b42017-10-13 19:23:14 +02004867 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004868 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004869 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004870 copy = alloc_trash_chunk();
4871 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004872 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 +02004873 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4874 goto fail;
4875 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004876 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4877 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4878 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004879 }
4880
Willy Tarreau13278b42017-10-13 19:23:14 +02004881 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4882 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004883 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004884 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004885 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 +01004886 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004887 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004888 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004889 }
4890
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004891 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004892 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 +01004893 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4894 goto fail;
4895 }
4896
Willy Tarreau13278b42017-10-13 19:23:14 +02004897 hdrs += 5; // stream dep = 4, weight = 1
4898 flen -= 5;
4899 }
4900
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004901 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004902 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 +01004903 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004904 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004905 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004906
Willy Tarreau937f7602018-02-26 15:22:17 +01004907 /* we can't retry a failed decompression operation so we must be very
4908 * careful not to take any risks. In practice the output buffer is
4909 * always empty except maybe for trailers, in which case we simply have
4910 * to wait for the upper layer to finish consuming what is available.
4911 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004912 htx = htx_from_buf(rxbuf);
4913 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004914 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 +02004915 h2c->flags |= H2_CF_DEM_SFULL;
4916 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004917 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004918
Willy Tarreau25919232019-01-03 14:48:18 +01004919 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004920 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4921 sizeof(list)/sizeof(list[0]), tmp);
4922 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004923 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 +01004924 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4925 goto fail;
4926 }
4927
Willy Tarreau25919232019-01-03 14:48:18 +01004928 /* The PACK decompressor was updated, let's update the input buffer and
4929 * the parser's state to commit these changes and allow us to later
4930 * fail solely on the stream if needed.
4931 */
4932 b_del(&h2c->dbuf, h2c->dfl + hole);
4933 h2c->dfl = hole = 0;
4934 h2c->st0 = H2_CS_FRAME_H;
4935
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004936 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004937 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004938 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004939 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004940 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004941 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004942
Willy Tarreau88d138e2019-01-02 19:38:14 +01004943 if (*flags & H2_SF_HEADERS_RCVD)
4944 goto trailers;
4945
4946 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004947 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004948 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004949 else
4950 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004951
Christopher Faulet3d875582021-04-26 17:46:13 +02004952 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004953 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004954 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4955 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004956 goto fail;
4957 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004958
Willy Tarreau174b06a2018-04-25 18:13:58 +02004959 if (msgf & H2_MSGF_BODY) {
4960 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004961 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004962 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004963 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004964 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004965 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004966 if (msgf & H2_MSGF_BODYLESS_RSP)
4967 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004968
Christopher Fauletd0db4232021-01-22 11:46:30 +01004969 if (msgf & H2_MSGF_BODY_TUNNEL)
4970 *flags |= H2_SF_BODY_TUNNEL;
4971 else {
4972 /* Abort the tunnel attempt, if any */
4973 if (*flags & H2_SF_BODY_TUNNEL)
4974 *flags |= H2_SF_TUNNEL_ABRT;
4975 *flags &= ~H2_SF_BODY_TUNNEL;
4976 }
4977
Willy Tarreau88d138e2019-01-02 19:38:14 +01004978 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004979 /* indicate that a HEADERS frame was received for this stream, except
4980 * for 1xx responses. For 1xx responses, another HEADERS frame is
4981 * expected.
4982 */
4983 if (!(msgf & H2_MSGF_RSP_1XX))
4984 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004985
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004986 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4987 /* no more data are expected for this message */
4988 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004989 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004990
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004991 if (msgf & H2_MSGF_EXT_CONNECT)
4992 *flags |= H2_SF_EXT_CONNECT_RCVD;
4993
Willy Tarreau86277d42019-01-02 15:36:11 +01004994 /* success */
4995 ret = 1;
4996
Willy Tarreau68dd9852017-07-03 14:44:26 +02004997 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004998 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004999 * move the remaining data over it.
5000 */
5001 if (hole) {
5002 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
5003 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
5004 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
5005 b_sub(&h2c->dbuf, hole);
5006 }
5007
Christopher Faulet07f88d72021-04-21 10:39:53 +02005008 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01005009 /* too large frames */
5010 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01005011 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01005012 }
5013
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005014 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01005015 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02005016 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02005017 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01005018 return ret;
5019
Willy Tarreau68dd9852017-07-03 14:44:26 +02005020 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01005021 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02005022 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01005023
5024 trailers:
5025 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01005026 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
5027 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02005028 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 +01005029 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02005030 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01005031 goto fail;
5032 }
5033
Christopher Faulet9b79a102019-07-15 11:22:56 +02005034 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02005035 if (h2_make_htx_trailers(list, htx) <= 0) {
5036 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 +02005037 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005038 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01005039 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02005040}
5041
Christopher Faulet9b79a102019-07-15 11:22:56 +02005042/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005043 * parser state is automatically updated. Returns > 0 if it could completely
5044 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02005045 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005046 * DATA frame can return 0 as a valid result). Stream errors are reported in
5047 * h2s->errcode and connection errors in h2c->errcode. The caller must already
5048 * have checked the frame header and ensured that the frame was complete or the
5049 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02005050 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01005051static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02005052{
5053 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005054 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005055 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005056 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005057 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005058 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02005059
Willy Tarreau7838a792019-08-12 18:42:03 +02005060 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5061
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005062 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02005063
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005064 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
5065 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005066 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02005067 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 +01005068 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005069 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005070 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005071
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005072try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005073 flen = h2c->dfl - h2c->dpl;
5074 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005075 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005076
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005077 if (flen > b_data(&h2c->dbuf)) {
5078 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005079 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005080 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005081 }
5082
Christopher Faulet9b79a102019-07-15 11:22:56 +02005083 block = htx_free_data_space(htx);
5084 if (!block) {
5085 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005086 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 +02005087 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005088 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005089 if (flen > block)
5090 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005091
Christopher Faulet9b79a102019-07-15 11:22:56 +02005092 /* here, flen is the max we can copy into the output buffer */
5093 block = b_contig_data(&h2c->dbuf, 0);
5094 if (flen > block)
5095 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005096
Christopher Faulet9b79a102019-07-15 11:22:56 +02005097 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005098 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 +02005099
Christopher Faulet9b79a102019-07-15 11:22:56 +02005100 b_del(&h2c->dbuf, sent);
5101 h2c->dfl -= sent;
5102 h2c->rcvd_c += sent;
5103 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005104
Christopher Faulet9b79a102019-07-15 11:22:56 +02005105 if (h2s->flags & H2_SF_DATA_CLEN) {
5106 h2s->body_len -= sent;
5107 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005108 }
5109
Christopher Faulet9b79a102019-07-15 11:22:56 +02005110 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005111 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005112 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 +01005113 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005114 }
5115
Christopher Faulet9b79a102019-07-15 11:22:56 +02005116 goto try_again;
5117
Willy Tarreau4a28da12018-01-04 14:41:00 +01005118 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005119 /* here we're done with the frame, all the payload (except padding) was
5120 * transferred.
5121 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005122
Christopher Faulet5be651d2021-01-22 15:28:03 +01005123 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5124 /* no more data are expected for this message. This add the EOM
5125 * flag but only on the response path or if no tunnel attempt
5126 * was aborted. Otherwise (request path + tunnel abrted), the
5127 * EOM was already reported.
5128 */
Christopher Faulet33724322021-02-10 09:04:59 +01005129 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5130 /* If we receive an empty DATA frame with ES flag while the HTX
5131 * message is empty, we must be sure to push a block to be sure
5132 * the HTX EOM flag will be handled on the other side. It is a
5133 * workaround because for now it is not possible to push empty
5134 * HTX DATA block. And without this block, there is no way to
5135 * "commit" the end of the message.
5136 */
5137 if (htx_is_empty(htx)) {
5138 if (!htx_add_endof(htx, HTX_BLK_EOT))
5139 goto fail;
5140 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005141 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005142 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005143 }
5144
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005145 h2c->rcvd_c += h2c->dpl;
5146 h2c->rcvd_s += h2c->dpl;
5147 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005148 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005149 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005150 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005151 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005152 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005153 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005154 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005155 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005156 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005157}
5158
Willy Tarreau115e83b2018-12-01 19:17:53 +01005159/* Try to send a HEADERS frame matching HTX response present in HTX message
5160 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5161 * must check the stream's status to detect any error which might have happened
5162 * subsequently to a successful send. The htx blocks are automatically removed
5163 * from the message. The htx message is assumed to be valid since produced from
5164 * the internal code, hence it contains a start line, an optional series of
5165 * header blocks and an end of header, otherwise an invalid frame could be
5166 * emitted and the resulting htx message could be left in an inconsistent state.
5167 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005168static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005169{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005170 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005171 struct h2c *h2c = h2s->h2c;
5172 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005173 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005174 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005175 struct htx_sl *sl;
5176 enum htx_blk_type type;
5177 int es_now = 0;
5178 int ret = 0;
5179 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005180
Willy Tarreau7838a792019-08-12 18:42:03 +02005181 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5182
Willy Tarreau115e83b2018-12-01 19:17:53 +01005183 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005184 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005185 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005186 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005187 return 0;
5188 }
5189
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005190 /* get the start line (we do have one) and the rest of the headers,
5191 * that we dump starting at header 0 */
5192 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005193 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005194 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005195 type = htx_get_blk_type(blk);
5196
5197 if (type == HTX_BLK_UNUSED)
5198 continue;
5199
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005200 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005201 break;
5202
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005203 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005204 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005205 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5206 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5207 goto fail;
5208 }
5209
5210 list[hdr].n = htx_get_blk_name(htx, blk);
5211 list[hdr].v = htx_get_blk_value(htx, blk);
5212 hdr++;
5213 }
5214 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005215 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005216 sl = htx_get_blk_ptr(htx, blk);
5217 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005218 if (h2s->status == 204 || h2s->status == 304)
5219 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005220 if (h2s->status < 100 || h2s->status > 999) {
5221 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5222 goto fail;
5223 }
5224 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005225 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5226 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5227 h2s->status = 200;
5228 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5229 }
5230 else {
5231 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5232 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5233 goto fail;
5234 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005235 }
5236 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5237 /* Abort the tunnel attempt */
5238 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5239 h2s->flags |= H2_SF_TUNNEL_ABRT;
5240 }
5241 }
5242 else {
5243 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 +01005244 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005245 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005246 }
5247
Christopher Faulet56498132021-01-29 11:39:43 +01005248 /* The start-line me be defined */
5249 BUG_ON(!sl);
5250
Willy Tarreau115e83b2018-12-01 19:17:53 +01005251 /* marker for end of headers */
5252 list[hdr].n = ist("");
5253
Willy Tarreau9c218e72019-05-26 10:08:28 +02005254 mbuf = br_tail(h2c->mbuf);
5255 retry:
5256 if (!h2_get_buf(h2c, mbuf)) {
5257 h2c->flags |= H2_CF_MUX_MALLOC;
5258 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005259 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 +02005260 return 0;
5261 }
5262
Willy Tarreau115e83b2018-12-01 19:17:53 +01005263 chunk_reset(&outbuf);
5264
5265 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005266 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5267 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005268 break;
5269 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005270 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005271 }
5272
5273 if (outbuf.size < 9)
5274 goto full;
5275
5276 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5277 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5278 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5279 outbuf.data = 9;
5280
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005281 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5282 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5283 * dynamic table size update so that some clients are not
5284 * confused. In practice we only need to send the DTSU when the
5285 * advertised size is lower than the current one, and since we
5286 * don't use it and don't care about the default 4096 bytes,
5287 * we only ack it with a zero size thus we at most have to deal
5288 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5289 * below for the whole context and interoperability risks:
5290 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5291 */
5292 if (b_room(&outbuf) < 1)
5293 goto full;
5294 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5295
5296 /* let's not update the flags now but only once the buffer is
5297 * really committed.
5298 */
5299 }
5300
Willy Tarreau115e83b2018-12-01 19:17:53 +01005301 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005302 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005303 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005304 goto realign_again;
5305 goto full;
5306 }
5307
5308 /* encode all headers, stop at empty name */
5309 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5310 /* these ones do not exist in H2 and must be dropped. */
5311 if (isteq(list[hdr].n, ist("connection")) ||
5312 isteq(list[hdr].n, ist("proxy-connection")) ||
5313 isteq(list[hdr].n, ist("keep-alive")) ||
5314 isteq(list[hdr].n, ist("upgrade")) ||
5315 isteq(list[hdr].n, ist("transfer-encoding")))
5316 continue;
5317
Christopher Faulet86d144c2019-08-14 16:32:25 +02005318 /* Skip all pseudo-headers */
5319 if (*(list[hdr].n.ptr) == ':')
5320 continue;
5321
Willy Tarreau115e83b2018-12-01 19:17:53 +01005322 if (isteq(list[hdr].n, ist("")))
5323 break; // end
5324
5325 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5326 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005327 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005328 goto realign_again;
5329 goto full;
5330 }
5331 }
5332
Willy Tarreaucb985a42019-10-07 16:56:34 +02005333 /* update the frame's size */
5334 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5335
5336 if (outbuf.data > h2c->mfs + 9) {
5337 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5338 /* output full */
5339 if (b_space_wraps(mbuf))
5340 goto realign_again;
5341 goto full;
5342 }
5343 }
5344
Willy Tarreau3a537072021-06-17 08:40:04 +02005345 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5346
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005347 /* remove all header blocks including the EOH and compute the
5348 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005349 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005350 ret = 0;
5351 blk = htx_get_head_blk(htx);
5352 while (blk) {
5353 type = htx_get_blk_type(blk);
5354 ret += htx_get_blksz(blk);
5355 blk = htx_remove_blk(htx, blk);
5356 /* The removed block is the EOH */
5357 if (type == HTX_BLK_EOH)
5358 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005359 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005360
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005361 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005362 /* Response already closed: add END_STREAM */
5363 es_now = 1;
5364 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005365 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5366 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005367 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005368 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005369 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5370 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005371 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005372
Willy Tarreau115e83b2018-12-01 19:17:53 +01005373 if (es_now)
5374 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5375
5376 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005377 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005378
5379 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5380 * 1xx responses, another HEADERS frame is expected.
5381 */
Christopher Faulet89899422020-12-07 18:24:43 +01005382 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005383 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005384
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005385 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5386 /* was sent above */
5387 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005388 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005389 }
5390
Willy Tarreau115e83b2018-12-01 19:17:53 +01005391 if (es_now) {
5392 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005393 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 +01005394 if (h2s->st == H2_SS_OPEN)
5395 h2s->st = H2_SS_HLOC;
5396 else
5397 h2s_close(h2s);
5398 }
5399
5400 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005401 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005402 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005403 return ret;
5404 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005405 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5406 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005407 h2c->flags |= H2_CF_MUX_MFULL;
5408 h2s->flags |= H2_SF_BLK_MROOM;
5409 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005410 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 +01005411 goto end;
5412 fail:
5413 /* unparsable HTX messages, too large ones to be produced in the local
5414 * list etc go here (unrecoverable errors).
5415 */
5416 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5417 ret = 0;
5418 goto end;
5419}
5420
Willy Tarreau80739692018-10-05 11:35:57 +02005421/* Try to send a HEADERS frame matching HTX request present in HTX message
5422 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5423 * must check the stream's status to detect any error which might have happened
5424 * subsequently to a successful send. The htx blocks are automatically removed
5425 * from the message. The htx message is assumed to be valid since produced from
5426 * the internal code, hence it contains a start line, an optional series of
5427 * header blocks and an end of header, otherwise an invalid frame could be
5428 * emitted and the resulting htx message could be left in an inconsistent state.
5429 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005430static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005431{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005432 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005433 struct h2c *h2c = h2s->h2c;
5434 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005435 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005436 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005437 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005438 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005439 enum htx_blk_type type;
5440 int es_now = 0;
5441 int ret = 0;
5442 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005443 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005444
Willy Tarreau7838a792019-08-12 18:42:03 +02005445 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5446
Willy Tarreau80739692018-10-05 11:35:57 +02005447 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005448 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005449 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005450 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005451 return 0;
5452 }
5453
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005454 /* get the start line (we do have one) and the rest of the headers,
5455 * that we dump starting at header 0 */
5456 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005457 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005458 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005459 type = htx_get_blk_type(blk);
5460
5461 if (type == HTX_BLK_UNUSED)
5462 continue;
5463
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005464 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005465 break;
5466
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005467 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005468 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005469 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5470 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5471 goto fail;
5472 }
Willy Tarreau80739692018-10-05 11:35:57 +02005473
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005474 list[hdr].n = htx_get_blk_name(htx, blk);
5475 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005476
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005477 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005478 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5479 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005480 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005481
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005482 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005483 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005484 /* rfc 7230 #6.1 Connection = list of tokens */
5485 struct ist connection_ist = list[hdr].v;
5486 do {
5487 if (isteqi(iststop(connection_ist, ','),
5488 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005489 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5490 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5491 goto fail;
5492 }
5493
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005494 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 +01005495 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5496 sl->info.req.meth = HTTP_METH_CONNECT;
5497 meth = ist("CONNECT");
5498
5499 extended_connect = 1;
5500 break;
5501 }
5502
5503 connection_ist = istadv(istfind(connection_ist, ','), 1);
5504 } while (istlen(connection_ist));
5505 }
5506
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005507 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005508 /* rfc 7230 #6.7 Upgrade = list of protocols
5509 * rfc 8441 #4 Extended connect = :protocol is single-valued
5510 *
5511 * only first HTTP/1 protocol is preserved
5512 */
5513 const struct ist protocol = iststop(list[hdr].v, ',');
5514 /* upgrade_protocol field is 16 bytes long in h2s */
5515 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5516 }
5517
5518 if (isteq(list[hdr].n, ist("host")))
5519 host = list[hdr].v;
5520
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005521 hdr++;
5522 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005523 else if (type == HTX_BLK_REQ_SL) {
5524 BUG_ON(sl); /* Only one start-line expected */
5525 sl = htx_get_blk_ptr(htx, blk);
5526 meth = htx_sl_req_meth(sl);
5527 uri = htx_sl_req_uri(sl);
5528 if (sl->info.req.meth == HTTP_METH_HEAD)
5529 h2s->flags |= H2_SF_BODYLESS_RESP;
5530 if (unlikely(uri.len == 0)) {
5531 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5532 goto fail;
5533 }
5534 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005535 else {
5536 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5537 goto fail;
5538 }
Willy Tarreau80739692018-10-05 11:35:57 +02005539 }
5540
Christopher Faulet56498132021-01-29 11:39:43 +01005541 /* The start-line me be defined */
5542 BUG_ON(!sl);
5543
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005544 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005545 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005546 struct server *srv = objt_server(h2c->conn->target);
5547
5548 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005549 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005550 list[hdr].v = ist(srv->id);
5551 hdr++;
5552 }
5553 }
5554
Willy Tarreau80739692018-10-05 11:35:57 +02005555 /* marker for end of headers */
5556 list[hdr].n = ist("");
5557
Willy Tarreau9c218e72019-05-26 10:08:28 +02005558 mbuf = br_tail(h2c->mbuf);
5559 retry:
5560 if (!h2_get_buf(h2c, mbuf)) {
5561 h2c->flags |= H2_CF_MUX_MALLOC;
5562 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005563 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 +02005564 return 0;
5565 }
5566
Willy Tarreau80739692018-10-05 11:35:57 +02005567 chunk_reset(&outbuf);
5568
5569 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005570 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5571 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005572 break;
5573 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005574 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005575 }
5576
5577 if (outbuf.size < 9)
5578 goto full;
5579
5580 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5581 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5582 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5583 outbuf.data = 9;
5584
5585 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005586 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005587 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005588 goto realign_again;
5589 goto full;
5590 }
5591
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005592 auth = ist(NULL);
5593
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005594 /* RFC7540 #8.3: the CONNECT method must have :
5595 * - :authority set to the URI part (host:port)
5596 * - :method set to CONNECT
5597 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005598 *
5599 * Note that this is not applicable in case of the Extended CONNECT
5600 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005601 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005602 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005603 auth = uri;
5604
5605 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5606 /* output full */
5607 if (b_space_wraps(mbuf))
5608 goto realign_again;
5609 goto full;
5610 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005611 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005612 } else {
5613 /* other methods need a :scheme. If an authority is known from
5614 * the request line, it must be sent, otherwise only host is
5615 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005616 *
5617 * This code is also applicable for Extended CONNECT protocol
5618 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005619 */
5620 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005621
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005622 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5623 /* the URI seems to start with a scheme */
5624 int len = 1;
5625
5626 while (len < uri.len && uri.ptr[len] != ':')
5627 len++;
5628
5629 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5630 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005631 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005632 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005633
5634 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005635 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005636 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5637 auth.len++;
5638
Tim Duesterhus154374c2021-03-02 18:57:27 +01005639 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005640 }
5641 }
5642
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005643 /* For Extended CONNECT, the :authority must be present.
5644 * Use host value for it.
5645 */
5646 if (unlikely(extended_connect) && isttest(host))
5647 auth = host;
5648
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005649 if (!scheme.len) {
5650 /* no explicit scheme, we're using an origin-form URI,
5651 * probably from an H1 request transcoded to H2 via an
5652 * external layer, then received as H2 without authority.
5653 * So we have to look up the scheme from the HTX flags.
5654 * In such a case only http and https are possible, and
5655 * https is the default (sent by browsers).
5656 */
5657 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5658 scheme = ist("http");
5659 else
5660 scheme = ist("https");
5661 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005662
5663 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005664 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005665 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005666 goto realign_again;
5667 goto full;
5668 }
Willy Tarreau80739692018-10-05 11:35:57 +02005669
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005670 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005671 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005672 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005673 goto realign_again;
5674 goto full;
5675 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005676
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005677 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5678 * be sent as '/' or '*'.
5679 */
5680 if (unlikely(!uri.len)) {
5681 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5682 uri = ist("*");
5683 else
5684 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005685 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005686
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005687 if (!hpack_encode_path(&outbuf, uri)) {
5688 /* output full */
5689 if (b_space_wraps(mbuf))
5690 goto realign_again;
5691 goto full;
5692 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005693
5694 /* encode the pseudo-header protocol from rfc8441 if using
5695 * Extended CONNECT method.
5696 */
5697 if (unlikely(extended_connect)) {
5698 const struct ist protocol = ist(h2s->upgrade_protocol);
5699 if (isttest(protocol)) {
5700 if (!hpack_encode_header(&outbuf,
5701 ist(":protocol"),
5702 protocol)) {
5703 /* output full */
5704 if (b_space_wraps(mbuf))
5705 goto realign_again;
5706 goto full;
5707 }
5708 }
5709 }
Willy Tarreau80739692018-10-05 11:35:57 +02005710 }
5711
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005712 /* encode all headers, stop at empty name. Host is only sent if we
5713 * do not provide an authority.
5714 */
Willy Tarreau80739692018-10-05 11:35:57 +02005715 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005716 struct ist n = list[hdr].n;
5717 struct ist v = list[hdr].v;
5718
Willy Tarreau80739692018-10-05 11:35:57 +02005719 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005720 if (isteq(n, ist("connection")) ||
5721 (auth.len && isteq(n, ist("host"))) ||
5722 isteq(n, ist("proxy-connection")) ||
5723 isteq(n, ist("keep-alive")) ||
5724 isteq(n, ist("upgrade")) ||
5725 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005726 continue;
5727
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005728 if (isteq(n, ist("te"))) {
5729 /* "te" may only be sent with "trailers" if this value
5730 * is present, otherwise it must be deleted.
5731 */
5732 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005733 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005734 continue;
5735 v = ist("trailers");
5736 }
5737
Christopher Faulet86d144c2019-08-14 16:32:25 +02005738 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005739 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005740 continue;
5741
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005742 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005743 break; // end
5744
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005745 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005746 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005747 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005748 goto realign_again;
5749 goto full;
5750 }
5751 }
5752
Willy Tarreaucb985a42019-10-07 16:56:34 +02005753 /* update the frame's size */
5754 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5755
5756 if (outbuf.data > h2c->mfs + 9) {
5757 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5758 /* output full */
5759 if (b_space_wraps(mbuf))
5760 goto realign_again;
5761 goto full;
5762 }
5763 }
5764
Willy Tarreau3a537072021-06-17 08:40:04 +02005765 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5766
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005767 /* remove all header blocks including the EOH and compute the
5768 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005769 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005770 ret = 0;
5771 blk = htx_get_head_blk(htx);
5772 while (blk) {
5773 type = htx_get_blk_type(blk);
5774 ret += htx_get_blksz(blk);
5775 blk = htx_remove_blk(htx, blk);
5776 /* The removed block is the EOH */
5777 if (type == HTX_BLK_EOH)
5778 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005779 }
Willy Tarreau80739692018-10-05 11:35:57 +02005780
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005781 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005782 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005783 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005784 }
5785 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5786 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5787 * request)
5788 */
5789 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5790 es_now = 1;
5791 }
Willy Tarreau80739692018-10-05 11:35:57 +02005792
Willy Tarreau80739692018-10-05 11:35:57 +02005793 if (es_now)
5794 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5795
5796 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005797 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005798 h2s->flags |= H2_SF_HEADERS_SENT;
5799 h2s->st = H2_SS_OPEN;
5800
Willy Tarreau80739692018-10-05 11:35:57 +02005801 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005802 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 +02005803 // trim any possibly pending data (eg: inconsistent content-length)
5804 h2s->flags |= H2_SF_ES_SENT;
5805 h2s->st = H2_SS_HLOC;
5806 }
5807
Willy Tarreau80739692018-10-05 11:35:57 +02005808 end:
5809 return ret;
5810 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005811 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5812 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005813 h2c->flags |= H2_CF_MUX_MFULL;
5814 h2s->flags |= H2_SF_BLK_MROOM;
5815 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005816 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 +02005817 goto end;
5818 fail:
5819 /* unparsable HTX messages, too large ones to be produced in the local
5820 * list etc go here (unrecoverable errors).
5821 */
5822 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5823 ret = 0;
5824 goto end;
5825}
5826
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005827/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005828 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5829 * caller must check the stream's status to detect any error which might have
5830 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005831 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005832 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005833static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005834{
5835 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005836 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005837 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005838 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005839 size_t total = 0;
5840 int es_now = 0;
5841 int bsize; /* htx block size */
5842 int fsize; /* h2 frame size */
5843 struct htx_blk *blk;
5844 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005845 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005846
Willy Tarreau7838a792019-08-12 18:42:03 +02005847 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5848
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005849 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005850 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005851 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005852 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005853 goto end;
5854 }
5855
Willy Tarreau98de12a2018-12-12 07:03:00 +01005856 htx = htx_from_buf(buf);
5857
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005858 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005859
5860 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005861 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005862 goto end;
5863
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005864 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005865 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5866 /* The response HEADERS frame not received yet. Thus the tunnel
5867 * is not fully established yet. In this situation, we block
5868 * data sending.
5869 */
5870 h2s->flags |= H2_SF_BLK_MBUSY;
5871 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5872 goto end;
5873 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005874 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5875 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5876 * Thus the stream is closed with the CANCEL error. The error will be reported to
5877 * the upper layer as aserver abort. But at this stage there is nothing more we can
5878 * do. We just wait for the end of the response to be sure to not truncate it.
5879 */
5880 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5881 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5882 h2s->flags |= H2_SF_BLK_MBUSY;
5883 }
5884 else {
5885 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5886 h2s_error(h2s, H2_ERR_CANCEL);
5887 }
5888 goto end;
5889 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005890
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005891 blk = htx_get_head_blk(htx);
5892 type = htx_get_blk_type(blk);
5893 bsize = htx_get_blksz(blk);
5894 fsize = bsize;
5895 trunc_out = 0;
5896 if (type != HTX_BLK_DATA)
5897 goto end;
5898
Willy Tarreau9c218e72019-05-26 10:08:28 +02005899 mbuf = br_tail(h2c->mbuf);
5900 retry:
5901 if (!h2_get_buf(h2c, mbuf)) {
5902 h2c->flags |= H2_CF_MUX_MALLOC;
5903 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005904 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 +02005905 goto end;
5906 }
5907
Willy Tarreau98de12a2018-12-12 07:03:00 +01005908 /* Perform some optimizations to reduce the number of buffer copies.
5909 * First, if the mux's buffer is empty and the htx area contains
5910 * exactly one data block of the same size as the requested count, and
5911 * this count fits within the frame size, the stream's window size, and
5912 * the connection's window size, then it's possible to simply swap the
5913 * caller's buffer with the mux's output buffer and adjust offsets and
5914 * length to match the entire DATA HTX block in the middle. In this
5915 * case we perform a true zero-copy operation from end-to-end. This is
5916 * the situation that happens all the time with large files. Second, if
5917 * this is not possible, but the mux's output buffer is empty, we still
5918 * have an opportunity to avoid the copy to the intermediary buffer, by
5919 * making the intermediary buffer's area point to the output buffer's
5920 * area. In this case we want to skip the HTX header to make sure that
5921 * copies remain aligned and that this operation remains possible all
5922 * the time. This goes for headers, data blocks and any data extracted
5923 * from the HTX blocks.
5924 */
5925 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005926 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005927 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005928 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005929
Willy Tarreaubcc45952019-05-26 10:05:50 +02005930 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005931 /* Too bad there are data left there. We're willing to memcpy/memmove
5932 * up to 1/4 of the buffer, which means that it's OK to copy a large
5933 * frame into a buffer containing few data if it needs to be realigned,
5934 * and that it's also OK to copy few data without realigning. Otherwise
5935 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005936 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005937 if (fsize + 9 <= b_room(mbuf) &&
5938 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005939 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5940 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 +01005941 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005942 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005943
Willy Tarreau9c218e72019-05-26 10:08:28 +02005944 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5945 goto retry;
5946
Willy Tarreau98de12a2018-12-12 07:03:00 +01005947 h2c->flags |= H2_CF_MUX_MFULL;
5948 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005949 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 +01005950 goto end;
5951 }
5952
Christopher Faulet925abdf2021-04-27 22:51:07 +02005953 if (htx->flags & HTX_FL_EOM) {
5954 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5955 * message)
5956 */
5957 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5958 es_now = 1;
5959 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005960 /* map an H2 frame to the HTX block so that we can put the
5961 * frame header there.
5962 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005963 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5964 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005965
5966 /* prepend an H2 DATA frame header just before the DATA block */
5967 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5968 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005969 if (es_now)
5970 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005971 h2_set_frame_size(outbuf.area, fsize);
5972
5973 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005974 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005975 h2c->mws -= fsize;
5976
5977 /* and exchange with our old area */
5978 buf->area = old_area;
5979 buf->data = buf->head = 0;
5980 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005981 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005982
5983 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 +02005984 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005985 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005986
Willy Tarreau98de12a2018-12-12 07:03:00 +01005987 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005988 /* for DATA and EOM we'll have to emit a frame, even if empty */
5989
5990 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005991 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5992 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005993 break;
5994 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005995 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005996 }
5997
5998 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005999 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6000 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006001 h2c->flags |= H2_CF_MUX_MFULL;
6002 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006003 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006004 goto end;
6005 }
6006
6007 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
6008 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
6009 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6010 outbuf.data = 9;
6011
6012 /* we have in <fsize> the exact number of bytes we need to copy from
6013 * the HTX buffer. We need to check this against the connection's and
6014 * the stream's send windows, and to ensure that this fits in the max
6015 * frame size and in the buffer's available space minus 9 bytes (for
6016 * the frame header). The connection's flow control is applied last so
6017 * that we can use a separate list of streams which are immediately
6018 * unblocked on window opening. Note: we don't implement padding.
6019 */
6020
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006021 if (!fsize)
6022 goto send_empty;
6023
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006024 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006025 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02006026 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02006027 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02006028 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02006029 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 +01006030 goto end;
6031 }
6032
Willy Tarreauee573762018-12-04 15:25:57 +01006033 if (fsize > count)
6034 fsize = count;
6035
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006036 if (fsize > h2s_mws(h2s))
6037 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006038
6039 if (h2c->mfs && fsize > h2c->mfs)
6040 fsize = h2c->mfs; // >0
6041
6042 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02006043 /* It doesn't fit at once. If it at least fits once split and
6044 * the amount of data to move is low, let's defragment the
6045 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006046 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006047 if (b_space_wraps(mbuf) &&
6048 (fsize + 9 <= b_room(mbuf)) &&
6049 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006050 goto realign_again;
6051 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006052 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006053
6054 if (fsize <= 0) {
6055 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02006056 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6057 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006058 h2c->flags |= H2_CF_MUX_MFULL;
6059 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006060 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006061 goto end;
6062 }
6063 }
6064
6065 if (h2c->mws <= 0) {
6066 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02006067 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 +01006068 goto end;
6069 }
6070
6071 if (fsize > h2c->mws)
6072 fsize = h2c->mws;
6073
6074 /* now let's copy this this into the output buffer */
6075 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006076 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006077 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006078 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006079
6080 send_empty:
6081 /* update the frame's size */
6082 h2_set_frame_size(outbuf.area, fsize);
6083
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006084 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006085 total += fsize;
6086 if (fsize == bsize) {
6087 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006088 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6089 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6090 * message)
6091 */
6092 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6093 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006094 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006095 }
6096 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006097 /* we've truncated this block */
6098 htx_cut_data_blk(htx, blk, fsize);
6099 }
6100
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006101 if (es_now)
6102 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6103
6104 /* commit the H2 response */
6105 b_add(mbuf, fsize + 9);
6106
Christopher Faulet925abdf2021-04-27 22:51:07 +02006107 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006108 if (es_now) {
6109 if (h2s->st == H2_SS_OPEN)
6110 h2s->st = H2_SS_HLOC;
6111 else
6112 h2s_close(h2s);
6113
6114 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006115 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 +01006116 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006117 else if (fsize) {
6118 if (fsize == bsize) {
6119 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6120 goto new_frame;
6121 }
6122 else if (trunc_out) {
6123 /* we've truncated this block */
6124 goto new_frame;
6125 }
6126 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006127
6128 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006129 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006130 return total;
6131}
6132
Christopher Faulet991febd2020-12-02 15:17:31 +01006133/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6134 * ES flag set for stream <h2s>. This function is called for response known to
6135 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006136 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006137 * which might have happened subsequently to a successful send. Returns the
6138 * number of data bytes consumed, or zero if nothing done.
6139 */
6140static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6141{
6142 struct h2c *h2c = h2s->h2c;
6143 struct htx *htx;
6144 int bsize; /* htx block size */
6145 int fsize; /* h2 frame size */
6146 struct htx_blk *blk;
6147 enum htx_blk_type type;
6148 size_t total = 0;
6149
6150 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6151
6152 if (h2c_mux_busy(h2c, h2s)) {
6153 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6154 h2s->flags |= H2_SF_BLK_MBUSY;
6155 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6156 goto end;
6157 }
6158
6159 htx = htx_from_buf(buf);
6160
6161 next_data:
6162 if (!count || htx_is_empty(htx))
6163 goto end;
6164 blk = htx_get_head_blk(htx);
6165 type = htx_get_blk_type(blk);
6166 bsize = htx_get_blksz(blk);
6167 fsize = bsize;
6168 if (type != HTX_BLK_DATA)
6169 goto end;
6170
6171 if (fsize > count)
6172 fsize = count;
6173
6174 if (fsize != bsize)
6175 goto skip_data;
6176
6177 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6178 goto skip_data;
6179
6180 /* Here, it is the last block and it is also the end of the message. So
6181 * we can emit an empty DATA frame with the ES flag set
6182 */
6183 if (h2_send_empty_data_es(h2s) <= 0)
6184 goto end;
6185
6186 if (h2s->st == H2_SS_OPEN)
6187 h2s->st = H2_SS_HLOC;
6188 else
6189 h2s_close(h2s);
6190
6191 skip_data:
6192 /* consume incoming HTX block */
6193 total += fsize;
6194 if (fsize == bsize) {
6195 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6196 htx_remove_blk(htx, blk);
6197 goto next_data;
6198 }
6199 else {
6200 /* we've truncated this block */
6201 htx_cut_data_blk(htx, blk, fsize);
6202 }
6203
6204 end:
6205 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6206 return total;
6207}
6208
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006209/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6210 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6211 * processed. The caller must check the stream's status to detect any error
6212 * which might have happened subsequently to a successful send. The htx blocks
6213 * are automatically removed from the message. The htx message is assumed to be
6214 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006215 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6216 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006217 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006218static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006219{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006220 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006221 struct h2c *h2c = h2s->h2c;
6222 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006223 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006224 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006225 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006226 int ret = 0;
6227 int hdr;
6228 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006229
Willy Tarreau7838a792019-08-12 18:42:03 +02006230 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6231
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006232 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006233 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006234 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006235 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006236 goto end;
6237 }
6238
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006239 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006240 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006241 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006242 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006243
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006244 if (type == HTX_BLK_UNUSED)
6245 continue;
6246
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006247 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006248 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006249 if (type == HTX_BLK_TLR) {
6250 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6251 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6252 goto fail;
6253 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006254
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006255 list[hdr].n = htx_get_blk_name(htx, blk);
6256 list[hdr].v = htx_get_blk_value(htx, blk);
6257 hdr++;
6258 }
6259 else {
6260 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 +01006261 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006262 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006263 }
6264
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006265 /* marker for end of trailers */
6266 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006267
Willy Tarreau9c218e72019-05-26 10:08:28 +02006268 mbuf = br_tail(h2c->mbuf);
6269 retry:
6270 if (!h2_get_buf(h2c, mbuf)) {
6271 h2c->flags |= H2_CF_MUX_MALLOC;
6272 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006273 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 +02006274 goto end;
6275 }
6276
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006277 chunk_reset(&outbuf);
6278
6279 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006280 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6281 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006282 break;
6283 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006284 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006285 }
6286
6287 if (outbuf.size < 9)
6288 goto full;
6289
6290 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6291 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6292 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6293 outbuf.data = 9;
6294
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006295 /* encode all headers */
6296 for (idx = 0; idx < hdr; idx++) {
6297 /* these ones do not exist in H2 or must not appear in
6298 * trailers and must be dropped.
6299 */
6300 if (isteq(list[idx].n, ist("host")) ||
6301 isteq(list[idx].n, ist("content-length")) ||
6302 isteq(list[idx].n, ist("connection")) ||
6303 isteq(list[idx].n, ist("proxy-connection")) ||
6304 isteq(list[idx].n, ist("keep-alive")) ||
6305 isteq(list[idx].n, ist("upgrade")) ||
6306 isteq(list[idx].n, ist("te")) ||
6307 isteq(list[idx].n, ist("transfer-encoding")))
6308 continue;
6309
Christopher Faulet86d144c2019-08-14 16:32:25 +02006310 /* Skip all pseudo-headers */
6311 if (*(list[idx].n.ptr) == ':')
6312 continue;
6313
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006314 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6315 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006316 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006317 goto realign_again;
6318 goto full;
6319 }
6320 }
6321
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006322 if (outbuf.data == 9) {
6323 /* here we have a problem, we have nothing to emit (either we
6324 * received an empty trailers block followed or we removed its
6325 * contents above). Because of this we can't send a HEADERS
6326 * frame, so we have to cheat and instead send an empty DATA
6327 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006328 */
6329 outbuf.area[3] = H2_FT_DATA;
6330 outbuf.area[4] = H2_F_DATA_END_STREAM;
6331 }
6332
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006333 /* update the frame's size */
6334 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6335
Willy Tarreau572d9f52019-10-11 16:58:37 +02006336 if (outbuf.data > h2c->mfs + 9) {
6337 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6338 /* output full */
6339 if (b_space_wraps(mbuf))
6340 goto realign_again;
6341 goto full;
6342 }
6343 }
6344
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006345 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006346 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 +02006347 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006348 h2s->flags |= H2_SF_ES_SENT;
6349
6350 if (h2s->st == H2_SS_OPEN)
6351 h2s->st = H2_SS_HLOC;
6352 else
6353 h2s_close(h2s);
6354
6355 /* OK we could properly deliver the response */
6356 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006357 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006358 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006359 blk = htx_get_head_blk(htx);
6360 while (blk) {
6361 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006362 ret += htx_get_blksz(blk);
6363 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006364 /* The removed block is the EOT */
6365 if (type == HTX_BLK_EOT)
6366 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006367 }
6368
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006369 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006370 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006371 return ret;
6372 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006373 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6374 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006375 h2c->flags |= H2_CF_MUX_MFULL;
6376 h2s->flags |= H2_SF_BLK_MROOM;
6377 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006378 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 +01006379 goto end;
6380 fail:
6381 /* unparsable HTX messages, too large ones to be produced in the local
6382 * list etc go here (unrecoverable errors).
6383 */
6384 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6385 ret = 0;
6386 goto end;
6387}
6388
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006389/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6390 * event subscriber <es> is not allowed to change from a previous call as long
6391 * as at least one event is still subscribed. The <event_type> must only be a
6392 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006393 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006394static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006395{
Willy Tarreau36c22322022-05-27 10:41:24 +02006396 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006397 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006398
Willy Tarreau7838a792019-08-12 18:42:03 +02006399 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006400
6401 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006402 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006403
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006404 es->events |= event_type;
6405 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006406
6407 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006408 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006409
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006410 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006411 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006412 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006413 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006414 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006415 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006416 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006417 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006418 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006419 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006420 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006421 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006422}
6423
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006424/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6425 * The <es> pointer is not allowed to differ from the one passed to the
6426 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006427 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006428static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006429{
Willy Tarreau36c22322022-05-27 10:41:24 +02006430 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006431
Willy Tarreau7838a792019-08-12 18:42:03 +02006432 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006433
6434 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006435 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006436
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006437 es->events &= ~event_type;
6438 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006439 h2s->subs = NULL;
6440
6441 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006442 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006443
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006444 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006445 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006446 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006447 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6448 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006449 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006450
Willy Tarreau7838a792019-08-12 18:42:03 +02006451 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006452 return 0;
6453}
6454
6455
Christopher Faulet564e39c2021-09-21 15:50:55 +02006456/* Called from the upper layer, to receive data
6457 *
6458 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6459 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6460 * means the caller wants to flush input data (from the mux buffer and the
6461 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6462 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6463 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6464 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6465 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6466 * copy as much data as possible.
6467 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006468static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006469{
Willy Tarreau36c22322022-05-27 10:41:24 +02006470 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006471 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006472 struct htx *h2s_htx = NULL;
6473 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006474 size_t ret = 0;
6475
Willy Tarreau7838a792019-08-12 18:42:03 +02006476 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6477
Olivier Houchard511efea2018-08-16 15:30:32 +02006478 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006479 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006480 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006481 /* Here htx_to_buf() will set buffer data to 0 because
6482 * the HTX is empty.
6483 */
6484 htx_to_buf(h2s_htx, &h2s->rxbuf);
6485 goto end;
6486 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006487
Christopher Faulet9b79a102019-07-15 11:22:56 +02006488 ret = h2s_htx->data;
6489 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006490
Christopher Faulet9b79a102019-07-15 11:22:56 +02006491 /* <buf> is empty and the message is small enough, swap the
6492 * buffers. */
6493 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006494 htx_to_buf(buf_htx, buf);
6495 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006496 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6497 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006498 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006499
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006500 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006501
6502 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6503 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6504 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006505 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006506 }
Christopher Faulet810df062020-07-22 16:20:34 +02006507 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006508 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006509
Christopher Faulet9b79a102019-07-15 11:22:56 +02006510 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6511 htx_to_buf(buf_htx, buf);
6512 htx_to_buf(h2s_htx, &h2s->rxbuf);
6513 ret -= h2s_htx->data;
6514
Christopher Faulet37070b22019-02-14 15:12:14 +01006515 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006516 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006517 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006518 else {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006519 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006520 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006521 se_fl_set(h2s->sd, SE_FL_EOI);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006522 /* Add EOS flag for tunnel */
6523 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006524 se_fl_set(h2s->sd, SE_FL_EOS);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006525 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006526 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006527 se_fl_set(h2s->sd, SE_FL_EOS);
6528 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
6529 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard638b7992018-08-16 15:41:52 +02006530 if (b_size(&h2s->rxbuf)) {
6531 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006532 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006533 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006534 }
6535
Willy Tarreau082f5592018-11-25 08:03:32 +01006536 if (ret && h2c->dsi == h2s->id) {
6537 /* demux is blocking on this stream's buffer */
6538 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006539 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006540 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006541
Willy Tarreau7838a792019-08-12 18:42:03 +02006542 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006543 return ret;
6544}
6545
Olivier Houchardd846c262018-10-19 17:24:29 +02006546
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006547/* Called from the upper layer, to send data from buffer <buf> for no more than
6548 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006549 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006550 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006551static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006552{
Willy Tarreau36c22322022-05-27 10:41:24 +02006553 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006554 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006555 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006556 struct htx *htx;
6557 struct htx_blk *blk;
6558 enum htx_blk_type btype;
6559 uint32_t bsize;
6560 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006561
Willy Tarreau7838a792019-08-12 18:42:03 +02006562 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6563
Olivier Houchardd360ac62019-03-22 17:37:16 +01006564 /* If we were not just woken because we wanted to send but couldn't,
6565 * and there's somebody else that is waiting to send, do nothing,
6566 * we will subscribe later and be put at the end of the list
6567 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006568 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006569 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6570 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 +01006571 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006572 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006573 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006574
Willy Tarreau7838a792019-08-12 18:42:03 +02006575 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6576 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 +02006577 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006578 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006579
Willy Tarreaucab22952019-10-31 15:48:18 +01006580 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006581 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006582 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);
6583 return 0;
6584 }
6585
Christopher Faulet9b79a102019-07-15 11:22:56 +02006586 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006587
Willy Tarreau0bad0432018-06-14 16:54:01 +02006588 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006589 h2s->flags |= H2_SF_OUTGOING_DATA;
6590
Willy Tarreau751f2d02018-10-05 09:35:00 +02006591 if (h2s->id == 0) {
6592 int32_t id = h2c_get_next_sid(h2s->h2c);
6593
6594 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006595 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006596 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 +02006597 return 0;
6598 }
6599
6600 eb32_delete(&h2s->by_id);
6601 h2s->by_id.key = h2s->id = id;
6602 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006603 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006604 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6605 }
6606
Christopher Faulet9b79a102019-07-15 11:22:56 +02006607 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6608 count && !htx_is_empty(htx)) {
6609 idx = htx_get_head(htx);
6610 blk = htx_get_blk(htx, idx);
6611 btype = htx_get_blk_type(blk);
6612 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006613
Christopher Faulet9b79a102019-07-15 11:22:56 +02006614 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006615 case HTX_BLK_REQ_SL:
6616 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006617 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006618 if (ret > 0) {
6619 total += ret;
6620 count -= ret;
6621 if (ret < bsize)
6622 goto done;
6623 }
6624 break;
6625
Willy Tarreau115e83b2018-12-01 19:17:53 +01006626 case HTX_BLK_RES_SL:
6627 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006628 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006629 if (ret > 0) {
6630 total += ret;
6631 count -= ret;
6632 if (ret < bsize)
6633 goto done;
6634 }
6635 break;
6636
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006637 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006638 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006639 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6640 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6641 ret = h2s_skip_data(h2s, buf, count);
6642 else
6643 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006644 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006645 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006646 total += ret;
6647 count -= ret;
6648 if (ret < bsize)
6649 goto done;
6650 }
6651 break;
6652
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006653 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006654 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006655 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006656 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006657 if (ret > 0) {
6658 total += ret;
6659 count -= ret;
6660 if (ret < bsize)
6661 goto done;
6662 }
6663 break;
6664
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006665 default:
6666 htx_remove_blk(htx, blk);
6667 total += bsize;
6668 count -= bsize;
6669 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006670 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006671 }
6672
Christopher Faulet9b79a102019-07-15 11:22:56 +02006673 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006674 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006675 /* trim any possibly pending data after we close (extra CR-LF,
6676 * unprocessed trailers, abnormal extra data, ...)
6677 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006678 total += count;
6679 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006680 }
6681
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006682 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006683 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006684 TRACE_DEVEL("reporting RST/error to the app-layer stream", H2_EV_H2S_SEND|H2_EV_H2S_ERR|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006685 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006686 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006687 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006688 }
6689
Christopher Faulet9b79a102019-07-15 11:22:56 +02006690 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006691
Olivier Houchard7505f942018-08-21 18:10:44 +02006692 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006693 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006694 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 +02006695 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006696 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006697
Olivier Houchard7505f942018-08-21 18:10:44 +02006698 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006699 /* If we're waiting for flow control, and we got a shutr on the
6700 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006701 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006702 */
6703 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6704 !b_data(&h2s->h2c->dbuf) &&
6705 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006706 TRACE_DEVEL("fctl with shutr, reporting error to app-layer", H2_EV_H2S_SEND|H2_EV_STRM_SEND|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006707 if (se_fl_test(h2s->sd, SE_FL_EOS))
6708 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006709 else
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006710 se_fl_set(h2s->sd, SE_FL_ERR_PENDING);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006711 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006712
Willy Tarreau5723f292020-01-10 15:16:57 +01006713 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6714 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006715 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006716 LIST_DEL_INIT(&h2s->list);
6717 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006718
Willy Tarreau7838a792019-08-12 18:42:03 +02006719 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006720 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006721}
6722
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006723/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006724static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006725{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006726 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006727 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006728 struct eb32_node *node;
6729 int fctl_cnt = 0;
6730 int send_cnt = 0;
6731 int tree_cnt = 0;
6732 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006733 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006734 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006735
6736 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006737 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006738
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006739 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006740 fctl_cnt++;
6741
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006742 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006743 send_cnt++;
6744
Willy Tarreau3af37712018-12-18 14:34:41 +01006745 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006746 node = eb32_first(&h2c->streams_by_id);
6747 while (node) {
6748 h2s = container_of(node, struct h2s, by_id);
6749 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006750 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006751 orph_cnt++;
6752 node = eb32_next(node);
6753 }
6754
Willy Tarreau60f62682019-05-26 11:32:27 +02006755 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006756 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006757 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006758 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006759 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6760 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006761 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau36c22322022-05-27 10:41:24 +02006762 h2c->nb_streams, h2c->nb_sc, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006763 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006764 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6765 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6766 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006767 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6768 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6769 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006770 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6771 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006772
6773 if (h2s) {
Willy Tarreau36c22322022-05-27 10:41:24 +02006774 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u .sc=%p",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006775 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006776 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6777 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006778 h2s_sc(h2s));
6779 if (h2s_sc(h2s))
Christopher Fauletf835dea2021-12-21 14:35:17 +01006780 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006781 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006782
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006783 chunk_appendf(msg, "sd=%p", h2s->sd);
Christopher Faulet186367f2022-05-30 08:45:15 +02006784 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
Christopher Faulet22050e02022-04-13 12:08:09 +02006785
Willy Tarreau98e40b92021-01-20 16:27:01 +01006786 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6787 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006788 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6789 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6790 h2s->subs->tasklet->calls,
6791 h2s->subs->tasklet->context);
6792 if (h2s->subs->tasklet->calls >= 1000000)
6793 ret = 1;
6794 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6795 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006796 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006797 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006798 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006799}
Willy Tarreau62f52692017-10-08 23:01:42 +02006800
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006801/* Migrate the the connection to the current thread.
6802 * Return 0 if successful, non-zero otherwise.
6803 * Expected to be called with the old thread lock held.
6804 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006805static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006806{
6807 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006808 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006809
6810 if (fd_takeover(conn->handle.fd, conn) != 0)
6811 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006812
6813 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6814 /* We failed to takeover the xprt, even if the connection may
6815 * still be valid, flag it as error'd, as we have already
6816 * taken over the fd, and wake the tasklet, so that it will
6817 * destroy it.
6818 */
6819 conn->flags |= CO_FL_ERROR;
6820 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6821 return -1;
6822 }
6823
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006824 if (h2c->wait_event.events)
6825 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6826 h2c->wait_event.events, &h2c->wait_event);
6827 /* To let the tasklet know it should free itself, and do nothing else,
6828 * set its context to NULL.
6829 */
6830 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006831 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006832
6833 task = h2c->task;
6834 if (task) {
6835 task->context = NULL;
6836 h2c->task = NULL;
6837 __ha_barrier_store();
6838 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006839
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006840 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006841 if (!h2c->task) {
6842 h2_release(h2c);
6843 return -1;
6844 }
6845 h2c->task->process = h2_timeout_task;
6846 h2c->task->context = h2c;
6847 }
6848 h2c->wait_event.tasklet = tasklet_new();
6849 if (!h2c->wait_event.tasklet) {
6850 h2_release(h2c);
6851 return -1;
6852 }
6853 h2c->wait_event.tasklet->process = h2_io_cb;
6854 h2c->wait_event.tasklet->context = h2c;
6855 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6856 SUB_RETRY_RECV, &h2c->wait_event);
6857
6858 return 0;
6859}
6860
Willy Tarreau62f52692017-10-08 23:01:42 +02006861/*******************************************************/
6862/* functions below are dedicated to the config parsers */
6863/*******************************************************/
6864
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006865/* config parser for global "tune.h2.header-table-size" */
6866static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006867 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006868 char **err)
6869{
6870 if (too_many_args(1, args, err, NULL))
6871 return -1;
6872
6873 h2_settings_header_table_size = atoi(args[1]);
6874 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6875 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6876 return -1;
6877 }
6878 return 0;
6879}
Willy Tarreau62f52692017-10-08 23:01:42 +02006880
Willy Tarreaue6baec02017-07-27 11:45:11 +02006881/* config parser for global "tune.h2.initial-window-size" */
6882static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006883 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006884 char **err)
6885{
6886 if (too_many_args(1, args, err, NULL))
6887 return -1;
6888
6889 h2_settings_initial_window_size = atoi(args[1]);
6890 if (h2_settings_initial_window_size < 0) {
6891 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6892 return -1;
6893 }
6894 return 0;
6895}
6896
Willy Tarreau5242ef82017-07-27 11:47:28 +02006897/* config parser for global "tune.h2.max-concurrent-streams" */
6898static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006899 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006900 char **err)
6901{
6902 if (too_many_args(1, args, err, NULL))
6903 return -1;
6904
6905 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006906 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006907 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6908 return -1;
6909 }
6910 return 0;
6911}
6912
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006913/* config parser for global "tune.h2.max-frame-size" */
6914static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006915 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006916 char **err)
6917{
6918 if (too_many_args(1, args, err, NULL))
6919 return -1;
6920
6921 h2_settings_max_frame_size = atoi(args[1]);
6922 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6923 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6924 return -1;
6925 }
6926 return 0;
6927}
6928
Willy Tarreau62f52692017-10-08 23:01:42 +02006929
6930/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006931/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006932/***************************************/
6933
6934/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006935static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006936 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006937 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006938 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006939 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006940 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006941 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006942 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02006943 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02006944 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006945 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006946 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006947 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006948 .shutr = h2_shutr,
6949 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006950 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006951 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006952 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02006953 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006954 .name = "H2",
6955};
6956
Christopher Faulet32f61c02018-04-10 14:33:41 +02006957static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006958 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006959
Willy Tarreau0108d902018-11-25 19:14:37 +01006960INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6961
Willy Tarreau62f52692017-10-08 23:01:42 +02006962/* config keyword parsers */
6963static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006964 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006965 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006966 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006967 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006968 { 0, NULL, NULL }
6969}};
6970
Willy Tarreau0108d902018-11-25 19:14:37 +01006971INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006972
6973/* initialize internal structs after the config is parsed.
6974 * Returns zero on success, non-zero on error.
6975 */
6976static int init_h2()
6977{
6978 pool_head_hpack_tbl = create_pool("hpack_tbl",
6979 h2_settings_header_table_size,
6980 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006981 if (!pool_head_hpack_tbl) {
6982 ha_alert("failed to allocate hpack_tbl memory pool\n");
6983 return (ERR_ALERT | ERR_FATAL);
6984 }
6985 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006986}
6987
6988REGISTER_POST_CHECK(init_h2);