blob: 0c312ba19cc736e283024851c8cef137bf3d98ec [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 Tarreau49745612017-12-03 18:56:02 +0100136 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200137 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100138 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100139 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200140 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100141 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100142 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200143 struct eb_root streams_by_id; /* all active streams by their ID */
144 struct list send_list; /* list of blocked streams requesting to send */
145 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200146 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100147 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200148 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200149};
150
Willy Tarreau18312642017-10-11 07:57:07 +0200151/* H2 stream state, in h2s->st */
152enum h2_ss {
153 H2_SS_IDLE = 0, // idle
154 H2_SS_RLOC, // reserved(local)
155 H2_SS_RREM, // reserved(remote)
156 H2_SS_OPEN, // open
157 H2_SS_HREM, // half-closed(remote)
158 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200159 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200160 H2_SS_CLOSED, // closed
161 H2_SS_ENTRIES // must be last
162} __attribute__((packed));
163
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200164#define H2_SS_MASK(state) (1UL << (state))
165#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
166#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
167#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
168#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
169#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
170#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
171#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
172#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200173
Willy Tarreau18312642017-10-11 07:57:07 +0200174/* HTTP/2 stream flags (32 bit), in h2s->flags */
175#define H2_SF_NONE 0x00000000
176#define H2_SF_ES_RCVD 0x00000001
177#define H2_SF_ES_SENT 0x00000002
178
179#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
180#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
181
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200182/* stream flags indicating the reason the stream is blocked */
183#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200184#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
185#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
186#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200187#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
188
Willy Tarreau454f9052017-10-26 19:40:35 +0200189/* stream flags indicating how data is supposed to be sent */
190#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100191#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100192#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
193
Willy Tarreau454f9052017-10-26 19:40:35 +0200194
Willy Tarreaud9464162020-01-10 18:25:07 +0100195#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100196#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100197#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100198
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100199#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
200
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200201#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
202#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200203#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200204
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100205#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100206#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100207
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100208#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200209
Willy Tarreau18312642017-10-11 07:57:07 +0200210/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100211 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200212 */
213struct h2s {
214 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100215 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200216 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200217 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200218 int32_t id; /* stream ID */
219 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200220 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200221 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
222 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200223 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100224 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200225 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100226 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200227 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100228 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
229 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100230
231 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200232};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200233
Willy Tarreauc6405142017-09-21 20:23:50 +0200234/* descriptor for an h2 frame header */
235struct h2_fh {
236 uint32_t len; /* length, host order, 24 bits */
237 uint32_t sid; /* stream id, host order, 31 bits */
238 uint8_t ft; /* frame type */
239 uint8_t ff; /* frame flags */
240};
241
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200243static void h2_trace(enum trace_level level, uint64_t mask, \
244 const struct trace_source *src,
245 const struct ist where, const struct ist func,
246 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200247
248/* The event representation is split like this :
249 * strm - application layer
250 * h2s - internal H2 stream
251 * h2c - internal H2 connection
252 * conn - external connection
253 *
254 */
255static const struct trace_event h2_trace_events[] = {
256#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200257 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200258#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200260#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200272#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .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 +0200278#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200280#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200286#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200298#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200300#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .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 +0200304#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200306#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200343 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200344#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200345 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200346#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200347 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200348#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200349 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200350#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200351 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200352#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200353 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200354#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200355 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200356#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200357 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200358#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200359 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200360 { }
361};
362
363static const struct name_desc h2_trace_lockon_args[4] = {
364 /* arg1 */ { /* already used by the connection */ },
365 /* arg2 */ { .name="h2s", .desc="H2 stream" },
366 /* arg3 */ { },
367 /* arg4 */ { }
368};
369
370static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200371#define H2_VERB_CLEAN 1
372 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
373#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200374 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200375#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200376 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200377#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200378 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200379#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200380 { .name="complete", .desc="add full data dump when available" },
381 { /* end */ }
382};
383
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200384static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200385 .name = IST("h2"),
386 .desc = "HTTP/2 multiplexer",
387 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200388 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200389 .known_events = h2_trace_events,
390 .lockon_args = h2_trace_lockon_args,
391 .decoding = h2_trace_decoding,
392 .report_events = ~0, // report everything by default
393};
394
395#define TRACE_SOURCE &trace_h2
396INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
397
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100398/* h2 stats module */
399enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100400 H2_ST_HEADERS_RCVD,
401 H2_ST_DATA_RCVD,
402 H2_ST_SETTINGS_RCVD,
403 H2_ST_RST_STREAM_RCVD,
404 H2_ST_GOAWAY_RCVD,
405
Amaury Denoyellea8879232020-10-27 17:16:03 +0100406 H2_ST_CONN_PROTO_ERR,
407 H2_ST_STRM_PROTO_ERR,
408 H2_ST_RST_STREAM_RESP,
409 H2_ST_GOAWAY_RESP,
410
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100411 H2_ST_OPEN_CONN,
412 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100413 H2_ST_TOTAL_CONN,
414 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100415
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100416 H2_STATS_COUNT /* must be the last member of the enum */
417};
418
419static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100420 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100421 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100422 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100423 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100424 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100425 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100426 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100427 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100428 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100429 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100430
431 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
432 .desc = "Total number of connection protocol errors" },
433 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
434 .desc = "Total number of stream protocol errors" },
435 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100436 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100437 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100438 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100439
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100440 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
441 .desc = "Count of currently open connections" },
442 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
443 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100444 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100445 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100446 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100447 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100448};
449
450static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100451 long long headers_rcvd; /* total number of HEADERS frame received */
452 long long data_rcvd; /* total number of DATA frame received */
453 long long settings_rcvd; /* total number of SETTINGS frame received */
454 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
455 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100456
457 long long conn_proto_err; /* total number of protocol errors detected */
458 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100459 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
460 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100461
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100462 long long open_conns; /* count of currently open connections */
463 long long open_streams; /* count of currently open streams */
464 long long total_conns; /* total number of connections */
465 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100466} h2_counters;
467
468static void h2_fill_stats(void *data, struct field *stats)
469{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100470 struct h2_counters *counters = data;
471
472 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
473 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
474 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
475 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
476 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100477
478 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
479 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
480 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
481 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100482
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100483 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
484 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
485 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
486 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100487}
488
489static struct stats_module h2_stats_module = {
490 .name = "h2",
491 .fill_stats = h2_fill_stats,
492 .stats = h2_stats,
493 .stats_count = H2_STATS_COUNT,
494 .counters = &h2_counters,
495 .counters_size = sizeof(h2_counters),
496 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
497 .clearable = 1,
498};
499
500INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
501
Willy Tarreau8ceae722018-11-26 11:58:30 +0100502/* the h2c connection pool */
503DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
504
505/* the h2s stream pool */
506DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
507
Willy Tarreaudc572362018-12-12 08:08:05 +0100508/* The default connection window size is 65535, it may only be enlarged using
509 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
510 * we'll pretend we already received the difference between the two to send
511 * an equivalent window update to enlarge it to 2G-1.
512 */
513#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
514
Willy Tarreau455d5682019-05-24 19:42:18 +0200515/* maximum amount of data we're OK with re-aligning for buffer optimizations */
516#define MAX_DATA_REALIGN 1024
517
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200518/* a few settings from the global section */
519static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200520static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100521static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100522static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200523
Willy Tarreau2a856182017-05-16 15:20:39 +0200524/* a dmumy closed stream */
525static const struct h2s *h2_closed_stream = &(const struct h2s){
526 .cs = NULL,
527 .h2c = NULL,
528 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100529 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100530 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200531 .id = 0,
532};
533
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100534/* a dmumy closed stream returning a PROTOCOL_ERROR error */
535static const struct h2s *h2_error_stream = &(const struct h2s){
536 .cs = NULL,
537 .h2c = NULL,
538 .st = H2_SS_CLOSED,
539 .errcode = H2_ERR_PROTOCOL_ERROR,
540 .flags = 0,
541 .id = 0,
542};
543
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100544/* a dmumy closed stream returning a REFUSED_STREAM error */
545static const struct h2s *h2_refused_stream = &(const struct h2s){
546 .cs = NULL,
547 .h2c = NULL,
548 .st = H2_SS_CLOSED,
549 .errcode = H2_ERR_REFUSED_STREAM,
550 .flags = 0,
551 .id = 0,
552};
553
Willy Tarreau2a856182017-05-16 15:20:39 +0200554/* and a dummy idle stream for use with any unannounced stream */
555static const struct h2s *h2_idle_stream = &(const struct h2s){
556 .cs = NULL,
557 .h2c = NULL,
558 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100559 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200560 .id = 0,
561};
562
Willy Tarreau144f84a2021-03-02 16:09:26 +0100563struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200564static int h2_send(struct h2c *h2c);
565static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200566static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100567/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100568struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100569static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100570static 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 +0100571static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100572struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100573static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100574static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200575
Willy Tarreauab2ec452019-08-30 07:07:08 +0200576/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
577static inline const char *h2c_st_to_str(enum h2_cs st)
578{
579 switch (st) {
580 case H2_CS_PREFACE: return "PRF";
581 case H2_CS_SETTINGS1: return "STG";
582 case H2_CS_FRAME_H: return "FRH";
583 case H2_CS_FRAME_P: return "FRP";
584 case H2_CS_FRAME_A: return "FRA";
585 case H2_CS_FRAME_E: return "FRE";
586 case H2_CS_ERROR: return "ERR";
587 case H2_CS_ERROR2: return "ER2";
588 default: return "???";
589 }
590}
591
592/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
593static inline const char *h2s_st_to_str(enum h2_ss st)
594{
595 switch (st) {
596 case H2_SS_IDLE: return "IDL"; // idle
597 case H2_SS_RLOC: return "RSL"; // reserved local
598 case H2_SS_RREM: return "RSR"; // reserved remote
599 case H2_SS_OPEN: return "OPN"; // open
600 case H2_SS_HREM: return "HCR"; // half-closed remote
601 case H2_SS_HLOC: return "HCL"; // half-closed local
602 case H2_SS_ERROR : return "ERR"; // error
603 case H2_SS_CLOSED: return "CLO"; // closed
604 default: return "???";
605 }
606}
607
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200608/* the H2 traces always expect that arg1, if non-null, is of type connection
609 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
610 * that arg3, if non-null, is either of type htx for tx headers, or of type
611 * buffer for everything else.
612 */
613static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
614 const struct ist where, const struct ist func,
615 const void *a1, const void *a2, const void *a3, const void *a4)
616{
617 const struct connection *conn = a1;
618 const struct h2c *h2c = conn ? conn->ctx : NULL;
619 const struct h2s *h2s = a2;
620 const struct buffer *buf = a3;
621 const struct htx *htx;
622 int pos;
623
624 if (!h2c) // nothing to add
625 return;
626
Willy Tarreau17104d42019-08-30 07:12:55 +0200627 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200628 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
629
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200630 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
631 conn_append_debug_info(&trace_buf, conn, " : ");
632
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100633 if (h2c->errcode)
634 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
635
Willy Tarreau73db4342019-09-25 07:28:44 +0200636 if (h2c->dsi >= 0 &&
637 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200638 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 +0200639 }
640
641 if (h2s) {
642 if (h2s->id <= 0)
643 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
644 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100645 if (h2s->id && h2s->errcode)
646 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200647 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200648 }
649
650 /* Let's dump decoded requests and responses right after parsing. They
651 * are traced at level USER with a few recognizable flags.
652 */
653 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
654 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
655 htx = htxbuf(buf); // recv req/res
656 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
657 htx = a3; // send req/res
658 else
659 htx = NULL;
660
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200661 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200662 const struct htx_blk *blk = htx_get_blk(htx, pos);
663 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
664 enum htx_blk_type type = htx_get_blk_type(blk);
665
666 if (type == HTX_BLK_REQ_SL)
667 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200668 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200669 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
670 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
671 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
672 else if (type == HTX_BLK_RES_SL)
673 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200674 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200675 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
676 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
677 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
678 }
679}
680
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200681
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100682/* Detect a pending read0 for a H2 connection. It happens if a read0 was
683 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
684 * to parse pending data, confirming no more progress is possible because
685 * we're facing a truncated frame. The function returns 1 to report a read0
686 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200687 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100688static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200689{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100690 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200691}
692
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200693/* returns true if the connection is allowed to expire, false otherwise. A
694 * connection may expire when:
695 * - it has no stream
696 * - it has data in the mux buffer
697 * - it has streams in the blocked list
698 * - it has streams in the fctl list
699 * - it has streams in the send list
700 * Otherwise it means some streams are waiting in the data layer and it should
701 * not expire.
702 */
703static inline int h2c_may_expire(const struct h2c *h2c)
704{
705 return eb_is_empty(&h2c->streams_by_id) ||
706 br_data(h2c->mbuf) ||
707 !LIST_ISEMPTY(&h2c->blocked_list) ||
708 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100709 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200710}
711
Olivier Houchard7a977432019-03-21 15:47:13 +0100712static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200713h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100714{
715 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
716 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
717 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
718 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200719 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100720 (conn_xprt_read0_pending(h2c->conn) ||
721 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
722 return 1;
723
724 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100725}
726
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200727/*****************************************************/
728/* functions below are for dynamic buffer management */
729/*****************************************************/
730
Willy Tarreau315d8072017-12-10 22:17:57 +0100731/* indicates whether or not the we may call the h2_recv() function to attempt
732 * to receive data into the buffer and/or demux pending data. The condition is
733 * a bit complex due to some API limits for now. The rules are the following :
734 * - if an error or a shutdown was detected on the connection and the buffer
735 * is empty, we must not attempt to receive
736 * - if the demux buf failed to be allocated, we must not try to receive and
737 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100738 * - if no flag indicates a blocking condition, we may attempt to receive,
739 * regardless of whether the demux buffer is full or not, so that only
740 * de demux part decides whether or not to block. This is needed because
741 * the connection API indeed prevents us from re-enabling receipt that is
742 * already enabled in a polled state, so we must always immediately stop
743 * as soon as the demux can't proceed so as never to hit an end of read
744 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100745 * - otherwise must may not attempt
746 */
747static inline int h2_recv_allowed(const struct h2c *h2c)
748{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200749 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100750 (h2c->st0 >= H2_CS_ERROR ||
751 h2c->conn->flags & CO_FL_ERROR ||
752 conn_xprt_read0_pending(h2c->conn)))
753 return 0;
754
755 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100756 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100757 return 1;
758
759 return 0;
760}
761
Willy Tarreau47b515a2018-12-21 16:09:41 +0100762/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200763static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100764{
765 if (!h2_recv_allowed(h2c))
766 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200767 if ((!consider_buffer || !b_data(&h2c->dbuf))
768 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100769 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200770 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100771}
772
773
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100774/* returns true if the front connection has too many conn_streams attached */
775static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200776{
Willy Tarreaua8754662018-12-23 20:43:58 +0100777 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200778}
779
Willy Tarreau44e973f2018-03-01 17:49:30 +0100780/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
781 * flags are used to figure what buffer was requested. It returns 1 if the
782 * allocation succeeds, in which case the connection is woken up, or 0 if it's
783 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200784 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100785static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200786{
787 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100788 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200789
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100790 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200791 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200792 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200793 return 1;
794 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200795
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100796 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100797 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200798
799 if (h2c->flags & H2_CF_DEM_MROOM) {
800 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200801 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200802 }
Willy Tarreau14398122017-09-22 14:26:04 +0200803 return 1;
804 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100805
806 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
807 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100808 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100809 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200810 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100811 return 1;
812 }
813
Willy Tarreau14398122017-09-22 14:26:04 +0200814 return 0;
815}
816
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200817static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200818{
819 struct buffer *buf = NULL;
820
Willy Tarreau2b718102021-04-21 07:32:39 +0200821 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100822 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100823 h2c->buf_wait.target = h2c;
824 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200825 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200826 }
827 return buf;
828}
829
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200830static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200831{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200832 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100833 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100834 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200835 }
836}
837
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200838static inline void h2_release_mbuf(struct h2c *h2c)
839{
840 struct buffer *buf;
841 unsigned int count = 0;
842
843 while (b_size(buf = br_head_pick(h2c->mbuf))) {
844 b_free(buf);
845 count++;
846 }
847 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100848 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200849}
850
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100851/* returns the number of allocatable outgoing streams for the connection taking
852 * the last_sid and the reserved ones into account.
853 */
854static inline int h2_streams_left(const struct h2c *h2c)
855{
856 int ret;
857
858 /* consider the number of outgoing streams we're allowed to create before
859 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
860 * nb_reserved is the number of streams which don't yet have an ID.
861 */
862 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
863 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
864 if (ret < 0)
865 ret = 0;
866 return ret;
867}
868
Willy Tarreau00f18a32019-01-26 12:19:01 +0100869/* returns the number of streams in use on a connection to figure if it's
870 * idle or not. We check nb_cs and not nb_streams as the caller will want
871 * to know if it was the last one after a detach().
872 */
873static int h2_used_streams(struct connection *conn)
874{
875 struct h2c *h2c = conn->ctx;
876
877 return h2c->nb_cs;
878}
879
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100880/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100881static int h2_avail_streams(struct connection *conn)
882{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100883 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100884 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100885 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100886
Willy Tarreau6afec462019-01-28 06:40:19 +0100887 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
888 * streams on the connection.
889 */
890 if (h2c->last_sid >= 0)
891 return 0;
892
Willy Tarreauc61966f2019-10-31 15:10:03 +0100893 if (h2c->st0 >= H2_CS_ERROR)
894 return 0;
895
Willy Tarreau86949782019-01-31 10:42:05 +0100896 /* note: may be negative if a SETTINGS frame changes the limit */
897 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100898
899 /* we must also consider the limit imposed by stream IDs */
900 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100901 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100902 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100903 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
904 ret1 = MIN(ret1, ret2);
905 }
906 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100907}
908
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200909
Willy Tarreau62f52692017-10-08 23:01:42 +0200910/*****************************************************************/
911/* functions below are dedicated to the mux setup and management */
912/*****************************************************************/
913
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200914/* Initialize the mux once it's attached. For outgoing connections, the context
915 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200916 * connections from the fact that the context is still NULL (even during mux
917 * upgrades). <input> is always used as Input buffer and may contain data. It is
918 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200919 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200920static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
921 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200922{
923 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100924 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200925 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200926
Christopher Fauletf81ef032019-10-04 15:19:43 +0200927 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200928
Willy Tarreaubafbe012017-11-24 17:34:44 +0100929 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200930 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200931 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200932
Christopher Faulete9b70722019-04-08 10:46:02 +0200933 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200934 h2c->flags = H2_CF_IS_BACK;
935 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
936 if (tick_isset(prx->timeout.serverfin))
937 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100938
939 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
940 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200941 } else {
942 h2c->flags = H2_CF_NONE;
943 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
944 if (tick_isset(prx->timeout.clientfin))
945 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100946
947 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
948 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200949 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100950
Willy Tarreau0b37d652018-10-03 10:33:02 +0200951 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100952 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100953 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200954 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100955 if (!t)
956 goto fail;
957
958 h2c->task = t;
959 t->process = h2_timeout_task;
960 t->context = h2c;
961 t->expire = tick_add(now_ms, h2c->timeout);
962 }
Willy Tarreauea392822017-10-31 10:02:25 +0100963
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200964 h2c->wait_event.tasklet = tasklet_new();
965 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200966 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200967 h2c->wait_event.tasklet->process = h2_io_cb;
968 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100969 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200970 if (!conn_is_back(conn)) {
971 /* Connection might already be in the stopping_list if subject
972 * to h1->h2 upgrade.
973 */
974 if (!LIST_INLIST(&conn->stopping_list)) {
975 LIST_APPEND(&mux_stopping_data[tid].list,
976 &conn->stopping_list);
977 }
978 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200979
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200980 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200981 if (!h2c->ddht)
982 goto fail;
983
984 /* Initialise the context. */
985 h2c->st0 = H2_CS_PREFACE;
986 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100987 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200988 h2c->max_id = -1;
989 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100990 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200991 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100992 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200993 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100994 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100995 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200996
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200997 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200998 h2c->dsi = -1;
999 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001000
Willy Tarreau32218eb2017-09-22 08:07:25 +02001001 h2c->last_sid = -1;
1002
Willy Tarreau51330962019-05-26 09:38:07 +02001003 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001004 h2c->miw = 65535; /* mux initial window size */
1005 h2c->mws = 65535; /* mux window size */
1006 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001007 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001008 LIST_INIT(&h2c->send_list);
1009 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001010 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001011 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001012
Christopher Fauletf81ef032019-10-04 15:19:43 +02001013 conn->ctx = h2c;
1014
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001015 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1016
Willy Tarreau3f133572017-10-31 19:21:06 +01001017 if (t)
1018 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001019
Willy Tarreau01b44822018-10-03 14:26:37 +02001020 if (h2c->flags & H2_CF_IS_BACK) {
1021 /* FIXME: this is temporary, for outgoing connections we need
1022 * to immediately allocate a stream until the code is modified
1023 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001024 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001025 */
1026 struct h2s *h2s;
1027
Christopher Fauletf81ef032019-10-04 15:19:43 +02001028 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001029 if (!h2s)
1030 goto fail_stream;
1031 }
1032
Willy Tarreau4781b152021-04-06 13:53:36 +02001033 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1034 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001035
Willy Tarreau0f383582018-10-03 14:22:21 +02001036 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001037 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001038 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001039 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001040 fail_stream:
1041 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001042 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001043 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001044 if (h2c->wait_event.tasklet)
1045 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001046 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001047 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001048 if (!conn_is_back(conn))
1049 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001050 conn->ctx = conn_ctx; /* restore saved ctx */
1051 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001052 return -1;
1053}
1054
Willy Tarreau751f2d02018-10-05 09:35:00 +02001055/* returns the next allocatable outgoing stream ID for the H2 connection, or
1056 * -1 if no more is allocatable.
1057 */
1058static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1059{
1060 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001061
1062 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001063 id = -1;
1064 return id;
1065}
1066
Willy Tarreau2373acc2017-10-12 17:35:14 +02001067/* returns the stream associated with id <id> or NULL if not found */
1068static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1069{
1070 struct eb32_node *node;
1071
Willy Tarreau751f2d02018-10-05 09:35:00 +02001072 if (id == 0)
1073 return (struct h2s *)h2_closed_stream;
1074
Willy Tarreau2a856182017-05-16 15:20:39 +02001075 if (id > h2c->max_id)
1076 return (struct h2s *)h2_idle_stream;
1077
Willy Tarreau2373acc2017-10-12 17:35:14 +02001078 node = eb32_lookup(&h2c->streams_by_id, id);
1079 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001080 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001081
1082 return container_of(node, struct h2s, by_id);
1083}
1084
Christopher Faulet73c12072019-04-08 11:23:22 +02001085/* release function. This one should be called to free all resources allocated
1086 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001087 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001088static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001089{
William Dauchy477757c2020-08-07 22:19:23 +02001090 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001091
Willy Tarreau7838a792019-08-12 18:42:03 +02001092 TRACE_ENTER(H2_EV_H2C_END);
1093
Willy Tarreau32218eb2017-09-22 08:07:25 +02001094 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001095 /* The connection must be aattached to this mux to be released */
1096 if (h2c->conn && h2c->conn->ctx == h2c)
1097 conn = h2c->conn;
1098
Willy Tarreau7838a792019-08-12 18:42:03 +02001099 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001100 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001101
Willy Tarreau2b718102021-04-21 07:32:39 +02001102 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001103 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001104
Willy Tarreau44e973f2018-03-01 17:49:30 +01001105 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001106 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001107
Willy Tarreauea392822017-10-31 10:02:25 +01001108 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001109 h2c->task->context = NULL;
1110 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001111 h2c->task = NULL;
1112 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001113 if (h2c->wait_event.tasklet)
1114 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001115 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001116 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001117 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001118
Willy Tarreau4781b152021-04-06 13:53:36 +02001119 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001120
Willy Tarreaubafbe012017-11-24 17:34:44 +01001121 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001122 }
1123
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001124 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001125 if (!conn_is_back(conn))
1126 LIST_DEL_INIT(&conn->stopping_list);
1127
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001128 conn->mux = NULL;
1129 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001130 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001131
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001132 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001133
1134 /* there might be a GOAWAY frame still pending in the TCP
1135 * stack, and if the peer continues to send (i.e. window
1136 * updates etc), this can result in losing the GOAWAY. For
1137 * this reason we try to drain anything received in between.
1138 */
1139 conn->flags |= CO_FL_WANT_DRAIN;
1140
1141 conn_xprt_shutw(conn);
1142 conn_xprt_close(conn);
1143 conn_sock_shutw(conn, !conn_is_back(conn));
1144 conn_ctrl_close(conn);
1145
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001146 if (conn->destroy_cb)
1147 conn->destroy_cb(conn);
1148 conn_free(conn);
1149 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001150
1151 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001152}
1153
1154
Willy Tarreau71681172017-10-23 14:39:06 +02001155/******************************************************/
1156/* functions below are for the H2 protocol processing */
1157/******************************************************/
1158
1159/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001160static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001161{
1162 return h2s ? h2s->id : 0;
1163}
1164
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001165/* returns the sum of the stream's own window size and the mux's initial
1166 * window, which together form the stream's effective window size.
1167 */
1168static inline int h2s_mws(const struct h2s *h2s)
1169{
1170 return h2s->sws + h2s->h2c->miw;
1171}
1172
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001173/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001174static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001175{
1176 if (h2c->msi < 0)
1177 return 0;
1178
1179 if (h2c->msi == h2s_id(h2s))
1180 return 0;
1181
1182 return 1;
1183}
1184
Willy Tarreau741d6df2017-10-17 08:00:59 +02001185/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001186static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001187{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001188 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001189 h2c->errcode = err;
1190 h2c->st0 = H2_CS_ERROR;
1191}
1192
Willy Tarreau175cebb2019-01-24 10:02:24 +01001193/* marks an error on the stream. It may also update an already closed stream
1194 * (e.g. to report an error after an RST was received).
1195 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001196static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001197{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001198 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001199 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001200 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001201 if (h2s->st < H2_SS_ERROR)
1202 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001203 if (h2s->cs)
1204 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001205 }
1206}
1207
Willy Tarreau7e094452018-12-19 18:08:52 +01001208/* attempt to notify the data layer of recv availability */
1209static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1210{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001211 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001212 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001213 tasklet_wakeup(h2s->subs->tasklet);
1214 h2s->subs->events &= ~SUB_RETRY_RECV;
1215 if (!h2s->subs->events)
1216 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001217 }
1218}
1219
1220/* attempt to notify the data layer of send availability */
1221static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1222{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001223 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001224 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001225 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001226 tasklet_wakeup(h2s->subs->tasklet);
1227 h2s->subs->events &= ~SUB_RETRY_SEND;
1228 if (!h2s->subs->events)
1229 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001230 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001231 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1232 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1233 tasklet_wakeup(h2s->shut_tl);
1234 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001235}
1236
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001237/* alerts the data layer, trying to wake it up by all means, following
1238 * this sequence :
1239 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1240 * - if its subscribed to send, then it's woken up for send
1241 * - if it was subscribed to neither, its ->wake() callback is called
1242 * It is safe to call this function with a closed stream which doesn't have a
1243 * conn_stream anymore.
1244 */
1245static void __maybe_unused h2s_alert(struct h2s *h2s)
1246{
Willy Tarreau7838a792019-08-12 18:42:03 +02001247 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1248
Willy Tarreauf96508a2020-01-10 11:12:48 +01001249 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001250 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001251 h2s_notify_recv(h2s);
1252 h2s_notify_send(h2s);
1253 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001254 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1255 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001256 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001257 }
1258
1259 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001260}
1261
Willy Tarreaue4820742017-07-27 13:37:23 +02001262/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001263static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001264{
1265 uint8_t *out = frame;
1266
1267 *out = len >> 16;
1268 write_n16(out + 1, len);
1269}
1270
Willy Tarreau54c15062017-10-10 17:10:03 +02001271/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1272 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1273 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001274 * available in the buffer's input prior to calling this function. The buffer
1275 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001276 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001277static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001278 const struct buffer *b, int o)
1279{
Willy Tarreau591d4452018-06-15 17:21:00 +02001280 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 +02001281}
1282
Willy Tarreau1f094672017-11-20 21:27:45 +01001283static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001284{
Willy Tarreau591d4452018-06-15 17:21:00 +02001285 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001286}
1287
Willy Tarreau1f094672017-11-20 21:27:45 +01001288static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001289{
Willy Tarreau591d4452018-06-15 17:21:00 +02001290 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001291}
1292
Willy Tarreau1f094672017-11-20 21:27:45 +01001293static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001294{
Willy Tarreau591d4452018-06-15 17:21:00 +02001295 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001296}
1297
1298
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001299/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1300 * The algorithm is not obvious. It turns out that H2 headers are neither
1301 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1302 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001303 *
1304 * b0 b1 b2 b3 b4 b5..b8
1305 * +----------+---------+--------+----+----+----------------------+
1306 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1307 * +----------+---------+--------+----+----+----------------------+
1308 *
1309 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1310 * we get the sid properly aligned and ordered, and 16 bits of len properly
1311 * ordered as well. The type and flags can be extracted using bit shifts from
1312 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001313 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1314 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001315 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001316static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001317{
1318 uint64_t w;
1319
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001320 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001321 return 0;
1322
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001323 w = h2_get_n64(b, o + 1);
1324 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001325 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1326 h->ff = w >> 32;
1327 h->ft = w >> 40;
1328 h->len += w >> 48;
1329 return 1;
1330}
1331
1332/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1333 * h2_peek_frame_hdr() above.
1334 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001335static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001336{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001337 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001338}
1339
1340/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001341static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001342{
1343 int ret;
1344
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001345 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001346 if (ret > 0)
1347 h2_skip_frame_hdr(b);
1348 return ret;
1349}
1350
Willy Tarreaucb985a42019-10-07 16:56:34 +02001351
1352/* try to fragment the headers frame present at the beginning of buffer <b>,
1353 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1354 * success. Typical causes of failure include a buffer not large enough to
1355 * add extra frame headers. The existing frame size is read in the current
1356 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1357 * and its length will be adjusted. The stream ID for continuation frames will
1358 * be copied from the initial frame's.
1359 */
1360static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1361{
1362 size_t remain = b->data - 9;
1363 int extra_frames = (remain - 1) / mfs;
1364 size_t fsize;
1365 char *fptr;
1366 int frame;
1367
1368 if (b->data <= mfs + 9)
1369 return 1;
1370
1371 /* Too large a frame, we need to fragment it using CONTINUATION
1372 * frames. We start from the end and move tails as needed.
1373 */
1374 if (b->data + extra_frames * 9 > b->size)
1375 return 0;
1376
1377 for (frame = extra_frames; frame; frame--) {
1378 fsize = ((remain - 1) % mfs) + 1;
1379 remain -= fsize;
1380
1381 /* move data */
1382 fptr = b->area + 9 + remain + (frame - 1) * 9;
1383 memmove(fptr + 9, b->area + 9 + remain, fsize);
1384 b->data += 9;
1385
1386 /* write new frame header */
1387 h2_set_frame_size(fptr, fsize);
1388 fptr[3] = H2_FT_CONTINUATION;
1389 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1390 write_n32(fptr + 5, read_n32(b->area + 5));
1391 }
1392
1393 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1394 h2_set_frame_size(b->area, remain);
1395 return 1;
1396}
1397
1398
Willy Tarreau00dd0782018-03-01 16:31:34 +01001399/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1400 * its connection if the stream was not yet closed. Please use this exclusively
1401 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001402 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001403static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001404{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001405 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001406 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001407 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001408 if (!h2s->id)
1409 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001410 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001411 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1412 h2s_notify_recv(h2s);
1413 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001414 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001415
Willy Tarreau7838a792019-08-12 18:42:03 +02001416 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001417 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001418 h2s->st = H2_SS_CLOSED;
1419}
1420
Willy Tarreau71049cc2018-03-28 13:56:39 +02001421/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001422/* h2s_destroy should only ever be called by the thread that owns the stream,
1423 * that means that a tasklet should be used if we want to destroy the h2s
1424 * from another thread
1425 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001426static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001427{
Willy Tarreau7838a792019-08-12 18:42:03 +02001428 struct connection *conn = h2s->h2c->conn;
1429
1430 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1431
Willy Tarreau0a10de62018-03-01 16:27:53 +01001432 h2s_close(h2s);
1433 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001434 if (b_size(&h2s->rxbuf)) {
1435 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001436 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001437 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001438
1439 if (h2s->subs)
1440 h2s->subs->events = 0;
1441
Joseph Herlantd77575d2018-11-25 10:54:45 -08001442 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001443 * reference left would be in the h2c send_list/fctl_list, and if
1444 * we're in it, we're getting out anyway
1445 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001446 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001447
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001448 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001449 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001450 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001451
1452 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001453}
1454
Willy Tarreaua8e49542018-10-03 18:53:55 +02001455/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1456 * stream tree. In case of error, nothing is added and NULL is returned. The
1457 * causes of errors can be any failed memory allocation. The caller is
1458 * responsible for checking if the connection may support an extra stream
1459 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001460 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001461static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001462{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001463 struct h2s *h2s;
1464
Willy Tarreau7838a792019-08-12 18:42:03 +02001465 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1466
Willy Tarreaubafbe012017-11-24 17:34:44 +01001467 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001468 if (!h2s)
1469 goto out;
1470
Willy Tarreau5723f292020-01-10 15:16:57 +01001471 h2s->shut_tl = tasklet_new();
1472 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001473 pool_free(pool_head_h2s, h2s);
1474 goto out;
1475 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001476 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001477 h2s->shut_tl->process = h2_deferred_shut;
1478 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001479 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001480 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001481 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001482 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001483 h2s->flags = H2_SF_NONE;
1484 h2s->errcode = H2_ERR_NO_ERROR;
1485 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001486 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001487 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001488 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001489 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001490
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001491 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001492 if (id > 0)
1493 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001494 else
1495 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001496
1497 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001498 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001499 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001500
Willy Tarreau4781b152021-04-06 13:53:36 +02001501 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1502 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001503
Willy Tarreau7838a792019-08-12 18:42:03 +02001504 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001505 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001506 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001507 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001508 return NULL;
1509}
1510
1511/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001512 * case of memory allocation error. <input> is used as input buffer for the new
1513 * stream. On success, it is transferred to the stream and the mux is no longer
1514 * responsible of it. On error, <input> is unchanged, thus the mux must still
1515 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001516 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001517static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001518{
1519 struct session *sess = h2c->conn->owner;
1520 struct conn_stream *cs;
1521 struct h2s *h2s;
1522
Willy Tarreau7838a792019-08-12 18:42:03 +02001523 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1524
Willy Tarreaua8e49542018-10-03 18:53:55 +02001525 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1526 goto out;
1527
1528 h2s = h2s_new(h2c, id);
1529 if (!h2s)
1530 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001531
Christopher Fauletcda94ac2021-12-23 17:28:17 +01001532 cs = cs_new();
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001533 if (!cs)
1534 goto out_close;
Olivier Houchard746fb772018-12-15 19:42:00 +01001535 cs->flags |= CS_FL_NOT_FIRST;
Christopher Fauletcda94ac2021-12-23 17:28:17 +01001536 cs_attach_endp(cs, &h2c->conn->obj_type, h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001537 h2s->cs = cs;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001538 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001539
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001540 /* FIXME wrong analogy between ext-connect and websocket, this need to
1541 * be refine.
1542 */
1543 if (flags & H2_SF_EXT_CONNECT_RCVD)
1544 cs->flags |= CS_FL_WEBSOCKET;
1545
Willy Tarreaud0de6772022-02-04 09:05:37 +01001546 /* The stream will record the request's accept date (which is either the
1547 * end of the connection's or the date immediately after the previous
1548 * request) and the idle time, which is the delay since the previous
1549 * request. We can set the value now, it will be copied by stream_new().
1550 */
1551 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Faulet13a35e52021-12-20 15:34:16 +01001552 if (!stream_new(h2c->conn->owner, cs, input))
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001553 goto out_free_cs;
1554
Willy Tarreau590a0512018-09-05 11:56:48 +02001555 /* We want the accept date presented to the next stream to be the one
1556 * we have now, the handshake time to be null (since the next stream
1557 * is not delayed by a handshake), and the idle time to count since
1558 * right now.
1559 */
1560 sess->accept_date = date;
1561 sess->tv_accept = now;
1562 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001563 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001564
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001565 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001566 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001567 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001568 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001569 return h2s;
1570
1571 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001572 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001573 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001574 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001575 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001576 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001577 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001578 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001579 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001580 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001581}
1582
Willy Tarreau751f2d02018-10-05 09:35:00 +02001583/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1584 * and returns it, or NULL in case of memory allocation error or if the highest
1585 * possible stream ID was reached.
1586 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001587static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001588{
1589 struct h2s *h2s = NULL;
1590
Willy Tarreau7838a792019-08-12 18:42:03 +02001591 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1592
Willy Tarreau86949782019-01-31 10:42:05 +01001593 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001594 goto out;
1595
Willy Tarreaua80dca82019-01-24 17:08:28 +01001596 if (h2_streams_left(h2c) < 1)
1597 goto out;
1598
Willy Tarreau751f2d02018-10-05 09:35:00 +02001599 /* Defer choosing the ID until we send the first message to create the stream */
1600 h2s = h2s_new(h2c, 0);
1601 if (!h2s)
1602 goto out;
1603
1604 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001605 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001606 cs->ctx = h2s;
1607 h2c->nb_cs++;
1608
Willy Tarreau751f2d02018-10-05 09:35:00 +02001609 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001610 if (likely(h2s))
1611 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1612 else
1613 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001614 return h2s;
1615}
1616
Willy Tarreaube5b7152017-09-25 16:25:39 +02001617/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1618 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1619 * the various settings codes.
1620 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001621static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001622{
1623 struct buffer *res;
1624 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001625 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001626 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001627 int ret = 0;
1628
1629 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001630
1631 if (h2c_mux_busy(h2c, NULL)) {
1632 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001633 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001634 }
1635
Willy Tarreaube5b7152017-09-25 16:25:39 +02001636 chunk_init(&buf, buf_data, sizeof(buf_data));
1637 chunk_memcpy(&buf,
1638 "\x00\x00\x00" /* length : 0 for now */
1639 "\x04\x00" /* type : 4 (settings), flags : 0 */
1640 "\x00\x00\x00\x00", /* stream ID : 0 */
1641 9);
1642
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001643 if (h2c->flags & H2_CF_IS_BACK) {
1644 /* send settings_enable_push=0 */
1645 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1646 }
1647
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001648 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1649 * sent automatically unless disabled in the global config */
1650 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1651 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001652
Willy Tarreaube5b7152017-09-25 16:25:39 +02001653 if (h2_settings_header_table_size != 4096) {
1654 char str[6] = "\x00\x01"; /* header_table_size */
1655
1656 write_n32(str + 2, h2_settings_header_table_size);
1657 chunk_memcat(&buf, str, 6);
1658 }
1659
1660 if (h2_settings_initial_window_size != 65535) {
1661 char str[6] = "\x00\x04"; /* initial_window_size */
1662
1663 write_n32(str + 2, h2_settings_initial_window_size);
1664 chunk_memcat(&buf, str, 6);
1665 }
1666
1667 if (h2_settings_max_concurrent_streams != 0) {
1668 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1669
1670 /* Note: 0 means "unlimited" for haproxy's config but not for
1671 * the protocol, so never send this value!
1672 */
1673 write_n32(str + 2, h2_settings_max_concurrent_streams);
1674 chunk_memcat(&buf, str, 6);
1675 }
1676
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001677 mfs = h2_settings_max_frame_size;
1678 if (mfs > global.tune.bufsize)
1679 mfs = global.tune.bufsize;
1680
1681 if (!mfs)
1682 mfs = global.tune.bufsize;
1683
1684 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001685 char str[6] = "\x00\x05"; /* max_frame_size */
1686
1687 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1688 * match bufsize - rewrite size, but at the moment it seems
1689 * that clients don't take care of it.
1690 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001691 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001692 chunk_memcat(&buf, str, 6);
1693 }
1694
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001695 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001696
1697 res = br_tail(h2c->mbuf);
1698 retry:
1699 if (!h2_get_buf(h2c, res)) {
1700 h2c->flags |= H2_CF_MUX_MALLOC;
1701 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001702 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001703 }
1704
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001705 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001706 if (unlikely(ret <= 0)) {
1707 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001708 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1709 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001710 h2c->flags |= H2_CF_MUX_MFULL;
1711 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001712 }
1713 else {
1714 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001715 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001716 }
1717 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001718 out:
1719 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001720 return ret;
1721}
1722
Willy Tarreau52eed752017-09-22 15:05:09 +02001723/* Try to receive a connection preface, then upon success try to send our
1724 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1725 * missing data. It may return an error in h2c.
1726 */
1727static int h2c_frt_recv_preface(struct h2c *h2c)
1728{
1729 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001730 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001731
Willy Tarreau7838a792019-08-12 18:42:03 +02001732 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1733
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001734 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001735
1736 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001737 if (!ret1)
1738 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001739 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001740 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 +02001741 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001742 if (b_data(&h2c->dbuf) ||
1743 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1744 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001745 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001746 ret2 = 0;
1747 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001748 }
1749
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001750 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001751 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001752 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001753 out:
1754 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001755 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001756}
1757
Willy Tarreau01b44822018-10-03 14:26:37 +02001758/* Try to send a connection preface, then upon success try to send our
1759 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1760 * missing data. It may return an error in h2c.
1761 */
1762static int h2c_bck_send_preface(struct h2c *h2c)
1763{
1764 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001765 int ret = 0;
1766
1767 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001768
1769 if (h2c_mux_busy(h2c, NULL)) {
1770 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001771 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001772 }
1773
Willy Tarreaubcc45952019-05-26 10:05:50 +02001774 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001775 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001776 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001777 h2c->flags |= H2_CF_MUX_MALLOC;
1778 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001779 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001780 }
1781
1782 if (!b_data(res)) {
1783 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001784 ret = b_istput(res, ist(H2_CONN_PREFACE));
1785 if (unlikely(ret <= 0)) {
1786 if (!ret) {
1787 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1788 goto retry;
1789 h2c->flags |= H2_CF_MUX_MFULL;
1790 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001791 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001792 }
1793 else {
1794 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001795 ret = 0;
1796 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001797 }
1798 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001799 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001800 ret = h2c_send_settings(h2c);
1801 out:
1802 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1803 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001804}
1805
Willy Tarreau081d4722017-05-16 21:51:05 +02001806/* try to send a GOAWAY frame on the connection to report an error or a graceful
1807 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1808 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1809 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1810 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1811 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1812 * on unrecoverable failure. It will not attempt to send one again in this last
1813 * case so that it is safe to use h2c_error() to report such errors.
1814 */
1815static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1816{
1817 struct buffer *res;
1818 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001819 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001820
Willy Tarreau7838a792019-08-12 18:42:03 +02001821 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1822
1823 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1824 ret = 1; // claim that it worked
1825 goto out;
1826 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001827
1828 if (h2c_mux_busy(h2c, h2s)) {
1829 if (h2s)
1830 h2s->flags |= H2_SF_BLK_MBUSY;
1831 else
1832 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001833 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001834 }
1835
Willy Tarreau9c218e72019-05-26 10:08:28 +02001836 /* len: 8, type: 7, flags: none, sid: 0 */
1837 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1838
1839 if (h2c->last_sid < 0)
1840 h2c->last_sid = h2c->max_id;
1841
1842 write_n32(str + 9, h2c->last_sid);
1843 write_n32(str + 13, h2c->errcode);
1844
Willy Tarreaubcc45952019-05-26 10:05:50 +02001845 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001846 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001847 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001848 h2c->flags |= H2_CF_MUX_MALLOC;
1849 if (h2s)
1850 h2s->flags |= H2_SF_BLK_MROOM;
1851 else
1852 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001853 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001854 }
1855
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001856 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001857 if (unlikely(ret <= 0)) {
1858 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001859 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1860 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001861 h2c->flags |= H2_CF_MUX_MFULL;
1862 if (h2s)
1863 h2s->flags |= H2_SF_BLK_MROOM;
1864 else
1865 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001866 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001867 }
1868 else {
1869 /* we cannot report this error using GOAWAY, so we mark
1870 * it and claim a success.
1871 */
1872 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1873 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001874 ret = 1;
1875 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001876 }
1877 }
1878 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001879
1880 /* some codes are not for real errors, just attempts to close cleanly */
1881 switch (h2c->errcode) {
1882 case H2_ERR_NO_ERROR:
1883 case H2_ERR_ENHANCE_YOUR_CALM:
1884 case H2_ERR_REFUSED_STREAM:
1885 case H2_ERR_CANCEL:
1886 break;
1887 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001888 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001889 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001890 out:
1891 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001892 return ret;
1893}
1894
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001895/* Try to send an RST_STREAM frame on the connection for the indicated stream
1896 * during mux operations. This stream must be valid and cannot be closed
1897 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1898 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1899 * not yet.
1900 *
1901 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1902 * to write the message, it subscribes the stream to future notifications.
1903 */
1904static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1905{
1906 struct buffer *res;
1907 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001908 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001909
Willy Tarreau7838a792019-08-12 18:42:03 +02001910 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1911
1912 if (!h2s || h2s->st == H2_SS_CLOSED) {
1913 ret = 1;
1914 goto out;
1915 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001916
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001917 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1918 * RST_STREAM in response to a RST_STREAM frame.
1919 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001920 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001921 ret = 1;
1922 goto ignore;
1923 }
1924
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001925 if (h2c_mux_busy(h2c, h2s)) {
1926 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001927 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001928 }
1929
Willy Tarreau9c218e72019-05-26 10:08:28 +02001930 /* len: 4, type: 3, flags: none */
1931 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1932 write_n32(str + 5, h2s->id);
1933 write_n32(str + 9, h2s->errcode);
1934
Willy Tarreaubcc45952019-05-26 10:05:50 +02001935 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001936 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001937 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001938 h2c->flags |= H2_CF_MUX_MALLOC;
1939 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001940 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001941 }
1942
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001943 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001944 if (unlikely(ret <= 0)) {
1945 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001946 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1947 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001948 h2c->flags |= H2_CF_MUX_MFULL;
1949 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001950 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001951 }
1952 else {
1953 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001954 ret = 0;
1955 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001956 }
1957 }
1958
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001959 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001960 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001961 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001962 out:
1963 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001964 return ret;
1965}
1966
1967/* Try to send an RST_STREAM frame on the connection for the stream being
1968 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001969 * error code, even if the stream is one of the dummy ones, and will update
1970 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001971 *
1972 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1973 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001974 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001975 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001976 */
1977static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1978{
1979 struct buffer *res;
1980 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001981 int ret = 0;
1982
1983 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001984
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001985 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1986 * RST_STREAM in response to a RST_STREAM frame.
1987 */
1988 if (h2c->dft == H2_FT_RST_STREAM) {
1989 ret = 1;
1990 goto ignore;
1991 }
1992
Willy Tarreau27a84c92017-10-17 08:10:17 +02001993 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001994 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001995 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001996 }
1997
Willy Tarreau9c218e72019-05-26 10:08:28 +02001998 /* len: 4, type: 3, flags: none */
1999 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2000
2001 write_n32(str + 5, h2c->dsi);
2002 write_n32(str + 9, h2s->errcode);
2003
Willy Tarreaubcc45952019-05-26 10:05:50 +02002004 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002005 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002006 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002007 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002008 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002009 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002010 }
2011
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002012 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002013 if (unlikely(ret <= 0)) {
2014 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002015 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2016 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002017 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002018 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002019 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002020 }
2021 else {
2022 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002023 ret = 0;
2024 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002025 }
2026 }
2027
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002028 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002029 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002030 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002031 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002032 }
2033
Willy Tarreau7838a792019-08-12 18:42:03 +02002034 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002035 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002036 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002037 return ret;
2038}
2039
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002040/* try to send an empty DATA frame with the ES flag set to notify about the
2041 * end of stream and match a shutdown(write). If an ES was already sent as
2042 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2043 * on success or zero if nothing was done. In case of lack of room to write the
2044 * message, it subscribes the requesting stream to future notifications.
2045 */
2046static int h2_send_empty_data_es(struct h2s *h2s)
2047{
2048 struct h2c *h2c = h2s->h2c;
2049 struct buffer *res;
2050 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002051 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002052
Willy Tarreau7838a792019-08-12 18:42:03 +02002053 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2054
2055 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2056 ret = 1;
2057 goto out;
2058 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002059
2060 if (h2c_mux_busy(h2c, h2s)) {
2061 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002062 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002063 }
2064
Willy Tarreau9c218e72019-05-26 10:08:28 +02002065 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2066 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2067 write_n32(str + 5, h2s->id);
2068
Willy Tarreaubcc45952019-05-26 10:05:50 +02002069 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002070 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002071 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002072 h2c->flags |= H2_CF_MUX_MALLOC;
2073 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002074 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002075 }
2076
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002077 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002078 if (likely(ret > 0)) {
2079 h2s->flags |= H2_SF_ES_SENT;
2080 }
2081 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002082 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2083 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002084 h2c->flags |= H2_CF_MUX_MFULL;
2085 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002086 }
2087 else {
2088 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002089 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002090 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002091 out:
2092 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002093 return ret;
2094}
2095
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002096/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002097 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002098 * is automatically updated accordingly. If the stream is orphaned, it is
2099 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002100 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002101static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002102{
Willy Tarreau7838a792019-08-12 18:42:03 +02002103 struct h2c *h2c = h2s->h2c;
2104
2105 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2106
Christopher Fauletf02ca002019-03-07 16:21:34 +01002107 if (!h2s->cs) {
2108 /* this stream was already orphaned */
2109 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002110 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002111 return;
2112 }
2113
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002114 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002115 if (h2s->st == H2_SS_OPEN)
2116 h2s->st = H2_SS_HREM;
2117 else if (h2s->st == H2_SS_HLOC)
2118 h2s_close(h2s);
2119 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002120
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002121 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2122 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2123 h2s->cs->flags |= CS_FL_ERR_PENDING;
2124 if (h2s->cs->flags & CS_FL_EOS)
2125 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002126
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002127 if (h2s->st < H2_SS_ERROR)
2128 h2s->st = H2_SS_ERROR;
2129 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002130
2131 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002132 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002133}
2134
2135/* wake the streams attached to the connection, whose id is greater than <last>
2136 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002137 */
Willy Tarreau23482912019-05-07 15:23:14 +02002138static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002139{
2140 struct eb32_node *node;
2141 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002142
Willy Tarreau7838a792019-08-12 18:42:03 +02002143 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2144
Christopher Fauletf02ca002019-03-07 16:21:34 +01002145 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002146 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2147 while (node) {
2148 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002149 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002150 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002151 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002152
Christopher Fauletf02ca002019-03-07 16:21:34 +01002153 /* Wake all streams with unassigned ID (ID == 0) */
2154 node = eb32_lookup(&h2c->streams_by_id, 0);
2155 while (node) {
2156 h2s = container_of(node, struct h2s, by_id);
2157 if (h2s->id > 0)
2158 break;
2159 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002160 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002161 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002162
2163 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002164}
2165
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002166/* Wake up all blocked streams whose window size has become positive after the
2167 * mux's initial window was adjusted. This should be done after having processed
2168 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002169 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002170static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002171{
2172 struct h2s *h2s;
2173 struct eb32_node *node;
2174
Willy Tarreau7838a792019-08-12 18:42:03 +02002175 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2176
Willy Tarreau3421aba2017-07-27 15:41:03 +02002177 node = eb32_first(&h2c->streams_by_id);
2178 while (node) {
2179 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002180 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002181 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002182 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002183 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2184 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002185 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002186 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002187 node = eb32_next(node);
2188 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002189
2190 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002191}
2192
2193/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2194 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002195 * return an error in h2c. The caller must have already verified frame length
2196 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002197 */
2198static int h2c_handle_settings(struct h2c *h2c)
2199{
2200 unsigned int offset;
2201 int error;
2202
Willy Tarreau7838a792019-08-12 18:42:03 +02002203 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2204
Willy Tarreau3421aba2017-07-27 15:41:03 +02002205 if (h2c->dff & H2_F_SETTINGS_ACK) {
2206 if (h2c->dfl) {
2207 error = H2_ERR_FRAME_SIZE_ERROR;
2208 goto fail;
2209 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002210 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002211 }
2212
Willy Tarreau3421aba2017-07-27 15:41:03 +02002213 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002214 if (b_data(&h2c->dbuf) < h2c->dfl) {
2215 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002216 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002217 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002218
2219 /* parse the frame */
2220 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002221 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2222 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002223
2224 switch (type) {
2225 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2226 /* we need to update all existing streams with the
2227 * difference from the previous iws.
2228 */
2229 if (arg < 0) { // RFC7540#6.5.2
2230 error = H2_ERR_FLOW_CONTROL_ERROR;
2231 goto fail;
2232 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002233 h2c->miw = arg;
2234 break;
2235 case H2_SETTINGS_MAX_FRAME_SIZE:
2236 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002237 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 +02002238 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002239 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002240 goto fail;
2241 }
2242 h2c->mfs = arg;
2243 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002244 case H2_SETTINGS_HEADER_TABLE_SIZE:
2245 h2c->flags |= H2_CF_SHTS_UPDATED;
2246 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002247 case H2_SETTINGS_ENABLE_PUSH:
2248 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002249 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002250 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002251 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002252 goto fail;
2253 }
2254 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002255 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2256 if (h2c->flags & H2_CF_IS_BACK) {
2257 /* the limit is only for the backend; for the frontend it is our limit */
2258 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2259 arg = h2_settings_max_concurrent_streams;
2260 h2c->streams_limit = arg;
2261 }
2262 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002263 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002264 if (arg == 1)
2265 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002266 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002267 }
2268 }
2269
2270 /* need to ACK this frame now */
2271 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002272 done:
2273 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002274 return 1;
2275 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002276 if (!(h2c->flags & H2_CF_IS_BACK))
2277 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002278 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002279 out0:
2280 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 +02002281 return 0;
2282}
2283
2284/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2285 * success or one of the h2_status values.
2286 */
2287static int h2c_ack_settings(struct h2c *h2c)
2288{
2289 struct buffer *res;
2290 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002291 int ret = 0;
2292
2293 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002294
2295 if (h2c_mux_busy(h2c, NULL)) {
2296 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002297 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002298 }
2299
Willy Tarreau9c218e72019-05-26 10:08:28 +02002300 memcpy(str,
2301 "\x00\x00\x00" /* length : 0 (no data) */
2302 "\x04" "\x01" /* type : 4, flags : ACK */
2303 "\x00\x00\x00\x00" /* stream ID */, 9);
2304
Willy Tarreaubcc45952019-05-26 10:05:50 +02002305 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002306 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002307 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002308 h2c->flags |= H2_CF_MUX_MALLOC;
2309 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002310 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002311 }
2312
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002313 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002314 if (unlikely(ret <= 0)) {
2315 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002316 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2317 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002318 h2c->flags |= H2_CF_MUX_MFULL;
2319 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002320 }
2321 else {
2322 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002323 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002324 }
2325 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002326 out:
2327 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002328 return ret;
2329}
2330
Willy Tarreaucf68c782017-10-10 17:11:41 +02002331/* processes a PING frame and schedules an ACK if needed. The caller must pass
2332 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002333 * missing data. The caller must have already verified frame length
2334 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002335 */
2336static int h2c_handle_ping(struct h2c *h2c)
2337{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002338 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002339 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002340 h2c->st0 = H2_CS_FRAME_A;
2341 return 1;
2342}
2343
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002344/* Try to send a window update for stream id <sid> and value <increment>.
2345 * Returns > 0 on success or zero on missing room or failure. It may return an
2346 * error in h2c.
2347 */
2348static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2349{
2350 struct buffer *res;
2351 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002352 int ret = 0;
2353
2354 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002355
2356 if (h2c_mux_busy(h2c, NULL)) {
2357 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002358 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002359 }
2360
Willy Tarreau9c218e72019-05-26 10:08:28 +02002361 /* length: 4, type: 8, flags: none */
2362 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2363 write_n32(str + 5, sid);
2364 write_n32(str + 9, increment);
2365
Willy Tarreaubcc45952019-05-26 10:05:50 +02002366 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002367 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002368 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002369 h2c->flags |= H2_CF_MUX_MALLOC;
2370 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002371 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002372 }
2373
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002374 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002375 if (unlikely(ret <= 0)) {
2376 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002377 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2378 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002379 h2c->flags |= H2_CF_MUX_MFULL;
2380 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002381 }
2382 else {
2383 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002384 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002385 }
2386 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002387 out:
2388 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002389 return ret;
2390}
2391
2392/* try to send pending window update for the connection. It's safe to call it
2393 * with no pending updates. Returns > 0 on success or zero on missing room or
2394 * failure. It may return an error in h2c.
2395 */
2396static int h2c_send_conn_wu(struct h2c *h2c)
2397{
2398 int ret = 1;
2399
Willy Tarreau7838a792019-08-12 18:42:03 +02002400 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2401
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002402 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002403 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002404
Willy Tarreau97aaa672018-12-23 09:49:04 +01002405 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2406 /* increase the advertised connection window to 2G on
2407 * first update.
2408 */
2409 h2c->flags |= H2_CF_WINDOW_OPENED;
2410 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2411 }
2412
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002413 /* send WU for the connection */
2414 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2415 if (ret > 0)
2416 h2c->rcvd_c = 0;
2417
Willy Tarreau7838a792019-08-12 18:42:03 +02002418 out:
2419 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002420 return ret;
2421}
2422
2423/* try to send pending window update for the current dmux stream. It's safe to
2424 * call it with no pending updates. Returns > 0 on success or zero on missing
2425 * room or failure. It may return an error in h2c.
2426 */
2427static int h2c_send_strm_wu(struct h2c *h2c)
2428{
2429 int ret = 1;
2430
Willy Tarreau7838a792019-08-12 18:42:03 +02002431 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2432
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002433 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002434 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002435
2436 /* send WU for the stream */
2437 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2438 if (ret > 0)
2439 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002440 out:
2441 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002442 return ret;
2443}
2444
Willy Tarreaucf68c782017-10-10 17:11:41 +02002445/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2446 * success, 0 on missing data or one of the h2_status values.
2447 */
2448static int h2c_ack_ping(struct h2c *h2c)
2449{
2450 struct buffer *res;
2451 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002452 int ret = 0;
2453
2454 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002455
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002456 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002457 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002458
2459 if (h2c_mux_busy(h2c, NULL)) {
2460 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002461 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002462 }
2463
Willy Tarreaucf68c782017-10-10 17:11:41 +02002464 memcpy(str,
2465 "\x00\x00\x08" /* length : 8 (same payload) */
2466 "\x06" "\x01" /* type : 6, flags : ACK */
2467 "\x00\x00\x00\x00" /* stream ID */, 9);
2468
2469 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002470 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002471
Willy Tarreau9c218e72019-05-26 10:08:28 +02002472 res = br_tail(h2c->mbuf);
2473 retry:
2474 if (!h2_get_buf(h2c, res)) {
2475 h2c->flags |= H2_CF_MUX_MALLOC;
2476 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002477 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002478 }
2479
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002480 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002481 if (unlikely(ret <= 0)) {
2482 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002483 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2484 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002485 h2c->flags |= H2_CF_MUX_MFULL;
2486 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002487 }
2488 else {
2489 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002490 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002491 }
2492 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002493 out:
2494 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002495 return ret;
2496}
2497
Willy Tarreau26f95952017-07-27 17:18:30 +02002498/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2499 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002500 * h2c or h2s. The caller must have already verified frame length and stream ID
2501 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002502 */
2503static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2504{
2505 int32_t inc;
2506 int error;
2507
Willy Tarreau7838a792019-08-12 18:42:03 +02002508 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2509
Willy Tarreau26f95952017-07-27 17:18:30 +02002510 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002511 if (b_data(&h2c->dbuf) < h2c->dfl) {
2512 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002513 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002514 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002515
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002516 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002517
2518 if (h2c->dsi != 0) {
2519 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002520
2521 /* it's not an error to receive WU on a closed stream */
2522 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002523 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002524
2525 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002526 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 +02002527 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002528 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002529 goto strm_err;
2530 }
2531
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002532 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002533 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 +02002534 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002535 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002536 goto strm_err;
2537 }
2538
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002539 h2s->sws += inc;
2540 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002541 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002542 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002543 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2544 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002545 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002546 }
2547 }
2548 else {
2549 /* connection window update */
2550 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002551 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002552 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002553 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002554 goto conn_err;
2555 }
2556
2557 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2558 error = H2_ERR_FLOW_CONTROL_ERROR;
2559 goto conn_err;
2560 }
2561
2562 h2c->mws += inc;
2563 }
2564
Willy Tarreau7838a792019-08-12 18:42:03 +02002565 done:
2566 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002567 return 1;
2568
2569 conn_err:
2570 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002571 out0:
2572 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 +02002573 return 0;
2574
2575 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002576 h2s_error(h2s, error);
2577 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002578 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002579 return 0;
2580}
2581
Willy Tarreaue96b0922017-10-30 00:28:29 +01002582/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002583 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2584 * have already verified frame length and stream ID validity. Described in
2585 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002586 */
2587static int h2c_handle_goaway(struct h2c *h2c)
2588{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002589 int last;
2590
Willy Tarreau7838a792019-08-12 18:42:03 +02002591 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002592 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002593 if (b_data(&h2c->dbuf) < h2c->dfl) {
2594 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002595 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002596 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002597 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002598
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002599 last = h2_get_n32(&h2c->dbuf, 0);
2600 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002601 if (h2c->last_sid < 0)
2602 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002603 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002604 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002605 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002606}
2607
Willy Tarreau92153fc2017-12-03 19:46:19 +01002608/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002609 * invalid. Returns > 0 on success or zero on missing data. It may return an
2610 * error in h2c. The caller must have already verified frame length and stream
2611 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002612 */
2613static int h2c_handle_priority(struct h2c *h2c)
2614{
Willy Tarreau7838a792019-08-12 18:42:03 +02002615 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2616
Willy Tarreau92153fc2017-12-03 19:46:19 +01002617 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002618 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002619 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002620 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002621 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002622 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002623
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002624 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002625 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002626 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002627 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002628 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002629 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002630 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002631 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002632 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002633 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002634}
2635
Willy Tarreaucd234e92017-08-18 10:59:39 +02002636/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002637 * Returns > 0 on success or zero on missing data. The caller must have already
2638 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002639 */
2640static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2641{
Willy Tarreau7838a792019-08-12 18:42:03 +02002642 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2643
Willy Tarreaucd234e92017-08-18 10:59:39 +02002644 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002645 if (b_data(&h2c->dbuf) < h2c->dfl) {
2646 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 +02002647 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002648 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002649 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002650
2651 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002652 if (h2s->st == H2_SS_CLOSED) {
2653 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 +02002654 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002655 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002656
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002657 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002658 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002659
2660 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002661 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002662 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002663 }
2664
2665 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002666 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002667 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002668}
2669
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002670/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2671 * It may return an error in h2c or h2s. The caller must consider that the
2672 * return value is the new h2s in case one was allocated (most common case).
2673 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002674 * errors here are reported as connection errors since it's impossible to
2675 * recover from such errors after the compression context has been altered.
2676 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002677static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002678{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002679 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002680 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002681 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002682 int error;
2683
Willy Tarreau7838a792019-08-12 18:42:03 +02002684 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2685
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002686 if (!b_size(&h2c->dbuf)) {
2687 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002688 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002689 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002690
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002691 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2692 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002693 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002694 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002695
2696 /* now either the frame is complete or the buffer is complete */
2697 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002698 /* The stream exists/existed, this must be a trailers frame */
2699 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002700 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002701 /* unrecoverable error ? */
2702 if (h2c->st0 >= H2_CS_ERROR)
2703 goto out;
2704
Christopher Faulet485da0b2021-10-08 08:56:00 +02002705 if (error == 0) {
2706 /* Demux not blocked because of the stream, it is an incomplete frame */
2707 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2708 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002709 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002710 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002711
2712 if (error < 0) {
2713 /* Failed to decode this frame (e.g. too large request)
2714 * but the HPACK decompressor is still synchronized.
2715 */
2716 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2717 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002718 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002719 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002720 goto done;
2721 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002722 /* the connection was already killed by an RST, let's consume
2723 * the data and send another RST.
2724 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002725 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002726 h2s = (struct h2s*)h2_error_stream;
2727 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002728 }
2729 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2730 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2731 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002732 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002733 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002734 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002735 goto conn_err;
2736 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002737 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2738 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002739
Amaury Denoyelle74162742020-12-11 17:53:05 +01002740 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002741
Willy Tarreau25919232019-01-03 14:48:18 +01002742 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002743 if (h2c->st0 >= H2_CS_ERROR)
2744 goto out;
2745
Willy Tarreau25919232019-01-03 14:48:18 +01002746 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002747 if (error == 0) {
2748 /* Demux not blocked because of the stream, it is an incomplete frame */
2749 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2750 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002751 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002752 }
Willy Tarreau25919232019-01-03 14:48:18 +01002753
2754 /* Failed to decode this stream (e.g. too large request)
2755 * but the HPACK decompressor is still synchronized.
2756 */
2757 h2s = (struct h2s*)h2_error_stream;
2758 goto send_rst;
2759 }
2760
Willy Tarreau29268e92021-06-17 08:29:14 +02002761 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2762
Willy Tarreau22de8d32018-09-05 19:55:58 +02002763 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002764 * positively from h2c_frt_stream_new(), the stream will report the error,
2765 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002766 *
2767 * Xfer the rxbuf to the stream. On success, the new stream owns the
2768 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002769 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002770 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002771 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002772 h2s = (struct h2s*)h2_refused_stream;
2773 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002774 }
2775
2776 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002777 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002778 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002779
Willy Tarreau88d138e2019-01-02 19:38:14 +01002780 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002781 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002782 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002783
2784 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002785 if (h2s->st == H2_SS_OPEN)
2786 h2s->st = H2_SS_HREM;
2787 else
2788 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002789 }
2790
Willy Tarreau3a429f02019-01-03 11:41:50 +01002791 /* update the max stream ID if the request is being processed */
2792 if (h2s->id > h2c->max_id)
2793 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002794
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002795 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002796
2797 conn_err:
2798 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002799 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002800
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002801 out:
2802 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002803 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 +01002804 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002805
2806 send_rst:
2807 /* make the demux send an RST for the current stream. We may only
2808 * do this if we're certain that the HEADERS frame was properly
2809 * decompressed so that the HPACK decoder is still kept up to date.
2810 */
2811 h2_release_buf(h2c, &rxbuf);
2812 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002813
Willy Tarreau022e5e52020-09-10 09:33:15 +02002814 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 +02002815 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002816 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002817}
2818
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002819/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2820 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2821 * errors here are reported as connection errors since it's impossible to
2822 * recover from such errors after the compression context has been altered.
2823 */
2824static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2825{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002826 struct buffer rxbuf = BUF_NULL;
2827 unsigned long long body_len = 0;
2828 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002829 int error;
2830
Willy Tarreau7838a792019-08-12 18:42:03 +02002831 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2832
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002833 if (!b_size(&h2c->dbuf)) {
2834 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002835 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002836 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002837
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002838 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2839 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002840 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002841 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002842
Christopher Faulet6884aa32019-09-23 15:28:20 +02002843 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002844 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002845 }
2846 else {
2847 /* the connection was already killed by an RST, let's consume
2848 * the data and send another RST.
2849 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002850 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002851 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002852 h2c->st0 = H2_CS_FRAME_E;
2853 goto send_rst;
2854 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002855
Willy Tarreau25919232019-01-03 14:48:18 +01002856 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002857 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002858 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002859
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002860 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2861 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002862 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 +01002863 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2864 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002865 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002866 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002867 }
2868
Willy Tarreau25919232019-01-03 14:48:18 +01002869 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002870 if (error == 0) {
2871 /* Demux not blocked because of the stream, it is an incomplete frame */
2872 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2873 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002874 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002875 }
Willy Tarreau25919232019-01-03 14:48:18 +01002876
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002877 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002878 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 +01002879 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002880 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002881 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002882 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002883 }
2884
Christopher Fauletfa922f02019-05-07 10:55:17 +02002885 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002886 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002887
Willy Tarreau927b88b2019-03-04 08:03:25 +01002888 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002889 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002890 else if (h2s->flags & H2_SF_ES_RCVD) {
2891 if (h2s->st == H2_SS_OPEN)
2892 h2s->st = H2_SS_HREM;
2893 else if (h2s->st == H2_SS_HLOC)
2894 h2s_close(h2s);
2895 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002896
Christopher Fauletf95f8762021-01-22 11:59:07 +01002897 /* Unblock busy server h2s waiting for the response headers to validate
2898 * the tunnel establishment or the end of the response of an oborted
2899 * tunnel
2900 */
2901 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2902 (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)) {
2903 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2904 h2s->flags &= ~H2_SF_BLK_MBUSY;
2905 }
2906
Willy Tarreau9abb3172021-06-16 18:32:42 +02002907 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 +02002908 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002909 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002910 fail:
2911 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2912 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002913
2914 send_rst:
2915 /* make the demux send an RST for the current stream. We may only
2916 * do this if we're certain that the HEADERS frame was properly
2917 * decompressed so that the HPACK decoder is still kept up to date.
2918 */
2919 h2_release_buf(h2c, &rxbuf);
2920 h2c->st0 = H2_CS_FRAME_E;
2921
Willy Tarreau022e5e52020-09-10 09:33:15 +02002922 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 +02002923 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2924 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002925}
2926
Willy Tarreau454f9052017-10-26 19:40:35 +02002927/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2928 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2929 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002930static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002931{
2932 int error;
2933
Willy Tarreau7838a792019-08-12 18:42:03 +02002934 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2935
Willy Tarreau454f9052017-10-26 19:40:35 +02002936 /* note that empty DATA frames are perfectly valid and sometimes used
2937 * to signal an end of stream (with the ES flag).
2938 */
2939
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002940 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2941 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002942 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002943 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002944
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002945 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2946 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002947 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002948 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002949
2950 /* now either the frame is complete or the buffer is complete */
2951
Willy Tarreau454f9052017-10-26 19:40:35 +02002952 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2953 /* RFC7540#6.1 */
2954 error = H2_ERR_STREAM_CLOSED;
2955 goto strm_err;
2956 }
2957
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002958 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002959 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002960 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 +01002961 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002962 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002963 goto strm_err;
2964 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002965 if (!(h2c->flags & H2_CF_IS_BACK) &&
2966 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2967 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2968 /* a tunnel attempt was aborted but the client still try to send some raw data.
2969 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2970 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2971 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002972 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002973 */
2974 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2975 error = H2_ERR_CANCEL;
2976 goto strm_err;
2977 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002978
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002979 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002980 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002981
Willy Tarreau454f9052017-10-26 19:40:35 +02002982 /* call the upper layers to process the frame, then let the upper layer
2983 * notify the stream about any change.
2984 */
2985 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002986 /* The upper layer has already closed, this may happen on
2987 * 4xx/redirects during POST, or when receiving a response
2988 * from an H2 server after the client has aborted.
2989 */
2990 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002991 goto strm_err;
2992 }
2993
Willy Tarreau8f650c32017-11-21 19:36:21 +01002994 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002995 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002996
Willy Tarreau721c9742017-11-07 11:05:42 +01002997 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002998 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002999 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003000 }
3001
3002 /* check for completion : the callee will change this to FRAME_A or
3003 * FRAME_H once done.
3004 */
3005 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003006 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003007
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003008 /* last frame */
3009 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003010 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003011 if (h2s->st == H2_SS_OPEN)
3012 h2s->st = H2_SS_HREM;
3013 else
3014 h2s_close(h2s);
3015
Willy Tarreau1915ca22019-01-24 11:49:37 +01003016 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3017 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003018 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 +01003019 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003020 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003021 goto strm_err;
3022 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003023 }
3024
Christopher Fauletf95f8762021-01-22 11:59:07 +01003025 /* Unblock busy server h2s waiting for the end of the response for an
3026 * aborted tunnel
3027 */
3028 if ((h2c->flags & H2_CF_IS_BACK) &&
3029 (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)) {
3030 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3031 h2s->flags &= ~H2_SF_BLK_MBUSY;
3032 }
3033
Willy Tarreau7838a792019-08-12 18:42:03 +02003034 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003035 return 1;
3036
Willy Tarreau454f9052017-10-26 19:40:35 +02003037 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003038 h2s_error(h2s, error);
3039 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003040 fail:
3041 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 +02003042 return 0;
3043}
3044
Willy Tarreau63864812019-08-07 14:25:20 +02003045/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3046 * valid for the current stream state. This is needed only after parsing the
3047 * frame header but in practice it can be performed at any time during
3048 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3049 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3050 */
3051static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3052{
Willy Tarreau7838a792019-08-12 18:42:03 +02003053 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3054
Willy Tarreau63864812019-08-07 14:25:20 +02003055 if (h2s->st == H2_SS_IDLE &&
3056 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3057 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3058 * this state MUST be treated as a connection error
3059 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003060 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 +02003061 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003062 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003063 /* only log if no other stream can report the error */
3064 sess_log(h2c->conn->owner);
3065 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003066 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003067 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 +02003068 return 0;
3069 }
3070
Willy Tarreau57a18162019-11-24 14:57:53 +01003071 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3072 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003073 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 +01003074 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003075 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003076 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3077 return 0;
3078 }
3079
Willy Tarreau63864812019-08-07 14:25:20 +02003080 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3081 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3082 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3083 * this state MUST be treated as a stream error.
3084 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3085 * PUSH_PROMISE/CONTINUATION cause connection errors.
3086 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003087 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003088 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 +02003089 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003090 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003091 }
3092 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003093 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003094 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003095 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 +02003096 return 0;
3097 }
3098
3099 /* Below the management of frames received in closed state is a
3100 * bit hackish because the spec makes strong differences between
3101 * streams closed by receiving RST, sending RST, and seeing ES
3102 * in both directions. In addition to this, the creation of a
3103 * new stream reusing the identifier of a closed one will be
3104 * detected here. Given that we cannot keep track of all closed
3105 * streams forever, we consider that unknown closed streams were
3106 * closed on RST received, which allows us to respond with an
3107 * RST without breaking the connection (eg: to abort a transfer).
3108 * Some frames have to be silently ignored as well.
3109 */
3110 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3111 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3112 /* #5.1.1: The identifier of a newly
3113 * established stream MUST be numerically
3114 * greater than all streams that the initiating
3115 * endpoint has opened or reserved. This
3116 * governs streams that are opened using a
3117 * HEADERS frame and streams that are reserved
3118 * using PUSH_PROMISE. An endpoint that
3119 * receives an unexpected stream identifier
3120 * MUST respond with a connection error.
3121 */
3122 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003123 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 +02003124 return 0;
3125 }
3126
Willy Tarreau4c08f122019-09-26 08:47:15 +02003127 if (h2s->flags & H2_SF_RST_RCVD &&
3128 !(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 +02003129 /* RFC7540#5.1:closed: an endpoint that
3130 * receives any frame other than PRIORITY after
3131 * receiving a RST_STREAM MUST treat that as a
3132 * stream error of type STREAM_CLOSED.
3133 *
3134 * Note that old streams fall into this category
3135 * and will lead to an RST being sent.
3136 *
3137 * However, we cannot generalize this to all frame types. Those
3138 * carrying compression state must still be processed before
3139 * being dropped or we'll desynchronize the decoder. This can
3140 * happen with request trailers received after sending an
3141 * RST_STREAM, or with header/trailers responses received after
3142 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003143 *
3144 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003145 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003146 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003147 */
3148 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3149 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003150 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 +02003151 return 0;
3152 }
3153
3154 /* RFC7540#5.1:closed: if this state is reached as a
3155 * result of sending a RST_STREAM frame, the peer that
3156 * receives the RST_STREAM might have already sent
3157 * frames on the stream that cannot be withdrawn. An
3158 * endpoint MUST ignore frames that it receives on
3159 * closed streams after it has sent a RST_STREAM
3160 * frame. An endpoint MAY choose to limit the period
3161 * over which it ignores frames and treat frames that
3162 * arrive after this time as being in error.
3163 */
3164 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3165 /* RFC7540#5.1:closed: any frame other than
3166 * PRIO/WU/RST in this state MUST be treated as
3167 * a connection error
3168 */
3169 if (h2c->dft != H2_FT_RST_STREAM &&
3170 h2c->dft != H2_FT_PRIORITY &&
3171 h2c->dft != H2_FT_WINDOW_UPDATE) {
3172 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003173 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 +02003174 return 0;
3175 }
3176 }
3177 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003178 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003179 return 1;
3180}
3181
Willy Tarreaubc933932017-10-09 16:21:43 +02003182/* process Rx frames to be demultiplexed */
3183static void h2_process_demux(struct h2c *h2c)
3184{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003185 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003186 struct h2_fh hdr;
3187 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003188 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003189
Willy Tarreau7838a792019-08-12 18:42:03 +02003190 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3191
Willy Tarreau081d4722017-05-16 21:51:05 +02003192 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003193 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003194
3195 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3196 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003197 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003198 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003199 goto out;
3200
Willy Tarreau52eed752017-09-22 15:05:09 +02003201 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3202 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003203 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003204 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003205 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003206 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003207 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003208 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003209 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003210 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003211 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003212 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003213
3214 h2c->max_id = 0;
3215 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003216 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003217 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003218
3219 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003220 /* ensure that what is pending is a valid SETTINGS frame
3221 * without an ACK.
3222 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003223 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 +02003224 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003225 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003226 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003227 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003228 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 +02003229 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003230 if (!(h2c->flags & H2_CF_IS_BACK))
3231 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003232 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003233 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003234 }
3235
3236 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3237 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003238 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 +02003239 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3240 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003241 if (!(h2c->flags & H2_CF_IS_BACK))
3242 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003243 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003244 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003245 }
3246
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003247 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003248 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003249 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 +02003250 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3251 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003252 if (!(h2c->flags & H2_CF_IS_BACK))
3253 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003254 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003255 }
3256
Willy Tarreau3bf69182018-12-21 15:34:50 +01003257 /* that's OK, switch to FRAME_P to process it. This is
3258 * a SETTINGS frame whose header has already been
3259 * deleted above.
3260 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003261 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003262 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003263 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003264 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003265 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003266
3267 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003268 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003269 int ret = 0;
3270
Willy Tarreau7838a792019-08-12 18:42:03 +02003271 if (!b_data(&h2c->dbuf)) {
3272 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003273 h2c->flags |= H2_CF_DEM_SHORT_READ;
3274 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003275 }
3276
3277 if (h2c->st0 >= H2_CS_ERROR) {
3278 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003279 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003280 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003281
3282 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003283 h2c->rcvd_s = 0;
3284
Willy Tarreau7838a792019-08-12 18:42:03 +02003285 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003286 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3287 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003288 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003289 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003290
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003291 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003292 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 +02003293 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003294 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003295 /* only log if no other stream can report the error */
3296 sess_log(h2c->conn->owner);
3297 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003298 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003299 break;
3300 }
3301
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003302 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003303 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3304 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3305 * we read the pad length and drop it from the remaining
3306 * payload (one byte + the 9 remaining ones = 10 total
3307 * removed), so we have a frame payload starting after the
3308 * pad len. Flow controlled frames (DATA) also count the
3309 * padlen in the flow control, so it must be adjusted.
3310 */
3311 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003312 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 +01003313 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003314 if (!(h2c->flags & H2_CF_IS_BACK))
3315 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003316 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003317 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003318 }
3319 hdr.len--;
3320
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003321 if (b_data(&h2c->dbuf) < 10) {
3322 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003323 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003324 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003325
3326 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3327
3328 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003329 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 +01003330 /* RFC7540#6.1 : pad length = length of
3331 * frame payload or greater => error.
3332 */
3333 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003334 if (!(h2c->flags & H2_CF_IS_BACK))
3335 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003336 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003337 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003338 }
3339
3340 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3341 h2c->rcvd_c++;
3342 h2c->rcvd_s++;
3343 }
3344 b_del(&h2c->dbuf, 1);
3345 }
3346 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003347
3348 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003349 h2c->dfl = hdr.len;
3350 h2c->dsi = hdr.sid;
3351 h2c->dft = hdr.ft;
3352 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003353 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003354 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 +02003355 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003356
3357 /* check for minimum basic frame format validity */
3358 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3359 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003360 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 +01003361 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003362 if (!(h2c->flags & H2_CF_IS_BACK))
3363 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003364 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003365 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003366 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003367 }
3368
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003369 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3370 * H2_CS_FRAME_P indicates an incomplete previous operation
3371 * (most often the first attempt) and requires some validity
3372 * checks for the frame and the current state. The two other
3373 * ones are set after completion (or abortion) and must skip
3374 * validity checks.
3375 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003376 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3377
Willy Tarreau567beb82018-12-18 16:52:44 +01003378 if (tmp_h2s != h2s && h2s && h2s->cs &&
3379 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003380 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003381 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003382 (h2s->flags & H2_SF_ES_RCVD) ||
3383 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003384 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003385 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 +01003386 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003387 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003388 }
3389 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003390
Willy Tarreau63864812019-08-07 14:25:20 +02003391 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003392 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3393 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003394 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003395 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003396
Willy Tarreau7e98c052017-10-10 15:56:59 +02003397 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003398 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003399 if (h2c->st0 == H2_CS_FRAME_P) {
3400 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003401 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003402 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003403 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003404
Willy Tarreau7838a792019-08-12 18:42:03 +02003405 if (h2c->st0 == H2_CS_FRAME_A) {
3406 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 +02003407 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003408 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003409 break;
3410
Willy Tarreaucf68c782017-10-10 17:11:41 +02003411 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003412 if (h2c->st0 == H2_CS_FRAME_P) {
3413 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003414 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003415 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003416
Willy Tarreau7838a792019-08-12 18:42:03 +02003417 if (h2c->st0 == H2_CS_FRAME_A) {
3418 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 +02003419 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003420 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003421 break;
3422
Willy Tarreau26f95952017-07-27 17:18:30 +02003423 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003424 if (h2c->st0 == H2_CS_FRAME_P) {
3425 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 +02003426 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003427 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003428 break;
3429
Willy Tarreau61290ec2017-10-17 08:19:21 +02003430 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003431 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003432 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3433 * frames' parsers consume all following CONTINUATION
3434 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003435 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003436 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 +01003437 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003438 if (!(h2c->flags & H2_CF_IS_BACK))
3439 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003440 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003441 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003442
Willy Tarreau13278b42017-10-13 19:23:14 +02003443 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003444 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003445 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003446 if (h2c->flags & H2_CF_IS_BACK)
3447 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3448 else
3449 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003450 if (tmp_h2s) {
3451 h2s = tmp_h2s;
3452 ret = 1;
3453 }
3454 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003455 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003456 break;
3457
Willy Tarreau454f9052017-10-26 19:40:35 +02003458 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003459 if (h2c->st0 == H2_CS_FRAME_P) {
3460 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003461 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003462 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003463 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003464
Willy Tarreau7838a792019-08-12 18:42:03 +02003465 if (h2c->st0 == H2_CS_FRAME_A) {
3466 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 +02003467 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003468 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003469 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003470
Willy Tarreau92153fc2017-12-03 19:46:19 +01003471 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003472 if (h2c->st0 == H2_CS_FRAME_P) {
3473 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003474 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003475 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003476 break;
3477
Willy Tarreaucd234e92017-08-18 10:59:39 +02003478 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003479 if (h2c->st0 == H2_CS_FRAME_P) {
3480 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 +02003481 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003482 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003483 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003484 break;
3485
Willy Tarreaue96b0922017-10-30 00:28:29 +01003486 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003487 if (h2c->st0 == H2_CS_FRAME_P) {
3488 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003489 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003490 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003491 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003492 break;
3493
Willy Tarreau1c661982017-10-30 13:52:01 +01003494 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003495 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003496 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003497 /* drop frames that we ignore. They may be larger than
3498 * the buffer so we drain all of their contents until
3499 * we reach the end.
3500 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003501 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3502 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003503 h2c->dfl -= ret;
3504 ret = h2c->dfl == 0;
3505 }
3506
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003507 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003508 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003509 if (h2s->st == H2_SS_ERROR) {
3510 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 +01003511 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003512 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003513
Willy Tarreau7838a792019-08-12 18:42:03 +02003514 if (h2c->st0 == H2_CS_FRAME_E) {
3515 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 +01003516 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003517 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003518
Willy Tarreau7e98c052017-10-10 15:56:59 +02003519 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003520 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003521 break;
3522
3523 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003524 if (h2c->dfl)
3525 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003526 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3527 b_del(&h2c->dbuf, ret);
3528 h2c->dfl -= ret;
3529 if (!h2c->dfl) {
3530 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3531 h2c->st0 = H2_CS_FRAME_H;
3532 h2c->dsi = -1;
3533 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003534 }
3535 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003536
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003537 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003538 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3539 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003540 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003541 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003542
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003543 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003544 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3545 if (h2c->flags & H2_CF_RCVD_SHUT)
3546 h2c->flags |= H2_CF_END_REACHED;
3547 }
3548
Willy Tarreau567beb82018-12-18 16:52:44 +01003549 if (h2s && h2s->cs &&
3550 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003551 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003552 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003553 (h2s->flags & H2_SF_ES_RCVD) ||
3554 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003555 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003556 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 +01003557 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003558 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003559 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003560
Willy Tarreau7838a792019-08-12 18:42:03 +02003561 if (old_iw != h2c->miw) {
3562 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003563 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003564 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003565
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003566 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003567 out:
3568 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003569 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003570}
3571
Willy Tarreau989539b2020-01-10 17:01:29 +01003572/* resume each h2s eligible for sending in list head <head> */
3573static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3574{
3575 struct h2s *h2s, *h2s_back;
3576
3577 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3578
3579 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3580 if (h2c->mws <= 0 ||
3581 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3582 h2c->st0 >= H2_CS_ERROR)
3583 break;
3584
3585 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003586
Willy Tarreaud9464162020-01-10 18:25:07 +01003587 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003588 continue;
3589
Willy Tarreau5723f292020-01-10 15:16:57 +01003590 /* If the sender changed his mind and unsubscribed, let's just
3591 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003592 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003593 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3594 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003595 LIST_DEL_INIT(&h2s->list);
3596 continue;
3597 }
3598
Willy Tarreauf96508a2020-01-10 11:12:48 +01003599 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003600 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003601 tasklet_wakeup(h2s->subs->tasklet);
3602 h2s->subs->events &= ~SUB_RETRY_SEND;
3603 if (!h2s->subs->events)
3604 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003605 }
3606 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3607 tasklet_wakeup(h2s->shut_tl);
3608 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003609 }
3610
3611 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3612}
3613
Willy Tarreaubc933932017-10-09 16:21:43 +02003614/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3615 * the end.
3616 */
3617static int h2_process_mux(struct h2c *h2c)
3618{
Willy Tarreau7838a792019-08-12 18:42:03 +02003619 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3620
Willy Tarreau01b44822018-10-03 14:26:37 +02003621 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3622 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3623 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3624 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003625 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003626 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003627 goto fail;
3628 }
3629 h2c->st0 = H2_CS_SETTINGS1;
3630 }
3631 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003632 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003633 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003634 }
3635
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003636 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003637 if (h2c->rcvd_s > 0 &&
3638 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3639 h2c_send_strm_wu(h2c) < 0)
3640 goto fail;
3641
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003642 if (h2c->rcvd_c > 0 &&
3643 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3644 h2c_send_conn_wu(h2c) < 0)
3645 goto fail;
3646
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003647 /* First we always process the flow control list because the streams
3648 * waiting there were already elected for immediate emission but were
3649 * blocked just on this.
3650 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003651 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3652 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003653
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003654 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003655 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003656 if (h2c->st0 == H2_CS_ERROR) {
3657 if (h2c->max_id >= 0) {
3658 h2c_send_goaway_error(h2c, NULL);
3659 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003660 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003661 }
3662
3663 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3664 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003665 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003666 done:
3667 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3668 return 1;
3669 out0:
3670 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3671 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003672}
3673
Willy Tarreau62f52692017-10-08 23:01:42 +02003674
Willy Tarreau479998a2018-11-18 06:30:59 +01003675/* Attempt to read data, and subscribe if none available.
3676 * The function returns 1 if data has been received, otherwise zero.
3677 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003678static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003679{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003680 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003681 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003682 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003683 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003684
Willy Tarreau7838a792019-08-12 18:42:03 +02003685 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3686
3687 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3688 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003689 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003690 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003691
Willy Tarreau7838a792019-08-12 18:42:03 +02003692 if (!h2_recv_allowed(h2c)) {
3693 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003694 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003695 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003696
Willy Tarreau44e973f2018-03-01 17:49:30 +01003697 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003698 if (!buf) {
3699 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003700 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003701 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003702 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003703
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003704 if (h2c->flags & H2_CF_RCVD_SHUT) {
3705 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003706 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003707 }
3708
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003709 if (!b_data(buf)) {
3710 /* try to pre-align the buffer like the
3711 * rxbufs will be to optimize memory copies. We'll make
3712 * sure that the frame header lands at the end of the
3713 * HTX block to alias it upon recv. We cannot use the
3714 * head because rcv_buf() will realign the buffer if
3715 * it's empty. Thus we cheat and pretend we already
3716 * have a few bytes there.
3717 */
3718 max = buf_room_for_htx_data(buf) + 9;
3719 buf->head = sizeof(struct htx) - 9;
3720 }
3721 else
3722 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003723
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003724 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003725
Christopher Fauletde9d6052021-04-23 12:25:18 +02003726 if (max && !ret && h2_recv_allowed(h2c)) {
3727 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3728 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003729 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003730 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003731 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3732 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003733
Christopher Fauletde9d6052021-04-23 12:25:18 +02003734 if (conn_xprt_read0_pending(h2c->conn)) {
3735 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3736 h2c->flags |= H2_CF_RCVD_SHUT;
3737 }
3738
Olivier Houcharda1411e62018-08-17 18:42:48 +02003739 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003740 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003741 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003742 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003743 }
3744
Willy Tarreau7838a792019-08-12 18:42:03 +02003745 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003746 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003747 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003748 }
3749
3750 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003751 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003752}
3753
Willy Tarreau479998a2018-11-18 06:30:59 +01003754/* Try to send data if possible.
3755 * The function returns 1 if data have been sent, otherwise zero.
3756 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003757static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003758{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003759 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003760 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003761 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003762
Willy Tarreau7838a792019-08-12 18:42:03 +02003763 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003764
Willy Tarreau7838a792019-08-12 18:42:03 +02003765 if (conn->flags & CO_FL_ERROR) {
3766 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3767 return 1;
3768 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003769
Willy Tarreau911db9b2020-01-23 16:27:54 +01003770 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003771 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003772 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003773 }
3774
Willy Tarreaubc933932017-10-09 16:21:43 +02003775 /* This loop is quite simple : it tries to fill as much as it can from
3776 * pending streams into the existing buffer until it's reportedly full
3777 * or the end of send requests is reached. Then it tries to send this
3778 * buffer's contents out, marks it not full if at least one byte could
3779 * be sent, and tries again.
3780 *
3781 * The snd_buf() function normally takes a "flags" argument which may
3782 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3783 * data immediately comes and CO_SFL_STREAMER to indicate that the
3784 * connection is streaming lots of data (used to increase TLS record
3785 * size at the expense of latency). The former can be sent any time
3786 * there's a buffer full flag, as it indicates at least one stream
3787 * attempted to send and failed so there are pending data. An
3788 * alternative would be to set it as long as there's an active stream
3789 * but that would be problematic for ACKs until we have an absolute
3790 * guarantee that all waiters have at least one byte to send. The
3791 * latter should possibly not be set for now.
3792 */
3793
3794 done = 0;
3795 while (!done) {
3796 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003797 unsigned int released = 0;
3798 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003799
3800 /* fill as much as we can into the current buffer */
3801 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3802 done = h2_process_mux(h2c);
3803
Olivier Houchard2b094432019-01-29 18:28:36 +01003804 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003805 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003806
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003807 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003808 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003809 break;
3810
3811 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3812 flags |= CO_SFL_MSG_MORE;
3813
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003814 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3815 if (b_data(buf)) {
3816 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003817 if (!ret) {
3818 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003819 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003820 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003821 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003822 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003823 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003824 if (b_data(buf)) {
3825 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003826 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003827 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003828 }
3829 b_free(buf);
3830 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003831 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003832
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003833 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003834 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003835
Willy Tarreaubc933932017-10-09 16:21:43 +02003836 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003837 if (sent)
3838 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003839 }
3840
Willy Tarreaua2af5122017-10-09 11:56:46 +02003841 if (conn->flags & CO_FL_SOCK_WR_SH) {
3842 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003843 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003844 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003845 /* We're not full anymore, so we can wake any task that are waiting
3846 * for us.
3847 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003848 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3849 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003850
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003851 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003852 if (!br_data(h2c->mbuf)) {
3853 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003854 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003855 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003856schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003857 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3858 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003859 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003860 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003861
Willy Tarreau7838a792019-08-12 18:42:03 +02003862 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003863 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003864}
3865
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003866/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003867struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003868{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003869 struct connection *conn;
3870 struct tasklet *tl = (struct tasklet *)t;
3871 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003872 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003873 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003874
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003875 if (state & TASK_F_USR1) {
3876 /* the tasklet was idling on an idle connection, it might have
3877 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003878 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003879 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3880 if (t->context == NULL) {
3881 /* The connection has been taken over by another thread,
3882 * we're no longer responsible for it, so just free the
3883 * tasklet, and do nothing.
3884 */
3885 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3886 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003887 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003888 goto leave;
3889 }
3890 conn = h2c->conn;
3891 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003892
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003893 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003894
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003895 /* Remove the connection from the list, to be sure nobody attempts
3896 * to use it while we handle the I/O events
3897 */
3898 if (conn_in_list)
3899 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003900
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003901 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3902 } else {
3903 /* we're certain the connection was not in an idle list */
3904 conn = h2c->conn;
3905 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3906 conn_in_list = 0;
3907 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003908
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003909 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003910 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003911 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003912 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003913 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003914 ret = h2_process(h2c);
3915
3916 /* If we were in an idle list, we want to add it back into it,
3917 * unless h2_process() returned -1, which mean it has destroyed
3918 * the connection (testing !ret is enough, if h2_process() wasn't
3919 * called then ret will be 0 anyway.
3920 */
Willy Tarreau74163142021-03-13 11:30:19 +01003921 if (ret < 0)
3922 t = NULL;
3923
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003924 if (!ret && conn_in_list) {
3925 struct server *srv = objt_server(conn->target);
3926
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003927 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003928 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003929 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003930 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003931 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003932 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003933 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003934
Willy Tarreau38468772020-06-28 00:31:13 +02003935leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003936 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003937 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003938}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003939
Willy Tarreau62f52692017-10-08 23:01:42 +02003940/* callback called on any event by the connection handler.
3941 * It applies changes and returns zero, or < 0 if it wants immediate
3942 * destruction of the connection (which normally doesn not happen in h2).
3943 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003944static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003945{
Olivier Houchard7505f942018-08-21 18:10:44 +02003946 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003947
Willy Tarreau7838a792019-08-12 18:42:03 +02003948 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3949
Willy Tarreauf0961222021-02-05 11:41:46 +01003950 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3951 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003952 h2_process_demux(h2c);
3953
3954 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003955 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003956
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003957 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003958 h2c->flags &= ~H2_CF_DEM_DFULL;
3959 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003960 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003961
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003962 if (unlikely(h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003963 /* frontend is stopping, reload likely in progress, let's try
3964 * to announce a graceful shutdown if not yet done. We don't
3965 * care if it fails, it will be tried again later.
3966 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003967 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003968 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3969 if (h2c->last_sid < 0)
3970 h2c->last_sid = (1U << 31) - 1;
3971 h2c_send_goaway_error(h2c, NULL);
3972 }
3973 }
3974
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003975 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003976 * If we received early data, and the handshake is done, wake
3977 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003978 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003979 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003980 (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 +01003981 struct eb32_node *node;
3982 struct h2s *h2s;
3983
3984 h2c->flags |= H2_CF_WAIT_FOR_HS;
3985 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3986
3987 while (node) {
3988 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003989 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003990 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003991 node = eb32_next(node);
3992 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003993 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003994
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003995 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003996 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3997 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3998 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003999 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004000
4001 if (eb_is_empty(&h2c->streams_by_id)) {
4002 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004003 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004004 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004005 return -1;
4006 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004007
4008 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004009 if (conn->flags & CO_FL_LIST_MASK) {
4010 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004011 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004012 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4013 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004014 }
4015 else if (h2c->st0 == H2_CS_ERROR) {
4016 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004017 if (conn->flags & CO_FL_LIST_MASK) {
4018 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004019 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004020 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4021 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004022 }
4023
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004024 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004025 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004026
Olivier Houchard53216e72018-10-10 15:46:36 +02004027 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4028 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4029 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004030 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004031 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4032 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004033 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004034
Willy Tarreau3f133572017-10-31 19:21:06 +01004035 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004036 if (h2c_may_expire(h2c))
4037 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4038 else
4039 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004040 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01004041 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02004042
Olivier Houchard7505f942018-08-21 18:10:44 +02004043 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004044 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004045 return 0;
4046}
4047
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004048/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004049static int h2_wake(struct connection *conn)
4050{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004051 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004052 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004053
Willy Tarreau7838a792019-08-12 18:42:03 +02004054 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4055 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004056 if (ret >= 0)
4057 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004058 TRACE_LEAVE(H2_EV_H2C_WAKE);
4059 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004060}
4061
Willy Tarreauea392822017-10-31 10:02:25 +01004062/* Connection timeout management. The principle is that if there's no receipt
4063 * nor sending for a certain amount of time, the connection is closed. If the
4064 * MUX buffer still has lying data or is not allocatable, the connection is
4065 * immediately killed. If it's allocatable and empty, we attempt to send a
4066 * GOAWAY frame.
4067 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004068struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004069{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004070 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004071 int expired = tick_is_expired(t->expire, now_ms);
4072
Willy Tarreau7838a792019-08-12 18:42:03 +02004073 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4074
Willy Tarreaubd42e922020-06-30 11:19:23 +02004075 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004076 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004077 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004078
4079 /* Somebody already stole the connection from us, so we should not
4080 * free it, we just have to free the task.
4081 */
4082 if (!t->context) {
4083 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004084 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004085 goto do_leave;
4086 }
4087
4088
Willy Tarreaubd42e922020-06-30 11:19:23 +02004089 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004090 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004091 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4092 return t;
4093 }
Willy Tarreauea392822017-10-31 10:02:25 +01004094
Willy Tarreaubd42e922020-06-30 11:19:23 +02004095 if (!h2c_may_expire(h2c)) {
4096 /* we do still have streams but all of them are idle, waiting
4097 * for the data layer, so we must not enforce the timeout here.
4098 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004099 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004100 t->expire = TICK_ETERNITY;
4101 return t;
4102 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004103
Willy Tarreaubd42e922020-06-30 11:19:23 +02004104 /* We're about to destroy the connection, so make sure nobody attempts
4105 * to steal it from us.
4106 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004107 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004108 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004109
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004110 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004111 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004112
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004113do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004114 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004115
4116 if (!h2c) {
4117 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004118 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004119 return NULL;
4120 }
4121
4122 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004123 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004124 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004125
Willy Tarreau662fafc2019-05-26 09:43:07 +02004126 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004127 /* don't even try to send a GOAWAY, the buffer is stuck */
4128 h2c->flags |= H2_CF_GOAWAY_FAILED;
4129 }
4130
4131 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004132 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004133 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4134 h2c->flags |= H2_CF_GOAWAY_FAILED;
4135
Willy Tarreau662fafc2019-05-26 09:43:07 +02004136 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004137 unsigned int released = 0;
4138 struct buffer *buf;
4139
4140 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4141 if (b_data(buf)) {
4142 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4143 if (!ret)
4144 break;
4145 b_del(buf, ret);
4146 if (b_data(buf))
4147 break;
4148 b_free(buf);
4149 released++;
4150 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004151 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004152
4153 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004154 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004155 }
Willy Tarreauea392822017-10-31 10:02:25 +01004156
Willy Tarreau4481e262019-10-31 15:36:30 +01004157 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004158 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4159 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004160 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004161 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4162 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004163
Willy Tarreau0975f112018-03-29 15:22:59 +02004164 /* either we can release everything now or it will be done later once
4165 * the last stream closes.
4166 */
4167 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004168 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004169
Willy Tarreau7838a792019-08-12 18:42:03 +02004170 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004171 return NULL;
4172}
4173
4174
Willy Tarreau62f52692017-10-08 23:01:42 +02004175/*******************************************/
4176/* functions below are used by the streams */
4177/*******************************************/
4178
4179/*
4180 * Attach a new stream to a connection
4181 * (Used for outgoing connections)
4182 */
Christopher Faulete00ad352021-12-16 14:44:31 +01004183static int h2_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004184{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004185 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004186 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004187
Willy Tarreau7838a792019-08-12 18:42:03 +02004188 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchardf502aca2018-12-14 19:42:40 +01004189 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004190 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004191 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004192 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004193 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004194
4195 /* the connection is not idle anymore, let's mark this */
4196 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004197 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004198
Willy Tarreau7838a792019-08-12 18:42:03 +02004199 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004200 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004201}
4202
Willy Tarreaufafd3982018-11-18 21:29:20 +01004203/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4204 * We have to scan because we may have some orphan streams. It might be
4205 * beneficial to scan backwards from the end to reduce the likeliness to find
4206 * orphans.
4207 */
4208static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4209{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004210 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004211 struct h2s *h2s;
4212 struct eb32_node *node;
4213
4214 node = eb32_first(&h2c->streams_by_id);
4215 while (node) {
4216 h2s = container_of(node, struct h2s, by_id);
4217 if (h2s->cs)
4218 return h2s->cs;
4219 node = eb32_next(node);
4220 }
4221 return NULL;
4222}
4223
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004224static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4225{
4226 int ret = 0;
4227 struct h2c *h2c = conn->ctx;
4228
4229 switch (mux_ctl) {
4230 case MUX_STATUS:
4231 /* Only consider the mux to be ready if we're done with
4232 * the preface and settings, and we had no error.
4233 */
4234 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4235 ret |= MUX_STATUS_READY;
4236 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004237 case MUX_EXIT_STATUS:
4238 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004239 default:
4240 return -1;
4241 }
4242}
4243
Willy Tarreau62f52692017-10-08 23:01:42 +02004244/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004245 * Destroy the mux and the associated connection, if it is no longer used
4246 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004247static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004248{
Christopher Faulet73c12072019-04-08 11:23:22 +02004249 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004250
Willy Tarreau7838a792019-08-12 18:42:03 +02004251 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004252 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004253 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004254 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004255}
4256
4257/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004258 * Detach the stream from the connection and possibly release the connection.
4259 */
4260static void h2_detach(struct conn_stream *cs)
4261{
Willy Tarreau60935142017-10-16 18:11:19 +02004262 struct h2s *h2s = cs->ctx;
4263 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004264 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004265
Willy Tarreau7838a792019-08-12 18:42:03 +02004266 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4267
Willy Tarreau60935142017-10-16 18:11:19 +02004268 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004269 if (!h2s) {
4270 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004271 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004272 }
Willy Tarreau60935142017-10-16 18:11:19 +02004273
Willy Tarreaud9464162020-01-10 18:25:07 +01004274 /* there's no txbuf so we're certain not to be able to send anything */
4275 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004276
Olivier Houchardf502aca2018-12-14 19:42:40 +01004277 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004278 h2c = h2s->h2c;
4279 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004280 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004281 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4282 !h2_frt_has_too_many_cs(h2c)) {
4283 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004284 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004285 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004286 }
Willy Tarreau60935142017-10-16 18:11:19 +02004287
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004288 /* this stream may be blocked waiting for some data to leave (possibly
4289 * an ES or RST frame), so orphan it in this case.
4290 */
Christopher Faulet897d6122021-12-17 17:28:35 +01004291 if (!(h2c->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004292 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004293 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004294 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004295 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004296 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004297 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004298
Willy Tarreau45f752e2017-10-30 15:44:59 +01004299 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4300 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4301 /* unblock the connection if it was blocked on this
4302 * stream.
4303 */
4304 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4305 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004306 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004307 }
4308
Willy Tarreau71049cc2018-03-28 13:56:39 +02004309 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004310
Christopher Faulet9b79a102019-07-15 11:22:56 +02004311 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004312 if (!(h2c->conn->flags &
4313 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004314 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004315 /* Add the connection in the session server list, if not already done */
4316 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4317 h2c->conn->owner = NULL;
4318 if (eb_is_empty(&h2c->streams_by_id)) {
4319 h2c->conn->mux->destroy(h2c);
4320 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4321 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004322 }
4323 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004324 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004325 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4326 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4327 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004328 return;
4329 }
4330 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004331 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004332 else {
4333 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004334 /* If the connection is owned by the session, first remove it
4335 * from its list
4336 */
4337 if (h2c->conn->owner) {
4338 session_unown_conn(h2c->conn->owner, h2c->conn);
4339 h2c->conn->owner = NULL;
4340 }
4341
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004342 /* mark that the tasklet may lose its context to another thread and
4343 * that the handler needs to check it under the idle conns lock.
4344 */
4345 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004346 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4347
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004348 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004349 /* The server doesn't want it, let's kill the connection right away */
4350 h2c->conn->mux->destroy(h2c);
4351 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4352 return;
4353 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004354 /* At this point, the connection has been added to the
4355 * server idle list, so another thread may already have
4356 * hijacked it, so we can't do anything with it.
4357 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004358 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4359 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004360
Olivier Houchard8a786902018-12-15 16:05:40 +01004361 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004362 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004363 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004364 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004365 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004366 &h2c->conn->hash_node->node,
4367 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004368 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004369 }
4370 }
4371 }
4372
Willy Tarreaue323f342018-03-28 13:51:45 +02004373 /* We don't want to close right now unless we're removing the
4374 * last stream, and either the connection is in error, or it
4375 * reached the ID already specified in a GOAWAY frame received
4376 * or sent (as seen by last_sid >= 0).
4377 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004378 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004379 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004380 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004381 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004382 }
4383 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004384 if (h2c_may_expire(h2c))
4385 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4386 else
4387 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004388 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004389 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004390 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004391 else
4392 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004393}
4394
Willy Tarreau88bdba32019-05-13 18:17:53 +02004395/* Performs a synchronous or asynchronous shutr(). */
4396static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004397{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004398 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004399
Willy Tarreauf983d002019-05-14 10:40:21 +02004400 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004401 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004402
Willy Tarreau7838a792019-08-12 18:42:03 +02004403 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4404
Willy Tarreau18059042019-01-31 19:12:48 +01004405 /* a connstream may require us to immediately kill the whole connection
4406 * for example because of a "tcp-request content reject" rule that is
4407 * normally used to limit abuse. In this case we schedule a goaway to
4408 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004409 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004410 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004411 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004412 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004413 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4414 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4415 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004416 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4417 /* Nothing was never sent for this stream, so reset with
4418 * REFUSED_STREAM error to let the client retry the
4419 * request.
4420 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004421 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004422 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4423 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004424 else {
4425 /* a final response was already provided, we don't want this
4426 * stream anymore. This may happen when the server responds
4427 * before the end of an upload and closes quickly (redirect,
4428 * deny, ...)
4429 */
4430 h2s_error(h2s, H2_ERR_CANCEL);
4431 }
Willy Tarreau18059042019-01-31 19:12:48 +01004432
Willy Tarreau90c32322017-11-24 08:00:30 +01004433 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004434 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004435 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004436
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004437 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004438 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004439 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004440 done:
4441 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004442 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004443 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004444add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004445 /* Let the handler know we want to shutr, and add ourselves to the
4446 * most relevant list if not yet done. h2_deferred_shut() will be
4447 * automatically called via the shut_tl tasklet when there's room
4448 * again.
4449 */
4450 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004451 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004452 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004453 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004454 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004455 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004456 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004457 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004458 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004459}
4460
Willy Tarreau88bdba32019-05-13 18:17:53 +02004461/* Performs a synchronous or asynchronous shutw(). */
4462static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004463{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004464 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004465
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004466 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004467 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004468
Willy Tarreau7838a792019-08-12 18:42:03 +02004469 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4470
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004471 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004472 /* we can cleanly close using an empty data frame only after headers */
4473
4474 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4475 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004476 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004477
4478 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004479 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004480 else
4481 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004482 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004483 /* a connstream may require us to immediately kill the whole connection
4484 * for example because of a "tcp-request content reject" rule that is
4485 * normally used to limit abuse. In this case we schedule a goaway to
4486 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004487 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004488 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004489 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004490 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004491 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4492 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4493 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004494 else {
4495 /* Nothing was never sent for this stream, so reset with
4496 * REFUSED_STREAM error to let the client retry the
4497 * request.
4498 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004499 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004500 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4501 }
Willy Tarreau18059042019-01-31 19:12:48 +01004502
Willy Tarreau90c32322017-11-24 08:00:30 +01004503 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004504 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004505 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004506
Willy Tarreau00dd0782018-03-01 16:31:34 +01004507 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004508 }
4509
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004510 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004511 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004512
4513 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4514
Willy Tarreau88bdba32019-05-13 18:17:53 +02004515 done:
4516 h2s->flags &= ~H2_SF_WANT_SHUTW;
4517 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004518
4519 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004520 /* Let the handler know we want to shutw, and add ourselves to the
4521 * most relevant list if not yet done. h2_deferred_shut() will be
4522 * automatically called via the shut_tl tasklet when there's room
4523 * again.
4524 */
4525 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004526 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004527 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004528 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004529 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004530 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004531 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004532 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004533 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004534}
4535
Willy Tarreau5723f292020-01-10 15:16:57 +01004536/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004537 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4538 * and prevented the last frame from being emitted.
4539 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004540struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004541{
4542 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004543 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004544
Willy Tarreau7838a792019-08-12 18:42:03 +02004545 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4546
Willy Tarreau5723f292020-01-10 15:16:57 +01004547 if (h2s->flags & H2_SF_NOTIFIED) {
4548 /* some data processing remains to be done first */
4549 goto end;
4550 }
4551
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004552 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004553 h2_do_shutw(h2s);
4554
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004555 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004556 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004557
Willy Tarreau88bdba32019-05-13 18:17:53 +02004558 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004559 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004560 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004561
Willy Tarreau88bdba32019-05-13 18:17:53 +02004562 if (!h2s->cs) {
4563 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004564 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004565 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004566 t = NULL;
4567 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004568 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004569 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004570 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004571 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004572 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004573}
4574
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004575/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004576static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4577{
4578 struct h2s *h2s = cs->ctx;
4579
Willy Tarreau7838a792019-08-12 18:42:03 +02004580 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004581 if (cs->flags & CS_FL_KILL_CONN)
4582 h2s->flags |= H2_SF_KILL_CONN;
4583
Willy Tarreau7838a792019-08-12 18:42:03 +02004584 if (mode)
4585 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004586
Willy Tarreau7838a792019-08-12 18:42:03 +02004587 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004588}
4589
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004590/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004591static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4592{
4593 struct h2s *h2s = cs->ctx;
4594
Willy Tarreau7838a792019-08-12 18:42:03 +02004595 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004596 if (cs->flags & CS_FL_KILL_CONN)
4597 h2s->flags |= H2_SF_KILL_CONN;
4598
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004599 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004600 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004601}
4602
Christopher Faulet9b79a102019-07-15 11:22:56 +02004603/* Decode the payload of a HEADERS frame and produce the HTX request or response
4604 * depending on the connection's side. Returns a positive value on success, a
4605 * negative value on failure, or 0 if it couldn't proceed. May report connection
4606 * errors in h2c->errcode if the frame is non-decodable and the connection
4607 * unrecoverable. In absence of connection error when a failure is reported, the
4608 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004609 *
4610 * The function may fold CONTINUATION frames into the initial HEADERS frame
4611 * by removing padding and next frame header, then moving the CONTINUATION
4612 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4613 * leaving a hole between the main frame and the beginning of the next one.
4614 * The possibly remaining incomplete or next frame at the end may be moved
4615 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4616 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4617 *
4618 * A buffer at the beginning of processing may look like this :
4619 *
4620 * ,---.---------.-----.--------------.--------------.------.---.
4621 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4622 * `---^---------^-----^--------------^--------------^------^---'
4623 * | | <-----> | |
4624 * area | dpl | wrap
4625 * |<--------------> |
4626 * | dfl |
4627 * |<-------------------------------------------------->|
4628 * head data
4629 *
4630 * Padding is automatically overwritten when folding, participating to the
4631 * hole size after dfl :
4632 *
4633 * ,---.------------------------.-----.--------------.------.---.
4634 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4635 * `---^------------------------^-----^--------------^------^---'
4636 * | | <-----> | |
4637 * area | hole | wrap
4638 * |<-----------------------> |
4639 * | dfl |
4640 * |<-------------------------------------------------->|
4641 * head data
4642 *
4643 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4644 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4645 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004646 *
4647 * The <flags> field must point to either the stream's flags or to a copy of it
4648 * so that the function can update the following flags :
4649 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004650 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004651 *
4652 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4653 * decoding, in order to detect if we're dealing with a headers or a trailers
4654 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004655 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004656static 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 +02004657{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004658 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004659 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004660 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004661 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004662 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004663 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004664 int flen; // header frame len
4665 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004666 int ret = 0;
4667 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004668 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004669
Willy Tarreau7838a792019-08-12 18:42:03 +02004670 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4671
Willy Tarreauea18f862018-12-22 20:19:26 +01004672next_frame:
4673 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4674 goto leave; // incomplete input frame
4675
4676 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4677 * this case, we'll try to paste it immediately after the initial
4678 * HEADERS frame payload and kill any possible padding. The initial
4679 * frame's length will be increased to represent the concatenation
4680 * of the two frames. The next frame is read from position <tlen>
4681 * and written at position <flen> (minus padding if some is present).
4682 */
4683 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4684 struct h2_fh hdr;
4685 int clen; // CONTINUATION frame's payload length
4686
Willy Tarreau7838a792019-08-12 18:42:03 +02004687 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 +01004688 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4689 /* no more data, the buffer may be full, either due to
4690 * too large a frame or because of too large a hole that
4691 * we're going to compact at the end.
4692 */
4693 goto leave;
4694 }
4695
4696 if (hdr.ft != H2_FT_CONTINUATION) {
4697 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004698 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 +01004699 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004700 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004701 goto fail;
4702 }
4703
4704 if (hdr.sid != h2c->dsi) {
4705 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004706 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 +01004707 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004708 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004709 goto fail;
4710 }
4711
4712 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4713 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004714 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 +01004715 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4716 goto fail;
4717 }
4718
4719 /* detect when we must stop aggragating frames */
4720 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4721
4722 /* Take as much as we can of the CONTINUATION frame's payload */
4723 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4724 if (clen > hdr.len)
4725 clen = hdr.len;
4726
4727 /* Move the frame's payload over the padding, hole and frame
4728 * header. At least one of hole or dpl is null (see diagrams
4729 * above). The hole moves after the new aggragated frame.
4730 */
4731 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 +02004732 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004733 hole += h2c->dpl + 9;
4734 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004735 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 +01004736 goto next_frame;
4737 }
4738
4739 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004740
Willy Tarreau13278b42017-10-13 19:23:14 +02004741 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004742 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004743 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004744 copy = alloc_trash_chunk();
4745 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004746 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 +02004747 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4748 goto fail;
4749 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004750 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4751 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4752 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004753 }
4754
Willy Tarreau13278b42017-10-13 19:23:14 +02004755 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4756 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004757 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004758 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004759 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 +01004760 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004761 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004762 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004763 }
4764
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004765 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004766 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 +01004767 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4768 goto fail;
4769 }
4770
Willy Tarreau13278b42017-10-13 19:23:14 +02004771 hdrs += 5; // stream dep = 4, weight = 1
4772 flen -= 5;
4773 }
4774
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004775 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004776 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 +01004777 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004778 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004779 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004780
Willy Tarreau937f7602018-02-26 15:22:17 +01004781 /* we can't retry a failed decompression operation so we must be very
4782 * careful not to take any risks. In practice the output buffer is
4783 * always empty except maybe for trailers, in which case we simply have
4784 * to wait for the upper layer to finish consuming what is available.
4785 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004786 htx = htx_from_buf(rxbuf);
4787 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004788 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 +02004789 h2c->flags |= H2_CF_DEM_SFULL;
4790 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004791 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004792
Willy Tarreau25919232019-01-03 14:48:18 +01004793 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004794 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4795 sizeof(list)/sizeof(list[0]), tmp);
4796 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004797 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 +01004798 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4799 goto fail;
4800 }
4801
Willy Tarreau25919232019-01-03 14:48:18 +01004802 /* The PACK decompressor was updated, let's update the input buffer and
4803 * the parser's state to commit these changes and allow us to later
4804 * fail solely on the stream if needed.
4805 */
4806 b_del(&h2c->dbuf, h2c->dfl + hole);
4807 h2c->dfl = hole = 0;
4808 h2c->st0 = H2_CS_FRAME_H;
4809
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004810 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004811 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004812 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004813 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004814 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004815 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004816
Willy Tarreau88d138e2019-01-02 19:38:14 +01004817 if (*flags & H2_SF_HEADERS_RCVD)
4818 goto trailers;
4819
4820 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004821 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004822 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004823 else
4824 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004825
Christopher Faulet3d875582021-04-26 17:46:13 +02004826 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004827 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004828 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4829 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004830 goto fail;
4831 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004832
Willy Tarreau174b06a2018-04-25 18:13:58 +02004833 if (msgf & H2_MSGF_BODY) {
4834 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004835 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004836 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004837 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004838 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004839 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004840 if (msgf & H2_MSGF_BODYLESS_RSP)
4841 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004842
Christopher Fauletd0db4232021-01-22 11:46:30 +01004843 if (msgf & H2_MSGF_BODY_TUNNEL)
4844 *flags |= H2_SF_BODY_TUNNEL;
4845 else {
4846 /* Abort the tunnel attempt, if any */
4847 if (*flags & H2_SF_BODY_TUNNEL)
4848 *flags |= H2_SF_TUNNEL_ABRT;
4849 *flags &= ~H2_SF_BODY_TUNNEL;
4850 }
4851
Willy Tarreau88d138e2019-01-02 19:38:14 +01004852 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004853 /* indicate that a HEADERS frame was received for this stream, except
4854 * for 1xx responses. For 1xx responses, another HEADERS frame is
4855 * expected.
4856 */
4857 if (!(msgf & H2_MSGF_RSP_1XX))
4858 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004859
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004860 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4861 /* no more data are expected for this message */
4862 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004863 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004864
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004865 if (msgf & H2_MSGF_EXT_CONNECT)
4866 *flags |= H2_SF_EXT_CONNECT_RCVD;
4867
Willy Tarreau86277d42019-01-02 15:36:11 +01004868 /* success */
4869 ret = 1;
4870
Willy Tarreau68dd9852017-07-03 14:44:26 +02004871 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004872 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004873 * move the remaining data over it.
4874 */
4875 if (hole) {
4876 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4877 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4878 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4879 b_sub(&h2c->dbuf, hole);
4880 }
4881
Christopher Faulet07f88d72021-04-21 10:39:53 +02004882 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004883 /* too large frames */
4884 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004885 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004886 }
4887
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004888 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004889 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004890 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004891 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004892 return ret;
4893
Willy Tarreau68dd9852017-07-03 14:44:26 +02004894 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004895 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004896 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004897
4898 trailers:
4899 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004900 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4901 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004902 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 +01004903 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004904 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004905 goto fail;
4906 }
4907
Christopher Faulet9b79a102019-07-15 11:22:56 +02004908 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004909 if (h2_make_htx_trailers(list, htx) <= 0) {
4910 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 +02004911 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004912 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004913 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004914}
4915
Christopher Faulet9b79a102019-07-15 11:22:56 +02004916/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004917 * parser state is automatically updated. Returns > 0 if it could completely
4918 * send the current frame, 0 if it couldn't complete, in which case
4919 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4920 * DATA frame can return 0 as a valid result). Stream errors are reported in
4921 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4922 * have checked the frame header and ensured that the frame was complete or the
4923 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004924 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004925static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004926{
4927 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004928 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004929 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004930 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004931 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004932 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004933
Willy Tarreau7838a792019-08-12 18:42:03 +02004934 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4935
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004936 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004937
Olivier Houchard638b7992018-08-16 15:41:52 +02004938 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004939 if (!csbuf) {
4940 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004941 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 +01004942 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004943 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004944 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004945
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004946try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004947 flen = h2c->dfl - h2c->dpl;
4948 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004949 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004950
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004951 if (flen > b_data(&h2c->dbuf)) {
4952 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004953 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004954 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004955 }
4956
Christopher Faulet9b79a102019-07-15 11:22:56 +02004957 block = htx_free_data_space(htx);
4958 if (!block) {
4959 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004960 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 +02004961 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004962 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004963 if (flen > block)
4964 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004965
Christopher Faulet9b79a102019-07-15 11:22:56 +02004966 /* here, flen is the max we can copy into the output buffer */
4967 block = b_contig_data(&h2c->dbuf, 0);
4968 if (flen > block)
4969 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004970
Christopher Faulet9b79a102019-07-15 11:22:56 +02004971 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004972 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 +02004973
Christopher Faulet9b79a102019-07-15 11:22:56 +02004974 b_del(&h2c->dbuf, sent);
4975 h2c->dfl -= sent;
4976 h2c->rcvd_c += sent;
4977 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004978
Christopher Faulet9b79a102019-07-15 11:22:56 +02004979 if (h2s->flags & H2_SF_DATA_CLEN) {
4980 h2s->body_len -= sent;
4981 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004982 }
4983
Christopher Faulet9b79a102019-07-15 11:22:56 +02004984 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004985 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004986 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 +01004987 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004988 }
4989
Christopher Faulet9b79a102019-07-15 11:22:56 +02004990 goto try_again;
4991
Willy Tarreau4a28da12018-01-04 14:41:00 +01004992 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004993 /* here we're done with the frame, all the payload (except padding) was
4994 * transferred.
4995 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004996
Christopher Faulet5be651d2021-01-22 15:28:03 +01004997 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4998 /* no more data are expected for this message. This add the EOM
4999 * flag but only on the response path or if no tunnel attempt
5000 * was aborted. Otherwise (request path + tunnel abrted), the
5001 * EOM was already reported.
5002 */
Christopher Faulet33724322021-02-10 09:04:59 +01005003 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5004 /* If we receive an empty DATA frame with ES flag while the HTX
5005 * message is empty, we must be sure to push a block to be sure
5006 * the HTX EOM flag will be handled on the other side. It is a
5007 * workaround because for now it is not possible to push empty
5008 * HTX DATA block. And without this block, there is no way to
5009 * "commit" the end of the message.
5010 */
5011 if (htx_is_empty(htx)) {
5012 if (!htx_add_endof(htx, HTX_BLK_EOT))
5013 goto fail;
5014 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005015 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005016 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005017 }
5018
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005019 h2c->rcvd_c += h2c->dpl;
5020 h2c->rcvd_s += h2c->dpl;
5021 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005022 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005023 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005024 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005025 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005026 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005027 if (htx)
5028 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005029 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005030 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005031}
5032
Willy Tarreau115e83b2018-12-01 19:17:53 +01005033/* Try to send a HEADERS frame matching HTX response present in HTX message
5034 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5035 * must check the stream's status to detect any error which might have happened
5036 * subsequently to a successful send. The htx blocks are automatically removed
5037 * from the message. The htx message is assumed to be valid since produced from
5038 * the internal code, hence it contains a start line, an optional series of
5039 * header blocks and an end of header, otherwise an invalid frame could be
5040 * emitted and the resulting htx message could be left in an inconsistent state.
5041 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005042static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005043{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005044 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005045 struct h2c *h2c = h2s->h2c;
5046 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005047 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005048 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005049 struct htx_sl *sl;
5050 enum htx_blk_type type;
5051 int es_now = 0;
5052 int ret = 0;
5053 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005054
Willy Tarreau7838a792019-08-12 18:42:03 +02005055 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5056
Willy Tarreau115e83b2018-12-01 19:17:53 +01005057 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005058 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005059 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005060 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005061 return 0;
5062 }
5063
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005064 /* get the start line (we do have one) and the rest of the headers,
5065 * that we dump starting at header 0 */
5066 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005067 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005068 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005069 type = htx_get_blk_type(blk);
5070
5071 if (type == HTX_BLK_UNUSED)
5072 continue;
5073
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005074 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005075 break;
5076
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005077 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005078 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005079 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5080 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5081 goto fail;
5082 }
5083
5084 list[hdr].n = htx_get_blk_name(htx, blk);
5085 list[hdr].v = htx_get_blk_value(htx, blk);
5086 hdr++;
5087 }
5088 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005089 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005090 sl = htx_get_blk_ptr(htx, blk);
5091 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005092 if (h2s->status == 204 || h2s->status == 304)
5093 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005094 if (h2s->status < 100 || h2s->status > 999) {
5095 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5096 goto fail;
5097 }
5098 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005099 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5100 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5101 h2s->status = 200;
5102 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5103 }
5104 else {
5105 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5106 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5107 goto fail;
5108 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005109 }
5110 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5111 /* Abort the tunnel attempt */
5112 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5113 h2s->flags |= H2_SF_TUNNEL_ABRT;
5114 }
5115 }
5116 else {
5117 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 +01005118 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005119 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005120 }
5121
Christopher Faulet56498132021-01-29 11:39:43 +01005122 /* The start-line me be defined */
5123 BUG_ON(!sl);
5124
Willy Tarreau115e83b2018-12-01 19:17:53 +01005125 /* marker for end of headers */
5126 list[hdr].n = ist("");
5127
Willy Tarreau9c218e72019-05-26 10:08:28 +02005128 mbuf = br_tail(h2c->mbuf);
5129 retry:
5130 if (!h2_get_buf(h2c, mbuf)) {
5131 h2c->flags |= H2_CF_MUX_MALLOC;
5132 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005133 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 +02005134 return 0;
5135 }
5136
Willy Tarreau115e83b2018-12-01 19:17:53 +01005137 chunk_reset(&outbuf);
5138
5139 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005140 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5141 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005142 break;
5143 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005144 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005145 }
5146
5147 if (outbuf.size < 9)
5148 goto full;
5149
5150 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5151 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5152 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5153 outbuf.data = 9;
5154
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005155 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5156 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5157 * dynamic table size update so that some clients are not
5158 * confused. In practice we only need to send the DTSU when the
5159 * advertised size is lower than the current one, and since we
5160 * don't use it and don't care about the default 4096 bytes,
5161 * we only ack it with a zero size thus we at most have to deal
5162 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5163 * below for the whole context and interoperability risks:
5164 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5165 */
5166 if (b_room(&outbuf) < 1)
5167 goto full;
5168 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5169
5170 /* let's not update the flags now but only once the buffer is
5171 * really committed.
5172 */
5173 }
5174
Willy Tarreau115e83b2018-12-01 19:17:53 +01005175 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005176 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005177 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005178 goto realign_again;
5179 goto full;
5180 }
5181
5182 /* encode all headers, stop at empty name */
5183 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5184 /* these ones do not exist in H2 and must be dropped. */
5185 if (isteq(list[hdr].n, ist("connection")) ||
5186 isteq(list[hdr].n, ist("proxy-connection")) ||
5187 isteq(list[hdr].n, ist("keep-alive")) ||
5188 isteq(list[hdr].n, ist("upgrade")) ||
5189 isteq(list[hdr].n, ist("transfer-encoding")))
5190 continue;
5191
Christopher Faulet86d144c2019-08-14 16:32:25 +02005192 /* Skip all pseudo-headers */
5193 if (*(list[hdr].n.ptr) == ':')
5194 continue;
5195
Willy Tarreau115e83b2018-12-01 19:17:53 +01005196 if (isteq(list[hdr].n, ist("")))
5197 break; // end
5198
5199 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5200 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005201 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005202 goto realign_again;
5203 goto full;
5204 }
5205 }
5206
Willy Tarreaucb985a42019-10-07 16:56:34 +02005207 /* update the frame's size */
5208 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5209
5210 if (outbuf.data > h2c->mfs + 9) {
5211 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5212 /* output full */
5213 if (b_space_wraps(mbuf))
5214 goto realign_again;
5215 goto full;
5216 }
5217 }
5218
Willy Tarreau3a537072021-06-17 08:40:04 +02005219 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5220
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005221 /* remove all header blocks including the EOH and compute the
5222 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005223 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005224 ret = 0;
5225 blk = htx_get_head_blk(htx);
5226 while (blk) {
5227 type = htx_get_blk_type(blk);
5228 ret += htx_get_blksz(blk);
5229 blk = htx_remove_blk(htx, blk);
5230 /* The removed block is the EOH */
5231 if (type == HTX_BLK_EOH)
5232 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005233 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005234
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005235 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5236 /* Response already closed: add END_STREAM */
5237 es_now = 1;
5238 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005239 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5240 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005241 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005242 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005243 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5244 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005245 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005246
Willy Tarreau115e83b2018-12-01 19:17:53 +01005247 if (es_now)
5248 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5249
5250 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005251 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005252
5253 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5254 * 1xx responses, another HEADERS frame is expected.
5255 */
Christopher Faulet89899422020-12-07 18:24:43 +01005256 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005257 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005258
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005259 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5260 /* was sent above */
5261 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005262 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005263 }
5264
Willy Tarreau115e83b2018-12-01 19:17:53 +01005265 if (es_now) {
5266 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005267 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 +01005268 if (h2s->st == H2_SS_OPEN)
5269 h2s->st = H2_SS_HLOC;
5270 else
5271 h2s_close(h2s);
5272 }
5273
5274 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005275 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005276 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005277 return ret;
5278 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005279 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5280 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005281 h2c->flags |= H2_CF_MUX_MFULL;
5282 h2s->flags |= H2_SF_BLK_MROOM;
5283 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005284 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 +01005285 goto end;
5286 fail:
5287 /* unparsable HTX messages, too large ones to be produced in the local
5288 * list etc go here (unrecoverable errors).
5289 */
5290 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5291 ret = 0;
5292 goto end;
5293}
5294
Willy Tarreau80739692018-10-05 11:35:57 +02005295/* Try to send a HEADERS frame matching HTX request present in HTX message
5296 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5297 * must check the stream's status to detect any error which might have happened
5298 * subsequently to a successful send. The htx blocks are automatically removed
5299 * from the message. The htx message is assumed to be valid since produced from
5300 * the internal code, hence it contains a start line, an optional series of
5301 * header blocks and an end of header, otherwise an invalid frame could be
5302 * emitted and the resulting htx message could be left in an inconsistent state.
5303 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005304static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005305{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005306 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005307 struct h2c *h2c = h2s->h2c;
5308 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005309 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005310 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005311 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005312 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005313 enum htx_blk_type type;
5314 int es_now = 0;
5315 int ret = 0;
5316 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005317 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005318
Willy Tarreau7838a792019-08-12 18:42:03 +02005319 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5320
Willy Tarreau80739692018-10-05 11:35:57 +02005321 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005322 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005323 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005324 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005325 return 0;
5326 }
5327
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005328 /* get the start line (we do have one) and the rest of the headers,
5329 * that we dump starting at header 0 */
5330 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005331 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005332 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005333 type = htx_get_blk_type(blk);
5334
5335 if (type == HTX_BLK_UNUSED)
5336 continue;
5337
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005338 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005339 break;
5340
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005341 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005342 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005343 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5344 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5345 goto fail;
5346 }
Willy Tarreau80739692018-10-05 11:35:57 +02005347
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005348 list[hdr].n = htx_get_blk_name(htx, blk);
5349 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005350
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005351 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005352 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5353 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005354 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005355
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005356 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005357 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005358 /* rfc 7230 #6.1 Connection = list of tokens */
5359 struct ist connection_ist = list[hdr].v;
5360 do {
5361 if (isteqi(iststop(connection_ist, ','),
5362 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005363 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5364 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5365 goto fail;
5366 }
5367
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005368 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 +01005369 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5370 sl->info.req.meth = HTTP_METH_CONNECT;
5371 meth = ist("CONNECT");
5372
5373 extended_connect = 1;
5374 break;
5375 }
5376
5377 connection_ist = istadv(istfind(connection_ist, ','), 1);
5378 } while (istlen(connection_ist));
5379 }
5380
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005381 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005382 /* rfc 7230 #6.7 Upgrade = list of protocols
5383 * rfc 8441 #4 Extended connect = :protocol is single-valued
5384 *
5385 * only first HTTP/1 protocol is preserved
5386 */
5387 const struct ist protocol = iststop(list[hdr].v, ',');
5388 /* upgrade_protocol field is 16 bytes long in h2s */
5389 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5390 }
5391
5392 if (isteq(list[hdr].n, ist("host")))
5393 host = list[hdr].v;
5394
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005395 hdr++;
5396 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005397 else if (type == HTX_BLK_REQ_SL) {
5398 BUG_ON(sl); /* Only one start-line expected */
5399 sl = htx_get_blk_ptr(htx, blk);
5400 meth = htx_sl_req_meth(sl);
5401 uri = htx_sl_req_uri(sl);
5402 if (sl->info.req.meth == HTTP_METH_HEAD)
5403 h2s->flags |= H2_SF_BODYLESS_RESP;
5404 if (unlikely(uri.len == 0)) {
5405 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5406 goto fail;
5407 }
5408 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005409 else {
5410 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5411 goto fail;
5412 }
Willy Tarreau80739692018-10-05 11:35:57 +02005413 }
5414
Christopher Faulet56498132021-01-29 11:39:43 +01005415 /* The start-line me be defined */
5416 BUG_ON(!sl);
5417
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005418 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005419 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005420 struct server *srv = objt_server(h2c->conn->target);
5421
5422 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005423 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005424 list[hdr].v = ist(srv->id);
5425 hdr++;
5426 }
5427 }
5428
Willy Tarreau80739692018-10-05 11:35:57 +02005429 /* marker for end of headers */
5430 list[hdr].n = ist("");
5431
Willy Tarreau9c218e72019-05-26 10:08:28 +02005432 mbuf = br_tail(h2c->mbuf);
5433 retry:
5434 if (!h2_get_buf(h2c, mbuf)) {
5435 h2c->flags |= H2_CF_MUX_MALLOC;
5436 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005437 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 +02005438 return 0;
5439 }
5440
Willy Tarreau80739692018-10-05 11:35:57 +02005441 chunk_reset(&outbuf);
5442
5443 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005444 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5445 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005446 break;
5447 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005448 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005449 }
5450
5451 if (outbuf.size < 9)
5452 goto full;
5453
5454 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5455 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5456 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5457 outbuf.data = 9;
5458
5459 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005460 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005461 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005462 goto realign_again;
5463 goto full;
5464 }
5465
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005466 auth = ist(NULL);
5467
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005468 /* RFC7540 #8.3: the CONNECT method must have :
5469 * - :authority set to the URI part (host:port)
5470 * - :method set to CONNECT
5471 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005472 *
5473 * Note that this is not applicable in case of the Extended CONNECT
5474 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005475 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005476 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005477 auth = uri;
5478
5479 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5480 /* output full */
5481 if (b_space_wraps(mbuf))
5482 goto realign_again;
5483 goto full;
5484 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005485 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005486 } else {
5487 /* other methods need a :scheme. If an authority is known from
5488 * the request line, it must be sent, otherwise only host is
5489 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005490 *
5491 * This code is also applicable for Extended CONNECT protocol
5492 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005493 */
5494 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005495
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005496 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5497 /* the URI seems to start with a scheme */
5498 int len = 1;
5499
5500 while (len < uri.len && uri.ptr[len] != ':')
5501 len++;
5502
5503 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5504 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005505 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005506 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005507
5508 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005509 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005510 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5511 auth.len++;
5512
Tim Duesterhus154374c2021-03-02 18:57:27 +01005513 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005514 }
5515 }
5516
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005517 /* For Extended CONNECT, the :authority must be present.
5518 * Use host value for it.
5519 */
5520 if (unlikely(extended_connect) && isttest(host))
5521 auth = host;
5522
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005523 if (!scheme.len) {
5524 /* no explicit scheme, we're using an origin-form URI,
5525 * probably from an H1 request transcoded to H2 via an
5526 * external layer, then received as H2 without authority.
5527 * So we have to look up the scheme from the HTX flags.
5528 * In such a case only http and https are possible, and
5529 * https is the default (sent by browsers).
5530 */
5531 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5532 scheme = ist("http");
5533 else
5534 scheme = ist("https");
5535 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005536
5537 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005538 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005539 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005540 goto realign_again;
5541 goto full;
5542 }
Willy Tarreau80739692018-10-05 11:35:57 +02005543
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005544 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005545 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005546 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005547 goto realign_again;
5548 goto full;
5549 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005550
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005551 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5552 * be sent as '/' or '*'.
5553 */
5554 if (unlikely(!uri.len)) {
5555 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5556 uri = ist("*");
5557 else
5558 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005559 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005560
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005561 if (!hpack_encode_path(&outbuf, uri)) {
5562 /* output full */
5563 if (b_space_wraps(mbuf))
5564 goto realign_again;
5565 goto full;
5566 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005567
5568 /* encode the pseudo-header protocol from rfc8441 if using
5569 * Extended CONNECT method.
5570 */
5571 if (unlikely(extended_connect)) {
5572 const struct ist protocol = ist(h2s->upgrade_protocol);
5573 if (isttest(protocol)) {
5574 if (!hpack_encode_header(&outbuf,
5575 ist(":protocol"),
5576 protocol)) {
5577 /* output full */
5578 if (b_space_wraps(mbuf))
5579 goto realign_again;
5580 goto full;
5581 }
5582 }
5583 }
Willy Tarreau80739692018-10-05 11:35:57 +02005584 }
5585
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005586 /* encode all headers, stop at empty name. Host is only sent if we
5587 * do not provide an authority.
5588 */
Willy Tarreau80739692018-10-05 11:35:57 +02005589 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005590 struct ist n = list[hdr].n;
5591 struct ist v = list[hdr].v;
5592
Willy Tarreau80739692018-10-05 11:35:57 +02005593 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005594 if (isteq(n, ist("connection")) ||
5595 (auth.len && isteq(n, ist("host"))) ||
5596 isteq(n, ist("proxy-connection")) ||
5597 isteq(n, ist("keep-alive")) ||
5598 isteq(n, ist("upgrade")) ||
5599 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005600 continue;
5601
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005602 if (isteq(n, ist("te"))) {
5603 /* "te" may only be sent with "trailers" if this value
5604 * is present, otherwise it must be deleted.
5605 */
5606 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005607 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005608 continue;
5609 v = ist("trailers");
5610 }
5611
Christopher Faulet86d144c2019-08-14 16:32:25 +02005612 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005613 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005614 continue;
5615
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005616 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005617 break; // end
5618
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005619 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005620 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005621 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005622 goto realign_again;
5623 goto full;
5624 }
5625 }
5626
Willy Tarreaucb985a42019-10-07 16:56:34 +02005627 /* update the frame's size */
5628 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5629
5630 if (outbuf.data > h2c->mfs + 9) {
5631 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5632 /* output full */
5633 if (b_space_wraps(mbuf))
5634 goto realign_again;
5635 goto full;
5636 }
5637 }
5638
Willy Tarreau3a537072021-06-17 08:40:04 +02005639 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5640
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005641 /* remove all header blocks including the EOH and compute the
5642 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005643 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005644 ret = 0;
5645 blk = htx_get_head_blk(htx);
5646 while (blk) {
5647 type = htx_get_blk_type(blk);
5648 ret += htx_get_blksz(blk);
5649 blk = htx_remove_blk(htx, blk);
5650 /* The removed block is the EOH */
5651 if (type == HTX_BLK_EOH)
5652 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005653 }
Willy Tarreau80739692018-10-05 11:35:57 +02005654
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005655 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5656 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005657 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005658 }
5659 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5660 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5661 * request)
5662 */
5663 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5664 es_now = 1;
5665 }
Willy Tarreau80739692018-10-05 11:35:57 +02005666
Willy Tarreau80739692018-10-05 11:35:57 +02005667 if (es_now)
5668 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5669
5670 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005671 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005672 h2s->flags |= H2_SF_HEADERS_SENT;
5673 h2s->st = H2_SS_OPEN;
5674
Willy Tarreau80739692018-10-05 11:35:57 +02005675 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005676 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 +02005677 // trim any possibly pending data (eg: inconsistent content-length)
5678 h2s->flags |= H2_SF_ES_SENT;
5679 h2s->st = H2_SS_HLOC;
5680 }
5681
Willy Tarreau80739692018-10-05 11:35:57 +02005682 end:
5683 return ret;
5684 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005685 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5686 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005687 h2c->flags |= H2_CF_MUX_MFULL;
5688 h2s->flags |= H2_SF_BLK_MROOM;
5689 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005690 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 +02005691 goto end;
5692 fail:
5693 /* unparsable HTX messages, too large ones to be produced in the local
5694 * list etc go here (unrecoverable errors).
5695 */
5696 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5697 ret = 0;
5698 goto end;
5699}
5700
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005701/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005702 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5703 * caller must check the stream's status to detect any error which might have
5704 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005705 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005706 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005707static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005708{
5709 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005710 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005711 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005712 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005713 size_t total = 0;
5714 int es_now = 0;
5715 int bsize; /* htx block size */
5716 int fsize; /* h2 frame size */
5717 struct htx_blk *blk;
5718 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005719 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005720
Willy Tarreau7838a792019-08-12 18:42:03 +02005721 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5722
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005723 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005724 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005725 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005726 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005727 goto end;
5728 }
5729
Willy Tarreau98de12a2018-12-12 07:03:00 +01005730 htx = htx_from_buf(buf);
5731
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005732 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005733
5734 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005735 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005736 goto end;
5737
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005738 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005739 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5740 /* The response HEADERS frame not received yet. Thus the tunnel
5741 * is not fully established yet. In this situation, we block
5742 * data sending.
5743 */
5744 h2s->flags |= H2_SF_BLK_MBUSY;
5745 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5746 goto end;
5747 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005748 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5749 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5750 * Thus the stream is closed with the CANCEL error. The error will be reported to
5751 * the upper layer as aserver abort. But at this stage there is nothing more we can
5752 * do. We just wait for the end of the response to be sure to not truncate it.
5753 */
5754 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5755 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5756 h2s->flags |= H2_SF_BLK_MBUSY;
5757 }
5758 else {
5759 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5760 h2s_error(h2s, H2_ERR_CANCEL);
5761 }
5762 goto end;
5763 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005764
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005765 blk = htx_get_head_blk(htx);
5766 type = htx_get_blk_type(blk);
5767 bsize = htx_get_blksz(blk);
5768 fsize = bsize;
5769 trunc_out = 0;
5770 if (type != HTX_BLK_DATA)
5771 goto end;
5772
Willy Tarreau9c218e72019-05-26 10:08:28 +02005773 mbuf = br_tail(h2c->mbuf);
5774 retry:
5775 if (!h2_get_buf(h2c, mbuf)) {
5776 h2c->flags |= H2_CF_MUX_MALLOC;
5777 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005778 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 +02005779 goto end;
5780 }
5781
Willy Tarreau98de12a2018-12-12 07:03:00 +01005782 /* Perform some optimizations to reduce the number of buffer copies.
5783 * First, if the mux's buffer is empty and the htx area contains
5784 * exactly one data block of the same size as the requested count, and
5785 * this count fits within the frame size, the stream's window size, and
5786 * the connection's window size, then it's possible to simply swap the
5787 * caller's buffer with the mux's output buffer and adjust offsets and
5788 * length to match the entire DATA HTX block in the middle. In this
5789 * case we perform a true zero-copy operation from end-to-end. This is
5790 * the situation that happens all the time with large files. Second, if
5791 * this is not possible, but the mux's output buffer is empty, we still
5792 * have an opportunity to avoid the copy to the intermediary buffer, by
5793 * making the intermediary buffer's area point to the output buffer's
5794 * area. In this case we want to skip the HTX header to make sure that
5795 * copies remain aligned and that this operation remains possible all
5796 * the time. This goes for headers, data blocks and any data extracted
5797 * from the HTX blocks.
5798 */
5799 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005800 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005801 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005802 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005803
Willy Tarreaubcc45952019-05-26 10:05:50 +02005804 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005805 /* Too bad there are data left there. We're willing to memcpy/memmove
5806 * up to 1/4 of the buffer, which means that it's OK to copy a large
5807 * frame into a buffer containing few data if it needs to be realigned,
5808 * and that it's also OK to copy few data without realigning. Otherwise
5809 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005810 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005811 if (fsize + 9 <= b_room(mbuf) &&
5812 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005813 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5814 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 +01005815 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005816 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005817
Willy Tarreau9c218e72019-05-26 10:08:28 +02005818 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5819 goto retry;
5820
Willy Tarreau98de12a2018-12-12 07:03:00 +01005821 h2c->flags |= H2_CF_MUX_MFULL;
5822 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005823 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 +01005824 goto end;
5825 }
5826
Christopher Faulet925abdf2021-04-27 22:51:07 +02005827 if (htx->flags & HTX_FL_EOM) {
5828 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5829 * message)
5830 */
5831 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5832 es_now = 1;
5833 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005834 /* map an H2 frame to the HTX block so that we can put the
5835 * frame header there.
5836 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005837 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5838 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005839
5840 /* prepend an H2 DATA frame header just before the DATA block */
5841 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5842 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005843 if (es_now)
5844 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005845 h2_set_frame_size(outbuf.area, fsize);
5846
5847 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005848 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005849 h2c->mws -= fsize;
5850
5851 /* and exchange with our old area */
5852 buf->area = old_area;
5853 buf->data = buf->head = 0;
5854 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005855 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005856
5857 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 +02005858 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005859 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005860
Willy Tarreau98de12a2018-12-12 07:03:00 +01005861 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005862 /* for DATA and EOM we'll have to emit a frame, even if empty */
5863
5864 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005865 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5866 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005867 break;
5868 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005869 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005870 }
5871
5872 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005873 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5874 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005875 h2c->flags |= H2_CF_MUX_MFULL;
5876 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005877 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005878 goto end;
5879 }
5880
5881 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5882 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5883 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5884 outbuf.data = 9;
5885
5886 /* we have in <fsize> the exact number of bytes we need to copy from
5887 * the HTX buffer. We need to check this against the connection's and
5888 * the stream's send windows, and to ensure that this fits in the max
5889 * frame size and in the buffer's available space minus 9 bytes (for
5890 * the frame header). The connection's flow control is applied last so
5891 * that we can use a separate list of streams which are immediately
5892 * unblocked on window opening. Note: we don't implement padding.
5893 */
5894
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005895 if (!fsize)
5896 goto send_empty;
5897
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005898 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005899 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005900 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005901 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005902 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005903 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 +01005904 goto end;
5905 }
5906
Willy Tarreauee573762018-12-04 15:25:57 +01005907 if (fsize > count)
5908 fsize = count;
5909
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005910 if (fsize > h2s_mws(h2s))
5911 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005912
5913 if (h2c->mfs && fsize > h2c->mfs)
5914 fsize = h2c->mfs; // >0
5915
5916 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005917 /* It doesn't fit at once. If it at least fits once split and
5918 * the amount of data to move is low, let's defragment the
5919 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005920 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005921 if (b_space_wraps(mbuf) &&
5922 (fsize + 9 <= b_room(mbuf)) &&
5923 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005924 goto realign_again;
5925 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005926 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005927
5928 if (fsize <= 0) {
5929 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005930 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5931 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005932 h2c->flags |= H2_CF_MUX_MFULL;
5933 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005934 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005935 goto end;
5936 }
5937 }
5938
5939 if (h2c->mws <= 0) {
5940 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005941 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 +01005942 goto end;
5943 }
5944
5945 if (fsize > h2c->mws)
5946 fsize = h2c->mws;
5947
5948 /* now let's copy this this into the output buffer */
5949 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005950 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005951 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005952 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005953
5954 send_empty:
5955 /* update the frame's size */
5956 h2_set_frame_size(outbuf.area, fsize);
5957
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005958 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005959 total += fsize;
5960 if (fsize == bsize) {
5961 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005962 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5963 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5964 * message)
5965 */
5966 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5967 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005968 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005969 }
5970 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005971 /* we've truncated this block */
5972 htx_cut_data_blk(htx, blk, fsize);
5973 }
5974
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005975 if (es_now)
5976 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5977
5978 /* commit the H2 response */
5979 b_add(mbuf, fsize + 9);
5980
Christopher Faulet925abdf2021-04-27 22:51:07 +02005981 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005982 if (es_now) {
5983 if (h2s->st == H2_SS_OPEN)
5984 h2s->st = H2_SS_HLOC;
5985 else
5986 h2s_close(h2s);
5987
5988 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005989 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 +01005990 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005991 else if (fsize) {
5992 if (fsize == bsize) {
5993 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5994 goto new_frame;
5995 }
5996 else if (trunc_out) {
5997 /* we've truncated this block */
5998 goto new_frame;
5999 }
6000 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006001
6002 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006003 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006004 return total;
6005}
6006
Christopher Faulet991febd2020-12-02 15:17:31 +01006007/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6008 * ES flag set for stream <h2s>. This function is called for response known to
6009 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006010 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006011 * which might have happened subsequently to a successful send. Returns the
6012 * number of data bytes consumed, or zero if nothing done.
6013 */
6014static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6015{
6016 struct h2c *h2c = h2s->h2c;
6017 struct htx *htx;
6018 int bsize; /* htx block size */
6019 int fsize; /* h2 frame size */
6020 struct htx_blk *blk;
6021 enum htx_blk_type type;
6022 size_t total = 0;
6023
6024 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6025
6026 if (h2c_mux_busy(h2c, h2s)) {
6027 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6028 h2s->flags |= H2_SF_BLK_MBUSY;
6029 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6030 goto end;
6031 }
6032
6033 htx = htx_from_buf(buf);
6034
6035 next_data:
6036 if (!count || htx_is_empty(htx))
6037 goto end;
6038 blk = htx_get_head_blk(htx);
6039 type = htx_get_blk_type(blk);
6040 bsize = htx_get_blksz(blk);
6041 fsize = bsize;
6042 if (type != HTX_BLK_DATA)
6043 goto end;
6044
6045 if (fsize > count)
6046 fsize = count;
6047
6048 if (fsize != bsize)
6049 goto skip_data;
6050
6051 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6052 goto skip_data;
6053
6054 /* Here, it is the last block and it is also the end of the message. So
6055 * we can emit an empty DATA frame with the ES flag set
6056 */
6057 if (h2_send_empty_data_es(h2s) <= 0)
6058 goto end;
6059
6060 if (h2s->st == H2_SS_OPEN)
6061 h2s->st = H2_SS_HLOC;
6062 else
6063 h2s_close(h2s);
6064
6065 skip_data:
6066 /* consume incoming HTX block */
6067 total += fsize;
6068 if (fsize == bsize) {
6069 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6070 htx_remove_blk(htx, blk);
6071 goto next_data;
6072 }
6073 else {
6074 /* we've truncated this block */
6075 htx_cut_data_blk(htx, blk, fsize);
6076 }
6077
6078 end:
6079 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6080 return total;
6081}
6082
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006083/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6084 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6085 * processed. The caller must check the stream's status to detect any error
6086 * which might have happened subsequently to a successful send. The htx blocks
6087 * are automatically removed from the message. The htx message is assumed to be
6088 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006089 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6090 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006091 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006092static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006093{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006094 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006095 struct h2c *h2c = h2s->h2c;
6096 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006097 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006098 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006099 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006100 int ret = 0;
6101 int hdr;
6102 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006103
Willy Tarreau7838a792019-08-12 18:42:03 +02006104 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6105
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006106 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006107 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006108 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006109 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006110 goto end;
6111 }
6112
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006113 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006114 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006115 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006116 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006117
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006118 if (type == HTX_BLK_UNUSED)
6119 continue;
6120
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006121 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006122 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006123 if (type == HTX_BLK_TLR) {
6124 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6125 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6126 goto fail;
6127 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006128
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006129 list[hdr].n = htx_get_blk_name(htx, blk);
6130 list[hdr].v = htx_get_blk_value(htx, blk);
6131 hdr++;
6132 }
6133 else {
6134 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 +01006135 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006136 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006137 }
6138
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006139 /* marker for end of trailers */
6140 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006141
Willy Tarreau9c218e72019-05-26 10:08:28 +02006142 mbuf = br_tail(h2c->mbuf);
6143 retry:
6144 if (!h2_get_buf(h2c, mbuf)) {
6145 h2c->flags |= H2_CF_MUX_MALLOC;
6146 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006147 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 +02006148 goto end;
6149 }
6150
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006151 chunk_reset(&outbuf);
6152
6153 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006154 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6155 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006156 break;
6157 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006158 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006159 }
6160
6161 if (outbuf.size < 9)
6162 goto full;
6163
6164 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6165 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6166 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6167 outbuf.data = 9;
6168
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006169 /* encode all headers */
6170 for (idx = 0; idx < hdr; idx++) {
6171 /* these ones do not exist in H2 or must not appear in
6172 * trailers and must be dropped.
6173 */
6174 if (isteq(list[idx].n, ist("host")) ||
6175 isteq(list[idx].n, ist("content-length")) ||
6176 isteq(list[idx].n, ist("connection")) ||
6177 isteq(list[idx].n, ist("proxy-connection")) ||
6178 isteq(list[idx].n, ist("keep-alive")) ||
6179 isteq(list[idx].n, ist("upgrade")) ||
6180 isteq(list[idx].n, ist("te")) ||
6181 isteq(list[idx].n, ist("transfer-encoding")))
6182 continue;
6183
Christopher Faulet86d144c2019-08-14 16:32:25 +02006184 /* Skip all pseudo-headers */
6185 if (*(list[idx].n.ptr) == ':')
6186 continue;
6187
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006188 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6189 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006190 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006191 goto realign_again;
6192 goto full;
6193 }
6194 }
6195
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006196 if (outbuf.data == 9) {
6197 /* here we have a problem, we have nothing to emit (either we
6198 * received an empty trailers block followed or we removed its
6199 * contents above). Because of this we can't send a HEADERS
6200 * frame, so we have to cheat and instead send an empty DATA
6201 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006202 */
6203 outbuf.area[3] = H2_FT_DATA;
6204 outbuf.area[4] = H2_F_DATA_END_STREAM;
6205 }
6206
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006207 /* update the frame's size */
6208 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6209
Willy Tarreau572d9f52019-10-11 16:58:37 +02006210 if (outbuf.data > h2c->mfs + 9) {
6211 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6212 /* output full */
6213 if (b_space_wraps(mbuf))
6214 goto realign_again;
6215 goto full;
6216 }
6217 }
6218
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006219 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006220 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 +02006221 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006222 h2s->flags |= H2_SF_ES_SENT;
6223
6224 if (h2s->st == H2_SS_OPEN)
6225 h2s->st = H2_SS_HLOC;
6226 else
6227 h2s_close(h2s);
6228
6229 /* OK we could properly deliver the response */
6230 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006231 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006232 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006233 blk = htx_get_head_blk(htx);
6234 while (blk) {
6235 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006236 ret += htx_get_blksz(blk);
6237 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006238 /* The removed block is the EOT */
6239 if (type == HTX_BLK_EOT)
6240 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006241 }
6242
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006243 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006244 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006245 return ret;
6246 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006247 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6248 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006249 h2c->flags |= H2_CF_MUX_MFULL;
6250 h2s->flags |= H2_SF_BLK_MROOM;
6251 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006252 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 +01006253 goto end;
6254 fail:
6255 /* unparsable HTX messages, too large ones to be produced in the local
6256 * list etc go here (unrecoverable errors).
6257 */
6258 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6259 ret = 0;
6260 goto end;
6261}
6262
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006263/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6264 * event subscriber <es> is not allowed to change from a previous call as long
6265 * as at least one event is still subscribed. The <event_type> must only be a
6266 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006267 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006268static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006269{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006270 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006271 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006272
Willy Tarreau7838a792019-08-12 18:42:03 +02006273 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006274
6275 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006276 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006277
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006278 es->events |= event_type;
6279 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006280
6281 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006282 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006283
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006284 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006285 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006286 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006287 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006288 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006289 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006290 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006291 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006292 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006293 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006294 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006295 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006296}
6297
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006298/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6299 * The <es> pointer is not allowed to differ from the one passed to the
6300 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006301 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006302static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006303{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006304 struct h2s *h2s = cs->ctx;
6305
Willy Tarreau7838a792019-08-12 18:42:03 +02006306 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006307
6308 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006309 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006310
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006311 es->events &= ~event_type;
6312 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006313 h2s->subs = NULL;
6314
6315 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006316 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006317
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006318 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006319 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006320 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006321 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6322 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006323 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006324
Willy Tarreau7838a792019-08-12 18:42:03 +02006325 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006326 return 0;
6327}
6328
6329
Christopher Faulet564e39c2021-09-21 15:50:55 +02006330/* Called from the upper layer, to receive data
6331 *
6332 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6333 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6334 * means the caller wants to flush input data (from the mux buffer and the
6335 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6336 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6337 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6338 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6339 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6340 * copy as much data as possible.
6341 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006342static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6343{
Olivier Houchard638b7992018-08-16 15:41:52 +02006344 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006345 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006346 struct htx *h2s_htx = NULL;
6347 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006348 size_t ret = 0;
6349
Willy Tarreau7838a792019-08-12 18:42:03 +02006350 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6351
Olivier Houchard511efea2018-08-16 15:30:32 +02006352 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006353 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006354 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006355 /* Here htx_to_buf() will set buffer data to 0 because
6356 * the HTX is empty.
6357 */
6358 htx_to_buf(h2s_htx, &h2s->rxbuf);
6359 goto end;
6360 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006361
Christopher Faulet9b79a102019-07-15 11:22:56 +02006362 ret = h2s_htx->data;
6363 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006364
Christopher Faulet9b79a102019-07-15 11:22:56 +02006365 /* <buf> is empty and the message is small enough, swap the
6366 * buffers. */
6367 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006368 htx_to_buf(buf_htx, buf);
6369 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006370 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6371 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006372 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006373
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006374 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006375
6376 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6377 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6378 if (htx_is_empty(buf_htx))
6379 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006380 }
Christopher Faulet810df062020-07-22 16:20:34 +02006381 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006382 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006383
Christopher Faulet9b79a102019-07-15 11:22:56 +02006384 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6385 htx_to_buf(buf_htx, buf);
6386 htx_to_buf(h2s_htx, &h2s->rxbuf);
6387 ret -= h2s_htx->data;
6388
Christopher Faulet37070b22019-02-14 15:12:14 +01006389 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006390 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006391 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006392 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006393 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006394 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006395 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006396 /* Add EOS flag for tunnel */
6397 if (h2s->flags & H2_SF_BODY_TUNNEL)
6398 cs->flags |= CS_FL_EOS;
6399 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006400 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006401 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006402 if (cs->flags & CS_FL_ERR_PENDING)
6403 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006404 if (b_size(&h2s->rxbuf)) {
6405 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006406 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006407 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006408 }
6409
Willy Tarreau082f5592018-11-25 08:03:32 +01006410 if (ret && h2c->dsi == h2s->id) {
6411 /* demux is blocking on this stream's buffer */
6412 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006413 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006414 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006415
Willy Tarreau7838a792019-08-12 18:42:03 +02006416 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006417 return ret;
6418}
6419
Olivier Houchardd846c262018-10-19 17:24:29 +02006420
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006421/* Called from the upper layer, to send data from buffer <buf> for no more than
6422 * <count> bytes. Returns the number of bytes effectively sent. Some status
6423 * flags may be updated on the conn_stream.
6424 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006425static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006426{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006427 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006428 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006429 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006430 struct htx *htx;
6431 struct htx_blk *blk;
6432 enum htx_blk_type btype;
6433 uint32_t bsize;
6434 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006435
Willy Tarreau7838a792019-08-12 18:42:03 +02006436 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6437
Olivier Houchardd360ac62019-03-22 17:37:16 +01006438 /* If we were not just woken because we wanted to send but couldn't,
6439 * and there's somebody else that is waiting to send, do nothing,
6440 * we will subscribe later and be put at the end of the list
6441 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006442 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006443 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6444 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 +01006445 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006446 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006447 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006448
Willy Tarreau7838a792019-08-12 18:42:03 +02006449 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6450 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 +02006451 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006452 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006453
Willy Tarreaucab22952019-10-31 15:48:18 +01006454 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6455 cs->flags |= CS_FL_ERROR;
6456 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);
6457 return 0;
6458 }
6459
Christopher Faulet9b79a102019-07-15 11:22:56 +02006460 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006461
Willy Tarreau0bad0432018-06-14 16:54:01 +02006462 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006463 h2s->flags |= H2_SF_OUTGOING_DATA;
6464
Willy Tarreau751f2d02018-10-05 09:35:00 +02006465 if (h2s->id == 0) {
6466 int32_t id = h2c_get_next_sid(h2s->h2c);
6467
6468 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006469 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006470 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 +02006471 return 0;
6472 }
6473
6474 eb32_delete(&h2s->by_id);
6475 h2s->by_id.key = h2s->id = id;
6476 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006477 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006478 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6479 }
6480
Christopher Faulet9b79a102019-07-15 11:22:56 +02006481 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6482 count && !htx_is_empty(htx)) {
6483 idx = htx_get_head(htx);
6484 blk = htx_get_blk(htx, idx);
6485 btype = htx_get_blk_type(blk);
6486 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006487
Christopher Faulet9b79a102019-07-15 11:22:56 +02006488 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006489 case HTX_BLK_REQ_SL:
6490 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006491 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006492 if (ret > 0) {
6493 total += ret;
6494 count -= ret;
6495 if (ret < bsize)
6496 goto done;
6497 }
6498 break;
6499
Willy Tarreau115e83b2018-12-01 19:17:53 +01006500 case HTX_BLK_RES_SL:
6501 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006502 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006503 if (ret > 0) {
6504 total += ret;
6505 count -= ret;
6506 if (ret < bsize)
6507 goto done;
6508 }
6509 break;
6510
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006511 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006512 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006513 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6514 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6515 ret = h2s_skip_data(h2s, buf, count);
6516 else
6517 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006518 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006519 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006520 total += ret;
6521 count -= ret;
6522 if (ret < bsize)
6523 goto done;
6524 }
6525 break;
6526
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006527 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006528 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006529 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006530 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006531 if (ret > 0) {
6532 total += ret;
6533 count -= ret;
6534 if (ret < bsize)
6535 goto done;
6536 }
6537 break;
6538
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006539 default:
6540 htx_remove_blk(htx, blk);
6541 total += bsize;
6542 count -= bsize;
6543 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006544 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006545 }
6546
Christopher Faulet9b79a102019-07-15 11:22:56 +02006547 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006548 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006549 /* trim any possibly pending data after we close (extra CR-LF,
6550 * unprocessed trailers, abnormal extra data, ...)
6551 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006552 total += count;
6553 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006554 }
6555
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006556 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006557 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006558 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 +01006559 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006560 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006561 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006562 }
6563
Christopher Faulet9b79a102019-07-15 11:22:56 +02006564 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006565
Olivier Houchard7505f942018-08-21 18:10:44 +02006566 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006567 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006568 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 +02006569 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006570 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006571
Olivier Houchard7505f942018-08-21 18:10:44 +02006572 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006573 /* If we're waiting for flow control, and we got a shutr on the
6574 * connection, we will never be unlocked, so add an error on
6575 * the conn_stream.
6576 */
6577 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6578 !b_data(&h2s->h2c->dbuf) &&
6579 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006580 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 +01006581 if (cs->flags & CS_FL_EOS)
6582 cs->flags |= CS_FL_ERROR;
6583 else
6584 cs->flags |= CS_FL_ERR_PENDING;
6585 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006586
Willy Tarreau5723f292020-01-10 15:16:57 +01006587 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6588 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006589 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006590 LIST_DEL_INIT(&h2s->list);
6591 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006592
Willy Tarreau7838a792019-08-12 18:42:03 +02006593 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006594 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006595}
6596
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006597/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006598static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006599{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006600 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006601 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006602 struct eb32_node *node;
6603 int fctl_cnt = 0;
6604 int send_cnt = 0;
6605 int tree_cnt = 0;
6606 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006607 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006608 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006609
6610 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006611 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006612
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006613 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006614 fctl_cnt++;
6615
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006616 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006617 send_cnt++;
6618
Willy Tarreau3af37712018-12-18 14:34:41 +01006619 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006620 node = eb32_first(&h2c->streams_by_id);
6621 while (node) {
6622 h2s = container_of(node, struct h2s, by_id);
6623 tree_cnt++;
6624 if (!h2s->cs)
6625 orph_cnt++;
6626 node = eb32_next(node);
6627 }
6628
Willy Tarreau60f62682019-05-26 11:32:27 +02006629 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006630 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006631 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006632 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006633 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6634 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006635 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006636 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006637 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006638 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6639 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6640 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006641 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6642 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6643 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006644 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6645 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006646
6647 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006648 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 +02006649 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006650 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6651 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6652 h2s->cs);
6653 if (h2s->cs)
Christopher Fauletf835dea2021-12-21 14:35:17 +01006654 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6655 h2s->cs->flags, h2s->cs->app);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006656
6657 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6658 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006659 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6660 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6661 h2s->subs->tasklet->calls,
6662 h2s->subs->tasklet->context);
6663 if (h2s->subs->tasklet->calls >= 1000000)
6664 ret = 1;
6665 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6666 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006667 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006668 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006669 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006670}
Willy Tarreau62f52692017-10-08 23:01:42 +02006671
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006672/* Migrate the the connection to the current thread.
6673 * Return 0 if successful, non-zero otherwise.
6674 * Expected to be called with the old thread lock held.
6675 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006676static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006677{
6678 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006679 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006680
6681 if (fd_takeover(conn->handle.fd, conn) != 0)
6682 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006683
6684 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6685 /* We failed to takeover the xprt, even if the connection may
6686 * still be valid, flag it as error'd, as we have already
6687 * taken over the fd, and wake the tasklet, so that it will
6688 * destroy it.
6689 */
6690 conn->flags |= CO_FL_ERROR;
6691 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6692 return -1;
6693 }
6694
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006695 if (h2c->wait_event.events)
6696 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6697 h2c->wait_event.events, &h2c->wait_event);
6698 /* To let the tasklet know it should free itself, and do nothing else,
6699 * set its context to NULL.
6700 */
6701 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006702 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006703
6704 task = h2c->task;
6705 if (task) {
6706 task->context = NULL;
6707 h2c->task = NULL;
6708 __ha_barrier_store();
6709 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006710
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006711 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006712 if (!h2c->task) {
6713 h2_release(h2c);
6714 return -1;
6715 }
6716 h2c->task->process = h2_timeout_task;
6717 h2c->task->context = h2c;
6718 }
6719 h2c->wait_event.tasklet = tasklet_new();
6720 if (!h2c->wait_event.tasklet) {
6721 h2_release(h2c);
6722 return -1;
6723 }
6724 h2c->wait_event.tasklet->process = h2_io_cb;
6725 h2c->wait_event.tasklet->context = h2c;
6726 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6727 SUB_RETRY_RECV, &h2c->wait_event);
6728
6729 return 0;
6730}
6731
Willy Tarreau62f52692017-10-08 23:01:42 +02006732/*******************************************************/
6733/* functions below are dedicated to the config parsers */
6734/*******************************************************/
6735
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006736/* config parser for global "tune.h2.header-table-size" */
6737static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006738 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006739 char **err)
6740{
6741 if (too_many_args(1, args, err, NULL))
6742 return -1;
6743
6744 h2_settings_header_table_size = atoi(args[1]);
6745 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6746 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6747 return -1;
6748 }
6749 return 0;
6750}
Willy Tarreau62f52692017-10-08 23:01:42 +02006751
Willy Tarreaue6baec02017-07-27 11:45:11 +02006752/* config parser for global "tune.h2.initial-window-size" */
6753static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006754 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006755 char **err)
6756{
6757 if (too_many_args(1, args, err, NULL))
6758 return -1;
6759
6760 h2_settings_initial_window_size = atoi(args[1]);
6761 if (h2_settings_initial_window_size < 0) {
6762 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6763 return -1;
6764 }
6765 return 0;
6766}
6767
Willy Tarreau5242ef82017-07-27 11:47:28 +02006768/* config parser for global "tune.h2.max-concurrent-streams" */
6769static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006770 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006771 char **err)
6772{
6773 if (too_many_args(1, args, err, NULL))
6774 return -1;
6775
6776 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006777 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006778 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6779 return -1;
6780 }
6781 return 0;
6782}
6783
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006784/* config parser for global "tune.h2.max-frame-size" */
6785static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006786 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006787 char **err)
6788{
6789 if (too_many_args(1, args, err, NULL))
6790 return -1;
6791
6792 h2_settings_max_frame_size = atoi(args[1]);
6793 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6794 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6795 return -1;
6796 }
6797 return 0;
6798}
6799
Willy Tarreau62f52692017-10-08 23:01:42 +02006800
6801/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006802/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006803/***************************************/
6804
6805/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006806static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006807 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006808 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006809 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006810 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006811 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006812 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006813 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006814 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006815 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006816 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006817 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006818 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006819 .shutr = h2_shutr,
6820 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006821 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006822 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006823 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006824 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006825 .name = "H2",
6826};
6827
Christopher Faulet32f61c02018-04-10 14:33:41 +02006828static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006829 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006830
Willy Tarreau0108d902018-11-25 19:14:37 +01006831INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6832
Willy Tarreau62f52692017-10-08 23:01:42 +02006833/* config keyword parsers */
6834static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006835 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006836 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006837 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006838 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006839 { 0, NULL, NULL }
6840}};
6841
Willy Tarreau0108d902018-11-25 19:14:37 +01006842INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006843
6844/* initialize internal structs after the config is parsed.
6845 * Returns zero on success, non-zero on error.
6846 */
6847static int init_h2()
6848{
6849 pool_head_hpack_tbl = create_pool("hpack_tbl",
6850 h2_settings_header_table_size,
6851 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006852 if (!pool_head_hpack_tbl) {
6853 ha_alert("failed to allocate hpack_tbl memory pool\n");
6854 return (ERR_ALERT | ERR_FATAL);
6855 }
6856 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006857}
6858
6859REGISTER_POST_CHECK(init_h2);