blob: d4f5320ecca630280d9ad5e72b1d7b5800d9f168 [file] [log] [blame]
Willy Tarreau62f52692017-10-08 23:01:42 +02001/*
2 * HTTP/2 mux-demux for connections
3 *
4 * Copyright 2017 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaudfd3de82020-06-04 23:46:14 +020013#include <import/eb32tree.h>
Willy Tarreau63617db2021-10-06 18:23:40 +020014#include <import/ebmbtree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020017#include <haproxy/connection.h>
Christopher Faulet1329f2a2021-12-16 17:32:56 +010018#include <haproxy/conn_stream.h>
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 Tarreaudfd3de82020-06-04 23:46:14 +020030#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020031#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020032#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020033
34
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020036static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010037static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010038static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020039static const struct h2s *h2_idle_stream;
40
Willy Tarreau5ab6b572017-09-22 08:05:00 +020041/* Connection flags (32 bit), in h2c->flags */
42#define H2_CF_NONE 0x00000000
43
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020044/* Flags indicating why writing to the mux is blocked. */
45#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
46#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
47#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
48
Willy Tarreau315d8072017-12-10 22:17:57 +010049/* Flags indicating why writing to the demux is blocked.
50 * The first two ones directly affect the ability for the mux to receive data
51 * from the connection. The other ones affect the mux's ability to demux
52 * received data.
53 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020054#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
55#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010056
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020057#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
58#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
59#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
60#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020061#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
62#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Christopher Fauletb5f7b522021-07-26 12:06:53 +020063 // (SHORT_READ is also excluded)
64
Christopher Faulet47940c32021-11-10 17:50:10 +010065#define H2_CF_DEM_SHORT_READ 0x00000200 // demux blocked on incomplete frame
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020066
Willy Tarreau081d4722017-05-16 21:51:05 +020067/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020068#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
69#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
70#define H2_CF_WAIT_FOR_HS 0x00004000 // We did check that at least a stream was waiting for handshake
Willy Tarreaub3fb56d2018-10-03 13:56:38 +020071#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010072#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
73#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
74#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020075
Amaury Denoyelle0df04362021-10-18 09:43:29 +020076#define H2_CF_RCVD_RFC8441 0x00100000 // settings from RFC8441 has been received indicating support for Extended CONNECT
Willy Tarreau39a0a1e2022-01-13 16:00:12 +010077#define H2_CF_SHTS_UPDATED 0x00200000 // SETTINGS_HEADER_TABLE_SIZE updated
78#define H2_CF_DTSU_EMITTED 0x00400000 // HPACK Dynamic Table Size Update opcode emitted
Amaury Denoyelle0df04362021-10-18 09:43:29 +020079
Willy Tarreau5ab6b572017-09-22 08:05:00 +020080/* H2 connection state, in h2c->st0 */
81enum h2_cs {
82 H2_CS_PREFACE, // init done, waiting for connection preface
83 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
84 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
85 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010086 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
87 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020088 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
89 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
90 H2_CS_ENTRIES // must be last
91} __attribute__((packed));
92
Willy Tarreau51330962019-05-26 09:38:07 +020093
Willy Tarreau9c218e72019-05-26 10:08:28 +020094/* 32 buffers: one for the ring's root, rest for the mbuf itself */
95#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020096
Willy Tarreau5ab6b572017-09-22 08:05:00 +020097/* H2 connection descriptor */
98struct h2c {
99 struct connection *conn;
100
101 enum h2_cs st0; /* mux state */
102 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
103
104 /* 16 bit hole here */
105 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100106 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200107 int32_t max_id; /* highest ID known on this connection, <0 before preface */
108 uint32_t rcvd_c; /* newly received data to ACK for the connection */
109 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
110
111 /* states for the demux direction */
112 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200113 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200114
115 int32_t dsi; /* demux stream ID (<0 = idle) */
116 int32_t dfl; /* demux frame length (if dsi >= 0) */
117 int8_t dft; /* demux frame type (if dsi >= 0) */
118 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100119 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
120 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200121 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
122
123 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200124 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200125 int32_t msi; /* mux stream ID (<0 = idle) */
126 int32_t mfl; /* mux frame length (if dsi >= 0) */
127 int8_t mft; /* mux frame type (if dsi >= 0) */
128 int8_t mff; /* mux frame flags (if dsi >= 0) */
129 /* 16 bit hole here */
130 int32_t miw; /* mux initial window size for all new streams */
131 int32_t mws; /* mux window size. Can be negative. */
132 int32_t mfs; /* mux's max frame size */
133
Willy Tarreauea392822017-10-31 10:02:25 +0100134 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100135 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau15a47332022-03-18 15:57:34 +0100136 int idle_start; /* date of the last time the connection went idle */
137 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +0100138 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200139 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100140 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100141 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200142 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100143 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100144 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200145 struct eb_root streams_by_id; /* all active streams by their ID */
146 struct list send_list; /* list of blocked streams requesting to send */
147 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200148 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100149 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200150 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200151};
152
Willy Tarreau18312642017-10-11 07:57:07 +0200153/* H2 stream state, in h2s->st */
154enum h2_ss {
155 H2_SS_IDLE = 0, // idle
156 H2_SS_RLOC, // reserved(local)
157 H2_SS_RREM, // reserved(remote)
158 H2_SS_OPEN, // open
159 H2_SS_HREM, // half-closed(remote)
160 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200161 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200162 H2_SS_CLOSED, // closed
163 H2_SS_ENTRIES // must be last
164} __attribute__((packed));
165
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200166#define H2_SS_MASK(state) (1UL << (state))
167#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
168#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
169#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
170#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
171#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
172#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
173#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
174#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200175
Willy Tarreau18312642017-10-11 07:57:07 +0200176/* HTTP/2 stream flags (32 bit), in h2s->flags */
177#define H2_SF_NONE 0x00000000
178#define H2_SF_ES_RCVD 0x00000001
179#define H2_SF_ES_SENT 0x00000002
180
181#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
182#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
183
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200184/* stream flags indicating the reason the stream is blocked */
185#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200186#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
187#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
188#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200189#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
190
Willy Tarreau454f9052017-10-26 19:40:35 +0200191/* stream flags indicating how data is supposed to be sent */
192#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100193#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100194#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
195
Willy Tarreau454f9052017-10-26 19:40:35 +0200196
Willy Tarreaud9464162020-01-10 18:25:07 +0100197#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100198#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100199#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100200
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100201#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
202
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200203#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
204#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200205#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200206
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100207#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100208#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100209
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100210#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200211
Willy Tarreau18312642017-10-11 07:57:07 +0200212/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100213 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200214 */
215struct h2s {
216 struct conn_stream *cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100217 struct cs_endpoint *endp;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100218 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200219 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200220 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200221 int32_t id; /* stream ID */
222 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200223 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200224 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
225 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200226 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100227 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200228 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100229 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200230 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100231 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
232 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100233
234 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200235};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200236
Willy Tarreauc6405142017-09-21 20:23:50 +0200237/* descriptor for an h2 frame header */
238struct h2_fh {
239 uint32_t len; /* length, host order, 24 bits */
240 uint32_t sid; /* stream id, host order, 31 bits */
241 uint8_t ft; /* frame type */
242 uint8_t ff; /* frame flags */
243};
244
Willy Tarreau12ae2122019-08-08 18:23:12 +0200245/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200246static void h2_trace(enum trace_level level, uint64_t mask, \
247 const struct trace_source *src,
248 const struct ist where, const struct ist func,
249 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200250
251/* The event representation is split like this :
252 * strm - application layer
253 * h2s - internal H2 stream
254 * h2c - internal H2 connection
255 * conn - external connection
256 *
257 */
258static const struct trace_event h2_trace_events[] = {
259#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200273#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H2 input (ES or RST)" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200299#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of H2 end of input (ES or RST)" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200344 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200345#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200346 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200347#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200348 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200349#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200350 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200351#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200352 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200353#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200354 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200355#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200356 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200357#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200358 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200359#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200360 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200361#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200362 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200363 { }
364};
365
366static const struct name_desc h2_trace_lockon_args[4] = {
367 /* arg1 */ { /* already used by the connection */ },
368 /* arg2 */ { .name="h2s", .desc="H2 stream" },
369 /* arg3 */ { },
370 /* arg4 */ { }
371};
372
373static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200374#define H2_VERB_CLEAN 1
375 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
376#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200377 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200378#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200379 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200380#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200381 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200382#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200383 { .name="complete", .desc="add full data dump when available" },
384 { /* end */ }
385};
386
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200387static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200388 .name = IST("h2"),
389 .desc = "HTTP/2 multiplexer",
390 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200391 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200392 .known_events = h2_trace_events,
393 .lockon_args = h2_trace_lockon_args,
394 .decoding = h2_trace_decoding,
395 .report_events = ~0, // report everything by default
396};
397
398#define TRACE_SOURCE &trace_h2
399INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
400
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100401/* h2 stats module */
402enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100403 H2_ST_HEADERS_RCVD,
404 H2_ST_DATA_RCVD,
405 H2_ST_SETTINGS_RCVD,
406 H2_ST_RST_STREAM_RCVD,
407 H2_ST_GOAWAY_RCVD,
408
Amaury Denoyellea8879232020-10-27 17:16:03 +0100409 H2_ST_CONN_PROTO_ERR,
410 H2_ST_STRM_PROTO_ERR,
411 H2_ST_RST_STREAM_RESP,
412 H2_ST_GOAWAY_RESP,
413
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100414 H2_ST_OPEN_CONN,
415 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100416 H2_ST_TOTAL_CONN,
417 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100418
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100419 H2_STATS_COUNT /* must be the last member of the enum */
420};
421
422static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100423 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100424 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100425 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100426 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100427 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100428 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100429 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100430 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100431 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100432 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100433
434 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
435 .desc = "Total number of connection protocol errors" },
436 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
437 .desc = "Total number of stream protocol errors" },
438 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100439 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100440 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100441 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100442
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100443 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
444 .desc = "Count of currently open connections" },
445 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
446 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100447 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100448 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100449 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100450 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100451};
452
453static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100454 long long headers_rcvd; /* total number of HEADERS frame received */
455 long long data_rcvd; /* total number of DATA frame received */
456 long long settings_rcvd; /* total number of SETTINGS frame received */
457 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
458 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100459
460 long long conn_proto_err; /* total number of protocol errors detected */
461 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100462 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
463 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100464
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100465 long long open_conns; /* count of currently open connections */
466 long long open_streams; /* count of currently open streams */
467 long long total_conns; /* total number of connections */
468 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100469} h2_counters;
470
471static void h2_fill_stats(void *data, struct field *stats)
472{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100473 struct h2_counters *counters = data;
474
475 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
476 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
477 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
478 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
479 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100480
481 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
482 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
483 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
484 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100485
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100486 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
487 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
488 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
489 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100490}
491
492static struct stats_module h2_stats_module = {
493 .name = "h2",
494 .fill_stats = h2_fill_stats,
495 .stats = h2_stats,
496 .stats_count = H2_STATS_COUNT,
497 .counters = &h2_counters,
498 .counters_size = sizeof(h2_counters),
499 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
500 .clearable = 1,
501};
502
503INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
504
Willy Tarreau8ceae722018-11-26 11:58:30 +0100505/* the h2c connection pool */
506DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
507
508/* the h2s stream pool */
509DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
510
Willy Tarreaudc572362018-12-12 08:08:05 +0100511/* The default connection window size is 65535, it may only be enlarged using
512 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
513 * we'll pretend we already received the difference between the two to send
514 * an equivalent window update to enlarge it to 2G-1.
515 */
516#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
517
Willy Tarreau455d5682019-05-24 19:42:18 +0200518/* maximum amount of data we're OK with re-aligning for buffer optimizations */
519#define MAX_DATA_REALIGN 1024
520
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200521/* a few settings from the global section */
522static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200523static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100524static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100525static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200526
Willy Tarreau2a856182017-05-16 15:20:39 +0200527/* a dmumy closed stream */
528static const struct h2s *h2_closed_stream = &(const struct h2s){
529 .cs = NULL,
530 .h2c = NULL,
531 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100532 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100533 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200534 .id = 0,
535};
536
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100537/* a dmumy closed stream returning a PROTOCOL_ERROR error */
538static const struct h2s *h2_error_stream = &(const struct h2s){
539 .cs = NULL,
540 .h2c = NULL,
541 .st = H2_SS_CLOSED,
542 .errcode = H2_ERR_PROTOCOL_ERROR,
543 .flags = 0,
544 .id = 0,
545};
546
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100547/* a dmumy closed stream returning a REFUSED_STREAM error */
548static const struct h2s *h2_refused_stream = &(const struct h2s){
549 .cs = NULL,
550 .h2c = NULL,
551 .st = H2_SS_CLOSED,
552 .errcode = H2_ERR_REFUSED_STREAM,
553 .flags = 0,
554 .id = 0,
555};
556
Willy Tarreau2a856182017-05-16 15:20:39 +0200557/* and a dummy idle stream for use with any unannounced stream */
558static const struct h2s *h2_idle_stream = &(const struct h2s){
559 .cs = NULL,
560 .h2c = NULL,
561 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100562 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200563 .id = 0,
564};
565
Willy Tarreau144f84a2021-03-02 16:09:26 +0100566struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200567static int h2_send(struct h2c *h2c);
568static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200569static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100570/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100571struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100572static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100573static 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 +0100574static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100575struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100576static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100577static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200578
Willy Tarreauab2ec452019-08-30 07:07:08 +0200579/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
580static inline const char *h2c_st_to_str(enum h2_cs st)
581{
582 switch (st) {
583 case H2_CS_PREFACE: return "PRF";
584 case H2_CS_SETTINGS1: return "STG";
585 case H2_CS_FRAME_H: return "FRH";
586 case H2_CS_FRAME_P: return "FRP";
587 case H2_CS_FRAME_A: return "FRA";
588 case H2_CS_FRAME_E: return "FRE";
589 case H2_CS_ERROR: return "ERR";
590 case H2_CS_ERROR2: return "ER2";
591 default: return "???";
592 }
593}
594
595/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
596static inline const char *h2s_st_to_str(enum h2_ss st)
597{
598 switch (st) {
599 case H2_SS_IDLE: return "IDL"; // idle
600 case H2_SS_RLOC: return "RSL"; // reserved local
601 case H2_SS_RREM: return "RSR"; // reserved remote
602 case H2_SS_OPEN: return "OPN"; // open
603 case H2_SS_HREM: return "HCR"; // half-closed remote
604 case H2_SS_HLOC: return "HCL"; // half-closed local
605 case H2_SS_ERROR : return "ERR"; // error
606 case H2_SS_CLOSED: return "CLO"; // closed
607 default: return "???";
608 }
609}
610
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200611/* the H2 traces always expect that arg1, if non-null, is of type connection
612 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
613 * that arg3, if non-null, is either of type htx for tx headers, or of type
614 * buffer for everything else.
615 */
616static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
617 const struct ist where, const struct ist func,
618 const void *a1, const void *a2, const void *a3, const void *a4)
619{
620 const struct connection *conn = a1;
621 const struct h2c *h2c = conn ? conn->ctx : NULL;
622 const struct h2s *h2s = a2;
623 const struct buffer *buf = a3;
624 const struct htx *htx;
625 int pos;
626
627 if (!h2c) // nothing to add
628 return;
629
Willy Tarreau17104d42019-08-30 07:12:55 +0200630 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200631 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
632
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200633 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
634 conn_append_debug_info(&trace_buf, conn, " : ");
635
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100636 if (h2c->errcode)
637 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
638
Willy Tarreau73db4342019-09-25 07:28:44 +0200639 if (h2c->dsi >= 0 &&
640 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200641 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 +0200642 }
643
644 if (h2s) {
645 if (h2s->id <= 0)
646 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
647 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100648 if (h2s->id && h2s->errcode)
649 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200650 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200651 }
652
653 /* Let's dump decoded requests and responses right after parsing. They
654 * are traced at level USER with a few recognizable flags.
655 */
656 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
657 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
658 htx = htxbuf(buf); // recv req/res
659 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
660 htx = a3; // send req/res
661 else
662 htx = NULL;
663
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200664 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200665 const struct htx_blk *blk = htx_get_blk(htx, pos);
666 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
667 enum htx_blk_type type = htx_get_blk_type(blk);
668
669 if (type == HTX_BLK_REQ_SL)
670 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200671 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200672 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
673 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
674 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
675 else if (type == HTX_BLK_RES_SL)
676 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200677 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200678 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
679 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
680 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
681 }
682}
683
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200684
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100685/* Detect a pending read0 for a H2 connection. It happens if a read0 was
686 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
687 * to parse pending data, confirming no more progress is possible because
688 * we're facing a truncated frame. The function returns 1 to report a read0
689 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200690 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100691static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200692{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100693 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200694}
695
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200696/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100697 * connection may expire when it has no attached streams. As long as streams
698 * are attached, the application layer is responsible for timeout management,
699 * and each layer will detach when it doesn't want to wait anymore. When the
700 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200701 */
702static inline int h2c_may_expire(const struct h2c *h2c)
703{
Willy Tarreau34395832022-03-18 14:59:54 +0100704 return !h2c->nb_cs;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200705}
706
Willy Tarreau15a47332022-03-18 15:57:34 +0100707/* update h2c timeout if needed */
708static void h2c_update_timeout(struct h2c *h2c)
709{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200710 int is_idle_conn = 0;
711
Willy Tarreau15a47332022-03-18 15:57:34 +0100712 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
713
714 if (!h2c->task)
715 goto leave;
716
717 if (h2c_may_expire(h2c)) {
718 /* no more streams attached */
719 if (h2c->last_sid >= 0) {
720 /* GOAWAY sent, closing in progress */
721 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200722 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100723 } else if (br_data(h2c->mbuf)) {
724 /* pending output data: always the regular data timeout */
725 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
726 } else if (h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
727 /* idle after having seen one stream => keep-alive */
728 h2c->task->expire = tick_add_ifset(h2c->idle_start, h2c->proxy->timeout.httpka);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200729 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100730 } else {
731 /* before first request, or started to deserialize a
732 * new req => http-request, but only set, not refresh.
733 */
734 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
735 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
736 }
737 /* if a timeout above was not set, fall back to the default one */
738 if (!tick_isset(h2c->task->expire))
739 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200740
741 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
742 is_idle_conn && tick_isset(global.close_spread_end)) {
743 /* If a soft-stop is in progress and a close-spread-time
744 * is set, we want to spread idle connection closing roughly
745 * evenly across the defined window. This should only
746 * act on idle frontend connections.
747 * If the window end is already in the past, we wake the
748 * timeout task up immediately so that it can be closed.
749 */
750 int remaining_window = tick_remain(now_ms, global.close_spread_end);
751 if (remaining_window) {
752 /* We don't need to reset the expire if it would
753 * already happen before the close window end.
754 */
755 if (tick_isset(h2c->task->expire) &&
756 tick_is_le(global.close_spread_end, h2c->task->expire)) {
757 /* Set an expire value shorter than the current value
758 * because the close spread window end comes earlier.
759 */
760 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
761 }
762 }
763 else {
764 /* We are past the soft close window end, wake the timeout
765 * task up immediately.
766 */
767 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
768 }
769 }
770
Willy Tarreau15a47332022-03-18 15:57:34 +0100771 } else {
772 h2c->task->expire = TICK_ETERNITY;
773 }
774 task_queue(h2c->task);
775 leave:
776 TRACE_LEAVE(H2_EV_H2C_WAKE);
777}
778
Olivier Houchard7a977432019-03-21 15:47:13 +0100779static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200780h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100781{
782 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
783 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
784 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
785 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200786 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100787 (conn_xprt_read0_pending(h2c->conn) ||
788 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
789 return 1;
790
791 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100792}
793
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200794/*****************************************************/
795/* functions below are for dynamic buffer management */
796/*****************************************************/
797
Willy Tarreau315d8072017-12-10 22:17:57 +0100798/* indicates whether or not the we may call the h2_recv() function to attempt
799 * to receive data into the buffer and/or demux pending data. The condition is
800 * a bit complex due to some API limits for now. The rules are the following :
801 * - if an error or a shutdown was detected on the connection and the buffer
802 * is empty, we must not attempt to receive
803 * - if the demux buf failed to be allocated, we must not try to receive and
804 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100805 * - if no flag indicates a blocking condition, we may attempt to receive,
806 * regardless of whether the demux buffer is full or not, so that only
807 * de demux part decides whether or not to block. This is needed because
808 * the connection API indeed prevents us from re-enabling receipt that is
809 * already enabled in a polled state, so we must always immediately stop
810 * as soon as the demux can't proceed so as never to hit an end of read
811 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100812 * - otherwise must may not attempt
813 */
814static inline int h2_recv_allowed(const struct h2c *h2c)
815{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200816 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100817 (h2c->st0 >= H2_CS_ERROR ||
818 h2c->conn->flags & CO_FL_ERROR ||
819 conn_xprt_read0_pending(h2c->conn)))
820 return 0;
821
822 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100823 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100824 return 1;
825
826 return 0;
827}
828
Willy Tarreau47b515a2018-12-21 16:09:41 +0100829/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200830static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100831{
832 if (!h2_recv_allowed(h2c))
833 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200834 if ((!consider_buffer || !b_data(&h2c->dbuf))
835 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100836 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200837 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100838}
839
840
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100841/* returns true if the front connection has too many conn_streams attached */
842static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200843{
Willy Tarreaua8754662018-12-23 20:43:58 +0100844 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200845}
846
Willy Tarreau44e973f2018-03-01 17:49:30 +0100847/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
848 * flags are used to figure what buffer was requested. It returns 1 if the
849 * allocation succeeds, in which case the connection is woken up, or 0 if it's
850 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200851 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100852static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200853{
854 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100855 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200856
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100857 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200858 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200859 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200860 return 1;
861 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200862
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100863 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100864 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200865
866 if (h2c->flags & H2_CF_DEM_MROOM) {
867 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200868 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200869 }
Willy Tarreau14398122017-09-22 14:26:04 +0200870 return 1;
871 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100872
873 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
874 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100875 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100876 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200877 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100878 return 1;
879 }
880
Willy Tarreau14398122017-09-22 14:26:04 +0200881 return 0;
882}
883
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200884static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200885{
886 struct buffer *buf = NULL;
887
Willy Tarreau2b718102021-04-21 07:32:39 +0200888 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100889 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100890 h2c->buf_wait.target = h2c;
891 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200892 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200893 }
894 return buf;
895}
896
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200897static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200898{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200899 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100900 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100901 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200902 }
903}
904
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200905static inline void h2_release_mbuf(struct h2c *h2c)
906{
907 struct buffer *buf;
908 unsigned int count = 0;
909
910 while (b_size(buf = br_head_pick(h2c->mbuf))) {
911 b_free(buf);
912 count++;
913 }
914 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100915 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200916}
917
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100918/* returns the number of allocatable outgoing streams for the connection taking
919 * the last_sid and the reserved ones into account.
920 */
921static inline int h2_streams_left(const struct h2c *h2c)
922{
923 int ret;
924
925 /* consider the number of outgoing streams we're allowed to create before
926 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
927 * nb_reserved is the number of streams which don't yet have an ID.
928 */
929 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
930 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
931 if (ret < 0)
932 ret = 0;
933 return ret;
934}
935
Willy Tarreau00f18a32019-01-26 12:19:01 +0100936/* returns the number of streams in use on a connection to figure if it's
937 * idle or not. We check nb_cs and not nb_streams as the caller will want
938 * to know if it was the last one after a detach().
939 */
940static int h2_used_streams(struct connection *conn)
941{
942 struct h2c *h2c = conn->ctx;
943
944 return h2c->nb_cs;
945}
946
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100947/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100948static int h2_avail_streams(struct connection *conn)
949{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100950 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100951 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100952 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100953
Willy Tarreau6afec462019-01-28 06:40:19 +0100954 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
955 * streams on the connection.
956 */
957 if (h2c->last_sid >= 0)
958 return 0;
959
Willy Tarreauc61966f2019-10-31 15:10:03 +0100960 if (h2c->st0 >= H2_CS_ERROR)
961 return 0;
962
Willy Tarreau86949782019-01-31 10:42:05 +0100963 /* note: may be negative if a SETTINGS frame changes the limit */
964 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100965
966 /* we must also consider the limit imposed by stream IDs */
967 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100968 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100969 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100970 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
971 ret1 = MIN(ret1, ret2);
972 }
973 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100974}
975
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200976
Willy Tarreau62f52692017-10-08 23:01:42 +0200977/*****************************************************************/
978/* functions below are dedicated to the mux setup and management */
979/*****************************************************************/
980
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200981/* Initialize the mux once it's attached. For outgoing connections, the context
982 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200983 * connections from the fact that the context is still NULL (even during mux
984 * upgrades). <input> is always used as Input buffer and may contain data. It is
985 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200986 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200987static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
988 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200989{
990 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100991 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200992 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200993
Christopher Fauletf81ef032019-10-04 15:19:43 +0200994 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200995
Willy Tarreaubafbe012017-11-24 17:34:44 +0100996 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200997 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200998 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200999
Christopher Faulete9b70722019-04-08 10:46:02 +02001000 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001001 h2c->flags = H2_CF_IS_BACK;
1002 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
1003 if (tick_isset(prx->timeout.serverfin))
1004 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001005
1006 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
1007 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001008 } else {
1009 h2c->flags = H2_CF_NONE;
1010 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
1011 if (tick_isset(prx->timeout.clientfin))
1012 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001013
1014 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
1015 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001016 }
Willy Tarreau3f133572017-10-31 19:21:06 +01001017
Willy Tarreau0b37d652018-10-03 10:33:02 +02001018 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +01001019 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +01001020 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +01001021 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001022 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +01001023 if (!t)
1024 goto fail;
1025
1026 h2c->task = t;
1027 t->process = h2_timeout_task;
1028 t->context = h2c;
1029 t->expire = tick_add(now_ms, h2c->timeout);
1030 }
Willy Tarreauea392822017-10-31 10:02:25 +01001031
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001032 h2c->wait_event.tasklet = tasklet_new();
1033 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001034 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001035 h2c->wait_event.tasklet->process = h2_io_cb;
1036 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001037 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001038 if (!conn_is_back(conn)) {
1039 /* Connection might already be in the stopping_list if subject
1040 * to h1->h2 upgrade.
1041 */
1042 if (!LIST_INLIST(&conn->stopping_list)) {
1043 LIST_APPEND(&mux_stopping_data[tid].list,
1044 &conn->stopping_list);
1045 }
1046 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001047
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001048 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001049 if (!h2c->ddht)
1050 goto fail;
1051
1052 /* Initialise the context. */
1053 h2c->st0 = H2_CS_PREFACE;
1054 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001055 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001056 h2c->max_id = -1;
1057 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001058 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001059 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001060 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001061 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001062 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001063 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001064
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001065 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001066 h2c->dsi = -1;
1067 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001068
Willy Tarreau32218eb2017-09-22 08:07:25 +02001069 h2c->last_sid = -1;
1070
Willy Tarreau51330962019-05-26 09:38:07 +02001071 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001072 h2c->miw = 65535; /* mux initial window size */
1073 h2c->mws = 65535; /* mux window size */
1074 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001075 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001076 LIST_INIT(&h2c->send_list);
1077 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001078 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001079 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001080
Christopher Fauletf81ef032019-10-04 15:19:43 +02001081 conn->ctx = h2c;
1082
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001083 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1084
Willy Tarreau3f133572017-10-31 19:21:06 +01001085 if (t)
1086 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001087
Willy Tarreau01b44822018-10-03 14:26:37 +02001088 if (h2c->flags & H2_CF_IS_BACK) {
1089 /* FIXME: this is temporary, for outgoing connections we need
1090 * to immediately allocate a stream until the code is modified
1091 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001092 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001093 */
1094 struct h2s *h2s;
1095
Christopher Fauletf81ef032019-10-04 15:19:43 +02001096 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001097 if (!h2s)
1098 goto fail_stream;
1099 }
1100
Willy Tarreau4781b152021-04-06 13:53:36 +02001101 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1102 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001103
Willy Tarreau0f383582018-10-03 14:22:21 +02001104 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001105 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001106 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001107 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001108 fail_stream:
1109 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001110 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001111 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001112 if (h2c->wait_event.tasklet)
1113 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001114 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001115 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001116 if (!conn_is_back(conn))
1117 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001118 conn->ctx = conn_ctx; /* restore saved ctx */
1119 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001120 return -1;
1121}
1122
Willy Tarreau751f2d02018-10-05 09:35:00 +02001123/* returns the next allocatable outgoing stream ID for the H2 connection, or
1124 * -1 if no more is allocatable.
1125 */
1126static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1127{
1128 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001129
1130 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001131 id = -1;
1132 return id;
1133}
1134
Willy Tarreau2373acc2017-10-12 17:35:14 +02001135/* returns the stream associated with id <id> or NULL if not found */
1136static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1137{
1138 struct eb32_node *node;
1139
Willy Tarreau751f2d02018-10-05 09:35:00 +02001140 if (id == 0)
1141 return (struct h2s *)h2_closed_stream;
1142
Willy Tarreau2a856182017-05-16 15:20:39 +02001143 if (id > h2c->max_id)
1144 return (struct h2s *)h2_idle_stream;
1145
Willy Tarreau2373acc2017-10-12 17:35:14 +02001146 node = eb32_lookup(&h2c->streams_by_id, id);
1147 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001148 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001149
1150 return container_of(node, struct h2s, by_id);
1151}
1152
Christopher Faulet73c12072019-04-08 11:23:22 +02001153/* release function. This one should be called to free all resources allocated
1154 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001155 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001156static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001157{
William Dauchy477757c2020-08-07 22:19:23 +02001158 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001159
Willy Tarreau7838a792019-08-12 18:42:03 +02001160 TRACE_ENTER(H2_EV_H2C_END);
1161
Willy Tarreau32218eb2017-09-22 08:07:25 +02001162 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001163 /* The connection must be aattached to this mux to be released */
1164 if (h2c->conn && h2c->conn->ctx == h2c)
1165 conn = h2c->conn;
1166
Willy Tarreau7838a792019-08-12 18:42:03 +02001167 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001168 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001169
Willy Tarreau2b718102021-04-21 07:32:39 +02001170 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001171 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001172
Willy Tarreau44e973f2018-03-01 17:49:30 +01001173 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001174 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001175
Willy Tarreauea392822017-10-31 10:02:25 +01001176 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001177 h2c->task->context = NULL;
1178 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001179 h2c->task = NULL;
1180 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001181 if (h2c->wait_event.tasklet)
1182 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001183 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001184 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001185 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001186
Willy Tarreau4781b152021-04-06 13:53:36 +02001187 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001188
Willy Tarreaubafbe012017-11-24 17:34:44 +01001189 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001190 }
1191
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001192 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001193 if (!conn_is_back(conn))
1194 LIST_DEL_INIT(&conn->stopping_list);
1195
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001196 conn->mux = NULL;
1197 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001198 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001199
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001200 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001201
1202 /* there might be a GOAWAY frame still pending in the TCP
1203 * stack, and if the peer continues to send (i.e. window
1204 * updates etc), this can result in losing the GOAWAY. For
1205 * this reason we try to drain anything received in between.
1206 */
1207 conn->flags |= CO_FL_WANT_DRAIN;
1208
1209 conn_xprt_shutw(conn);
1210 conn_xprt_close(conn);
1211 conn_sock_shutw(conn, !conn_is_back(conn));
1212 conn_ctrl_close(conn);
1213
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001214 if (conn->destroy_cb)
1215 conn->destroy_cb(conn);
1216 conn_free(conn);
1217 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001218
1219 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001220}
1221
1222
Willy Tarreau71681172017-10-23 14:39:06 +02001223/******************************************************/
1224/* functions below are for the H2 protocol processing */
1225/******************************************************/
1226
1227/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001228static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001229{
1230 return h2s ? h2s->id : 0;
1231}
1232
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001233/* returns the sum of the stream's own window size and the mux's initial
1234 * window, which together form the stream's effective window size.
1235 */
1236static inline int h2s_mws(const struct h2s *h2s)
1237{
1238 return h2s->sws + h2s->h2c->miw;
1239}
1240
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001241/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001242static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001243{
1244 if (h2c->msi < 0)
1245 return 0;
1246
1247 if (h2c->msi == h2s_id(h2s))
1248 return 0;
1249
1250 return 1;
1251}
1252
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001253/* marks an error on the connection. Before settings are sent, we must not send
1254 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1255 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1256 * even try.
1257 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001258static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001259{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001260 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001261 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001262 if (h2c->st0 < H2_CS_SETTINGS1)
1263 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001264 h2c->st0 = H2_CS_ERROR;
1265}
1266
Willy Tarreau175cebb2019-01-24 10:02:24 +01001267/* marks an error on the stream. It may also update an already closed stream
1268 * (e.g. to report an error after an RST was received).
1269 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001270static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001271{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001272 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001273 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001274 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001275 if (h2s->st < H2_SS_ERROR)
1276 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001277 if (h2s->cs)
1278 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001279 }
1280}
1281
Willy Tarreau7e094452018-12-19 18:08:52 +01001282/* attempt to notify the data layer of recv availability */
1283static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1284{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001285 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001286 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001287 tasklet_wakeup(h2s->subs->tasklet);
1288 h2s->subs->events &= ~SUB_RETRY_RECV;
1289 if (!h2s->subs->events)
1290 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001291 }
1292}
1293
1294/* attempt to notify the data layer of send availability */
1295static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1296{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001297 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001298 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001299 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001300 tasklet_wakeup(h2s->subs->tasklet);
1301 h2s->subs->events &= ~SUB_RETRY_SEND;
1302 if (!h2s->subs->events)
1303 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001304 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001305 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1306 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1307 tasklet_wakeup(h2s->shut_tl);
1308 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001309}
1310
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001311/* alerts the data layer, trying to wake it up by all means, following
1312 * this sequence :
1313 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1314 * - if its subscribed to send, then it's woken up for send
1315 * - if it was subscribed to neither, its ->wake() callback is called
1316 * It is safe to call this function with a closed stream which doesn't have a
1317 * conn_stream anymore.
1318 */
1319static void __maybe_unused h2s_alert(struct h2s *h2s)
1320{
Willy Tarreau7838a792019-08-12 18:42:03 +02001321 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1322
Willy Tarreauf96508a2020-01-10 11:12:48 +01001323 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001324 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001325 h2s_notify_recv(h2s);
1326 h2s_notify_send(h2s);
1327 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001328 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1329 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001330 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001331 }
1332
1333 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001334}
1335
Willy Tarreaue4820742017-07-27 13:37:23 +02001336/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001337static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001338{
1339 uint8_t *out = frame;
1340
1341 *out = len >> 16;
1342 write_n16(out + 1, len);
1343}
1344
Willy Tarreau54c15062017-10-10 17:10:03 +02001345/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1346 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1347 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001348 * available in the buffer's input prior to calling this function. The buffer
1349 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001350 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001351static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001352 const struct buffer *b, int o)
1353{
Willy Tarreau591d4452018-06-15 17:21:00 +02001354 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 +02001355}
1356
Willy Tarreau1f094672017-11-20 21:27:45 +01001357static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001358{
Willy Tarreau591d4452018-06-15 17:21:00 +02001359 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001360}
1361
Willy Tarreau1f094672017-11-20 21:27:45 +01001362static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001363{
Willy Tarreau591d4452018-06-15 17:21:00 +02001364 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001365}
1366
Willy Tarreau1f094672017-11-20 21:27:45 +01001367static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001368{
Willy Tarreau591d4452018-06-15 17:21:00 +02001369 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001370}
1371
1372
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001373/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1374 * The algorithm is not obvious. It turns out that H2 headers are neither
1375 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1376 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001377 *
1378 * b0 b1 b2 b3 b4 b5..b8
1379 * +----------+---------+--------+----+----+----------------------+
1380 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1381 * +----------+---------+--------+----+----+----------------------+
1382 *
1383 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1384 * we get the sid properly aligned and ordered, and 16 bits of len properly
1385 * ordered as well. The type and flags can be extracted using bit shifts from
1386 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001387 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1388 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001389 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001390static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001391{
1392 uint64_t w;
1393
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001394 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001395 return 0;
1396
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001397 w = h2_get_n64(b, o + 1);
1398 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001399 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1400 h->ff = w >> 32;
1401 h->ft = w >> 40;
1402 h->len += w >> 48;
1403 return 1;
1404}
1405
1406/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1407 * h2_peek_frame_hdr() above.
1408 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001409static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001410{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001411 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001412}
1413
1414/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001415static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001416{
1417 int ret;
1418
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001419 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001420 if (ret > 0)
1421 h2_skip_frame_hdr(b);
1422 return ret;
1423}
1424
Willy Tarreaucb985a42019-10-07 16:56:34 +02001425
1426/* try to fragment the headers frame present at the beginning of buffer <b>,
1427 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1428 * success. Typical causes of failure include a buffer not large enough to
1429 * add extra frame headers. The existing frame size is read in the current
1430 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1431 * and its length will be adjusted. The stream ID for continuation frames will
1432 * be copied from the initial frame's.
1433 */
1434static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1435{
1436 size_t remain = b->data - 9;
1437 int extra_frames = (remain - 1) / mfs;
1438 size_t fsize;
1439 char *fptr;
1440 int frame;
1441
1442 if (b->data <= mfs + 9)
1443 return 1;
1444
1445 /* Too large a frame, we need to fragment it using CONTINUATION
1446 * frames. We start from the end and move tails as needed.
1447 */
1448 if (b->data + extra_frames * 9 > b->size)
1449 return 0;
1450
1451 for (frame = extra_frames; frame; frame--) {
1452 fsize = ((remain - 1) % mfs) + 1;
1453 remain -= fsize;
1454
1455 /* move data */
1456 fptr = b->area + 9 + remain + (frame - 1) * 9;
1457 memmove(fptr + 9, b->area + 9 + remain, fsize);
1458 b->data += 9;
1459
1460 /* write new frame header */
1461 h2_set_frame_size(fptr, fsize);
1462 fptr[3] = H2_FT_CONTINUATION;
1463 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1464 write_n32(fptr + 5, read_n32(b->area + 5));
1465 }
1466
1467 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1468 h2_set_frame_size(b->area, remain);
1469 return 1;
1470}
1471
1472
Willy Tarreau00dd0782018-03-01 16:31:34 +01001473/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1474 * its connection if the stream was not yet closed. Please use this exclusively
1475 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001476 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001477static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001478{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001479 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001480 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001481 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001482 if (!h2s->id)
1483 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001484 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001485 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1486 h2s_notify_recv(h2s);
1487 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001488 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001489
Willy Tarreau7838a792019-08-12 18:42:03 +02001490 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001491 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001492 h2s->st = H2_SS_CLOSED;
1493}
1494
Willy Tarreau71049cc2018-03-28 13:56:39 +02001495/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001496/* h2s_destroy should only ever be called by the thread that owns the stream,
1497 * that means that a tasklet should be used if we want to destroy the h2s
1498 * from another thread
1499 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001500static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001501{
Willy Tarreau7838a792019-08-12 18:42:03 +02001502 struct connection *conn = h2s->h2c->conn;
1503
1504 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1505
Willy Tarreau0a10de62018-03-01 16:27:53 +01001506 h2s_close(h2s);
1507 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001508 if (b_size(&h2s->rxbuf)) {
1509 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001510 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001511 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001512
1513 if (h2s->subs)
1514 h2s->subs->events = 0;
1515
Joseph Herlantd77575d2018-11-25 10:54:45 -08001516 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001517 * reference left would be in the h2c send_list/fctl_list, and if
1518 * we're in it, we're getting out anyway
1519 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001520 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001521
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001522 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001523 tasklet_free(h2s->shut_tl);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001524 BUG_ON(h2s->endp && !(h2s->endp->flags & CS_EP_ORPHAN));
1525 cs_endpoint_free(h2s->endp);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001526 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001527
1528 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001529}
1530
Willy Tarreaua8e49542018-10-03 18:53:55 +02001531/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1532 * stream tree. In case of error, nothing is added and NULL is returned. The
1533 * causes of errors can be any failed memory allocation. The caller is
1534 * responsible for checking if the connection may support an extra stream
1535 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001536 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001537static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001538{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001539 struct h2s *h2s;
1540
Willy Tarreau7838a792019-08-12 18:42:03 +02001541 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1542
Willy Tarreaubafbe012017-11-24 17:34:44 +01001543 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001544 if (!h2s)
1545 goto out;
1546
Willy Tarreau5723f292020-01-10 15:16:57 +01001547 h2s->shut_tl = tasklet_new();
1548 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001549 pool_free(pool_head_h2s, h2s);
1550 goto out;
1551 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001552 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001553 h2s->shut_tl->process = h2_deferred_shut;
1554 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001555 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001556 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001557 h2s->cs = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001558 h2s->endp = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001559 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001560 h2s->flags = H2_SF_NONE;
1561 h2s->errcode = H2_ERR_NO_ERROR;
1562 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001563 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001564 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001565 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001566 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001567
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001568 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001569 if (id > 0)
1570 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001571 else
1572 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001573
1574 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001575 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001576 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001577
Willy Tarreau4781b152021-04-06 13:53:36 +02001578 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1579 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001580
Willy Tarreau7838a792019-08-12 18:42:03 +02001581 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001582 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001583 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001584 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001585 return NULL;
1586}
1587
1588/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001589 * case of memory allocation error. <input> is used as input buffer for the new
1590 * stream. On success, it is transferred to the stream and the mux is no longer
1591 * responsible of it. On error, <input> is unchanged, thus the mux must still
1592 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001593 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001594static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001595{
1596 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001597 struct h2s *h2s;
1598
Willy Tarreau7838a792019-08-12 18:42:03 +02001599 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1600
Willy Tarreaua8e49542018-10-03 18:53:55 +02001601 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1602 goto out;
1603
1604 h2s = h2s_new(h2c, id);
1605 if (!h2s)
1606 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001607
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001608 h2s->endp = cs_endpoint_new();
1609 if (!h2s->endp)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001610 goto out_close;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001611 h2s->endp->target = h2s;
1612 h2s->endp->ctx = h2c->conn;
1613 h2s->endp->flags |= (CS_EP_T_MUX|CS_EP_ORPHAN|CS_EP_NOT_FIRST);
1614
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001615 /* FIXME wrong analogy between ext-connect and websocket, this need to
1616 * be refine.
1617 */
1618 if (flags & H2_SF_EXT_CONNECT_RCVD)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001619 h2s->endp->flags |= CS_EP_WEBSOCKET;
Christopher Fauletb669d682022-03-22 18:37:19 +01001620
Willy Tarreaud0de6772022-02-04 09:05:37 +01001621 /* The stream will record the request's accept date (which is either the
1622 * end of the connection's or the date immediately after the previous
1623 * request) and the idle time, which is the delay since the previous
1624 * request. We can set the value now, it will be copied by stream_new().
1625 */
1626 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001627
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001628 h2s->cs = cs_new_from_mux(h2s->endp, sess, input);
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001629 if (!h2s->cs) {
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001630 goto out_close;
1631 }
1632 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001633
Willy Tarreau590a0512018-09-05 11:56:48 +02001634 /* We want the accept date presented to the next stream to be the one
1635 * we have now, the handshake time to be null (since the next stream
1636 * is not delayed by a handshake), and the idle time to count since
1637 * right now.
1638 */
1639 sess->accept_date = date;
1640 sess->tv_accept = now;
1641 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001642 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001643
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001644 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001645 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001646 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001647 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001648 return h2s;
1649
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001650 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001651 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001652 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001653 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001654 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001655 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001656}
1657
Willy Tarreau751f2d02018-10-05 09:35:00 +02001658/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1659 * and returns it, or NULL in case of memory allocation error or if the highest
1660 * possible stream ID was reached.
1661 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001662static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001663{
1664 struct h2s *h2s = NULL;
1665
Willy Tarreau7838a792019-08-12 18:42:03 +02001666 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1667
Willy Tarreau86949782019-01-31 10:42:05 +01001668 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001669 goto out;
1670
Willy Tarreaua80dca82019-01-24 17:08:28 +01001671 if (h2_streams_left(h2c) < 1)
1672 goto out;
1673
Willy Tarreau751f2d02018-10-05 09:35:00 +02001674 /* Defer choosing the ID until we send the first message to create the stream */
1675 h2s = h2s_new(h2c, 0);
1676 if (!h2s)
1677 goto out;
1678
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001679 cs_attach_mux(cs, h2s, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001680 h2s->cs = cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001681 h2s->endp = cs->endp;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001682 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001683 h2c->nb_cs++;
1684
Willy Tarreau751f2d02018-10-05 09:35:00 +02001685 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001686 if (likely(h2s))
1687 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1688 else
1689 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001690 return h2s;
1691}
1692
Willy Tarreaube5b7152017-09-25 16:25:39 +02001693/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1694 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1695 * the various settings codes.
1696 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001697static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001698{
1699 struct buffer *res;
1700 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001701 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001702 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001703 int ret = 0;
1704
1705 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001706
1707 if (h2c_mux_busy(h2c, NULL)) {
1708 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001709 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001710 }
1711
Willy Tarreaube5b7152017-09-25 16:25:39 +02001712 chunk_init(&buf, buf_data, sizeof(buf_data));
1713 chunk_memcpy(&buf,
1714 "\x00\x00\x00" /* length : 0 for now */
1715 "\x04\x00" /* type : 4 (settings), flags : 0 */
1716 "\x00\x00\x00\x00", /* stream ID : 0 */
1717 9);
1718
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001719 if (h2c->flags & H2_CF_IS_BACK) {
1720 /* send settings_enable_push=0 */
1721 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1722 }
1723
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001724 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1725 * sent automatically unless disabled in the global config */
1726 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1727 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001728
Willy Tarreaube5b7152017-09-25 16:25:39 +02001729 if (h2_settings_header_table_size != 4096) {
1730 char str[6] = "\x00\x01"; /* header_table_size */
1731
1732 write_n32(str + 2, h2_settings_header_table_size);
1733 chunk_memcat(&buf, str, 6);
1734 }
1735
1736 if (h2_settings_initial_window_size != 65535) {
1737 char str[6] = "\x00\x04"; /* initial_window_size */
1738
1739 write_n32(str + 2, h2_settings_initial_window_size);
1740 chunk_memcat(&buf, str, 6);
1741 }
1742
1743 if (h2_settings_max_concurrent_streams != 0) {
1744 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1745
1746 /* Note: 0 means "unlimited" for haproxy's config but not for
1747 * the protocol, so never send this value!
1748 */
1749 write_n32(str + 2, h2_settings_max_concurrent_streams);
1750 chunk_memcat(&buf, str, 6);
1751 }
1752
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001753 mfs = h2_settings_max_frame_size;
1754 if (mfs > global.tune.bufsize)
1755 mfs = global.tune.bufsize;
1756
1757 if (!mfs)
1758 mfs = global.tune.bufsize;
1759
1760 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001761 char str[6] = "\x00\x05"; /* max_frame_size */
1762
1763 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1764 * match bufsize - rewrite size, but at the moment it seems
1765 * that clients don't take care of it.
1766 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001767 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001768 chunk_memcat(&buf, str, 6);
1769 }
1770
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001771 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001772
1773 res = br_tail(h2c->mbuf);
1774 retry:
1775 if (!h2_get_buf(h2c, res)) {
1776 h2c->flags |= H2_CF_MUX_MALLOC;
1777 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001778 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001779 }
1780
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001781 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001782 if (unlikely(ret <= 0)) {
1783 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001784 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1785 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001786 h2c->flags |= H2_CF_MUX_MFULL;
1787 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001788 }
1789 else {
1790 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001791 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001792 }
1793 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001794 out:
1795 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001796 return ret;
1797}
1798
Willy Tarreau52eed752017-09-22 15:05:09 +02001799/* Try to receive a connection preface, then upon success try to send our
1800 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1801 * missing data. It may return an error in h2c.
1802 */
1803static int h2c_frt_recv_preface(struct h2c *h2c)
1804{
1805 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001806 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001807
Willy Tarreau7838a792019-08-12 18:42:03 +02001808 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1809
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001810 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001811
1812 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001813 if (!ret1)
1814 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001815 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001816 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 +02001817 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001818 if (b_data(&h2c->dbuf) ||
1819 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1820 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001821 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001822 ret2 = 0;
1823 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001824 }
1825
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001826 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001827 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001828 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001829 out:
1830 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001831 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001832}
1833
Willy Tarreau01b44822018-10-03 14:26:37 +02001834/* Try to send a connection preface, then upon success try to send our
1835 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1836 * missing data. It may return an error in h2c.
1837 */
1838static int h2c_bck_send_preface(struct h2c *h2c)
1839{
1840 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001841 int ret = 0;
1842
1843 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001844
1845 if (h2c_mux_busy(h2c, NULL)) {
1846 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001847 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001848 }
1849
Willy Tarreaubcc45952019-05-26 10:05:50 +02001850 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001851 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001852 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001853 h2c->flags |= H2_CF_MUX_MALLOC;
1854 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001855 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001856 }
1857
1858 if (!b_data(res)) {
1859 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001860 ret = b_istput(res, ist(H2_CONN_PREFACE));
1861 if (unlikely(ret <= 0)) {
1862 if (!ret) {
1863 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1864 goto retry;
1865 h2c->flags |= H2_CF_MUX_MFULL;
1866 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001867 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001868 }
1869 else {
1870 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001871 ret = 0;
1872 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001873 }
1874 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001875 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001876 ret = h2c_send_settings(h2c);
1877 out:
1878 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1879 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001880}
1881
Willy Tarreau081d4722017-05-16 21:51:05 +02001882/* try to send a GOAWAY frame on the connection to report an error or a graceful
1883 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1884 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1885 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1886 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1887 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1888 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001889 * case, nor will it send one if settings were not sent (e.g. still waiting for
1890 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001891 */
1892static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1893{
1894 struct buffer *res;
1895 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001896 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001897
Willy Tarreau7838a792019-08-12 18:42:03 +02001898 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1899
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001900 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001901 ret = 1; // claim that it worked
1902 goto out;
1903 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001904
1905 if (h2c_mux_busy(h2c, h2s)) {
1906 if (h2s)
1907 h2s->flags |= H2_SF_BLK_MBUSY;
1908 else
1909 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001910 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001911 }
1912
Willy Tarreau9c218e72019-05-26 10:08:28 +02001913 /* len: 8, type: 7, flags: none, sid: 0 */
1914 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1915
1916 if (h2c->last_sid < 0)
1917 h2c->last_sid = h2c->max_id;
1918
1919 write_n32(str + 9, h2c->last_sid);
1920 write_n32(str + 13, h2c->errcode);
1921
Willy Tarreaubcc45952019-05-26 10:05:50 +02001922 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001923 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001924 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001925 h2c->flags |= H2_CF_MUX_MALLOC;
1926 if (h2s)
1927 h2s->flags |= H2_SF_BLK_MROOM;
1928 else
1929 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001930 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001931 }
1932
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001933 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001934 if (unlikely(ret <= 0)) {
1935 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001936 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1937 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001938 h2c->flags |= H2_CF_MUX_MFULL;
1939 if (h2s)
1940 h2s->flags |= H2_SF_BLK_MROOM;
1941 else
1942 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001943 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001944 }
1945 else {
1946 /* we cannot report this error using GOAWAY, so we mark
1947 * it and claim a success.
1948 */
1949 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1950 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001951 ret = 1;
1952 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001953 }
1954 }
1955 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001956
1957 /* some codes are not for real errors, just attempts to close cleanly */
1958 switch (h2c->errcode) {
1959 case H2_ERR_NO_ERROR:
1960 case H2_ERR_ENHANCE_YOUR_CALM:
1961 case H2_ERR_REFUSED_STREAM:
1962 case H2_ERR_CANCEL:
1963 break;
1964 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001965 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001966 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001967 out:
1968 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001969 return ret;
1970}
1971
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001972/* Try to send an RST_STREAM frame on the connection for the indicated stream
1973 * during mux operations. This stream must be valid and cannot be closed
1974 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1975 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1976 * not yet.
1977 *
1978 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1979 * to write the message, it subscribes the stream to future notifications.
1980 */
1981static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1982{
1983 struct buffer *res;
1984 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001985 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001986
Willy Tarreau7838a792019-08-12 18:42:03 +02001987 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1988
1989 if (!h2s || h2s->st == H2_SS_CLOSED) {
1990 ret = 1;
1991 goto out;
1992 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001993
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001994 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1995 * RST_STREAM in response to a RST_STREAM frame.
1996 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001997 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001998 ret = 1;
1999 goto ignore;
2000 }
2001
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002002 if (h2c_mux_busy(h2c, h2s)) {
2003 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002004 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002005 }
2006
Willy Tarreau9c218e72019-05-26 10:08:28 +02002007 /* len: 4, type: 3, flags: none */
2008 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2009 write_n32(str + 5, h2s->id);
2010 write_n32(str + 9, h2s->errcode);
2011
Willy Tarreaubcc45952019-05-26 10:05:50 +02002012 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002013 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002014 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002015 h2c->flags |= H2_CF_MUX_MALLOC;
2016 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002017 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002018 }
2019
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002020 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002021 if (unlikely(ret <= 0)) {
2022 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002023 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2024 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002025 h2c->flags |= H2_CF_MUX_MFULL;
2026 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002027 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002028 }
2029 else {
2030 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002031 ret = 0;
2032 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002033 }
2034 }
2035
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002036 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002037 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002038 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002039 out:
2040 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002041 return ret;
2042}
2043
2044/* Try to send an RST_STREAM frame on the connection for the stream being
2045 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002046 * error code, even if the stream is one of the dummy ones, and will update
2047 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002048 *
2049 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2050 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002051 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002052 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002053 */
2054static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2055{
2056 struct buffer *res;
2057 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002058 int ret = 0;
2059
2060 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002061
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002062 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2063 * RST_STREAM in response to a RST_STREAM frame.
2064 */
2065 if (h2c->dft == H2_FT_RST_STREAM) {
2066 ret = 1;
2067 goto ignore;
2068 }
2069
Willy Tarreau27a84c92017-10-17 08:10:17 +02002070 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002071 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002072 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002073 }
2074
Willy Tarreau9c218e72019-05-26 10:08:28 +02002075 /* len: 4, type: 3, flags: none */
2076 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2077
2078 write_n32(str + 5, h2c->dsi);
2079 write_n32(str + 9, h2s->errcode);
2080
Willy Tarreaubcc45952019-05-26 10:05:50 +02002081 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002082 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002083 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002084 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002085 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002086 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002087 }
2088
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002089 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002090 if (unlikely(ret <= 0)) {
2091 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002092 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2093 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002094 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002095 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002096 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002097 }
2098 else {
2099 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002100 ret = 0;
2101 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002102 }
2103 }
2104
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002105 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002106 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002107 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002108 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002109 }
2110
Willy Tarreau7838a792019-08-12 18:42:03 +02002111 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002112 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002113 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002114 return ret;
2115}
2116
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002117/* try to send an empty DATA frame with the ES flag set to notify about the
2118 * end of stream and match a shutdown(write). If an ES was already sent as
2119 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2120 * on success or zero if nothing was done. In case of lack of room to write the
2121 * message, it subscribes the requesting stream to future notifications.
2122 */
2123static int h2_send_empty_data_es(struct h2s *h2s)
2124{
2125 struct h2c *h2c = h2s->h2c;
2126 struct buffer *res;
2127 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002128 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002129
Willy Tarreau7838a792019-08-12 18:42:03 +02002130 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2131
2132 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2133 ret = 1;
2134 goto out;
2135 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002136
2137 if (h2c_mux_busy(h2c, h2s)) {
2138 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002139 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002140 }
2141
Willy Tarreau9c218e72019-05-26 10:08:28 +02002142 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2143 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2144 write_n32(str + 5, h2s->id);
2145
Willy Tarreaubcc45952019-05-26 10:05:50 +02002146 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002147 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002148 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002149 h2c->flags |= H2_CF_MUX_MALLOC;
2150 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002151 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002152 }
2153
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002154 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002155 if (likely(ret > 0)) {
2156 h2s->flags |= H2_SF_ES_SENT;
2157 }
2158 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002159 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2160 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002161 h2c->flags |= H2_CF_MUX_MFULL;
2162 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002163 }
2164 else {
2165 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002166 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002167 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002168 out:
2169 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002170 return ret;
2171}
2172
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002173/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002174 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002175 * is automatically updated accordingly. If the stream is orphaned, it is
2176 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002177 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002178static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002179{
Willy Tarreau7838a792019-08-12 18:42:03 +02002180 struct h2c *h2c = h2s->h2c;
2181
2182 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2183
Christopher Fauletf02ca002019-03-07 16:21:34 +01002184 if (!h2s->cs) {
2185 /* this stream was already orphaned */
2186 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002187 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002188 return;
2189 }
2190
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002191 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002192 if (h2s->st == H2_SS_OPEN)
2193 h2s->st = H2_SS_HREM;
2194 else if (h2s->st == H2_SS_HLOC)
2195 h2s_close(h2s);
2196 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002197
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002198 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2199 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2200 h2s->cs->flags |= CS_FL_ERR_PENDING;
2201 if (h2s->cs->flags & CS_FL_EOS)
2202 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002203
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002204 if (h2s->st < H2_SS_ERROR)
2205 h2s->st = H2_SS_ERROR;
2206 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002207
2208 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002209 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002210}
2211
2212/* wake the streams attached to the connection, whose id is greater than <last>
2213 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002214 */
Willy Tarreau23482912019-05-07 15:23:14 +02002215static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002216{
2217 struct eb32_node *node;
2218 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002219
Willy Tarreau7838a792019-08-12 18:42:03 +02002220 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2221
Christopher Fauletf02ca002019-03-07 16:21:34 +01002222 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002223 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2224 while (node) {
2225 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002226 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002227 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002228 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002229
Christopher Fauletf02ca002019-03-07 16:21:34 +01002230 /* Wake all streams with unassigned ID (ID == 0) */
2231 node = eb32_lookup(&h2c->streams_by_id, 0);
2232 while (node) {
2233 h2s = container_of(node, struct h2s, by_id);
2234 if (h2s->id > 0)
2235 break;
2236 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002237 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002238 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002239
2240 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002241}
2242
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002243/* Wake up all blocked streams whose window size has become positive after the
2244 * mux's initial window was adjusted. This should be done after having processed
2245 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002246 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002247static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002248{
2249 struct h2s *h2s;
2250 struct eb32_node *node;
2251
Willy Tarreau7838a792019-08-12 18:42:03 +02002252 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2253
Willy Tarreau3421aba2017-07-27 15:41:03 +02002254 node = eb32_first(&h2c->streams_by_id);
2255 while (node) {
2256 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002257 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002258 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002259 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002260 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2261 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002262 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002263 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002264 node = eb32_next(node);
2265 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002266
2267 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002268}
2269
2270/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2271 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002272 * return an error in h2c. The caller must have already verified frame length
2273 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002274 */
2275static int h2c_handle_settings(struct h2c *h2c)
2276{
2277 unsigned int offset;
2278 int error;
2279
Willy Tarreau7838a792019-08-12 18:42:03 +02002280 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2281
Willy Tarreau3421aba2017-07-27 15:41:03 +02002282 if (h2c->dff & H2_F_SETTINGS_ACK) {
2283 if (h2c->dfl) {
2284 error = H2_ERR_FRAME_SIZE_ERROR;
2285 goto fail;
2286 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002287 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002288 }
2289
Willy Tarreau3421aba2017-07-27 15:41:03 +02002290 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002291 if (b_data(&h2c->dbuf) < h2c->dfl) {
2292 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002293 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002294 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002295
2296 /* parse the frame */
2297 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002298 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2299 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002300
2301 switch (type) {
2302 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2303 /* we need to update all existing streams with the
2304 * difference from the previous iws.
2305 */
2306 if (arg < 0) { // RFC7540#6.5.2
2307 error = H2_ERR_FLOW_CONTROL_ERROR;
2308 goto fail;
2309 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002310 h2c->miw = arg;
2311 break;
2312 case H2_SETTINGS_MAX_FRAME_SIZE:
2313 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002314 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 +02002315 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002316 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002317 goto fail;
2318 }
2319 h2c->mfs = arg;
2320 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002321 case H2_SETTINGS_HEADER_TABLE_SIZE:
2322 h2c->flags |= H2_CF_SHTS_UPDATED;
2323 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002324 case H2_SETTINGS_ENABLE_PUSH:
2325 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002326 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002327 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002328 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002329 goto fail;
2330 }
2331 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002332 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2333 if (h2c->flags & H2_CF_IS_BACK) {
2334 /* the limit is only for the backend; for the frontend it is our limit */
2335 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2336 arg = h2_settings_max_concurrent_streams;
2337 h2c->streams_limit = arg;
2338 }
2339 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002340 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002341 if (arg == 1)
2342 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002343 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002344 }
2345 }
2346
2347 /* need to ACK this frame now */
2348 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002349 done:
2350 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002351 return 1;
2352 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002353 if (!(h2c->flags & H2_CF_IS_BACK))
2354 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002355 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002356 out0:
2357 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 +02002358 return 0;
2359}
2360
2361/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2362 * success or one of the h2_status values.
2363 */
2364static int h2c_ack_settings(struct h2c *h2c)
2365{
2366 struct buffer *res;
2367 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002368 int ret = 0;
2369
2370 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002371
2372 if (h2c_mux_busy(h2c, NULL)) {
2373 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002374 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002375 }
2376
Willy Tarreau9c218e72019-05-26 10:08:28 +02002377 memcpy(str,
2378 "\x00\x00\x00" /* length : 0 (no data) */
2379 "\x04" "\x01" /* type : 4, flags : ACK */
2380 "\x00\x00\x00\x00" /* stream ID */, 9);
2381
Willy Tarreaubcc45952019-05-26 10:05:50 +02002382 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002383 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002384 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002385 h2c->flags |= H2_CF_MUX_MALLOC;
2386 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002387 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002388 }
2389
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002390 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002391 if (unlikely(ret <= 0)) {
2392 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002393 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2394 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002395 h2c->flags |= H2_CF_MUX_MFULL;
2396 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002397 }
2398 else {
2399 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002400 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002401 }
2402 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002403 out:
2404 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002405 return ret;
2406}
2407
Willy Tarreaucf68c782017-10-10 17:11:41 +02002408/* processes a PING frame and schedules an ACK if needed. The caller must pass
2409 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002410 * missing data. The caller must have already verified frame length
2411 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002412 */
2413static int h2c_handle_ping(struct h2c *h2c)
2414{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002415 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002416 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002417 h2c->st0 = H2_CS_FRAME_A;
2418 return 1;
2419}
2420
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002421/* Try to send a window update for stream id <sid> and value <increment>.
2422 * Returns > 0 on success or zero on missing room or failure. It may return an
2423 * error in h2c.
2424 */
2425static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2426{
2427 struct buffer *res;
2428 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002429 int ret = 0;
2430
2431 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002432
2433 if (h2c_mux_busy(h2c, NULL)) {
2434 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002435 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002436 }
2437
Willy Tarreau9c218e72019-05-26 10:08:28 +02002438 /* length: 4, type: 8, flags: none */
2439 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2440 write_n32(str + 5, sid);
2441 write_n32(str + 9, increment);
2442
Willy Tarreaubcc45952019-05-26 10:05:50 +02002443 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002444 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002445 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002446 h2c->flags |= H2_CF_MUX_MALLOC;
2447 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002448 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002449 }
2450
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002451 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002452 if (unlikely(ret <= 0)) {
2453 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002454 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2455 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002456 h2c->flags |= H2_CF_MUX_MFULL;
2457 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002458 }
2459 else {
2460 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002461 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002462 }
2463 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002464 out:
2465 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002466 return ret;
2467}
2468
2469/* try to send pending window update for the connection. It's safe to call it
2470 * with no pending updates. Returns > 0 on success or zero on missing room or
2471 * failure. It may return an error in h2c.
2472 */
2473static int h2c_send_conn_wu(struct h2c *h2c)
2474{
2475 int ret = 1;
2476
Willy Tarreau7838a792019-08-12 18:42:03 +02002477 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2478
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002479 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002480 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002481
Willy Tarreau97aaa672018-12-23 09:49:04 +01002482 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2483 /* increase the advertised connection window to 2G on
2484 * first update.
2485 */
2486 h2c->flags |= H2_CF_WINDOW_OPENED;
2487 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2488 }
2489
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002490 /* send WU for the connection */
2491 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2492 if (ret > 0)
2493 h2c->rcvd_c = 0;
2494
Willy Tarreau7838a792019-08-12 18:42:03 +02002495 out:
2496 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002497 return ret;
2498}
2499
2500/* try to send pending window update for the current dmux stream. It's safe to
2501 * call it with no pending updates. Returns > 0 on success or zero on missing
2502 * room or failure. It may return an error in h2c.
2503 */
2504static int h2c_send_strm_wu(struct h2c *h2c)
2505{
2506 int ret = 1;
2507
Willy Tarreau7838a792019-08-12 18:42:03 +02002508 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2509
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002510 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002511 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002512
2513 /* send WU for the stream */
2514 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2515 if (ret > 0)
2516 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002517 out:
2518 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002519 return ret;
2520}
2521
Willy Tarreaucf68c782017-10-10 17:11:41 +02002522/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2523 * success, 0 on missing data or one of the h2_status values.
2524 */
2525static int h2c_ack_ping(struct h2c *h2c)
2526{
2527 struct buffer *res;
2528 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002529 int ret = 0;
2530
2531 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002532
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002533 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002534 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002535
2536 if (h2c_mux_busy(h2c, NULL)) {
2537 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002538 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002539 }
2540
Willy Tarreaucf68c782017-10-10 17:11:41 +02002541 memcpy(str,
2542 "\x00\x00\x08" /* length : 8 (same payload) */
2543 "\x06" "\x01" /* type : 6, flags : ACK */
2544 "\x00\x00\x00\x00" /* stream ID */, 9);
2545
2546 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002547 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002548
Willy Tarreau9c218e72019-05-26 10:08:28 +02002549 res = br_tail(h2c->mbuf);
2550 retry:
2551 if (!h2_get_buf(h2c, res)) {
2552 h2c->flags |= H2_CF_MUX_MALLOC;
2553 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002554 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002555 }
2556
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002557 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002558 if (unlikely(ret <= 0)) {
2559 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002560 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2561 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002562 h2c->flags |= H2_CF_MUX_MFULL;
2563 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002564 }
2565 else {
2566 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002567 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002568 }
2569 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002570 out:
2571 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002572 return ret;
2573}
2574
Willy Tarreau26f95952017-07-27 17:18:30 +02002575/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2576 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002577 * h2c or h2s. The caller must have already verified frame length and stream ID
2578 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002579 */
2580static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2581{
2582 int32_t inc;
2583 int error;
2584
Willy Tarreau7838a792019-08-12 18:42:03 +02002585 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2586
Willy Tarreau26f95952017-07-27 17:18:30 +02002587 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002588 if (b_data(&h2c->dbuf) < h2c->dfl) {
2589 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002590 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002591 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002592
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002593 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002594
2595 if (h2c->dsi != 0) {
2596 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002597
2598 /* it's not an error to receive WU on a closed stream */
2599 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002600 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002601
2602 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002603 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 +02002604 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002605 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002606 goto strm_err;
2607 }
2608
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002609 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002610 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 +02002611 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002612 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002613 goto strm_err;
2614 }
2615
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002616 h2s->sws += inc;
2617 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002618 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002619 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002620 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2621 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002622 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002623 }
2624 }
2625 else {
2626 /* connection window update */
2627 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002628 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002629 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002630 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002631 goto conn_err;
2632 }
2633
2634 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2635 error = H2_ERR_FLOW_CONTROL_ERROR;
2636 goto conn_err;
2637 }
2638
2639 h2c->mws += inc;
2640 }
2641
Willy Tarreau7838a792019-08-12 18:42:03 +02002642 done:
2643 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002644 return 1;
2645
2646 conn_err:
2647 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002648 out0:
2649 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 +02002650 return 0;
2651
2652 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002653 h2s_error(h2s, error);
2654 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002655 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002656 return 0;
2657}
2658
Willy Tarreaue96b0922017-10-30 00:28:29 +01002659/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002660 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2661 * have already verified frame length and stream ID validity. Described in
2662 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002663 */
2664static int h2c_handle_goaway(struct h2c *h2c)
2665{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002666 int last;
2667
Willy Tarreau7838a792019-08-12 18:42:03 +02002668 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002669 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002670 if (b_data(&h2c->dbuf) < h2c->dfl) {
2671 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002672 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002673 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002674 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002675
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002676 last = h2_get_n32(&h2c->dbuf, 0);
2677 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002678 if (h2c->last_sid < 0)
2679 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002680 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002681 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002682 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002683}
2684
Willy Tarreau92153fc2017-12-03 19:46:19 +01002685/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002686 * invalid. Returns > 0 on success or zero on missing data. It may return an
2687 * error in h2c. The caller must have already verified frame length and stream
2688 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002689 */
2690static int h2c_handle_priority(struct h2c *h2c)
2691{
Willy Tarreau7838a792019-08-12 18:42:03 +02002692 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2693
Willy Tarreau92153fc2017-12-03 19:46:19 +01002694 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002695 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002696 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002697 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002698 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002699 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002700
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002701 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002702 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002703 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002704 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002705 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002706 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002707 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002708 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002709 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002710 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002711}
2712
Willy Tarreaucd234e92017-08-18 10:59:39 +02002713/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002714 * Returns > 0 on success or zero on missing data. The caller must have already
2715 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002716 */
2717static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2718{
Willy Tarreau7838a792019-08-12 18:42:03 +02002719 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2720
Willy Tarreaucd234e92017-08-18 10:59:39 +02002721 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002722 if (b_data(&h2c->dbuf) < h2c->dfl) {
2723 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 +02002724 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002725 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002726 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002727
2728 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002729 if (h2s->st == H2_SS_CLOSED) {
2730 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 +02002731 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002732 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002733
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002734 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002735 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002736
2737 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002738 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002739 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002740 }
2741
2742 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002743 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002744 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002745}
2746
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002747/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2748 * It may return an error in h2c or h2s. The caller must consider that the
2749 * return value is the new h2s in case one was allocated (most common case).
2750 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002751 * errors here are reported as connection errors since it's impossible to
2752 * recover from such errors after the compression context has been altered.
2753 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002754static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002755{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002756 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002757 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002758 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002759 int error;
2760
Willy Tarreau7838a792019-08-12 18:42:03 +02002761 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2762
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002763 if (!b_size(&h2c->dbuf)) {
2764 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002765 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002766 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002767
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002768 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2769 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002770 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002771 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002772
2773 /* now either the frame is complete or the buffer is complete */
2774 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002775 /* The stream exists/existed, this must be a trailers frame */
2776 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002777 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002778 /* unrecoverable error ? */
2779 if (h2c->st0 >= H2_CS_ERROR)
2780 goto out;
2781
Christopher Faulet485da0b2021-10-08 08:56:00 +02002782 if (error == 0) {
2783 /* Demux not blocked because of the stream, it is an incomplete frame */
2784 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2785 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002786 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002787 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002788
2789 if (error < 0) {
2790 /* Failed to decode this frame (e.g. too large request)
2791 * but the HPACK decompressor is still synchronized.
2792 */
2793 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2794 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002795 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002796 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002797 goto done;
2798 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002799 /* the connection was already killed by an RST, let's consume
2800 * the data and send another RST.
2801 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002802 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002803 h2s = (struct h2s*)h2_error_stream;
2804 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002805 }
2806 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2807 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2808 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002809 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002810 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002811 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002812 goto conn_err;
2813 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002814 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2815 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002816
Amaury Denoyelle74162742020-12-11 17:53:05 +01002817 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002818
Willy Tarreau25919232019-01-03 14:48:18 +01002819 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002820 if (h2c->st0 >= H2_CS_ERROR)
2821 goto out;
2822
Willy Tarreau25919232019-01-03 14:48:18 +01002823 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002824 if (error == 0) {
2825 /* Demux not blocked because of the stream, it is an incomplete frame */
2826 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2827 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002828 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002829 }
Willy Tarreau25919232019-01-03 14:48:18 +01002830
2831 /* Failed to decode this stream (e.g. too large request)
2832 * but the HPACK decompressor is still synchronized.
2833 */
2834 h2s = (struct h2s*)h2_error_stream;
2835 goto send_rst;
2836 }
2837
Willy Tarreau29268e92021-06-17 08:29:14 +02002838 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2839
Willy Tarreau22de8d32018-09-05 19:55:58 +02002840 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002841 * positively from h2c_frt_stream_new(), the stream will report the error,
2842 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002843 *
2844 * Xfer the rxbuf to the stream. On success, the new stream owns the
2845 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002846 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002847 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002848 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002849 h2s = (struct h2s*)h2_refused_stream;
2850 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002851 }
2852
2853 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002854 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002855 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002856
Willy Tarreau88d138e2019-01-02 19:38:14 +01002857 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002858 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002859 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002860
2861 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002862 if (h2s->st == H2_SS_OPEN)
2863 h2s->st = H2_SS_HREM;
2864 else
2865 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002866 }
2867
Willy Tarreau3a429f02019-01-03 11:41:50 +01002868 /* update the max stream ID if the request is being processed */
2869 if (h2s->id > h2c->max_id)
2870 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002871
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002872 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002873
2874 conn_err:
2875 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002876 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002877
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002878 out:
2879 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002880 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 +01002881 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002882
2883 send_rst:
2884 /* make the demux send an RST for the current stream. We may only
2885 * do this if we're certain that the HEADERS frame was properly
2886 * decompressed so that the HPACK decoder is still kept up to date.
2887 */
2888 h2_release_buf(h2c, &rxbuf);
2889 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002890
Willy Tarreau022e5e52020-09-10 09:33:15 +02002891 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 +02002892 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002893 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002894}
2895
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002896/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2897 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2898 * errors here are reported as connection errors since it's impossible to
2899 * recover from such errors after the compression context has been altered.
2900 */
2901static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2902{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002903 struct buffer rxbuf = BUF_NULL;
2904 unsigned long long body_len = 0;
2905 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002906 int error;
2907
Willy Tarreau7838a792019-08-12 18:42:03 +02002908 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2909
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002910 if (!b_size(&h2c->dbuf)) {
2911 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002912 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002913 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002914
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002915 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2916 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002917 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002918 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002919
Christopher Faulet6884aa32019-09-23 15:28:20 +02002920 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002921 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002922 }
2923 else {
2924 /* the connection was already killed by an RST, let's consume
2925 * the data and send another RST.
2926 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002927 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002928 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002929 h2c->st0 = H2_CS_FRAME_E;
2930 goto send_rst;
2931 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002932
Willy Tarreau25919232019-01-03 14:48:18 +01002933 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002934 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002935 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002936
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002937 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2938 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002939 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 +01002940 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2941 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002942 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002943 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002944 }
2945
Willy Tarreau25919232019-01-03 14:48:18 +01002946 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002947 if (error == 0) {
2948 /* Demux not blocked because of the stream, it is an incomplete frame */
2949 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2950 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002951 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002952 }
Willy Tarreau25919232019-01-03 14:48:18 +01002953
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002954 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002955 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 +01002956 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002957 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002958 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002959 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002960 }
2961
Christopher Fauletfa922f02019-05-07 10:55:17 +02002962 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002963 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002964
Willy Tarreau927b88b2019-03-04 08:03:25 +01002965 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002966 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002967 else if (h2s->flags & H2_SF_ES_RCVD) {
2968 if (h2s->st == H2_SS_OPEN)
2969 h2s->st = H2_SS_HREM;
2970 else if (h2s->st == H2_SS_HLOC)
2971 h2s_close(h2s);
2972 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002973
Christopher Fauletf95f8762021-01-22 11:59:07 +01002974 /* Unblock busy server h2s waiting for the response headers to validate
2975 * the tunnel establishment or the end of the response of an oborted
2976 * tunnel
2977 */
2978 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2979 (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)) {
2980 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2981 h2s->flags &= ~H2_SF_BLK_MBUSY;
2982 }
2983
Willy Tarreau9abb3172021-06-16 18:32:42 +02002984 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 +02002985 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002986 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002987 fail:
2988 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2989 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002990
2991 send_rst:
2992 /* make the demux send an RST for the current stream. We may only
2993 * do this if we're certain that the HEADERS frame was properly
2994 * decompressed so that the HPACK decoder is still kept up to date.
2995 */
2996 h2_release_buf(h2c, &rxbuf);
2997 h2c->st0 = H2_CS_FRAME_E;
2998
Willy Tarreau022e5e52020-09-10 09:33:15 +02002999 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 +02003000 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3001 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003002}
3003
Willy Tarreau454f9052017-10-26 19:40:35 +02003004/* processes a DATA frame. Returns > 0 on success or zero on missing data.
3005 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
3006 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003007static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003008{
3009 int error;
3010
Willy Tarreau7838a792019-08-12 18:42:03 +02003011 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3012
Willy Tarreau454f9052017-10-26 19:40:35 +02003013 /* note that empty DATA frames are perfectly valid and sometimes used
3014 * to signal an end of stream (with the ES flag).
3015 */
3016
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003017 if (!b_size(&h2c->dbuf) && h2c->dfl) {
3018 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003019 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003020 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003021
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003022 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
3023 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003024 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003025 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003026
3027 /* now either the frame is complete or the buffer is complete */
3028
Willy Tarreau454f9052017-10-26 19:40:35 +02003029 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3030 /* RFC7540#6.1 */
3031 error = H2_ERR_STREAM_CLOSED;
3032 goto strm_err;
3033 }
3034
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003035 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003036 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003037 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 +01003038 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003039 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003040 goto strm_err;
3041 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003042 if (!(h2c->flags & H2_CF_IS_BACK) &&
3043 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3044 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3045 /* a tunnel attempt was aborted but the client still try to send some raw data.
3046 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3047 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3048 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003049 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003050 */
3051 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3052 error = H2_ERR_CANCEL;
3053 goto strm_err;
3054 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003055
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003056 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003057 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003058
Willy Tarreau454f9052017-10-26 19:40:35 +02003059 /* call the upper layers to process the frame, then let the upper layer
3060 * notify the stream about any change.
3061 */
3062 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003063 /* The upper layer has already closed, this may happen on
3064 * 4xx/redirects during POST, or when receiving a response
3065 * from an H2 server after the client has aborted.
3066 */
3067 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003068 goto strm_err;
3069 }
3070
Willy Tarreau8f650c32017-11-21 19:36:21 +01003071 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003072 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003073
Willy Tarreau721c9742017-11-07 11:05:42 +01003074 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003075 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003076 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003077 }
3078
3079 /* check for completion : the callee will change this to FRAME_A or
3080 * FRAME_H once done.
3081 */
3082 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003083 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003084
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003085 /* last frame */
3086 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003087 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003088 if (h2s->st == H2_SS_OPEN)
3089 h2s->st = H2_SS_HREM;
3090 else
3091 h2s_close(h2s);
3092
Willy Tarreau1915ca22019-01-24 11:49:37 +01003093 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3094 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003095 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 +01003096 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003097 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003098 goto strm_err;
3099 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003100 }
3101
Christopher Fauletf95f8762021-01-22 11:59:07 +01003102 /* Unblock busy server h2s waiting for the end of the response for an
3103 * aborted tunnel
3104 */
3105 if ((h2c->flags & H2_CF_IS_BACK) &&
3106 (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)) {
3107 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3108 h2s->flags &= ~H2_SF_BLK_MBUSY;
3109 }
3110
Willy Tarreau7838a792019-08-12 18:42:03 +02003111 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003112 return 1;
3113
Willy Tarreau454f9052017-10-26 19:40:35 +02003114 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003115 h2s_error(h2s, error);
3116 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003117 fail:
3118 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 +02003119 return 0;
3120}
3121
Willy Tarreau63864812019-08-07 14:25:20 +02003122/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3123 * valid for the current stream state. This is needed only after parsing the
3124 * frame header but in practice it can be performed at any time during
3125 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3126 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3127 */
3128static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3129{
Willy Tarreau7838a792019-08-12 18:42:03 +02003130 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3131
Willy Tarreau63864812019-08-07 14:25:20 +02003132 if (h2s->st == H2_SS_IDLE &&
3133 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3134 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3135 * this state MUST be treated as a connection error
3136 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003137 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 +02003138 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003139 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003140 /* only log if no other stream can report the error */
3141 sess_log(h2c->conn->owner);
3142 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003143 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003144 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 +02003145 return 0;
3146 }
3147
Willy Tarreau57a18162019-11-24 14:57:53 +01003148 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3149 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003150 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 +01003151 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003152 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003153 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3154 return 0;
3155 }
3156
Willy Tarreau63864812019-08-07 14:25:20 +02003157 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3158 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3159 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3160 * this state MUST be treated as a stream error.
3161 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3162 * PUSH_PROMISE/CONTINUATION cause connection errors.
3163 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003164 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003165 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 +02003166 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003167 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003168 }
3169 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003170 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003171 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003172 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 +02003173 return 0;
3174 }
3175
3176 /* Below the management of frames received in closed state is a
3177 * bit hackish because the spec makes strong differences between
3178 * streams closed by receiving RST, sending RST, and seeing ES
3179 * in both directions. In addition to this, the creation of a
3180 * new stream reusing the identifier of a closed one will be
3181 * detected here. Given that we cannot keep track of all closed
3182 * streams forever, we consider that unknown closed streams were
3183 * closed on RST received, which allows us to respond with an
3184 * RST without breaking the connection (eg: to abort a transfer).
3185 * Some frames have to be silently ignored as well.
3186 */
3187 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3188 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3189 /* #5.1.1: The identifier of a newly
3190 * established stream MUST be numerically
3191 * greater than all streams that the initiating
3192 * endpoint has opened or reserved. This
3193 * governs streams that are opened using a
3194 * HEADERS frame and streams that are reserved
3195 * using PUSH_PROMISE. An endpoint that
3196 * receives an unexpected stream identifier
3197 * MUST respond with a connection error.
3198 */
3199 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003200 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 +02003201 return 0;
3202 }
3203
Willy Tarreau4c08f122019-09-26 08:47:15 +02003204 if (h2s->flags & H2_SF_RST_RCVD &&
3205 !(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 +02003206 /* RFC7540#5.1:closed: an endpoint that
3207 * receives any frame other than PRIORITY after
3208 * receiving a RST_STREAM MUST treat that as a
3209 * stream error of type STREAM_CLOSED.
3210 *
3211 * Note that old streams fall into this category
3212 * and will lead to an RST being sent.
3213 *
3214 * However, we cannot generalize this to all frame types. Those
3215 * carrying compression state must still be processed before
3216 * being dropped or we'll desynchronize the decoder. This can
3217 * happen with request trailers received after sending an
3218 * RST_STREAM, or with header/trailers responses received after
3219 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003220 *
3221 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003222 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003223 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003224 */
3225 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3226 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003227 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 +02003228 return 0;
3229 }
3230
3231 /* RFC7540#5.1:closed: if this state is reached as a
3232 * result of sending a RST_STREAM frame, the peer that
3233 * receives the RST_STREAM might have already sent
3234 * frames on the stream that cannot be withdrawn. An
3235 * endpoint MUST ignore frames that it receives on
3236 * closed streams after it has sent a RST_STREAM
3237 * frame. An endpoint MAY choose to limit the period
3238 * over which it ignores frames and treat frames that
3239 * arrive after this time as being in error.
3240 */
3241 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3242 /* RFC7540#5.1:closed: any frame other than
3243 * PRIO/WU/RST in this state MUST be treated as
3244 * a connection error
3245 */
3246 if (h2c->dft != H2_FT_RST_STREAM &&
3247 h2c->dft != H2_FT_PRIORITY &&
3248 h2c->dft != H2_FT_WINDOW_UPDATE) {
3249 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003250 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 +02003251 return 0;
3252 }
3253 }
3254 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003255 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003256 return 1;
3257}
3258
Willy Tarreaubc933932017-10-09 16:21:43 +02003259/* process Rx frames to be demultiplexed */
3260static void h2_process_demux(struct h2c *h2c)
3261{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003262 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003263 struct h2_fh hdr;
3264 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003265 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003266
Willy Tarreau7838a792019-08-12 18:42:03 +02003267 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3268
Willy Tarreau081d4722017-05-16 21:51:05 +02003269 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003270 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003271
3272 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3273 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003274 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003275 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003276 goto out;
3277
Willy Tarreau52eed752017-09-22 15:05:09 +02003278 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3279 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003280 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003281 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003282 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003283 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003284 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003285 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003286 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003287 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003288 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003289 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003290
3291 h2c->max_id = 0;
3292 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003293 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003294 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003295
3296 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003297 /* ensure that what is pending is a valid SETTINGS frame
3298 * without an ACK.
3299 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003300 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 +02003301 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003302 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003303 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003304 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003305 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 +02003306 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003307 if (!(h2c->flags & H2_CF_IS_BACK))
3308 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003309 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003310 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003311 }
3312
3313 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3314 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003315 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 +02003316 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3317 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003318 if (!(h2c->flags & H2_CF_IS_BACK))
3319 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003320 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003321 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003322 }
3323
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003324 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003325 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003326 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 +02003327 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3328 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);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003331 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003332 }
3333
Willy Tarreau3bf69182018-12-21 15:34:50 +01003334 /* that's OK, switch to FRAME_P to process it. This is
3335 * a SETTINGS frame whose header has already been
3336 * deleted above.
3337 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003338 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003339 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003340 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003341 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003342 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003343
3344 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003345 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003346 int ret = 0;
3347
Willy Tarreau7838a792019-08-12 18:42:03 +02003348 if (!b_data(&h2c->dbuf)) {
3349 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003350 h2c->flags |= H2_CF_DEM_SHORT_READ;
3351 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003352 }
3353
3354 if (h2c->st0 >= H2_CS_ERROR) {
3355 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003356 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003357 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003358
3359 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003360 h2c->rcvd_s = 0;
3361
Willy Tarreau7838a792019-08-12 18:42:03 +02003362 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003363 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3364 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003365 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003366 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003367
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003368 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003369 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 +02003370 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003371 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003372 /* only log if no other stream can report the error */
3373 sess_log(h2c->conn->owner);
3374 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003375 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003376 break;
3377 }
3378
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003379 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003380 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3381 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3382 * we read the pad length and drop it from the remaining
3383 * payload (one byte + the 9 remaining ones = 10 total
3384 * removed), so we have a frame payload starting after the
3385 * pad len. Flow controlled frames (DATA) also count the
3386 * padlen in the flow control, so it must be adjusted.
3387 */
3388 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003389 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 +01003390 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003391 if (!(h2c->flags & H2_CF_IS_BACK))
3392 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003393 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003394 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003395 }
3396 hdr.len--;
3397
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003398 if (b_data(&h2c->dbuf) < 10) {
3399 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003400 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003401 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003402
3403 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3404
3405 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003406 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 +01003407 /* RFC7540#6.1 : pad length = length of
3408 * frame payload or greater => error.
3409 */
3410 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003411 if (!(h2c->flags & H2_CF_IS_BACK))
3412 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003413 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003414 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003415 }
3416
3417 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3418 h2c->rcvd_c++;
3419 h2c->rcvd_s++;
3420 }
3421 b_del(&h2c->dbuf, 1);
3422 }
3423 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003424
3425 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003426 h2c->dfl = hdr.len;
3427 h2c->dsi = hdr.sid;
3428 h2c->dft = hdr.ft;
3429 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003430 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003431 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 +02003432 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003433
3434 /* check for minimum basic frame format validity */
3435 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3436 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003437 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 +01003438 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003439 if (!(h2c->flags & H2_CF_IS_BACK))
3440 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003441 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003442 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003443 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003444
3445 /* transition to HEADERS frame ends the keep-alive idle
3446 * timer and starts the http-request idle delay.
3447 */
3448 if (hdr.ft == H2_FT_HEADERS)
3449 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003450 }
3451
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003452 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3453 * H2_CS_FRAME_P indicates an incomplete previous operation
3454 * (most often the first attempt) and requires some validity
3455 * checks for the frame and the current state. The two other
3456 * ones are set after completion (or abortion) and must skip
3457 * validity checks.
3458 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003459 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3460
Willy Tarreau567beb82018-12-18 16:52:44 +01003461 if (tmp_h2s != h2s && h2s && h2s->cs &&
3462 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003463 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003464 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003465 (h2s->flags & H2_SF_ES_RCVD) ||
3466 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003467 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003468 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003469 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003470 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003471 }
3472 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003473
Willy Tarreau63864812019-08-07 14:25:20 +02003474 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003475 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3476 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003477 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003478 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003479
Willy Tarreau7e98c052017-10-10 15:56:59 +02003480 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003481 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003482 if (h2c->st0 == H2_CS_FRAME_P) {
3483 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003484 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003485 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003486 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003487
Willy Tarreau7838a792019-08-12 18:42:03 +02003488 if (h2c->st0 == H2_CS_FRAME_A) {
3489 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 +02003490 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003491 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003492 break;
3493
Willy Tarreaucf68c782017-10-10 17:11:41 +02003494 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003495 if (h2c->st0 == H2_CS_FRAME_P) {
3496 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003497 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003498 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003499
Willy Tarreau7838a792019-08-12 18:42:03 +02003500 if (h2c->st0 == H2_CS_FRAME_A) {
3501 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 +02003502 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003503 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003504 break;
3505
Willy Tarreau26f95952017-07-27 17:18:30 +02003506 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003507 if (h2c->st0 == H2_CS_FRAME_P) {
3508 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 +02003509 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003510 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003511 break;
3512
Willy Tarreau61290ec2017-10-17 08:19:21 +02003513 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003514 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003515 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3516 * frames' parsers consume all following CONTINUATION
3517 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003518 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003519 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 +01003520 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003521 if (!(h2c->flags & H2_CF_IS_BACK))
3522 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003523 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003524 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003525
Willy Tarreau13278b42017-10-13 19:23:14 +02003526 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003527 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003528 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003529 if (h2c->flags & H2_CF_IS_BACK)
3530 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3531 else
3532 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003533 if (tmp_h2s) {
3534 h2s = tmp_h2s;
3535 ret = 1;
3536 }
3537 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003538 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003539 break;
3540
Willy Tarreau454f9052017-10-26 19:40:35 +02003541 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003542 if (h2c->st0 == H2_CS_FRAME_P) {
3543 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003544 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003545 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003546 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003547
Willy Tarreau7838a792019-08-12 18:42:03 +02003548 if (h2c->st0 == H2_CS_FRAME_A) {
3549 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003550 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003551 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003552 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003553
Willy Tarreau92153fc2017-12-03 19:46:19 +01003554 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003555 if (h2c->st0 == H2_CS_FRAME_P) {
3556 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003557 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003558 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003559 break;
3560
Willy Tarreaucd234e92017-08-18 10:59:39 +02003561 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003562 if (h2c->st0 == H2_CS_FRAME_P) {
3563 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 +02003564 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003565 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003566 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003567 break;
3568
Willy Tarreaue96b0922017-10-30 00:28:29 +01003569 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003570 if (h2c->st0 == H2_CS_FRAME_P) {
3571 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003572 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003573 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003574 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003575 break;
3576
Willy Tarreau1c661982017-10-30 13:52:01 +01003577 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003578 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003579 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003580 /* drop frames that we ignore. They may be larger than
3581 * the buffer so we drain all of their contents until
3582 * we reach the end.
3583 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003584 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3585 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003586 h2c->dfl -= ret;
3587 ret = h2c->dfl == 0;
3588 }
3589
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003590 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003591 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003592 if (h2s->st == H2_SS_ERROR) {
3593 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 +01003594 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003595 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003596
Willy Tarreau7838a792019-08-12 18:42:03 +02003597 if (h2c->st0 == H2_CS_FRAME_E) {
3598 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 +01003599 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003600 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003601
Willy Tarreau7e98c052017-10-10 15:56:59 +02003602 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003603 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003604 break;
3605
3606 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003607 if (h2c->dfl)
3608 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003609 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3610 b_del(&h2c->dbuf, ret);
3611 h2c->dfl -= ret;
3612 if (!h2c->dfl) {
3613 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3614 h2c->st0 = H2_CS_FRAME_H;
3615 h2c->dsi = -1;
3616 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003617 }
3618 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003619
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003620 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003621 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3622 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003623 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003624 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003625
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003626 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003627 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3628 if (h2c->flags & H2_CF_RCVD_SHUT)
3629 h2c->flags |= H2_CF_END_REACHED;
3630 }
3631
Willy Tarreau567beb82018-12-18 16:52:44 +01003632 if (h2s && h2s->cs &&
3633 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003634 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003635 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003636 (h2s->flags & H2_SF_ES_RCVD) ||
3637 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003638 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003639 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003640 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003641 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003642 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003643
Willy Tarreau7838a792019-08-12 18:42:03 +02003644 if (old_iw != h2c->miw) {
3645 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003646 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003647 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003648
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003649 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003650 out:
3651 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003652 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003653}
3654
Willy Tarreau989539b2020-01-10 17:01:29 +01003655/* resume each h2s eligible for sending in list head <head> */
3656static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3657{
3658 struct h2s *h2s, *h2s_back;
3659
3660 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3661
3662 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3663 if (h2c->mws <= 0 ||
3664 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3665 h2c->st0 >= H2_CS_ERROR)
3666 break;
3667
3668 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003669
Willy Tarreaud9464162020-01-10 18:25:07 +01003670 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003671 continue;
3672
Willy Tarreau5723f292020-01-10 15:16:57 +01003673 /* If the sender changed his mind and unsubscribed, let's just
3674 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003675 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003676 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3677 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003678 LIST_DEL_INIT(&h2s->list);
3679 continue;
3680 }
3681
Willy Tarreauf96508a2020-01-10 11:12:48 +01003682 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003683 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003684 tasklet_wakeup(h2s->subs->tasklet);
3685 h2s->subs->events &= ~SUB_RETRY_SEND;
3686 if (!h2s->subs->events)
3687 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003688 }
3689 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3690 tasklet_wakeup(h2s->shut_tl);
3691 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003692 }
3693
3694 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3695}
3696
Willy Tarreaubc933932017-10-09 16:21:43 +02003697/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3698 * the end.
3699 */
3700static int h2_process_mux(struct h2c *h2c)
3701{
Willy Tarreau7838a792019-08-12 18:42:03 +02003702 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3703
Willy Tarreau01b44822018-10-03 14:26:37 +02003704 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3705 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3706 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3707 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003708 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003709 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003710 goto fail;
3711 }
3712 h2c->st0 = H2_CS_SETTINGS1;
3713 }
3714 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003715 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003716 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003717 }
3718
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003719 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003720 if (h2c->rcvd_s > 0 &&
3721 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3722 h2c_send_strm_wu(h2c) < 0)
3723 goto fail;
3724
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003725 if (h2c->rcvd_c > 0 &&
3726 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3727 h2c_send_conn_wu(h2c) < 0)
3728 goto fail;
3729
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003730 /* First we always process the flow control list because the streams
3731 * waiting there were already elected for immediate emission but were
3732 * blocked just on this.
3733 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003734 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3735 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003736
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003737 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003738 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003739 if (h2c->st0 == H2_CS_ERROR) {
3740 if (h2c->max_id >= 0) {
3741 h2c_send_goaway_error(h2c, NULL);
3742 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003743 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003744 }
3745
3746 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3747 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003748 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003749 done:
3750 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3751 return 1;
3752 out0:
3753 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3754 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003755}
3756
Willy Tarreau62f52692017-10-08 23:01:42 +02003757
Willy Tarreau479998a2018-11-18 06:30:59 +01003758/* Attempt to read data, and subscribe if none available.
3759 * The function returns 1 if data has been received, otherwise zero.
3760 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003761static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003762{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003763 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003764 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003765 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003766 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003767
Willy Tarreau7838a792019-08-12 18:42:03 +02003768 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3769
3770 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3771 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003772 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003773 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003774
Willy Tarreau7838a792019-08-12 18:42:03 +02003775 if (!h2_recv_allowed(h2c)) {
3776 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003777 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003778 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003779
Willy Tarreau44e973f2018-03-01 17:49:30 +01003780 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003781 if (!buf) {
3782 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003783 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003784 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003785 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003786
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003787 if (h2c->flags & H2_CF_RCVD_SHUT) {
3788 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003789 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003790 }
3791
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003792 if (!b_data(buf)) {
3793 /* try to pre-align the buffer like the
3794 * rxbufs will be to optimize memory copies. We'll make
3795 * sure that the frame header lands at the end of the
3796 * HTX block to alias it upon recv. We cannot use the
3797 * head because rcv_buf() will realign the buffer if
3798 * it's empty. Thus we cheat and pretend we already
3799 * have a few bytes there.
3800 */
3801 max = buf_room_for_htx_data(buf) + 9;
3802 buf->head = sizeof(struct htx) - 9;
3803 }
3804 else
3805 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003806
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003807 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003808
Christopher Fauletde9d6052021-04-23 12:25:18 +02003809 if (max && !ret && h2_recv_allowed(h2c)) {
3810 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3811 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003812 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003813 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003814 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3815 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003816
Christopher Fauletde9d6052021-04-23 12:25:18 +02003817 if (conn_xprt_read0_pending(h2c->conn)) {
3818 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3819 h2c->flags |= H2_CF_RCVD_SHUT;
3820 }
3821
Olivier Houcharda1411e62018-08-17 18:42:48 +02003822 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003823 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003824 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003825 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003826 }
3827
Willy Tarreau7838a792019-08-12 18:42:03 +02003828 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003829 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003830 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003831 }
3832
3833 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003834 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003835}
3836
Willy Tarreau479998a2018-11-18 06:30:59 +01003837/* Try to send data if possible.
3838 * The function returns 1 if data have been sent, otherwise zero.
3839 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003840static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003841{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003842 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003843 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003844 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003845
Willy Tarreau7838a792019-08-12 18:42:03 +02003846 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003847
Willy Tarreau7838a792019-08-12 18:42:03 +02003848 if (conn->flags & CO_FL_ERROR) {
3849 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3850 return 1;
3851 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003852
Willy Tarreau911db9b2020-01-23 16:27:54 +01003853 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003854 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003855 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003856 }
3857
Willy Tarreaubc933932017-10-09 16:21:43 +02003858 /* This loop is quite simple : it tries to fill as much as it can from
3859 * pending streams into the existing buffer until it's reportedly full
3860 * or the end of send requests is reached. Then it tries to send this
3861 * buffer's contents out, marks it not full if at least one byte could
3862 * be sent, and tries again.
3863 *
3864 * The snd_buf() function normally takes a "flags" argument which may
3865 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3866 * data immediately comes and CO_SFL_STREAMER to indicate that the
3867 * connection is streaming lots of data (used to increase TLS record
3868 * size at the expense of latency). The former can be sent any time
3869 * there's a buffer full flag, as it indicates at least one stream
3870 * attempted to send and failed so there are pending data. An
3871 * alternative would be to set it as long as there's an active stream
3872 * but that would be problematic for ACKs until we have an absolute
3873 * guarantee that all waiters have at least one byte to send. The
3874 * latter should possibly not be set for now.
3875 */
3876
3877 done = 0;
3878 while (!done) {
3879 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003880 unsigned int released = 0;
3881 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003882
3883 /* fill as much as we can into the current buffer */
3884 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3885 done = h2_process_mux(h2c);
3886
Olivier Houchard2b094432019-01-29 18:28:36 +01003887 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003888 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003889
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003890 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003891 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003892 break;
3893
3894 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3895 flags |= CO_SFL_MSG_MORE;
3896
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003897 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3898 if (b_data(buf)) {
3899 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003900 if (!ret) {
3901 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003902 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003903 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003904 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003905 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003906 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003907 if (b_data(buf)) {
3908 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003909 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003910 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003911 }
3912 b_free(buf);
3913 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003914 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003915
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003916 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003917 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003918
Willy Tarreaubc933932017-10-09 16:21:43 +02003919 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003920 if (sent)
3921 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003922 }
3923
Willy Tarreaua2af5122017-10-09 11:56:46 +02003924 if (conn->flags & CO_FL_SOCK_WR_SH) {
3925 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003926 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003927 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003928 /* We're not full anymore, so we can wake any task that are waiting
3929 * for us.
3930 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003931 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3932 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003933
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003934 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003935 if (!br_data(h2c->mbuf)) {
3936 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003937 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003938 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003939schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003940 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3941 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003942 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003943 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003944
Willy Tarreau7838a792019-08-12 18:42:03 +02003945 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003946 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003947}
3948
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003949/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003950struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003951{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003952 struct connection *conn;
3953 struct tasklet *tl = (struct tasklet *)t;
3954 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003955 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003956 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003957
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003958 if (state & TASK_F_USR1) {
3959 /* the tasklet was idling on an idle connection, it might have
3960 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003961 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003962 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3963 if (t->context == NULL) {
3964 /* The connection has been taken over by another thread,
3965 * we're no longer responsible for it, so just free the
3966 * tasklet, and do nothing.
3967 */
3968 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3969 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003970 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003971 goto leave;
3972 }
3973 conn = h2c->conn;
3974 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003975
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003976 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003977
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003978 /* Remove the connection from the list, to be sure nobody attempts
3979 * to use it while we handle the I/O events
3980 */
3981 if (conn_in_list)
3982 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003983
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003984 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3985 } else {
3986 /* we're certain the connection was not in an idle list */
3987 conn = h2c->conn;
3988 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3989 conn_in_list = 0;
3990 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003991
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003992 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003993 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003994 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003995 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003996 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003997 ret = h2_process(h2c);
3998
3999 /* If we were in an idle list, we want to add it back into it,
4000 * unless h2_process() returned -1, which mean it has destroyed
4001 * the connection (testing !ret is enough, if h2_process() wasn't
4002 * called then ret will be 0 anyway.
4003 */
Willy Tarreau74163142021-03-13 11:30:19 +01004004 if (ret < 0)
4005 t = NULL;
4006
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004007 if (!ret && conn_in_list) {
4008 struct server *srv = objt_server(conn->target);
4009
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004010 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004011 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004012 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004013 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004014 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004015 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004016 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004017
Willy Tarreau38468772020-06-28 00:31:13 +02004018leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02004019 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01004020 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004021}
Willy Tarreaua2af5122017-10-09 11:56:46 +02004022
Willy Tarreau62f52692017-10-08 23:01:42 +02004023/* callback called on any event by the connection handler.
4024 * It applies changes and returns zero, or < 0 if it wants immediate
4025 * destruction of the connection (which normally doesn not happen in h2).
4026 */
Olivier Houchard7505f942018-08-21 18:10:44 +02004027static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02004028{
Olivier Houchard7505f942018-08-21 18:10:44 +02004029 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004030
Willy Tarreau7838a792019-08-12 18:42:03 +02004031 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4032
Willy Tarreauf0961222021-02-05 11:41:46 +01004033 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4034 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004035 h2_process_demux(h2c);
4036
4037 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004038 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004039
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004040 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004041 h2c->flags &= ~H2_CF_DEM_DFULL;
4042 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004043 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004044
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004045 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 +02004046 int send_goaway = 1;
4047 /* If a close-spread-time option is set, we want to avoid
4048 * closing all the active HTTP2 connections at once so we add a
4049 * random factor that will spread the closing.
4050 */
4051 if (tick_isset(global.close_spread_end)) {
4052 int remaining_window = tick_remain(now_ms, global.close_spread_end);
4053 if (remaining_window) {
4054 /* This should increase the closing rate the
4055 * further along the window we are. */
4056 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
4057 }
4058 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004059 /* frontend is stopping, reload likely in progress, let's try
4060 * to announce a graceful shutdown if not yet done. We don't
4061 * care if it fails, it will be tried again later.
4062 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004063 if (send_goaway) {
4064 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
4065 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4066 if (h2c->last_sid < 0)
4067 h2c->last_sid = (1U << 31) - 1;
4068 h2c_send_goaway_error(h2c, NULL);
4069 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004070 }
4071 }
4072
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004073 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004074 * If we received early data, and the handshake is done, wake
4075 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004076 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004077 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004078 (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 +01004079 struct eb32_node *node;
4080 struct h2s *h2s;
4081
4082 h2c->flags |= H2_CF_WAIT_FOR_HS;
4083 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4084
4085 while (node) {
4086 h2s = container_of(node, struct h2s, by_id);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01004087 if (h2s->cs && h2s->endp->flags & CS_EP_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01004088 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004089 node = eb32_next(node);
4090 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004091 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004092
Christopher Fauletaade4ed2020-10-08 15:38:41 +02004093 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004094 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4095 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4096 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004097 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004098
4099 if (eb_is_empty(&h2c->streams_by_id)) {
4100 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004101 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004102 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004103 return -1;
4104 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004105
4106 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004107 if (conn->flags & CO_FL_LIST_MASK) {
4108 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004109 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004110 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4111 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004112 }
4113 else if (h2c->st0 == H2_CS_ERROR) {
4114 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004115 if (conn->flags & CO_FL_LIST_MASK) {
4116 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004117 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004118 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4119 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004120 }
4121
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004122 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004123 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004124
Olivier Houchard53216e72018-10-10 15:46:36 +02004125 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4126 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4127 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004128 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004129 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4130 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004131 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004132
Willy Tarreau15a47332022-03-18 15:57:34 +01004133 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004134 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004135 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004136 return 0;
4137}
4138
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004139/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004140static int h2_wake(struct connection *conn)
4141{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004142 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004143 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004144
Willy Tarreau7838a792019-08-12 18:42:03 +02004145 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4146 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004147 if (ret >= 0)
4148 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004149 TRACE_LEAVE(H2_EV_H2C_WAKE);
4150 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004151}
4152
Willy Tarreauea392822017-10-31 10:02:25 +01004153/* Connection timeout management. The principle is that if there's no receipt
4154 * nor sending for a certain amount of time, the connection is closed. If the
4155 * MUX buffer still has lying data or is not allocatable, the connection is
4156 * immediately killed. If it's allocatable and empty, we attempt to send a
4157 * GOAWAY frame.
4158 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004159struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004160{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004161 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004162 int expired = tick_is_expired(t->expire, now_ms);
4163
Willy Tarreau7838a792019-08-12 18:42:03 +02004164 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4165
Willy Tarreaubd42e922020-06-30 11:19:23 +02004166 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004167 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004168 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004169
4170 /* Somebody already stole the connection from us, so we should not
4171 * free it, we just have to free the task.
4172 */
4173 if (!t->context) {
4174 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004175 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004176 goto do_leave;
4177 }
4178
4179
Willy Tarreaubd42e922020-06-30 11:19:23 +02004180 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004181 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004182 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4183 return t;
4184 }
Willy Tarreauea392822017-10-31 10:02:25 +01004185
Willy Tarreaubd42e922020-06-30 11:19:23 +02004186 if (!h2c_may_expire(h2c)) {
4187 /* we do still have streams but all of them are idle, waiting
4188 * for the data layer, so we must not enforce the timeout here.
4189 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004190 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004191 t->expire = TICK_ETERNITY;
4192 return t;
4193 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004194
Willy Tarreaubd42e922020-06-30 11:19:23 +02004195 /* We're about to destroy the connection, so make sure nobody attempts
4196 * to steal it from us.
4197 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004198 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004199 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004200
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004201 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004202 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004203
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004204do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004205 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004206
4207 if (!h2c) {
4208 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004209 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004210 return NULL;
4211 }
4212
4213 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004214 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004215 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004216
Willy Tarreau662fafc2019-05-26 09:43:07 +02004217 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004218 /* don't even try to send a GOAWAY, the buffer is stuck */
4219 h2c->flags |= H2_CF_GOAWAY_FAILED;
4220 }
4221
4222 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004223 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004224 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4225 h2c->flags |= H2_CF_GOAWAY_FAILED;
4226
Willy Tarreau662fafc2019-05-26 09:43:07 +02004227 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004228 unsigned int released = 0;
4229 struct buffer *buf;
4230
4231 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4232 if (b_data(buf)) {
4233 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4234 if (!ret)
4235 break;
4236 b_del(buf, ret);
4237 if (b_data(buf))
4238 break;
4239 b_free(buf);
4240 released++;
4241 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004242 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004243
4244 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004245 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004246 }
Willy Tarreauea392822017-10-31 10:02:25 +01004247
Willy Tarreau4481e262019-10-31 15:36:30 +01004248 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004249 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4250 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004251 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004252 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4253 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004254
Willy Tarreau0975f112018-03-29 15:22:59 +02004255 /* either we can release everything now or it will be done later once
4256 * the last stream closes.
4257 */
4258 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004259 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004260
Willy Tarreau7838a792019-08-12 18:42:03 +02004261 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004262 return NULL;
4263}
4264
4265
Willy Tarreau62f52692017-10-08 23:01:42 +02004266/*******************************************/
4267/* functions below are used by the streams */
4268/*******************************************/
4269
4270/*
4271 * Attach a new stream to a connection
4272 * (Used for outgoing connections)
4273 */
Christopher Faulete00ad352021-12-16 14:44:31 +01004274static int h2_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004275{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004276 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004277 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004278
Willy Tarreau7838a792019-08-12 18:42:03 +02004279 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchardf502aca2018-12-14 19:42:40 +01004280 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004281 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004282 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004283 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004284 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004285
4286 /* the connection is not idle anymore, let's mark this */
4287 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004288 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004289
Willy Tarreau7838a792019-08-12 18:42:03 +02004290 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004291 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004292}
4293
Willy Tarreaufafd3982018-11-18 21:29:20 +01004294/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4295 * We have to scan because we may have some orphan streams. It might be
4296 * beneficial to scan backwards from the end to reduce the likeliness to find
4297 * orphans.
4298 */
4299static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4300{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004301 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004302 struct h2s *h2s;
4303 struct eb32_node *node;
4304
4305 node = eb32_first(&h2c->streams_by_id);
4306 while (node) {
4307 h2s = container_of(node, struct h2s, by_id);
4308 if (h2s->cs)
4309 return h2s->cs;
4310 node = eb32_next(node);
4311 }
4312 return NULL;
4313}
4314
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004315static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4316{
4317 int ret = 0;
4318 struct h2c *h2c = conn->ctx;
4319
4320 switch (mux_ctl) {
4321 case MUX_STATUS:
4322 /* Only consider the mux to be ready if we're done with
4323 * the preface and settings, and we had no error.
4324 */
4325 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4326 ret |= MUX_STATUS_READY;
4327 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004328 case MUX_EXIT_STATUS:
4329 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004330 default:
4331 return -1;
4332 }
4333}
4334
Willy Tarreau62f52692017-10-08 23:01:42 +02004335/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004336 * Destroy the mux and the associated connection, if it is no longer used
4337 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004338static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004339{
Christopher Faulet73c12072019-04-08 11:23:22 +02004340 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004341
Willy Tarreau7838a792019-08-12 18:42:03 +02004342 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004343 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004344 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004345 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004346}
4347
4348/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004349 * Detach the stream from the connection and possibly release the connection.
4350 */
4351static void h2_detach(struct conn_stream *cs)
4352{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004353 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau60935142017-10-16 18:11:19 +02004354 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004355 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004356
Willy Tarreau7838a792019-08-12 18:42:03 +02004357 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4358
Willy Tarreau7838a792019-08-12 18:42:03 +02004359 if (!h2s) {
4360 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004361 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004362 }
Willy Tarreau60935142017-10-16 18:11:19 +02004363
Willy Tarreaud9464162020-01-10 18:25:07 +01004364 /* there's no txbuf so we're certain not to be able to send anything */
4365 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004366
Olivier Houchardf502aca2018-12-14 19:42:40 +01004367 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004368 h2c = h2s->h2c;
4369 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004370 h2c->nb_cs--;
Willy Tarreau15a47332022-03-18 15:57:34 +01004371 if (!h2c->nb_cs)
4372 h2c->idle_start = now_ms;
4373
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004374 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4375 !h2_frt_has_too_many_cs(h2c)) {
4376 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004377 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004378 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004379 }
Willy Tarreau60935142017-10-16 18:11:19 +02004380
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004381 /* this stream may be blocked waiting for some data to leave (possibly
4382 * an ES or RST frame), so orphan it in this case.
4383 */
Christopher Faulet897d6122021-12-17 17:28:35 +01004384 if (!(h2c->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004385 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004386 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004387 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004388 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004389 /* refresh the timeout if none was active, so that the last
4390 * leaving stream may arm it.
4391 */
4392 if (!tick_isset(h2c->task->expire))
4393 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004394 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004395 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004396
Willy Tarreau45f752e2017-10-30 15:44:59 +01004397 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4398 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4399 /* unblock the connection if it was blocked on this
4400 * stream.
4401 */
4402 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4403 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004404 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004405 }
4406
Willy Tarreau71049cc2018-03-28 13:56:39 +02004407 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004408
Christopher Faulet9b79a102019-07-15 11:22:56 +02004409 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004410 if (!(h2c->conn->flags &
4411 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004412 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004413 /* Add the connection in the session server list, if not already done */
4414 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4415 h2c->conn->owner = NULL;
4416 if (eb_is_empty(&h2c->streams_by_id)) {
4417 h2c->conn->mux->destroy(h2c);
4418 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4419 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004420 }
4421 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004422 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004423 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4424 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4425 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004426 return;
4427 }
4428 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004429 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004430 else {
4431 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004432 /* If the connection is owned by the session, first remove it
4433 * from its list
4434 */
4435 if (h2c->conn->owner) {
4436 session_unown_conn(h2c->conn->owner, h2c->conn);
4437 h2c->conn->owner = NULL;
4438 }
4439
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004440 /* mark that the tasklet may lose its context to another thread and
4441 * that the handler needs to check it under the idle conns lock.
4442 */
4443 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004444 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4445
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004446 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004447 /* The server doesn't want it, let's kill the connection right away */
4448 h2c->conn->mux->destroy(h2c);
4449 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4450 return;
4451 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004452 /* At this point, the connection has been added to the
4453 * server idle list, so another thread may already have
4454 * hijacked it, so we can't do anything with it.
4455 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004456 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4457 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004458
Olivier Houchard8a786902018-12-15 16:05:40 +01004459 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004460 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004461 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004462 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004463 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004464 &h2c->conn->hash_node->node,
4465 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004466 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004467 }
4468 }
4469 }
4470
Willy Tarreaue323f342018-03-28 13:51:45 +02004471 /* We don't want to close right now unless we're removing the
4472 * last stream, and either the connection is in error, or it
4473 * reached the ID already specified in a GOAWAY frame received
4474 * or sent (as seen by last_sid >= 0).
4475 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004476 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004477 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004478 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004479 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004480 }
4481 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004482 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004483 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004484 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004485 else
4486 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004487}
4488
Willy Tarreau88bdba32019-05-13 18:17:53 +02004489/* Performs a synchronous or asynchronous shutr(). */
4490static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004491{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004492 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004493
Willy Tarreauf983d002019-05-14 10:40:21 +02004494 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004495 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004496
Willy Tarreau7838a792019-08-12 18:42:03 +02004497 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4498
Willy Tarreau18059042019-01-31 19:12:48 +01004499 /* a connstream may require us to immediately kill the whole connection
4500 * for example because of a "tcp-request content reject" rule that is
4501 * normally used to limit abuse. In this case we schedule a goaway to
4502 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004503 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004504 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004505 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004506 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004507 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4508 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4509 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004510 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4511 /* Nothing was never sent for this stream, so reset with
4512 * REFUSED_STREAM error to let the client retry the
4513 * request.
4514 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004515 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004516 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4517 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004518 else {
4519 /* a final response was already provided, we don't want this
4520 * stream anymore. This may happen when the server responds
4521 * before the end of an upload and closes quickly (redirect,
4522 * deny, ...)
4523 */
4524 h2s_error(h2s, H2_ERR_CANCEL);
4525 }
Willy Tarreau18059042019-01-31 19:12:48 +01004526
Willy Tarreau90c32322017-11-24 08:00:30 +01004527 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004528 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004529 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004530
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004531 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004532 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004533 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004534 done:
4535 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004536 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004537 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004538add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004539 /* Let the handler know we want to shutr, and add ourselves to the
4540 * most relevant list if not yet done. h2_deferred_shut() will be
4541 * automatically called via the shut_tl tasklet when there's room
4542 * again.
4543 */
4544 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004545 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004546 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004547 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004548 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004549 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004550 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004551 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004552 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004553}
4554
Willy Tarreau88bdba32019-05-13 18:17:53 +02004555/* Performs a synchronous or asynchronous shutw(). */
4556static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004557{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004558 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004559
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004560 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004561 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004562
Willy Tarreau7838a792019-08-12 18:42:03 +02004563 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4564
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004565 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004566 /* we can cleanly close using an empty data frame only after headers */
4567
4568 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4569 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004570 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004571
4572 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004573 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004574 else
4575 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004576 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004577 /* a connstream may require us to immediately kill the whole connection
4578 * for example because of a "tcp-request content reject" rule that is
4579 * normally used to limit abuse. In this case we schedule a goaway to
4580 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004581 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004582 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004583 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004584 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004585 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4586 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4587 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004588 else {
4589 /* Nothing was never sent for this stream, so reset with
4590 * REFUSED_STREAM error to let the client retry the
4591 * request.
4592 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004593 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004594 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4595 }
Willy Tarreau18059042019-01-31 19:12:48 +01004596
Willy Tarreau90c32322017-11-24 08:00:30 +01004597 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004598 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004599 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004600
Willy Tarreau00dd0782018-03-01 16:31:34 +01004601 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004602 }
4603
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004604 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004605 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004606
4607 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4608
Willy Tarreau88bdba32019-05-13 18:17:53 +02004609 done:
4610 h2s->flags &= ~H2_SF_WANT_SHUTW;
4611 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004612
4613 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004614 /* Let the handler know we want to shutw, and add ourselves to the
4615 * most relevant list if not yet done. h2_deferred_shut() will be
4616 * automatically called via the shut_tl tasklet when there's room
4617 * again.
4618 */
4619 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004620 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004621 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004622 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004623 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004624 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004625 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004626 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004627 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004628}
4629
Willy Tarreau5723f292020-01-10 15:16:57 +01004630/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004631 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4632 * and prevented the last frame from being emitted.
4633 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004634struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004635{
4636 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004637 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004638
Willy Tarreau7838a792019-08-12 18:42:03 +02004639 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4640
Willy Tarreau5723f292020-01-10 15:16:57 +01004641 if (h2s->flags & H2_SF_NOTIFIED) {
4642 /* some data processing remains to be done first */
4643 goto end;
4644 }
4645
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004646 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004647 h2_do_shutw(h2s);
4648
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004649 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004650 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004651
Willy Tarreau88bdba32019-05-13 18:17:53 +02004652 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004653 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004654 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004655
Willy Tarreau88bdba32019-05-13 18:17:53 +02004656 if (!h2s->cs) {
4657 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004658 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004659 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004660 t = NULL;
4661 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004662 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004663 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004664 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004665 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004666 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004667}
4668
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004669/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004670static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4671{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004672 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004673
Willy Tarreau7838a792019-08-12 18:42:03 +02004674 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Christopher Faulete9e48202022-03-22 18:13:29 +01004675 if (cs->endp->flags & CS_EP_KILL_CONN)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004676 h2s->flags |= H2_SF_KILL_CONN;
4677
Willy Tarreau7838a792019-08-12 18:42:03 +02004678 if (mode)
4679 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004680
Willy Tarreau7838a792019-08-12 18:42:03 +02004681 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004682}
4683
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004684/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004685static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4686{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004687 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004688
Willy Tarreau7838a792019-08-12 18:42:03 +02004689 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Christopher Faulete9e48202022-03-22 18:13:29 +01004690 if (cs->endp->flags & CS_EP_KILL_CONN)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004691 h2s->flags |= H2_SF_KILL_CONN;
4692
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004693 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004694 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004695}
4696
Christopher Faulet9b79a102019-07-15 11:22:56 +02004697/* Decode the payload of a HEADERS frame and produce the HTX request or response
4698 * depending on the connection's side. Returns a positive value on success, a
4699 * negative value on failure, or 0 if it couldn't proceed. May report connection
4700 * errors in h2c->errcode if the frame is non-decodable and the connection
4701 * unrecoverable. In absence of connection error when a failure is reported, the
4702 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004703 *
4704 * The function may fold CONTINUATION frames into the initial HEADERS frame
4705 * by removing padding and next frame header, then moving the CONTINUATION
4706 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4707 * leaving a hole between the main frame and the beginning of the next one.
4708 * The possibly remaining incomplete or next frame at the end may be moved
4709 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4710 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4711 *
4712 * A buffer at the beginning of processing may look like this :
4713 *
4714 * ,---.---------.-----.--------------.--------------.------.---.
4715 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4716 * `---^---------^-----^--------------^--------------^------^---'
4717 * | | <-----> | |
4718 * area | dpl | wrap
4719 * |<--------------> |
4720 * | dfl |
4721 * |<-------------------------------------------------->|
4722 * head data
4723 *
4724 * Padding is automatically overwritten when folding, participating to the
4725 * hole size after dfl :
4726 *
4727 * ,---.------------------------.-----.--------------.------.---.
4728 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4729 * `---^------------------------^-----^--------------^------^---'
4730 * | | <-----> | |
4731 * area | hole | wrap
4732 * |<-----------------------> |
4733 * | dfl |
4734 * |<-------------------------------------------------->|
4735 * head data
4736 *
4737 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4738 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4739 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004740 *
4741 * The <flags> field must point to either the stream's flags or to a copy of it
4742 * so that the function can update the following flags :
4743 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004744 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004745 *
4746 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4747 * decoding, in order to detect if we're dealing with a headers or a trailers
4748 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004749 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004750static 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 +02004751{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004752 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004753 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004754 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004755 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004756 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004757 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004758 int flen; // header frame len
4759 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004760 int ret = 0;
4761 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004762 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004763
Willy Tarreau7838a792019-08-12 18:42:03 +02004764 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4765
Willy Tarreauea18f862018-12-22 20:19:26 +01004766next_frame:
4767 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4768 goto leave; // incomplete input frame
4769
4770 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4771 * this case, we'll try to paste it immediately after the initial
4772 * HEADERS frame payload and kill any possible padding. The initial
4773 * frame's length will be increased to represent the concatenation
4774 * of the two frames. The next frame is read from position <tlen>
4775 * and written at position <flen> (minus padding if some is present).
4776 */
4777 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4778 struct h2_fh hdr;
4779 int clen; // CONTINUATION frame's payload length
4780
Willy Tarreau7838a792019-08-12 18:42:03 +02004781 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 +01004782 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4783 /* no more data, the buffer may be full, either due to
4784 * too large a frame or because of too large a hole that
4785 * we're going to compact at the end.
4786 */
4787 goto leave;
4788 }
4789
4790 if (hdr.ft != H2_FT_CONTINUATION) {
4791 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004792 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 +01004793 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004794 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004795 goto fail;
4796 }
4797
4798 if (hdr.sid != h2c->dsi) {
4799 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004800 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 +01004801 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004802 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004803 goto fail;
4804 }
4805
4806 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4807 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004808 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 +01004809 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4810 goto fail;
4811 }
4812
4813 /* detect when we must stop aggragating frames */
4814 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4815
4816 /* Take as much as we can of the CONTINUATION frame's payload */
4817 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4818 if (clen > hdr.len)
4819 clen = hdr.len;
4820
4821 /* Move the frame's payload over the padding, hole and frame
4822 * header. At least one of hole or dpl is null (see diagrams
4823 * above). The hole moves after the new aggragated frame.
4824 */
4825 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 +02004826 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004827 hole += h2c->dpl + 9;
4828 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004829 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 +01004830 goto next_frame;
4831 }
4832
4833 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004834
Willy Tarreau13278b42017-10-13 19:23:14 +02004835 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004836 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004837 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004838 copy = alloc_trash_chunk();
4839 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004840 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 +02004841 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4842 goto fail;
4843 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004844 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4845 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4846 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004847 }
4848
Willy Tarreau13278b42017-10-13 19:23:14 +02004849 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4850 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004851 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004852 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004853 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 +01004854 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004855 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004856 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004857 }
4858
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004859 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004860 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 +01004861 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4862 goto fail;
4863 }
4864
Willy Tarreau13278b42017-10-13 19:23:14 +02004865 hdrs += 5; // stream dep = 4, weight = 1
4866 flen -= 5;
4867 }
4868
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004869 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004870 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 +01004871 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004872 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004873 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004874
Willy Tarreau937f7602018-02-26 15:22:17 +01004875 /* we can't retry a failed decompression operation so we must be very
4876 * careful not to take any risks. In practice the output buffer is
4877 * always empty except maybe for trailers, in which case we simply have
4878 * to wait for the upper layer to finish consuming what is available.
4879 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004880 htx = htx_from_buf(rxbuf);
4881 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004882 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 +02004883 h2c->flags |= H2_CF_DEM_SFULL;
4884 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004885 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004886
Willy Tarreau25919232019-01-03 14:48:18 +01004887 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004888 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4889 sizeof(list)/sizeof(list[0]), tmp);
4890 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004891 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 +01004892 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4893 goto fail;
4894 }
4895
Willy Tarreau25919232019-01-03 14:48:18 +01004896 /* The PACK decompressor was updated, let's update the input buffer and
4897 * the parser's state to commit these changes and allow us to later
4898 * fail solely on the stream if needed.
4899 */
4900 b_del(&h2c->dbuf, h2c->dfl + hole);
4901 h2c->dfl = hole = 0;
4902 h2c->st0 = H2_CS_FRAME_H;
4903
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004904 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004905 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004906 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004907 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004908 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004909 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004910
Willy Tarreau88d138e2019-01-02 19:38:14 +01004911 if (*flags & H2_SF_HEADERS_RCVD)
4912 goto trailers;
4913
4914 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004915 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004916 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004917 else
4918 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004919
Christopher Faulet3d875582021-04-26 17:46:13 +02004920 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004921 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004922 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4923 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004924 goto fail;
4925 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004926
Willy Tarreau174b06a2018-04-25 18:13:58 +02004927 if (msgf & H2_MSGF_BODY) {
4928 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004929 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004930 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004931 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004932 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004933 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004934 if (msgf & H2_MSGF_BODYLESS_RSP)
4935 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004936
Christopher Fauletd0db4232021-01-22 11:46:30 +01004937 if (msgf & H2_MSGF_BODY_TUNNEL)
4938 *flags |= H2_SF_BODY_TUNNEL;
4939 else {
4940 /* Abort the tunnel attempt, if any */
4941 if (*flags & H2_SF_BODY_TUNNEL)
4942 *flags |= H2_SF_TUNNEL_ABRT;
4943 *flags &= ~H2_SF_BODY_TUNNEL;
4944 }
4945
Willy Tarreau88d138e2019-01-02 19:38:14 +01004946 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004947 /* indicate that a HEADERS frame was received for this stream, except
4948 * for 1xx responses. For 1xx responses, another HEADERS frame is
4949 * expected.
4950 */
4951 if (!(msgf & H2_MSGF_RSP_1XX))
4952 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004953
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004954 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4955 /* no more data are expected for this message */
4956 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004957 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004958
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004959 if (msgf & H2_MSGF_EXT_CONNECT)
4960 *flags |= H2_SF_EXT_CONNECT_RCVD;
4961
Willy Tarreau86277d42019-01-02 15:36:11 +01004962 /* success */
4963 ret = 1;
4964
Willy Tarreau68dd9852017-07-03 14:44:26 +02004965 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004966 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004967 * move the remaining data over it.
4968 */
4969 if (hole) {
4970 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4971 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4972 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4973 b_sub(&h2c->dbuf, hole);
4974 }
4975
Christopher Faulet07f88d72021-04-21 10:39:53 +02004976 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004977 /* too large frames */
4978 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004979 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004980 }
4981
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004982 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004983 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004984 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004985 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004986 return ret;
4987
Willy Tarreau68dd9852017-07-03 14:44:26 +02004988 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004989 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004990 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004991
4992 trailers:
4993 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004994 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4995 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004996 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 +01004997 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004998 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004999 goto fail;
5000 }
5001
Christopher Faulet9b79a102019-07-15 11:22:56 +02005002 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02005003 if (h2_make_htx_trailers(list, htx) <= 0) {
5004 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 +02005005 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005006 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01005007 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02005008}
5009
Christopher Faulet9b79a102019-07-15 11:22:56 +02005010/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005011 * parser state is automatically updated. Returns > 0 if it could completely
5012 * send the current frame, 0 if it couldn't complete, in which case
5013 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
5014 * DATA frame can return 0 as a valid result). Stream errors are reported in
5015 * h2s->errcode and connection errors in h2c->errcode. The caller must already
5016 * have checked the frame header and ensured that the frame was complete or the
5017 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02005018 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01005019static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02005020{
5021 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005022 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005023 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005024 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005025 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005026 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02005027
Willy Tarreau7838a792019-08-12 18:42:03 +02005028 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5029
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005030 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02005031
Olivier Houchard638b7992018-08-16 15:41:52 +02005032 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005033 if (!csbuf) {
5034 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02005035 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 +01005036 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005037 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005038 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005039
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005040try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005041 flen = h2c->dfl - h2c->dpl;
5042 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005043 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005044
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005045 if (flen > b_data(&h2c->dbuf)) {
5046 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005047 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005048 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005049 }
5050
Christopher Faulet9b79a102019-07-15 11:22:56 +02005051 block = htx_free_data_space(htx);
5052 if (!block) {
5053 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005054 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 +02005055 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005056 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005057 if (flen > block)
5058 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005059
Christopher Faulet9b79a102019-07-15 11:22:56 +02005060 /* here, flen is the max we can copy into the output buffer */
5061 block = b_contig_data(&h2c->dbuf, 0);
5062 if (flen > block)
5063 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005064
Christopher Faulet9b79a102019-07-15 11:22:56 +02005065 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005066 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 +02005067
Christopher Faulet9b79a102019-07-15 11:22:56 +02005068 b_del(&h2c->dbuf, sent);
5069 h2c->dfl -= sent;
5070 h2c->rcvd_c += sent;
5071 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005072
Christopher Faulet9b79a102019-07-15 11:22:56 +02005073 if (h2s->flags & H2_SF_DATA_CLEN) {
5074 h2s->body_len -= sent;
5075 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005076 }
5077
Christopher Faulet9b79a102019-07-15 11:22:56 +02005078 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005079 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005080 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 +01005081 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005082 }
5083
Christopher Faulet9b79a102019-07-15 11:22:56 +02005084 goto try_again;
5085
Willy Tarreau4a28da12018-01-04 14:41:00 +01005086 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005087 /* here we're done with the frame, all the payload (except padding) was
5088 * transferred.
5089 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005090
Christopher Faulet5be651d2021-01-22 15:28:03 +01005091 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5092 /* no more data are expected for this message. This add the EOM
5093 * flag but only on the response path or if no tunnel attempt
5094 * was aborted. Otherwise (request path + tunnel abrted), the
5095 * EOM was already reported.
5096 */
Christopher Faulet33724322021-02-10 09:04:59 +01005097 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5098 /* If we receive an empty DATA frame with ES flag while the HTX
5099 * message is empty, we must be sure to push a block to be sure
5100 * the HTX EOM flag will be handled on the other side. It is a
5101 * workaround because for now it is not possible to push empty
5102 * HTX DATA block. And without this block, there is no way to
5103 * "commit" the end of the message.
5104 */
5105 if (htx_is_empty(htx)) {
5106 if (!htx_add_endof(htx, HTX_BLK_EOT))
5107 goto fail;
5108 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005109 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005110 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005111 }
5112
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005113 h2c->rcvd_c += h2c->dpl;
5114 h2c->rcvd_s += h2c->dpl;
5115 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005116 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005117 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005118 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005119 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005120 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005121 if (htx)
5122 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005123 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005124 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005125}
5126
Willy Tarreau115e83b2018-12-01 19:17:53 +01005127/* Try to send a HEADERS frame matching HTX response present in HTX message
5128 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5129 * must check the stream's status to detect any error which might have happened
5130 * subsequently to a successful send. The htx blocks are automatically removed
5131 * from the message. The htx message is assumed to be valid since produced from
5132 * the internal code, hence it contains a start line, an optional series of
5133 * header blocks and an end of header, otherwise an invalid frame could be
5134 * emitted and the resulting htx message could be left in an inconsistent state.
5135 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005136static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005137{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005138 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005139 struct h2c *h2c = h2s->h2c;
5140 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005141 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005142 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005143 struct htx_sl *sl;
5144 enum htx_blk_type type;
5145 int es_now = 0;
5146 int ret = 0;
5147 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005148
Willy Tarreau7838a792019-08-12 18:42:03 +02005149 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5150
Willy Tarreau115e83b2018-12-01 19:17:53 +01005151 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005152 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005153 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005154 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005155 return 0;
5156 }
5157
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005158 /* get the start line (we do have one) and the rest of the headers,
5159 * that we dump starting at header 0 */
5160 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005161 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005162 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005163 type = htx_get_blk_type(blk);
5164
5165 if (type == HTX_BLK_UNUSED)
5166 continue;
5167
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005168 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005169 break;
5170
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005171 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005172 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005173 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5174 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5175 goto fail;
5176 }
5177
5178 list[hdr].n = htx_get_blk_name(htx, blk);
5179 list[hdr].v = htx_get_blk_value(htx, blk);
5180 hdr++;
5181 }
5182 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005183 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005184 sl = htx_get_blk_ptr(htx, blk);
5185 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005186 if (h2s->status == 204 || h2s->status == 304)
5187 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005188 if (h2s->status < 100 || h2s->status > 999) {
5189 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5190 goto fail;
5191 }
5192 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005193 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5194 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5195 h2s->status = 200;
5196 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5197 }
5198 else {
5199 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5200 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5201 goto fail;
5202 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005203 }
5204 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5205 /* Abort the tunnel attempt */
5206 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5207 h2s->flags |= H2_SF_TUNNEL_ABRT;
5208 }
5209 }
5210 else {
5211 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 +01005212 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005213 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005214 }
5215
Christopher Faulet56498132021-01-29 11:39:43 +01005216 /* The start-line me be defined */
5217 BUG_ON(!sl);
5218
Willy Tarreau115e83b2018-12-01 19:17:53 +01005219 /* marker for end of headers */
5220 list[hdr].n = ist("");
5221
Willy Tarreau9c218e72019-05-26 10:08:28 +02005222 mbuf = br_tail(h2c->mbuf);
5223 retry:
5224 if (!h2_get_buf(h2c, mbuf)) {
5225 h2c->flags |= H2_CF_MUX_MALLOC;
5226 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005227 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 +02005228 return 0;
5229 }
5230
Willy Tarreau115e83b2018-12-01 19:17:53 +01005231 chunk_reset(&outbuf);
5232
5233 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005234 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5235 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005236 break;
5237 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005238 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005239 }
5240
5241 if (outbuf.size < 9)
5242 goto full;
5243
5244 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5245 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5246 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5247 outbuf.data = 9;
5248
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005249 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5250 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5251 * dynamic table size update so that some clients are not
5252 * confused. In practice we only need to send the DTSU when the
5253 * advertised size is lower than the current one, and since we
5254 * don't use it and don't care about the default 4096 bytes,
5255 * we only ack it with a zero size thus we at most have to deal
5256 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5257 * below for the whole context and interoperability risks:
5258 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5259 */
5260 if (b_room(&outbuf) < 1)
5261 goto full;
5262 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5263
5264 /* let's not update the flags now but only once the buffer is
5265 * really committed.
5266 */
5267 }
5268
Willy Tarreau115e83b2018-12-01 19:17:53 +01005269 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005270 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005271 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005272 goto realign_again;
5273 goto full;
5274 }
5275
5276 /* encode all headers, stop at empty name */
5277 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5278 /* these ones do not exist in H2 and must be dropped. */
5279 if (isteq(list[hdr].n, ist("connection")) ||
5280 isteq(list[hdr].n, ist("proxy-connection")) ||
5281 isteq(list[hdr].n, ist("keep-alive")) ||
5282 isteq(list[hdr].n, ist("upgrade")) ||
5283 isteq(list[hdr].n, ist("transfer-encoding")))
5284 continue;
5285
Christopher Faulet86d144c2019-08-14 16:32:25 +02005286 /* Skip all pseudo-headers */
5287 if (*(list[hdr].n.ptr) == ':')
5288 continue;
5289
Willy Tarreau115e83b2018-12-01 19:17:53 +01005290 if (isteq(list[hdr].n, ist("")))
5291 break; // end
5292
5293 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5294 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005295 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005296 goto realign_again;
5297 goto full;
5298 }
5299 }
5300
Willy Tarreaucb985a42019-10-07 16:56:34 +02005301 /* update the frame's size */
5302 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5303
5304 if (outbuf.data > h2c->mfs + 9) {
5305 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5306 /* output full */
5307 if (b_space_wraps(mbuf))
5308 goto realign_again;
5309 goto full;
5310 }
5311 }
5312
Willy Tarreau3a537072021-06-17 08:40:04 +02005313 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5314
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005315 /* remove all header blocks including the EOH and compute the
5316 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005317 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005318 ret = 0;
5319 blk = htx_get_head_blk(htx);
5320 while (blk) {
5321 type = htx_get_blk_type(blk);
5322 ret += htx_get_blksz(blk);
5323 blk = htx_remove_blk(htx, blk);
5324 /* The removed block is the EOH */
5325 if (type == HTX_BLK_EOH)
5326 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005327 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005328
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01005329 if (!h2s->cs || h2s->endp->flags & CS_EP_SHW) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005330 /* Response already closed: add END_STREAM */
5331 es_now = 1;
5332 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005333 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5334 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005335 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005336 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005337 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5338 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005339 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005340
Willy Tarreau115e83b2018-12-01 19:17:53 +01005341 if (es_now)
5342 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5343
5344 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005345 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005346
5347 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5348 * 1xx responses, another HEADERS frame is expected.
5349 */
Christopher Faulet89899422020-12-07 18:24:43 +01005350 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005351 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005352
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005353 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5354 /* was sent above */
5355 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005356 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005357 }
5358
Willy Tarreau115e83b2018-12-01 19:17:53 +01005359 if (es_now) {
5360 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005361 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 +01005362 if (h2s->st == H2_SS_OPEN)
5363 h2s->st = H2_SS_HLOC;
5364 else
5365 h2s_close(h2s);
5366 }
5367
5368 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005369 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005370 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005371 return ret;
5372 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005373 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5374 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005375 h2c->flags |= H2_CF_MUX_MFULL;
5376 h2s->flags |= H2_SF_BLK_MROOM;
5377 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005378 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 +01005379 goto end;
5380 fail:
5381 /* unparsable HTX messages, too large ones to be produced in the local
5382 * list etc go here (unrecoverable errors).
5383 */
5384 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5385 ret = 0;
5386 goto end;
5387}
5388
Willy Tarreau80739692018-10-05 11:35:57 +02005389/* Try to send a HEADERS frame matching HTX request present in HTX message
5390 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5391 * must check the stream's status to detect any error which might have happened
5392 * subsequently to a successful send. The htx blocks are automatically removed
5393 * from the message. The htx message is assumed to be valid since produced from
5394 * the internal code, hence it contains a start line, an optional series of
5395 * header blocks and an end of header, otherwise an invalid frame could be
5396 * emitted and the resulting htx message could be left in an inconsistent state.
5397 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005398static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005399{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005400 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005401 struct h2c *h2c = h2s->h2c;
5402 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005403 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005404 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005405 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005406 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005407 enum htx_blk_type type;
5408 int es_now = 0;
5409 int ret = 0;
5410 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005411 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005412
Willy Tarreau7838a792019-08-12 18:42:03 +02005413 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5414
Willy Tarreau80739692018-10-05 11:35:57 +02005415 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005416 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005417 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005418 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005419 return 0;
5420 }
5421
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005422 /* get the start line (we do have one) and the rest of the headers,
5423 * that we dump starting at header 0 */
5424 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005425 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005426 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005427 type = htx_get_blk_type(blk);
5428
5429 if (type == HTX_BLK_UNUSED)
5430 continue;
5431
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005432 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005433 break;
5434
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005435 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005436 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005437 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5438 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5439 goto fail;
5440 }
Willy Tarreau80739692018-10-05 11:35:57 +02005441
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005442 list[hdr].n = htx_get_blk_name(htx, blk);
5443 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005444
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005445 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005446 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5447 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005448 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005449
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005450 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005451 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005452 /* rfc 7230 #6.1 Connection = list of tokens */
5453 struct ist connection_ist = list[hdr].v;
5454 do {
5455 if (isteqi(iststop(connection_ist, ','),
5456 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005457 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5458 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5459 goto fail;
5460 }
5461
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005462 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 +01005463 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5464 sl->info.req.meth = HTTP_METH_CONNECT;
5465 meth = ist("CONNECT");
5466
5467 extended_connect = 1;
5468 break;
5469 }
5470
5471 connection_ist = istadv(istfind(connection_ist, ','), 1);
5472 } while (istlen(connection_ist));
5473 }
5474
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005475 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005476 /* rfc 7230 #6.7 Upgrade = list of protocols
5477 * rfc 8441 #4 Extended connect = :protocol is single-valued
5478 *
5479 * only first HTTP/1 protocol is preserved
5480 */
5481 const struct ist protocol = iststop(list[hdr].v, ',');
5482 /* upgrade_protocol field is 16 bytes long in h2s */
5483 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5484 }
5485
5486 if (isteq(list[hdr].n, ist("host")))
5487 host = list[hdr].v;
5488
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005489 hdr++;
5490 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005491 else if (type == HTX_BLK_REQ_SL) {
5492 BUG_ON(sl); /* Only one start-line expected */
5493 sl = htx_get_blk_ptr(htx, blk);
5494 meth = htx_sl_req_meth(sl);
5495 uri = htx_sl_req_uri(sl);
5496 if (sl->info.req.meth == HTTP_METH_HEAD)
5497 h2s->flags |= H2_SF_BODYLESS_RESP;
5498 if (unlikely(uri.len == 0)) {
5499 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5500 goto fail;
5501 }
5502 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005503 else {
5504 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5505 goto fail;
5506 }
Willy Tarreau80739692018-10-05 11:35:57 +02005507 }
5508
Christopher Faulet56498132021-01-29 11:39:43 +01005509 /* The start-line me be defined */
5510 BUG_ON(!sl);
5511
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005512 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005513 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005514 struct server *srv = objt_server(h2c->conn->target);
5515
5516 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005517 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005518 list[hdr].v = ist(srv->id);
5519 hdr++;
5520 }
5521 }
5522
Willy Tarreau80739692018-10-05 11:35:57 +02005523 /* marker for end of headers */
5524 list[hdr].n = ist("");
5525
Willy Tarreau9c218e72019-05-26 10:08:28 +02005526 mbuf = br_tail(h2c->mbuf);
5527 retry:
5528 if (!h2_get_buf(h2c, mbuf)) {
5529 h2c->flags |= H2_CF_MUX_MALLOC;
5530 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005531 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 +02005532 return 0;
5533 }
5534
Willy Tarreau80739692018-10-05 11:35:57 +02005535 chunk_reset(&outbuf);
5536
5537 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005538 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5539 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005540 break;
5541 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005542 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005543 }
5544
5545 if (outbuf.size < 9)
5546 goto full;
5547
5548 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5549 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5550 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5551 outbuf.data = 9;
5552
5553 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005554 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005555 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005556 goto realign_again;
5557 goto full;
5558 }
5559
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005560 auth = ist(NULL);
5561
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005562 /* RFC7540 #8.3: the CONNECT method must have :
5563 * - :authority set to the URI part (host:port)
5564 * - :method set to CONNECT
5565 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005566 *
5567 * Note that this is not applicable in case of the Extended CONNECT
5568 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005569 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005570 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005571 auth = uri;
5572
5573 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5574 /* output full */
5575 if (b_space_wraps(mbuf))
5576 goto realign_again;
5577 goto full;
5578 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005579 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005580 } else {
5581 /* other methods need a :scheme. If an authority is known from
5582 * the request line, it must be sent, otherwise only host is
5583 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005584 *
5585 * This code is also applicable for Extended CONNECT protocol
5586 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005587 */
5588 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005589
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005590 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5591 /* the URI seems to start with a scheme */
5592 int len = 1;
5593
5594 while (len < uri.len && uri.ptr[len] != ':')
5595 len++;
5596
5597 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5598 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005599 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005600 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005601
5602 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005603 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005604 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5605 auth.len++;
5606
Tim Duesterhus154374c2021-03-02 18:57:27 +01005607 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005608 }
5609 }
5610
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005611 /* For Extended CONNECT, the :authority must be present.
5612 * Use host value for it.
5613 */
5614 if (unlikely(extended_connect) && isttest(host))
5615 auth = host;
5616
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005617 if (!scheme.len) {
5618 /* no explicit scheme, we're using an origin-form URI,
5619 * probably from an H1 request transcoded to H2 via an
5620 * external layer, then received as H2 without authority.
5621 * So we have to look up the scheme from the HTX flags.
5622 * In such a case only http and https are possible, and
5623 * https is the default (sent by browsers).
5624 */
5625 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5626 scheme = ist("http");
5627 else
5628 scheme = ist("https");
5629 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005630
5631 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005632 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005633 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005634 goto realign_again;
5635 goto full;
5636 }
Willy Tarreau80739692018-10-05 11:35:57 +02005637
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005638 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005639 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005640 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005641 goto realign_again;
5642 goto full;
5643 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005644
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005645 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5646 * be sent as '/' or '*'.
5647 */
5648 if (unlikely(!uri.len)) {
5649 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5650 uri = ist("*");
5651 else
5652 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005653 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005654
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005655 if (!hpack_encode_path(&outbuf, uri)) {
5656 /* output full */
5657 if (b_space_wraps(mbuf))
5658 goto realign_again;
5659 goto full;
5660 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005661
5662 /* encode the pseudo-header protocol from rfc8441 if using
5663 * Extended CONNECT method.
5664 */
5665 if (unlikely(extended_connect)) {
5666 const struct ist protocol = ist(h2s->upgrade_protocol);
5667 if (isttest(protocol)) {
5668 if (!hpack_encode_header(&outbuf,
5669 ist(":protocol"),
5670 protocol)) {
5671 /* output full */
5672 if (b_space_wraps(mbuf))
5673 goto realign_again;
5674 goto full;
5675 }
5676 }
5677 }
Willy Tarreau80739692018-10-05 11:35:57 +02005678 }
5679
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005680 /* encode all headers, stop at empty name. Host is only sent if we
5681 * do not provide an authority.
5682 */
Willy Tarreau80739692018-10-05 11:35:57 +02005683 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005684 struct ist n = list[hdr].n;
5685 struct ist v = list[hdr].v;
5686
Willy Tarreau80739692018-10-05 11:35:57 +02005687 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005688 if (isteq(n, ist("connection")) ||
5689 (auth.len && isteq(n, ist("host"))) ||
5690 isteq(n, ist("proxy-connection")) ||
5691 isteq(n, ist("keep-alive")) ||
5692 isteq(n, ist("upgrade")) ||
5693 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005694 continue;
5695
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005696 if (isteq(n, ist("te"))) {
5697 /* "te" may only be sent with "trailers" if this value
5698 * is present, otherwise it must be deleted.
5699 */
5700 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005701 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005702 continue;
5703 v = ist("trailers");
5704 }
5705
Christopher Faulet86d144c2019-08-14 16:32:25 +02005706 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005707 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005708 continue;
5709
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005710 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005711 break; // end
5712
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005713 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005714 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005715 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005716 goto realign_again;
5717 goto full;
5718 }
5719 }
5720
Willy Tarreaucb985a42019-10-07 16:56:34 +02005721 /* update the frame's size */
5722 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5723
5724 if (outbuf.data > h2c->mfs + 9) {
5725 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5726 /* output full */
5727 if (b_space_wraps(mbuf))
5728 goto realign_again;
5729 goto full;
5730 }
5731 }
5732
Willy Tarreau3a537072021-06-17 08:40:04 +02005733 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5734
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005735 /* remove all header blocks including the EOH and compute the
5736 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005737 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005738 ret = 0;
5739 blk = htx_get_head_blk(htx);
5740 while (blk) {
5741 type = htx_get_blk_type(blk);
5742 ret += htx_get_blksz(blk);
5743 blk = htx_remove_blk(htx, blk);
5744 /* The removed block is the EOH */
5745 if (type == HTX_BLK_EOH)
5746 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005747 }
Willy Tarreau80739692018-10-05 11:35:57 +02005748
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01005749 if (!h2s->cs || h2s->endp->flags & CS_EP_SHW) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005750 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005751 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005752 }
5753 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5754 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5755 * request)
5756 */
5757 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5758 es_now = 1;
5759 }
Willy Tarreau80739692018-10-05 11:35:57 +02005760
Willy Tarreau80739692018-10-05 11:35:57 +02005761 if (es_now)
5762 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5763
5764 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005765 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005766 h2s->flags |= H2_SF_HEADERS_SENT;
5767 h2s->st = H2_SS_OPEN;
5768
Willy Tarreau80739692018-10-05 11:35:57 +02005769 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005770 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 +02005771 // trim any possibly pending data (eg: inconsistent content-length)
5772 h2s->flags |= H2_SF_ES_SENT;
5773 h2s->st = H2_SS_HLOC;
5774 }
5775
Willy Tarreau80739692018-10-05 11:35:57 +02005776 end:
5777 return ret;
5778 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005779 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5780 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005781 h2c->flags |= H2_CF_MUX_MFULL;
5782 h2s->flags |= H2_SF_BLK_MROOM;
5783 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005784 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 +02005785 goto end;
5786 fail:
5787 /* unparsable HTX messages, too large ones to be produced in the local
5788 * list etc go here (unrecoverable errors).
5789 */
5790 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5791 ret = 0;
5792 goto end;
5793}
5794
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005795/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005796 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5797 * caller must check the stream's status to detect any error which might have
5798 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005799 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005800 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005801static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005802{
5803 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005804 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005805 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005806 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005807 size_t total = 0;
5808 int es_now = 0;
5809 int bsize; /* htx block size */
5810 int fsize; /* h2 frame size */
5811 struct htx_blk *blk;
5812 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005813 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005814
Willy Tarreau7838a792019-08-12 18:42:03 +02005815 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5816
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005817 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005818 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005819 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005820 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005821 goto end;
5822 }
5823
Willy Tarreau98de12a2018-12-12 07:03:00 +01005824 htx = htx_from_buf(buf);
5825
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005826 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005827
5828 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005829 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005830 goto end;
5831
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005832 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005833 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5834 /* The response HEADERS frame not received yet. Thus the tunnel
5835 * is not fully established yet. In this situation, we block
5836 * data sending.
5837 */
5838 h2s->flags |= H2_SF_BLK_MBUSY;
5839 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5840 goto end;
5841 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005842 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5843 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5844 * Thus the stream is closed with the CANCEL error. The error will be reported to
5845 * the upper layer as aserver abort. But at this stage there is nothing more we can
5846 * do. We just wait for the end of the response to be sure to not truncate it.
5847 */
5848 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5849 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5850 h2s->flags |= H2_SF_BLK_MBUSY;
5851 }
5852 else {
5853 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5854 h2s_error(h2s, H2_ERR_CANCEL);
5855 }
5856 goto end;
5857 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005858
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005859 blk = htx_get_head_blk(htx);
5860 type = htx_get_blk_type(blk);
5861 bsize = htx_get_blksz(blk);
5862 fsize = bsize;
5863 trunc_out = 0;
5864 if (type != HTX_BLK_DATA)
5865 goto end;
5866
Willy Tarreau9c218e72019-05-26 10:08:28 +02005867 mbuf = br_tail(h2c->mbuf);
5868 retry:
5869 if (!h2_get_buf(h2c, mbuf)) {
5870 h2c->flags |= H2_CF_MUX_MALLOC;
5871 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005872 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 +02005873 goto end;
5874 }
5875
Willy Tarreau98de12a2018-12-12 07:03:00 +01005876 /* Perform some optimizations to reduce the number of buffer copies.
5877 * First, if the mux's buffer is empty and the htx area contains
5878 * exactly one data block of the same size as the requested count, and
5879 * this count fits within the frame size, the stream's window size, and
5880 * the connection's window size, then it's possible to simply swap the
5881 * caller's buffer with the mux's output buffer and adjust offsets and
5882 * length to match the entire DATA HTX block in the middle. In this
5883 * case we perform a true zero-copy operation from end-to-end. This is
5884 * the situation that happens all the time with large files. Second, if
5885 * this is not possible, but the mux's output buffer is empty, we still
5886 * have an opportunity to avoid the copy to the intermediary buffer, by
5887 * making the intermediary buffer's area point to the output buffer's
5888 * area. In this case we want to skip the HTX header to make sure that
5889 * copies remain aligned and that this operation remains possible all
5890 * the time. This goes for headers, data blocks and any data extracted
5891 * from the HTX blocks.
5892 */
5893 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005894 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005895 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005896 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005897
Willy Tarreaubcc45952019-05-26 10:05:50 +02005898 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005899 /* Too bad there are data left there. We're willing to memcpy/memmove
5900 * up to 1/4 of the buffer, which means that it's OK to copy a large
5901 * frame into a buffer containing few data if it needs to be realigned,
5902 * and that it's also OK to copy few data without realigning. Otherwise
5903 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005904 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005905 if (fsize + 9 <= b_room(mbuf) &&
5906 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005907 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5908 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 +01005909 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005910 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005911
Willy Tarreau9c218e72019-05-26 10:08:28 +02005912 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5913 goto retry;
5914
Willy Tarreau98de12a2018-12-12 07:03:00 +01005915 h2c->flags |= H2_CF_MUX_MFULL;
5916 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005917 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 +01005918 goto end;
5919 }
5920
Christopher Faulet925abdf2021-04-27 22:51:07 +02005921 if (htx->flags & HTX_FL_EOM) {
5922 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5923 * message)
5924 */
5925 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5926 es_now = 1;
5927 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005928 /* map an H2 frame to the HTX block so that we can put the
5929 * frame header there.
5930 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005931 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5932 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005933
5934 /* prepend an H2 DATA frame header just before the DATA block */
5935 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5936 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005937 if (es_now)
5938 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005939 h2_set_frame_size(outbuf.area, fsize);
5940
5941 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005942 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005943 h2c->mws -= fsize;
5944
5945 /* and exchange with our old area */
5946 buf->area = old_area;
5947 buf->data = buf->head = 0;
5948 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005949 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005950
5951 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 +02005952 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005953 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005954
Willy Tarreau98de12a2018-12-12 07:03:00 +01005955 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005956 /* for DATA and EOM we'll have to emit a frame, even if empty */
5957
5958 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005959 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5960 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005961 break;
5962 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005963 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005964 }
5965
5966 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005967 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5968 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005969 h2c->flags |= H2_CF_MUX_MFULL;
5970 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005971 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005972 goto end;
5973 }
5974
5975 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5976 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5977 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5978 outbuf.data = 9;
5979
5980 /* we have in <fsize> the exact number of bytes we need to copy from
5981 * the HTX buffer. We need to check this against the connection's and
5982 * the stream's send windows, and to ensure that this fits in the max
5983 * frame size and in the buffer's available space minus 9 bytes (for
5984 * the frame header). The connection's flow control is applied last so
5985 * that we can use a separate list of streams which are immediately
5986 * unblocked on window opening. Note: we don't implement padding.
5987 */
5988
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005989 if (!fsize)
5990 goto send_empty;
5991
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005992 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005993 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005994 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005995 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005996 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005997 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 +01005998 goto end;
5999 }
6000
Willy Tarreauee573762018-12-04 15:25:57 +01006001 if (fsize > count)
6002 fsize = count;
6003
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006004 if (fsize > h2s_mws(h2s))
6005 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006006
6007 if (h2c->mfs && fsize > h2c->mfs)
6008 fsize = h2c->mfs; // >0
6009
6010 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02006011 /* It doesn't fit at once. If it at least fits once split and
6012 * the amount of data to move is low, let's defragment the
6013 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006014 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006015 if (b_space_wraps(mbuf) &&
6016 (fsize + 9 <= b_room(mbuf)) &&
6017 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006018 goto realign_again;
6019 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006020 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006021
6022 if (fsize <= 0) {
6023 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02006024 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6025 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006026 h2c->flags |= H2_CF_MUX_MFULL;
6027 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006028 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006029 goto end;
6030 }
6031 }
6032
6033 if (h2c->mws <= 0) {
6034 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02006035 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 +01006036 goto end;
6037 }
6038
6039 if (fsize > h2c->mws)
6040 fsize = h2c->mws;
6041
6042 /* now let's copy this this into the output buffer */
6043 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006044 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006045 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006046 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006047
6048 send_empty:
6049 /* update the frame's size */
6050 h2_set_frame_size(outbuf.area, fsize);
6051
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006052 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006053 total += fsize;
6054 if (fsize == bsize) {
6055 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006056 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6057 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6058 * message)
6059 */
6060 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6061 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006062 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006063 }
6064 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006065 /* we've truncated this block */
6066 htx_cut_data_blk(htx, blk, fsize);
6067 }
6068
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006069 if (es_now)
6070 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6071
6072 /* commit the H2 response */
6073 b_add(mbuf, fsize + 9);
6074
Christopher Faulet925abdf2021-04-27 22:51:07 +02006075 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006076 if (es_now) {
6077 if (h2s->st == H2_SS_OPEN)
6078 h2s->st = H2_SS_HLOC;
6079 else
6080 h2s_close(h2s);
6081
6082 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006083 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 +01006084 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006085 else if (fsize) {
6086 if (fsize == bsize) {
6087 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6088 goto new_frame;
6089 }
6090 else if (trunc_out) {
6091 /* we've truncated this block */
6092 goto new_frame;
6093 }
6094 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006095
6096 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006097 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006098 return total;
6099}
6100
Christopher Faulet991febd2020-12-02 15:17:31 +01006101/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6102 * ES flag set for stream <h2s>. This function is called for response known to
6103 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006104 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006105 * which might have happened subsequently to a successful send. Returns the
6106 * number of data bytes consumed, or zero if nothing done.
6107 */
6108static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6109{
6110 struct h2c *h2c = h2s->h2c;
6111 struct htx *htx;
6112 int bsize; /* htx block size */
6113 int fsize; /* h2 frame size */
6114 struct htx_blk *blk;
6115 enum htx_blk_type type;
6116 size_t total = 0;
6117
6118 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6119
6120 if (h2c_mux_busy(h2c, h2s)) {
6121 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6122 h2s->flags |= H2_SF_BLK_MBUSY;
6123 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6124 goto end;
6125 }
6126
6127 htx = htx_from_buf(buf);
6128
6129 next_data:
6130 if (!count || htx_is_empty(htx))
6131 goto end;
6132 blk = htx_get_head_blk(htx);
6133 type = htx_get_blk_type(blk);
6134 bsize = htx_get_blksz(blk);
6135 fsize = bsize;
6136 if (type != HTX_BLK_DATA)
6137 goto end;
6138
6139 if (fsize > count)
6140 fsize = count;
6141
6142 if (fsize != bsize)
6143 goto skip_data;
6144
6145 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6146 goto skip_data;
6147
6148 /* Here, it is the last block and it is also the end of the message. So
6149 * we can emit an empty DATA frame with the ES flag set
6150 */
6151 if (h2_send_empty_data_es(h2s) <= 0)
6152 goto end;
6153
6154 if (h2s->st == H2_SS_OPEN)
6155 h2s->st = H2_SS_HLOC;
6156 else
6157 h2s_close(h2s);
6158
6159 skip_data:
6160 /* consume incoming HTX block */
6161 total += fsize;
6162 if (fsize == bsize) {
6163 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6164 htx_remove_blk(htx, blk);
6165 goto next_data;
6166 }
6167 else {
6168 /* we've truncated this block */
6169 htx_cut_data_blk(htx, blk, fsize);
6170 }
6171
6172 end:
6173 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6174 return total;
6175}
6176
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006177/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6178 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6179 * processed. The caller must check the stream's status to detect any error
6180 * which might have happened subsequently to a successful send. The htx blocks
6181 * are automatically removed from the message. The htx message is assumed to be
6182 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006183 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6184 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006185 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006186static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006187{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006188 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006189 struct h2c *h2c = h2s->h2c;
6190 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006191 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006192 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006193 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006194 int ret = 0;
6195 int hdr;
6196 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006197
Willy Tarreau7838a792019-08-12 18:42:03 +02006198 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6199
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006200 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006201 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006202 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006203 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006204 goto end;
6205 }
6206
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006207 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006208 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006209 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006210 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006211
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006212 if (type == HTX_BLK_UNUSED)
6213 continue;
6214
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006215 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006216 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006217 if (type == HTX_BLK_TLR) {
6218 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6219 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6220 goto fail;
6221 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006222
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006223 list[hdr].n = htx_get_blk_name(htx, blk);
6224 list[hdr].v = htx_get_blk_value(htx, blk);
6225 hdr++;
6226 }
6227 else {
6228 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 +01006229 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006230 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006231 }
6232
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006233 /* marker for end of trailers */
6234 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006235
Willy Tarreau9c218e72019-05-26 10:08:28 +02006236 mbuf = br_tail(h2c->mbuf);
6237 retry:
6238 if (!h2_get_buf(h2c, mbuf)) {
6239 h2c->flags |= H2_CF_MUX_MALLOC;
6240 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006241 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 +02006242 goto end;
6243 }
6244
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006245 chunk_reset(&outbuf);
6246
6247 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006248 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6249 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006250 break;
6251 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006252 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006253 }
6254
6255 if (outbuf.size < 9)
6256 goto full;
6257
6258 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6259 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6260 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6261 outbuf.data = 9;
6262
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006263 /* encode all headers */
6264 for (idx = 0; idx < hdr; idx++) {
6265 /* these ones do not exist in H2 or must not appear in
6266 * trailers and must be dropped.
6267 */
6268 if (isteq(list[idx].n, ist("host")) ||
6269 isteq(list[idx].n, ist("content-length")) ||
6270 isteq(list[idx].n, ist("connection")) ||
6271 isteq(list[idx].n, ist("proxy-connection")) ||
6272 isteq(list[idx].n, ist("keep-alive")) ||
6273 isteq(list[idx].n, ist("upgrade")) ||
6274 isteq(list[idx].n, ist("te")) ||
6275 isteq(list[idx].n, ist("transfer-encoding")))
6276 continue;
6277
Christopher Faulet86d144c2019-08-14 16:32:25 +02006278 /* Skip all pseudo-headers */
6279 if (*(list[idx].n.ptr) == ':')
6280 continue;
6281
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006282 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6283 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006284 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006285 goto realign_again;
6286 goto full;
6287 }
6288 }
6289
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006290 if (outbuf.data == 9) {
6291 /* here we have a problem, we have nothing to emit (either we
6292 * received an empty trailers block followed or we removed its
6293 * contents above). Because of this we can't send a HEADERS
6294 * frame, so we have to cheat and instead send an empty DATA
6295 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006296 */
6297 outbuf.area[3] = H2_FT_DATA;
6298 outbuf.area[4] = H2_F_DATA_END_STREAM;
6299 }
6300
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006301 /* update the frame's size */
6302 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6303
Willy Tarreau572d9f52019-10-11 16:58:37 +02006304 if (outbuf.data > h2c->mfs + 9) {
6305 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6306 /* output full */
6307 if (b_space_wraps(mbuf))
6308 goto realign_again;
6309 goto full;
6310 }
6311 }
6312
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006313 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006314 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 +02006315 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006316 h2s->flags |= H2_SF_ES_SENT;
6317
6318 if (h2s->st == H2_SS_OPEN)
6319 h2s->st = H2_SS_HLOC;
6320 else
6321 h2s_close(h2s);
6322
6323 /* OK we could properly deliver the response */
6324 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006325 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006326 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006327 blk = htx_get_head_blk(htx);
6328 while (blk) {
6329 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006330 ret += htx_get_blksz(blk);
6331 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006332 /* The removed block is the EOT */
6333 if (type == HTX_BLK_EOT)
6334 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006335 }
6336
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006337 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006338 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006339 return ret;
6340 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006341 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6342 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006343 h2c->flags |= H2_CF_MUX_MFULL;
6344 h2s->flags |= H2_SF_BLK_MROOM;
6345 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006346 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 +01006347 goto end;
6348 fail:
6349 /* unparsable HTX messages, too large ones to be produced in the local
6350 * list etc go here (unrecoverable errors).
6351 */
6352 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6353 ret = 0;
6354 goto end;
6355}
6356
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006357/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6358 * event subscriber <es> is not allowed to change from a previous call as long
6359 * as at least one event is still subscribed. The <event_type> must only be a
6360 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006361 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006362static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006363{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006364 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006365 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006366
Willy Tarreau7838a792019-08-12 18:42:03 +02006367 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006368
6369 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006370 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006371
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006372 es->events |= event_type;
6373 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006374
6375 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006376 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006377
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006378 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006379 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006380 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006381 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006382 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006383 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006384 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006385 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006386 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006387 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006388 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006389 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006390}
6391
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006392/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6393 * The <es> pointer is not allowed to differ from the one passed to the
6394 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006395 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006396static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006397{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006398 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006399
Willy Tarreau7838a792019-08-12 18:42:03 +02006400 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006401
6402 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006403 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006404
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006405 es->events &= ~event_type;
6406 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006407 h2s->subs = NULL;
6408
6409 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006410 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006411
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006412 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006413 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006414 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006415 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6416 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006417 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006418
Willy Tarreau7838a792019-08-12 18:42:03 +02006419 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006420 return 0;
6421}
6422
6423
Christopher Faulet564e39c2021-09-21 15:50:55 +02006424/* Called from the upper layer, to receive data
6425 *
6426 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6427 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6428 * means the caller wants to flush input data (from the mux buffer and the
6429 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6430 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6431 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6432 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6433 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6434 * copy as much data as possible.
6435 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006436static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6437{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006438 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau082f5592018-11-25 08:03:32 +01006439 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006440 struct htx *h2s_htx = NULL;
6441 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006442 size_t ret = 0;
6443
Willy Tarreau7838a792019-08-12 18:42:03 +02006444 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6445
Olivier Houchard511efea2018-08-16 15:30:32 +02006446 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006447 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006448 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006449 /* Here htx_to_buf() will set buffer data to 0 because
6450 * the HTX is empty.
6451 */
6452 htx_to_buf(h2s_htx, &h2s->rxbuf);
6453 goto end;
6454 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006455
Christopher Faulet9b79a102019-07-15 11:22:56 +02006456 ret = h2s_htx->data;
6457 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006458
Christopher Faulet9b79a102019-07-15 11:22:56 +02006459 /* <buf> is empty and the message is small enough, swap the
6460 * buffers. */
6461 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006462 htx_to_buf(buf_htx, buf);
6463 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006464 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6465 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006466 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006467
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006468 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006469
6470 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6471 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6472 if (htx_is_empty(buf_htx))
6473 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006474 }
Christopher Faulet810df062020-07-22 16:20:34 +02006475 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006476 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006477
Christopher Faulet9b79a102019-07-15 11:22:56 +02006478 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6479 htx_to_buf(buf_htx, buf);
6480 htx_to_buf(h2s_htx, &h2s->rxbuf);
6481 ret -= h2s_htx->data;
6482
Christopher Faulet37070b22019-02-14 15:12:14 +01006483 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006484 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006485 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006486 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006487 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006488 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006489 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006490 /* Add EOS flag for tunnel */
6491 if (h2s->flags & H2_SF_BODY_TUNNEL)
6492 cs->flags |= CS_FL_EOS;
6493 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006494 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006495 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006496 if (cs->flags & CS_FL_ERR_PENDING)
6497 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006498 if (b_size(&h2s->rxbuf)) {
6499 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006500 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006501 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006502 }
6503
Willy Tarreau082f5592018-11-25 08:03:32 +01006504 if (ret && h2c->dsi == h2s->id) {
6505 /* demux is blocking on this stream's buffer */
6506 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006507 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006508 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006509
Willy Tarreau7838a792019-08-12 18:42:03 +02006510 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006511 return ret;
6512}
6513
Olivier Houchardd846c262018-10-19 17:24:29 +02006514
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006515/* Called from the upper layer, to send data from buffer <buf> for no more than
6516 * <count> bytes. Returns the number of bytes effectively sent. Some status
6517 * flags may be updated on the conn_stream.
6518 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006519static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006520{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006521 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006522 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006523 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006524 struct htx *htx;
6525 struct htx_blk *blk;
6526 enum htx_blk_type btype;
6527 uint32_t bsize;
6528 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006529
Willy Tarreau7838a792019-08-12 18:42:03 +02006530 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6531
Olivier Houchardd360ac62019-03-22 17:37:16 +01006532 /* If we were not just woken because we wanted to send but couldn't,
6533 * and there's somebody else that is waiting to send, do nothing,
6534 * we will subscribe later and be put at the end of the list
6535 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006536 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006537 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6538 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 +01006539 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006540 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006541 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006542
Willy Tarreau7838a792019-08-12 18:42:03 +02006543 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6544 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 +02006545 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006546 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006547
Willy Tarreaucab22952019-10-31 15:48:18 +01006548 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6549 cs->flags |= CS_FL_ERROR;
6550 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);
6551 return 0;
6552 }
6553
Christopher Faulet9b79a102019-07-15 11:22:56 +02006554 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006555
Willy Tarreau0bad0432018-06-14 16:54:01 +02006556 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006557 h2s->flags |= H2_SF_OUTGOING_DATA;
6558
Willy Tarreau751f2d02018-10-05 09:35:00 +02006559 if (h2s->id == 0) {
6560 int32_t id = h2c_get_next_sid(h2s->h2c);
6561
6562 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006563 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006564 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 +02006565 return 0;
6566 }
6567
6568 eb32_delete(&h2s->by_id);
6569 h2s->by_id.key = h2s->id = id;
6570 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006571 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006572 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6573 }
6574
Christopher Faulet9b79a102019-07-15 11:22:56 +02006575 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6576 count && !htx_is_empty(htx)) {
6577 idx = htx_get_head(htx);
6578 blk = htx_get_blk(htx, idx);
6579 btype = htx_get_blk_type(blk);
6580 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006581
Christopher Faulet9b79a102019-07-15 11:22:56 +02006582 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006583 case HTX_BLK_REQ_SL:
6584 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006585 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006586 if (ret > 0) {
6587 total += ret;
6588 count -= ret;
6589 if (ret < bsize)
6590 goto done;
6591 }
6592 break;
6593
Willy Tarreau115e83b2018-12-01 19:17:53 +01006594 case HTX_BLK_RES_SL:
6595 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006596 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006597 if (ret > 0) {
6598 total += ret;
6599 count -= ret;
6600 if (ret < bsize)
6601 goto done;
6602 }
6603 break;
6604
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006605 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006606 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006607 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6608 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6609 ret = h2s_skip_data(h2s, buf, count);
6610 else
6611 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006612 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006613 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006614 total += ret;
6615 count -= ret;
6616 if (ret < bsize)
6617 goto done;
6618 }
6619 break;
6620
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006621 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006622 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006623 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006624 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006625 if (ret > 0) {
6626 total += ret;
6627 count -= ret;
6628 if (ret < bsize)
6629 goto done;
6630 }
6631 break;
6632
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006633 default:
6634 htx_remove_blk(htx, blk);
6635 total += bsize;
6636 count -= bsize;
6637 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006638 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006639 }
6640
Christopher Faulet9b79a102019-07-15 11:22:56 +02006641 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006642 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006643 /* trim any possibly pending data after we close (extra CR-LF,
6644 * unprocessed trailers, abnormal extra data, ...)
6645 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006646 total += count;
6647 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006648 }
6649
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006650 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006651 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006652 TRACE_DEVEL("reporting RST/error to the app-layer stream", H2_EV_H2S_SEND|H2_EV_H2S_ERR|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Willy Tarreauec988c72018-12-19 18:00:29 +01006653 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006654 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006655 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006656 }
6657
Christopher Faulet9b79a102019-07-15 11:22:56 +02006658 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006659
Olivier Houchard7505f942018-08-21 18:10:44 +02006660 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006661 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006662 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 +02006663 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006664 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006665
Olivier Houchard7505f942018-08-21 18:10:44 +02006666 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006667 /* If we're waiting for flow control, and we got a shutr on the
6668 * connection, we will never be unlocked, so add an error on
6669 * the conn_stream.
6670 */
6671 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6672 !b_data(&h2s->h2c->dbuf) &&
6673 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006674 TRACE_DEVEL("fctl with shutr, reporting error to app-layer", H2_EV_H2S_SEND|H2_EV_STRM_SEND|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006675 if (cs->flags & CS_FL_EOS)
6676 cs->flags |= CS_FL_ERROR;
6677 else
6678 cs->flags |= CS_FL_ERR_PENDING;
6679 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006680
Willy Tarreau5723f292020-01-10 15:16:57 +01006681 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6682 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006683 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006684 LIST_DEL_INIT(&h2s->list);
6685 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006686
Willy Tarreau7838a792019-08-12 18:42:03 +02006687 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006688 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006689}
6690
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006691/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006692static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006693{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006694 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006695 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006696 struct eb32_node *node;
6697 int fctl_cnt = 0;
6698 int send_cnt = 0;
6699 int tree_cnt = 0;
6700 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006701 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006702 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006703
6704 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006705 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006706
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006707 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006708 fctl_cnt++;
6709
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006710 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006711 send_cnt++;
6712
Willy Tarreau3af37712018-12-18 14:34:41 +01006713 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006714 node = eb32_first(&h2c->streams_by_id);
6715 while (node) {
6716 h2s = container_of(node, struct h2s, by_id);
6717 tree_cnt++;
6718 if (!h2s->cs)
6719 orph_cnt++;
6720 node = eb32_next(node);
6721 }
6722
Willy Tarreau60f62682019-05-26 11:32:27 +02006723 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006724 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006725 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006726 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006727 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6728 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006729 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006730 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006731 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006732 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6733 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6734 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006735 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6736 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6737 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006738 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6739 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006740
6741 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006742 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006743 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006744 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6745 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6746 h2s->cs);
6747 if (h2s->cs)
Christopher Fauletf835dea2021-12-21 14:35:17 +01006748 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6749 h2s->cs->flags, h2s->cs->app);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006750
6751 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6752 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006753 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6754 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6755 h2s->subs->tasklet->calls,
6756 h2s->subs->tasklet->context);
6757 if (h2s->subs->tasklet->calls >= 1000000)
6758 ret = 1;
6759 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6760 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006761 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006762 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006763 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006764}
Willy Tarreau62f52692017-10-08 23:01:42 +02006765
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006766/* Migrate the the connection to the current thread.
6767 * Return 0 if successful, non-zero otherwise.
6768 * Expected to be called with the old thread lock held.
6769 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006770static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006771{
6772 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006773 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006774
6775 if (fd_takeover(conn->handle.fd, conn) != 0)
6776 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006777
6778 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6779 /* We failed to takeover the xprt, even if the connection may
6780 * still be valid, flag it as error'd, as we have already
6781 * taken over the fd, and wake the tasklet, so that it will
6782 * destroy it.
6783 */
6784 conn->flags |= CO_FL_ERROR;
6785 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6786 return -1;
6787 }
6788
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006789 if (h2c->wait_event.events)
6790 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6791 h2c->wait_event.events, &h2c->wait_event);
6792 /* To let the tasklet know it should free itself, and do nothing else,
6793 * set its context to NULL.
6794 */
6795 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006796 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006797
6798 task = h2c->task;
6799 if (task) {
6800 task->context = NULL;
6801 h2c->task = NULL;
6802 __ha_barrier_store();
6803 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006804
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006805 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006806 if (!h2c->task) {
6807 h2_release(h2c);
6808 return -1;
6809 }
6810 h2c->task->process = h2_timeout_task;
6811 h2c->task->context = h2c;
6812 }
6813 h2c->wait_event.tasklet = tasklet_new();
6814 if (!h2c->wait_event.tasklet) {
6815 h2_release(h2c);
6816 return -1;
6817 }
6818 h2c->wait_event.tasklet->process = h2_io_cb;
6819 h2c->wait_event.tasklet->context = h2c;
6820 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6821 SUB_RETRY_RECV, &h2c->wait_event);
6822
6823 return 0;
6824}
6825
Willy Tarreau62f52692017-10-08 23:01:42 +02006826/*******************************************************/
6827/* functions below are dedicated to the config parsers */
6828/*******************************************************/
6829
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006830/* config parser for global "tune.h2.header-table-size" */
6831static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006832 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006833 char **err)
6834{
6835 if (too_many_args(1, args, err, NULL))
6836 return -1;
6837
6838 h2_settings_header_table_size = atoi(args[1]);
6839 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6840 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6841 return -1;
6842 }
6843 return 0;
6844}
Willy Tarreau62f52692017-10-08 23:01:42 +02006845
Willy Tarreaue6baec02017-07-27 11:45:11 +02006846/* config parser for global "tune.h2.initial-window-size" */
6847static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006848 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006849 char **err)
6850{
6851 if (too_many_args(1, args, err, NULL))
6852 return -1;
6853
6854 h2_settings_initial_window_size = atoi(args[1]);
6855 if (h2_settings_initial_window_size < 0) {
6856 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6857 return -1;
6858 }
6859 return 0;
6860}
6861
Willy Tarreau5242ef82017-07-27 11:47:28 +02006862/* config parser for global "tune.h2.max-concurrent-streams" */
6863static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006864 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006865 char **err)
6866{
6867 if (too_many_args(1, args, err, NULL))
6868 return -1;
6869
6870 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006871 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006872 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6873 return -1;
6874 }
6875 return 0;
6876}
6877
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006878/* config parser for global "tune.h2.max-frame-size" */
6879static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006880 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006881 char **err)
6882{
6883 if (too_many_args(1, args, err, NULL))
6884 return -1;
6885
6886 h2_settings_max_frame_size = atoi(args[1]);
6887 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6888 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6889 return -1;
6890 }
6891 return 0;
6892}
6893
Willy Tarreau62f52692017-10-08 23:01:42 +02006894
6895/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006896/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006897/***************************************/
6898
6899/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006900static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006901 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006902 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006903 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006904 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006905 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006906 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006907 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006908 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006909 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006910 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006911 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006912 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006913 .shutr = h2_shutr,
6914 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006915 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006916 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006917 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006918 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006919 .name = "H2",
6920};
6921
Christopher Faulet32f61c02018-04-10 14:33:41 +02006922static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006923 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006924
Willy Tarreau0108d902018-11-25 19:14:37 +01006925INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6926
Willy Tarreau62f52692017-10-08 23:01:42 +02006927/* config keyword parsers */
6928static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006929 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006930 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006931 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006932 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006933 { 0, NULL, NULL }
6934}};
6935
Willy Tarreau0108d902018-11-25 19:14:37 +01006936INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006937
6938/* initialize internal structs after the config is parsed.
6939 * Returns zero on success, non-zero on error.
6940 */
6941static int init_h2()
6942{
6943 pool_head_hpack_tbl = create_pool("hpack_tbl",
6944 h2_settings_header_table_size,
6945 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006946 if (!pool_head_hpack_tbl) {
6947 ha_alert("failed to allocate hpack_tbl memory pool\n");
6948 return (ERR_ALERT | ERR_FATAL);
6949 }
6950 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006951}
6952
6953REGISTER_POST_CHECK(init_h2);