blob: b161278b5fed671b40608591f1e02088a5a7b38c [file] [log] [blame]
Willy Tarreau62f52692017-10-08 23:01:42 +02001/*
2 * HTTP/2 mux-demux for connections
3 *
4 * Copyright 2017 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaudfd3de82020-06-04 23:46:14 +020013#include <import/eb32tree.h>
Willy Tarreau63617db2021-10-06 18:23:40 +020014#include <import/ebmbtree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020017#include <haproxy/connection.h>
Christopher Faulet1329f2a2021-12-16 17:32:56 +010018#include <haproxy/conn_stream.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020019#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020020#include <haproxy/hpack-dec.h>
21#include <haproxy/hpack-enc.h>
22#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020023#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020024#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020026#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020027#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020028#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010029#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020030#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020031#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020032#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020033
34
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010035/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020036static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010037static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010038static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020039static const struct h2s *h2_idle_stream;
40
Willy Tarreau5ab6b572017-09-22 08:05:00 +020041/* Connection flags (32 bit), in h2c->flags */
42#define H2_CF_NONE 0x00000000
43
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020044/* Flags indicating why writing to the mux is blocked. */
45#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
46#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
47#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
48
Willy Tarreau315d8072017-12-10 22:17:57 +010049/* Flags indicating why writing to the demux is blocked.
50 * The first two ones directly affect the ability for the mux to receive data
51 * from the connection. The other ones affect the mux's ability to demux
52 * received data.
53 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020054#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
55#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010056
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020057#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
58#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
59#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
60#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020061#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
62#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Christopher Fauletb5f7b522021-07-26 12:06:53 +020063 // (SHORT_READ is also excluded)
64
Christopher Faulet47940c32021-11-10 17:50:10 +010065#define H2_CF_DEM_SHORT_READ 0x00000200 // demux blocked on incomplete frame
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020066
Willy Tarreau081d4722017-05-16 21:51:05 +020067/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020068#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
69#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
70#define H2_CF_WAIT_FOR_HS 0x00004000 // We did check that at least a stream was waiting for handshake
Willy Tarreaub3fb56d2018-10-03 13:56:38 +020071#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010072#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
73#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
74#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020075
Amaury Denoyelle0df04362021-10-18 09:43:29 +020076#define H2_CF_RCVD_RFC8441 0x00100000 // settings from RFC8441 has been received indicating support for Extended CONNECT
Willy Tarreau39a0a1e2022-01-13 16:00:12 +010077#define H2_CF_SHTS_UPDATED 0x00200000 // SETTINGS_HEADER_TABLE_SIZE updated
78#define H2_CF_DTSU_EMITTED 0x00400000 // HPACK Dynamic Table Size Update opcode emitted
Amaury Denoyelle0df04362021-10-18 09:43:29 +020079
Willy Tarreau5ab6b572017-09-22 08:05:00 +020080/* H2 connection state, in h2c->st0 */
81enum h2_cs {
82 H2_CS_PREFACE, // init done, waiting for connection preface
83 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
84 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
85 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010086 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
87 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020088 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
89 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
90 H2_CS_ENTRIES // must be last
91} __attribute__((packed));
92
Willy Tarreau51330962019-05-26 09:38:07 +020093
Willy Tarreau9c218e72019-05-26 10:08:28 +020094/* 32 buffers: one for the ring's root, rest for the mbuf itself */
95#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020096
Willy Tarreau5ab6b572017-09-22 08:05:00 +020097/* H2 connection descriptor */
98struct h2c {
99 struct connection *conn;
100
101 enum h2_cs st0; /* mux state */
102 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
103
104 /* 16 bit hole here */
105 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100106 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200107 int32_t max_id; /* highest ID known on this connection, <0 before preface */
108 uint32_t rcvd_c; /* newly received data to ACK for the connection */
109 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
110
111 /* states for the demux direction */
112 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200113 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200114
115 int32_t dsi; /* demux stream ID (<0 = idle) */
116 int32_t dfl; /* demux frame length (if dsi >= 0) */
117 int8_t dft; /* demux frame type (if dsi >= 0) */
118 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100119 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
120 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200121 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
122
123 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200124 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200125 int32_t msi; /* mux stream ID (<0 = idle) */
126 int32_t mfl; /* mux frame length (if dsi >= 0) */
127 int8_t mft; /* mux frame type (if dsi >= 0) */
128 int8_t mff; /* mux frame flags (if dsi >= 0) */
129 /* 16 bit hole here */
130 int32_t miw; /* mux initial window size for all new streams */
131 int32_t mws; /* mux window size. Can be negative. */
132 int32_t mfs; /* mux's max frame size */
133
Willy Tarreauea392822017-10-31 10:02:25 +0100134 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100135 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau15a47332022-03-18 15:57:34 +0100136 int idle_start; /* date of the last time the connection went idle */
137 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +0100138 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200139 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100140 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100141 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200142 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100143 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100144 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200145 struct eb_root streams_by_id; /* all active streams by their ID */
146 struct list send_list; /* list of blocked streams requesting to send */
147 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200148 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100149 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200150 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200151};
152
Willy Tarreau18312642017-10-11 07:57:07 +0200153/* H2 stream state, in h2s->st */
154enum h2_ss {
155 H2_SS_IDLE = 0, // idle
156 H2_SS_RLOC, // reserved(local)
157 H2_SS_RREM, // reserved(remote)
158 H2_SS_OPEN, // open
159 H2_SS_HREM, // half-closed(remote)
160 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200161 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200162 H2_SS_CLOSED, // closed
163 H2_SS_ENTRIES // must be last
164} __attribute__((packed));
165
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200166#define H2_SS_MASK(state) (1UL << (state))
167#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
168#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
169#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
170#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
171#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
172#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
173#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
174#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200175
Willy Tarreau18312642017-10-11 07:57:07 +0200176/* HTTP/2 stream flags (32 bit), in h2s->flags */
177#define H2_SF_NONE 0x00000000
178#define H2_SF_ES_RCVD 0x00000001
179#define H2_SF_ES_SENT 0x00000002
180
181#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
182#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
183
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200184/* stream flags indicating the reason the stream is blocked */
185#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200186#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
187#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
188#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200189#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
190
Willy Tarreau454f9052017-10-26 19:40:35 +0200191/* stream flags indicating how data is supposed to be sent */
192#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100193#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100194#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
195
Willy Tarreau454f9052017-10-26 19:40:35 +0200196
Willy Tarreaud9464162020-01-10 18:25:07 +0100197#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100198#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100199#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100200
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100201#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
202
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200203#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
204#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
205
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100206#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100207#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100208
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100209#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200210
Willy Tarreau18312642017-10-11 07:57:07 +0200211/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100212 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200213 */
214struct h2s {
215 struct conn_stream *cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +0100216 struct cs_endpoint *endp;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100217 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200218 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200219 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200220 int32_t id; /* stream ID */
221 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200222 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200223 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
224 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200225 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100226 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200227 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100228 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200229 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100230 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
231 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100232
233 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200234};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200235
Willy Tarreauc6405142017-09-21 20:23:50 +0200236/* descriptor for an h2 frame header */
237struct h2_fh {
238 uint32_t len; /* length, host order, 24 bits */
239 uint32_t sid; /* stream id, host order, 31 bits */
240 uint8_t ft; /* frame type */
241 uint8_t ff; /* frame flags */
242};
243
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200245static void h2_trace(enum trace_level level, uint64_t mask, \
246 const struct trace_source *src,
247 const struct ist where, const struct ist func,
248 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200249
250/* The event representation is split like this :
251 * strm - application layer
252 * h2s - internal H2 stream
253 * h2c - internal H2 connection
254 * conn - external connection
255 *
256 */
257static const struct trace_event h2_trace_events[] = {
258#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200259 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200260#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200261 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200263 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200265 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200267 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200268#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200269 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200270#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200271 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200272#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200273 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200274#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200275 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200276#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200277 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200278#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200279 { .mask = H2_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H2 input (ES or RST)" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200280#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200281 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200282#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200283 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200284#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200285 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200286#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200287 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200288#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200289 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200290#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200291 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200292#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200293 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200294#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200295 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200296#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200297 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200298#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200299 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200300#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200301 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200302#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200303 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200304#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200305 { .mask = H2_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of H2 end of input (ES or RST)" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200306#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200307 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200308#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200309 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200310#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200311 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200312#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200313 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200314#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200315 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200316#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200317 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200318#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200319 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200320#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200321 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200322#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200323 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200324#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200325 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200326#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200327 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200328#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200329 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200330#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200331 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200332#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200333 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200334#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200335 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200336#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200337 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200338#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200339 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200340#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200341 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200342#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200343 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200344#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200345 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200346#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200347 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200348#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200349 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200350#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200351 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200352#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200353 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200354#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200355 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200356#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200357 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200358#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200359 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200360#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200361 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200362 { }
363};
364
365static const struct name_desc h2_trace_lockon_args[4] = {
366 /* arg1 */ { /* already used by the connection */ },
367 /* arg2 */ { .name="h2s", .desc="H2 stream" },
368 /* arg3 */ { },
369 /* arg4 */ { }
370};
371
372static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200373#define H2_VERB_CLEAN 1
374 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
375#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200376 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200377#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200378 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200379#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200380 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200381#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200382 { .name="complete", .desc="add full data dump when available" },
383 { /* end */ }
384};
385
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200386static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200387 .name = IST("h2"),
388 .desc = "HTTP/2 multiplexer",
389 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200390 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200391 .known_events = h2_trace_events,
392 .lockon_args = h2_trace_lockon_args,
393 .decoding = h2_trace_decoding,
394 .report_events = ~0, // report everything by default
395};
396
397#define TRACE_SOURCE &trace_h2
398INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
399
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100400/* h2 stats module */
401enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100402 H2_ST_HEADERS_RCVD,
403 H2_ST_DATA_RCVD,
404 H2_ST_SETTINGS_RCVD,
405 H2_ST_RST_STREAM_RCVD,
406 H2_ST_GOAWAY_RCVD,
407
Amaury Denoyellea8879232020-10-27 17:16:03 +0100408 H2_ST_CONN_PROTO_ERR,
409 H2_ST_STRM_PROTO_ERR,
410 H2_ST_RST_STREAM_RESP,
411 H2_ST_GOAWAY_RESP,
412
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100413 H2_ST_OPEN_CONN,
414 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100415 H2_ST_TOTAL_CONN,
416 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100417
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100418 H2_STATS_COUNT /* must be the last member of the enum */
419};
420
421static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100422 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100423 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100424 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100425 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100426 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100427 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100428 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100429 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100430 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100431 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100432
433 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
434 .desc = "Total number of connection protocol errors" },
435 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
436 .desc = "Total number of stream protocol errors" },
437 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100438 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100439 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100440 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100441
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100442 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
443 .desc = "Count of currently open connections" },
444 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
445 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100446 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100447 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100448 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100449 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100450};
451
452static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100453 long long headers_rcvd; /* total number of HEADERS frame received */
454 long long data_rcvd; /* total number of DATA frame received */
455 long long settings_rcvd; /* total number of SETTINGS frame received */
456 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
457 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100458
459 long long conn_proto_err; /* total number of protocol errors detected */
460 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100461 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
462 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100463
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100464 long long open_conns; /* count of currently open connections */
465 long long open_streams; /* count of currently open streams */
466 long long total_conns; /* total number of connections */
467 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100468} h2_counters;
469
470static void h2_fill_stats(void *data, struct field *stats)
471{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100472 struct h2_counters *counters = data;
473
474 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
475 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
476 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
477 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
478 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100479
480 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
481 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
482 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
483 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100484
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100485 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
486 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
487 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
488 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100489}
490
491static struct stats_module h2_stats_module = {
492 .name = "h2",
493 .fill_stats = h2_fill_stats,
494 .stats = h2_stats,
495 .stats_count = H2_STATS_COUNT,
496 .counters = &h2_counters,
497 .counters_size = sizeof(h2_counters),
498 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
499 .clearable = 1,
500};
501
502INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
503
Willy Tarreau8ceae722018-11-26 11:58:30 +0100504/* the h2c connection pool */
505DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
506
507/* the h2s stream pool */
508DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
509
Willy Tarreaudc572362018-12-12 08:08:05 +0100510/* The default connection window size is 65535, it may only be enlarged using
511 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
512 * we'll pretend we already received the difference between the two to send
513 * an equivalent window update to enlarge it to 2G-1.
514 */
515#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
516
Willy Tarreau455d5682019-05-24 19:42:18 +0200517/* maximum amount of data we're OK with re-aligning for buffer optimizations */
518#define MAX_DATA_REALIGN 1024
519
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200520/* a few settings from the global section */
521static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200522static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100523static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100524static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200525
Willy Tarreau2a856182017-05-16 15:20:39 +0200526/* a dmumy closed stream */
527static const struct h2s *h2_closed_stream = &(const struct h2s){
528 .cs = NULL,
529 .h2c = NULL,
530 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100531 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100532 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200533 .id = 0,
534};
535
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100536/* a dmumy closed stream returning a PROTOCOL_ERROR error */
537static const struct h2s *h2_error_stream = &(const struct h2s){
538 .cs = NULL,
539 .h2c = NULL,
540 .st = H2_SS_CLOSED,
541 .errcode = H2_ERR_PROTOCOL_ERROR,
542 .flags = 0,
543 .id = 0,
544};
545
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100546/* a dmumy closed stream returning a REFUSED_STREAM error */
547static const struct h2s *h2_refused_stream = &(const struct h2s){
548 .cs = NULL,
549 .h2c = NULL,
550 .st = H2_SS_CLOSED,
551 .errcode = H2_ERR_REFUSED_STREAM,
552 .flags = 0,
553 .id = 0,
554};
555
Willy Tarreau2a856182017-05-16 15:20:39 +0200556/* and a dummy idle stream for use with any unannounced stream */
557static const struct h2s *h2_idle_stream = &(const struct h2s){
558 .cs = NULL,
559 .h2c = NULL,
560 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100561 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200562 .id = 0,
563};
564
Willy Tarreau144f84a2021-03-02 16:09:26 +0100565struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200566static int h2_send(struct h2c *h2c);
567static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200568static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100569/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100570struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100571static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100572static 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 +0100573static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100574struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100575static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100576static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200577
Willy Tarreauab2ec452019-08-30 07:07:08 +0200578/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
579static inline const char *h2c_st_to_str(enum h2_cs st)
580{
581 switch (st) {
582 case H2_CS_PREFACE: return "PRF";
583 case H2_CS_SETTINGS1: return "STG";
584 case H2_CS_FRAME_H: return "FRH";
585 case H2_CS_FRAME_P: return "FRP";
586 case H2_CS_FRAME_A: return "FRA";
587 case H2_CS_FRAME_E: return "FRE";
588 case H2_CS_ERROR: return "ERR";
589 case H2_CS_ERROR2: return "ER2";
590 default: return "???";
591 }
592}
593
594/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
595static inline const char *h2s_st_to_str(enum h2_ss st)
596{
597 switch (st) {
598 case H2_SS_IDLE: return "IDL"; // idle
599 case H2_SS_RLOC: return "RSL"; // reserved local
600 case H2_SS_RREM: return "RSR"; // reserved remote
601 case H2_SS_OPEN: return "OPN"; // open
602 case H2_SS_HREM: return "HCR"; // half-closed remote
603 case H2_SS_HLOC: return "HCL"; // half-closed local
604 case H2_SS_ERROR : return "ERR"; // error
605 case H2_SS_CLOSED: return "CLO"; // closed
606 default: return "???";
607 }
608}
609
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200610/* the H2 traces always expect that arg1, if non-null, is of type connection
611 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
612 * that arg3, if non-null, is either of type htx for tx headers, or of type
613 * buffer for everything else.
614 */
615static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
616 const struct ist where, const struct ist func,
617 const void *a1, const void *a2, const void *a3, const void *a4)
618{
619 const struct connection *conn = a1;
620 const struct h2c *h2c = conn ? conn->ctx : NULL;
621 const struct h2s *h2s = a2;
622 const struct buffer *buf = a3;
623 const struct htx *htx;
624 int pos;
625
626 if (!h2c) // nothing to add
627 return;
628
Willy Tarreau17104d42019-08-30 07:12:55 +0200629 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200630 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
631
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200632 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
633 conn_append_debug_info(&trace_buf, conn, " : ");
634
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100635 if (h2c->errcode)
636 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
637
Willy Tarreau73db4342019-09-25 07:28:44 +0200638 if (h2c->dsi >= 0 &&
639 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200640 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 +0200641 }
642
643 if (h2s) {
644 if (h2s->id <= 0)
645 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
646 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100647 if (h2s->id && h2s->errcode)
648 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200649 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200650 }
651
652 /* Let's dump decoded requests and responses right after parsing. They
653 * are traced at level USER with a few recognizable flags.
654 */
655 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
656 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
657 htx = htxbuf(buf); // recv req/res
658 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
659 htx = a3; // send req/res
660 else
661 htx = NULL;
662
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200663 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200664 const struct htx_blk *blk = htx_get_blk(htx, pos);
665 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
666 enum htx_blk_type type = htx_get_blk_type(blk);
667
668 if (type == HTX_BLK_REQ_SL)
669 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200670 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200671 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
672 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
673 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
674 else if (type == HTX_BLK_RES_SL)
675 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200676 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200677 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
678 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
679 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
680 }
681}
682
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200683
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100684/* Detect a pending read0 for a H2 connection. It happens if a read0 was
685 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
686 * to parse pending data, confirming no more progress is possible because
687 * we're facing a truncated frame. The function returns 1 to report a read0
688 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200689 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100690static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200691{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100692 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200693}
694
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200695/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100696 * connection may expire when it has no attached streams. As long as streams
697 * are attached, the application layer is responsible for timeout management,
698 * and each layer will detach when it doesn't want to wait anymore. When the
699 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200700 */
701static inline int h2c_may_expire(const struct h2c *h2c)
702{
Willy Tarreau34395832022-03-18 14:59:54 +0100703 return !h2c->nb_cs;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200704}
705
Willy Tarreau15a47332022-03-18 15:57:34 +0100706/* update h2c timeout if needed */
707static void h2c_update_timeout(struct h2c *h2c)
708{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200709 int is_idle_conn = 0;
710
Willy Tarreau15a47332022-03-18 15:57:34 +0100711 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
712
713 if (!h2c->task)
714 goto leave;
715
716 if (h2c_may_expire(h2c)) {
717 /* no more streams attached */
718 if (h2c->last_sid >= 0) {
719 /* GOAWAY sent, closing in progress */
720 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200721 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100722 } else if (br_data(h2c->mbuf)) {
723 /* pending output data: always the regular data timeout */
724 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
725 } else if (h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
726 /* idle after having seen one stream => keep-alive */
727 h2c->task->expire = tick_add_ifset(h2c->idle_start, h2c->proxy->timeout.httpka);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200728 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100729 } else {
730 /* before first request, or started to deserialize a
731 * new req => http-request, but only set, not refresh.
732 */
733 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
734 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
735 }
736 /* if a timeout above was not set, fall back to the default one */
737 if (!tick_isset(h2c->task->expire))
738 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200739
740 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
741 is_idle_conn && tick_isset(global.close_spread_end)) {
742 /* If a soft-stop is in progress and a close-spread-time
743 * is set, we want to spread idle connection closing roughly
744 * evenly across the defined window. This should only
745 * act on idle frontend connections.
746 * If the window end is already in the past, we wake the
747 * timeout task up immediately so that it can be closed.
748 */
749 int remaining_window = tick_remain(now_ms, global.close_spread_end);
750 if (remaining_window) {
751 /* We don't need to reset the expire if it would
752 * already happen before the close window end.
753 */
754 if (tick_isset(h2c->task->expire) &&
755 tick_is_le(global.close_spread_end, h2c->task->expire)) {
756 /* Set an expire value shorter than the current value
757 * because the close spread window end comes earlier.
758 */
759 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
760 }
761 }
762 else {
763 /* We are past the soft close window end, wake the timeout
764 * task up immediately.
765 */
766 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
767 }
768 }
769
Willy Tarreau15a47332022-03-18 15:57:34 +0100770 } else {
771 h2c->task->expire = TICK_ETERNITY;
772 }
773 task_queue(h2c->task);
774 leave:
775 TRACE_LEAVE(H2_EV_H2C_WAKE);
776}
777
Olivier Houchard7a977432019-03-21 15:47:13 +0100778static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200779h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100780{
781 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
782 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
783 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
784 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200785 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100786 (conn_xprt_read0_pending(h2c->conn) ||
787 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
788 return 1;
789
790 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100791}
792
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200793/*****************************************************/
794/* functions below are for dynamic buffer management */
795/*****************************************************/
796
Willy Tarreau315d8072017-12-10 22:17:57 +0100797/* indicates whether or not the we may call the h2_recv() function to attempt
798 * to receive data into the buffer and/or demux pending data. The condition is
799 * a bit complex due to some API limits for now. The rules are the following :
800 * - if an error or a shutdown was detected on the connection and the buffer
801 * is empty, we must not attempt to receive
802 * - if the demux buf failed to be allocated, we must not try to receive and
803 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100804 * - if no flag indicates a blocking condition, we may attempt to receive,
805 * regardless of whether the demux buffer is full or not, so that only
806 * de demux part decides whether or not to block. This is needed because
807 * the connection API indeed prevents us from re-enabling receipt that is
808 * already enabled in a polled state, so we must always immediately stop
809 * as soon as the demux can't proceed so as never to hit an end of read
810 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100811 * - otherwise must may not attempt
812 */
813static inline int h2_recv_allowed(const struct h2c *h2c)
814{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200815 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100816 (h2c->st0 >= H2_CS_ERROR ||
817 h2c->conn->flags & CO_FL_ERROR ||
818 conn_xprt_read0_pending(h2c->conn)))
819 return 0;
820
821 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100822 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100823 return 1;
824
825 return 0;
826}
827
Willy Tarreau47b515a2018-12-21 16:09:41 +0100828/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200829static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100830{
831 if (!h2_recv_allowed(h2c))
832 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200833 if ((!consider_buffer || !b_data(&h2c->dbuf))
834 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100835 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200836 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100837}
838
839
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100840/* returns true if the front connection has too many conn_streams attached */
841static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200842{
Willy Tarreaua8754662018-12-23 20:43:58 +0100843 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200844}
845
Willy Tarreau44e973f2018-03-01 17:49:30 +0100846/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
847 * flags are used to figure what buffer was requested. It returns 1 if the
848 * allocation succeeds, in which case the connection is woken up, or 0 if it's
849 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200850 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100851static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200852{
853 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100854 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200855
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100856 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200857 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200858 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200859 return 1;
860 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200861
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100862 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100863 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200864
865 if (h2c->flags & H2_CF_DEM_MROOM) {
866 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200867 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200868 }
Willy Tarreau14398122017-09-22 14:26:04 +0200869 return 1;
870 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100871
872 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
873 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100874 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100875 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200876 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100877 return 1;
878 }
879
Willy Tarreau14398122017-09-22 14:26:04 +0200880 return 0;
881}
882
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200883static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200884{
885 struct buffer *buf = NULL;
886
Willy Tarreau2b718102021-04-21 07:32:39 +0200887 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100888 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100889 h2c->buf_wait.target = h2c;
890 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200891 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200892 }
893 return buf;
894}
895
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200896static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200897{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200898 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100899 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100900 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200901 }
902}
903
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200904static inline void h2_release_mbuf(struct h2c *h2c)
905{
906 struct buffer *buf;
907 unsigned int count = 0;
908
909 while (b_size(buf = br_head_pick(h2c->mbuf))) {
910 b_free(buf);
911 count++;
912 }
913 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100914 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200915}
916
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100917/* returns the number of allocatable outgoing streams for the connection taking
918 * the last_sid and the reserved ones into account.
919 */
920static inline int h2_streams_left(const struct h2c *h2c)
921{
922 int ret;
923
924 /* consider the number of outgoing streams we're allowed to create before
925 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
926 * nb_reserved is the number of streams which don't yet have an ID.
927 */
928 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
929 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
930 if (ret < 0)
931 ret = 0;
932 return ret;
933}
934
Willy Tarreau00f18a32019-01-26 12:19:01 +0100935/* returns the number of streams in use on a connection to figure if it's
936 * idle or not. We check nb_cs and not nb_streams as the caller will want
937 * to know if it was the last one after a detach().
938 */
939static int h2_used_streams(struct connection *conn)
940{
941 struct h2c *h2c = conn->ctx;
942
943 return h2c->nb_cs;
944}
945
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100946/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100947static int h2_avail_streams(struct connection *conn)
948{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100949 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100950 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100951 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100952
Willy Tarreau6afec462019-01-28 06:40:19 +0100953 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
954 * streams on the connection.
955 */
956 if (h2c->last_sid >= 0)
957 return 0;
958
Willy Tarreauc61966f2019-10-31 15:10:03 +0100959 if (h2c->st0 >= H2_CS_ERROR)
960 return 0;
961
Willy Tarreau86949782019-01-31 10:42:05 +0100962 /* note: may be negative if a SETTINGS frame changes the limit */
963 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100964
965 /* we must also consider the limit imposed by stream IDs */
966 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100967 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100968 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100969 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
970 ret1 = MIN(ret1, ret2);
971 }
972 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100973}
974
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200975
Willy Tarreau62f52692017-10-08 23:01:42 +0200976/*****************************************************************/
977/* functions below are dedicated to the mux setup and management */
978/*****************************************************************/
979
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200980/* Initialize the mux once it's attached. For outgoing connections, the context
981 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200982 * connections from the fact that the context is still NULL (even during mux
983 * upgrades). <input> is always used as Input buffer and may contain data. It is
984 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200985 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200986static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
987 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200988{
989 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100990 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200991 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200992
Christopher Fauletf81ef032019-10-04 15:19:43 +0200993 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200994
Willy Tarreaubafbe012017-11-24 17:34:44 +0100995 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200996 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200997 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200998
Christopher Faulete9b70722019-04-08 10:46:02 +0200999 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001000 h2c->flags = H2_CF_IS_BACK;
1001 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
1002 if (tick_isset(prx->timeout.serverfin))
1003 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001004
1005 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
1006 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001007 } else {
1008 h2c->flags = H2_CF_NONE;
1009 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
1010 if (tick_isset(prx->timeout.clientfin))
1011 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +01001012
1013 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
1014 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +02001015 }
Willy Tarreau3f133572017-10-31 19:21:06 +01001016
Willy Tarreau0b37d652018-10-03 10:33:02 +02001017 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +01001018 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +01001019 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +01001020 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02001021 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +01001022 if (!t)
1023 goto fail;
1024
1025 h2c->task = t;
1026 t->process = h2_timeout_task;
1027 t->context = h2c;
1028 t->expire = tick_add(now_ms, h2c->timeout);
1029 }
Willy Tarreauea392822017-10-31 10:02:25 +01001030
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001031 h2c->wait_event.tasklet = tasklet_new();
1032 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001033 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001034 h2c->wait_event.tasklet->process = h2_io_cb;
1035 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001036 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001037 if (!conn_is_back(conn)) {
1038 /* Connection might already be in the stopping_list if subject
1039 * to h1->h2 upgrade.
1040 */
1041 if (!LIST_INLIST(&conn->stopping_list)) {
1042 LIST_APPEND(&mux_stopping_data[tid].list,
1043 &conn->stopping_list);
1044 }
1045 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02001046
Willy Tarreau2bdcc702020-05-19 11:31:11 +02001047 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +02001048 if (!h2c->ddht)
1049 goto fail;
1050
1051 /* Initialise the context. */
1052 h2c->st0 = H2_CS_PREFACE;
1053 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001054 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001055 h2c->max_id = -1;
1056 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001057 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001058 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001059 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001060 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001061 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001062 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001063
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001064 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001065 h2c->dsi = -1;
1066 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001067
Willy Tarreau32218eb2017-09-22 08:07:25 +02001068 h2c->last_sid = -1;
1069
Willy Tarreau51330962019-05-26 09:38:07 +02001070 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001071 h2c->miw = 65535; /* mux initial window size */
1072 h2c->mws = 65535; /* mux window size */
1073 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001074 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001075 LIST_INIT(&h2c->send_list);
1076 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001077 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001078 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001079
Christopher Fauletf81ef032019-10-04 15:19:43 +02001080 conn->ctx = h2c;
1081
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001082 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1083
Willy Tarreau3f133572017-10-31 19:21:06 +01001084 if (t)
1085 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001086
Willy Tarreau01b44822018-10-03 14:26:37 +02001087 if (h2c->flags & H2_CF_IS_BACK) {
1088 /* FIXME: this is temporary, for outgoing connections we need
1089 * to immediately allocate a stream until the code is modified
1090 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001091 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001092 */
1093 struct h2s *h2s;
1094
Christopher Fauletf81ef032019-10-04 15:19:43 +02001095 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001096 if (!h2s)
1097 goto fail_stream;
1098 }
1099
Willy Tarreau4781b152021-04-06 13:53:36 +02001100 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1101 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001102
Willy Tarreau0f383582018-10-03 14:22:21 +02001103 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001104 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001105 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001106 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001107 fail_stream:
1108 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001109 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001110 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001111 if (h2c->wait_event.tasklet)
1112 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001113 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001114 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001115 if (!conn_is_back(conn))
1116 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001117 conn->ctx = conn_ctx; /* restore saved ctx */
1118 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001119 return -1;
1120}
1121
Willy Tarreau751f2d02018-10-05 09:35:00 +02001122/* returns the next allocatable outgoing stream ID for the H2 connection, or
1123 * -1 if no more is allocatable.
1124 */
1125static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1126{
1127 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001128
1129 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001130 id = -1;
1131 return id;
1132}
1133
Willy Tarreau2373acc2017-10-12 17:35:14 +02001134/* returns the stream associated with id <id> or NULL if not found */
1135static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1136{
1137 struct eb32_node *node;
1138
Willy Tarreau751f2d02018-10-05 09:35:00 +02001139 if (id == 0)
1140 return (struct h2s *)h2_closed_stream;
1141
Willy Tarreau2a856182017-05-16 15:20:39 +02001142 if (id > h2c->max_id)
1143 return (struct h2s *)h2_idle_stream;
1144
Willy Tarreau2373acc2017-10-12 17:35:14 +02001145 node = eb32_lookup(&h2c->streams_by_id, id);
1146 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001147 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001148
1149 return container_of(node, struct h2s, by_id);
1150}
1151
Christopher Faulet73c12072019-04-08 11:23:22 +02001152/* release function. This one should be called to free all resources allocated
1153 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001154 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001155static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001156{
William Dauchy477757c2020-08-07 22:19:23 +02001157 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001158
Willy Tarreau7838a792019-08-12 18:42:03 +02001159 TRACE_ENTER(H2_EV_H2C_END);
1160
Willy Tarreau32218eb2017-09-22 08:07:25 +02001161 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001162 /* The connection must be aattached to this mux to be released */
1163 if (h2c->conn && h2c->conn->ctx == h2c)
1164 conn = h2c->conn;
1165
Willy Tarreau7838a792019-08-12 18:42:03 +02001166 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001167 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001168
Willy Tarreau2b718102021-04-21 07:32:39 +02001169 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001170 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001171
Willy Tarreau44e973f2018-03-01 17:49:30 +01001172 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001173 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001174
Willy Tarreauea392822017-10-31 10:02:25 +01001175 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001176 h2c->task->context = NULL;
1177 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001178 h2c->task = NULL;
1179 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001180 if (h2c->wait_event.tasklet)
1181 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001182 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001183 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001184 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001185
Willy Tarreau4781b152021-04-06 13:53:36 +02001186 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001187
Willy Tarreaubafbe012017-11-24 17:34:44 +01001188 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001189 }
1190
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001191 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001192 if (!conn_is_back(conn))
1193 LIST_DEL_INIT(&conn->stopping_list);
1194
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001195 conn->mux = NULL;
1196 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001197 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001198
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001199 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001200
1201 /* there might be a GOAWAY frame still pending in the TCP
1202 * stack, and if the peer continues to send (i.e. window
1203 * updates etc), this can result in losing the GOAWAY. For
1204 * this reason we try to drain anything received in between.
1205 */
1206 conn->flags |= CO_FL_WANT_DRAIN;
1207
1208 conn_xprt_shutw(conn);
1209 conn_xprt_close(conn);
1210 conn_sock_shutw(conn, !conn_is_back(conn));
1211 conn_ctrl_close(conn);
1212
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001213 if (conn->destroy_cb)
1214 conn->destroy_cb(conn);
1215 conn_free(conn);
1216 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001217
1218 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001219}
1220
1221
Willy Tarreau71681172017-10-23 14:39:06 +02001222/******************************************************/
1223/* functions below are for the H2 protocol processing */
1224/******************************************************/
1225
1226/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001227static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001228{
1229 return h2s ? h2s->id : 0;
1230}
1231
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001232/* returns the sum of the stream's own window size and the mux's initial
1233 * window, which together form the stream's effective window size.
1234 */
1235static inline int h2s_mws(const struct h2s *h2s)
1236{
1237 return h2s->sws + h2s->h2c->miw;
1238}
1239
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001240/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001241static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001242{
1243 if (h2c->msi < 0)
1244 return 0;
1245
1246 if (h2c->msi == h2s_id(h2s))
1247 return 0;
1248
1249 return 1;
1250}
1251
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001252/* marks an error on the connection. Before settings are sent, we must not send
1253 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1254 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1255 * even try.
1256 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001257static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001258{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001259 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001260 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001261 if (h2c->st0 < H2_CS_SETTINGS1)
1262 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001263 h2c->st0 = H2_CS_ERROR;
1264}
1265
Willy Tarreau175cebb2019-01-24 10:02:24 +01001266/* marks an error on the stream. It may also update an already closed stream
1267 * (e.g. to report an error after an RST was received).
1268 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001269static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001270{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001271 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001272 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001273 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001274 if (h2s->st < H2_SS_ERROR)
1275 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001276 if (h2s->cs)
1277 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001278 }
1279}
1280
Willy Tarreau7e094452018-12-19 18:08:52 +01001281/* attempt to notify the data layer of recv availability */
1282static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1283{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001284 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001285 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001286 tasklet_wakeup(h2s->subs->tasklet);
1287 h2s->subs->events &= ~SUB_RETRY_RECV;
1288 if (!h2s->subs->events)
1289 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001290 }
1291}
1292
1293/* attempt to notify the data layer of send availability */
1294static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1295{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001296 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001297 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001298 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001299 tasklet_wakeup(h2s->subs->tasklet);
1300 h2s->subs->events &= ~SUB_RETRY_SEND;
1301 if (!h2s->subs->events)
1302 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001303 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001304 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1305 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1306 tasklet_wakeup(h2s->shut_tl);
1307 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001308}
1309
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001310/* alerts the data layer, trying to wake it up by all means, following
1311 * this sequence :
1312 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1313 * - if its subscribed to send, then it's woken up for send
1314 * - if it was subscribed to neither, its ->wake() callback is called
1315 * It is safe to call this function with a closed stream which doesn't have a
1316 * conn_stream anymore.
1317 */
1318static void __maybe_unused h2s_alert(struct h2s *h2s)
1319{
Willy Tarreau7838a792019-08-12 18:42:03 +02001320 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1321
Willy Tarreauf96508a2020-01-10 11:12:48 +01001322 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001323 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001324 h2s_notify_recv(h2s);
1325 h2s_notify_send(h2s);
1326 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001327 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1328 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001329 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001330 }
1331
1332 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001333}
1334
Willy Tarreaue4820742017-07-27 13:37:23 +02001335/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001336static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001337{
1338 uint8_t *out = frame;
1339
1340 *out = len >> 16;
1341 write_n16(out + 1, len);
1342}
1343
Willy Tarreau54c15062017-10-10 17:10:03 +02001344/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1345 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1346 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001347 * available in the buffer's input prior to calling this function. The buffer
1348 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001349 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001350static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001351 const struct buffer *b, int o)
1352{
Willy Tarreau591d4452018-06-15 17:21:00 +02001353 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 +02001354}
1355
Willy Tarreau1f094672017-11-20 21:27:45 +01001356static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001357{
Willy Tarreau591d4452018-06-15 17:21:00 +02001358 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001359}
1360
Willy Tarreau1f094672017-11-20 21:27:45 +01001361static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001362{
Willy Tarreau591d4452018-06-15 17:21:00 +02001363 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001364}
1365
Willy Tarreau1f094672017-11-20 21:27:45 +01001366static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001367{
Willy Tarreau591d4452018-06-15 17:21:00 +02001368 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001369}
1370
1371
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001372/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1373 * The algorithm is not obvious. It turns out that H2 headers are neither
1374 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1375 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001376 *
1377 * b0 b1 b2 b3 b4 b5..b8
1378 * +----------+---------+--------+----+----+----------------------+
1379 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1380 * +----------+---------+--------+----+----+----------------------+
1381 *
1382 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1383 * we get the sid properly aligned and ordered, and 16 bits of len properly
1384 * ordered as well. The type and flags can be extracted using bit shifts from
1385 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001386 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1387 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001388 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001389static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001390{
1391 uint64_t w;
1392
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001393 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001394 return 0;
1395
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001396 w = h2_get_n64(b, o + 1);
1397 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001398 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1399 h->ff = w >> 32;
1400 h->ft = w >> 40;
1401 h->len += w >> 48;
1402 return 1;
1403}
1404
1405/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1406 * h2_peek_frame_hdr() above.
1407 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001408static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001409{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001410 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001411}
1412
1413/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001414static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001415{
1416 int ret;
1417
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001418 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001419 if (ret > 0)
1420 h2_skip_frame_hdr(b);
1421 return ret;
1422}
1423
Willy Tarreaucb985a42019-10-07 16:56:34 +02001424
1425/* try to fragment the headers frame present at the beginning of buffer <b>,
1426 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1427 * success. Typical causes of failure include a buffer not large enough to
1428 * add extra frame headers. The existing frame size is read in the current
1429 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1430 * and its length will be adjusted. The stream ID for continuation frames will
1431 * be copied from the initial frame's.
1432 */
1433static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1434{
1435 size_t remain = b->data - 9;
1436 int extra_frames = (remain - 1) / mfs;
1437 size_t fsize;
1438 char *fptr;
1439 int frame;
1440
1441 if (b->data <= mfs + 9)
1442 return 1;
1443
1444 /* Too large a frame, we need to fragment it using CONTINUATION
1445 * frames. We start from the end and move tails as needed.
1446 */
1447 if (b->data + extra_frames * 9 > b->size)
1448 return 0;
1449
1450 for (frame = extra_frames; frame; frame--) {
1451 fsize = ((remain - 1) % mfs) + 1;
1452 remain -= fsize;
1453
1454 /* move data */
1455 fptr = b->area + 9 + remain + (frame - 1) * 9;
1456 memmove(fptr + 9, b->area + 9 + remain, fsize);
1457 b->data += 9;
1458
1459 /* write new frame header */
1460 h2_set_frame_size(fptr, fsize);
1461 fptr[3] = H2_FT_CONTINUATION;
1462 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1463 write_n32(fptr + 5, read_n32(b->area + 5));
1464 }
1465
1466 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1467 h2_set_frame_size(b->area, remain);
1468 return 1;
1469}
1470
1471
Willy Tarreau00dd0782018-03-01 16:31:34 +01001472/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1473 * its connection if the stream was not yet closed. Please use this exclusively
1474 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001475 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001476static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001477{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001478 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001479 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001480 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001481 if (!h2s->id)
1482 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001483 if (h2s->cs) {
Christopher Fauletb041b232022-03-24 10:27:02 +01001484 if (!(h2s->endp->flags & CS_EP_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001485 h2s_notify_recv(h2s);
1486 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001487 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001488
Willy Tarreau7838a792019-08-12 18:42:03 +02001489 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001490 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001491 h2s->st = H2_SS_CLOSED;
1492}
1493
Willy Tarreau71049cc2018-03-28 13:56:39 +02001494/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001495/* h2s_destroy should only ever be called by the thread that owns the stream,
1496 * that means that a tasklet should be used if we want to destroy the h2s
1497 * from another thread
1498 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001499static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001500{
Willy Tarreau7838a792019-08-12 18:42:03 +02001501 struct connection *conn = h2s->h2c->conn;
1502
1503 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1504
Willy Tarreau0a10de62018-03-01 16:27:53 +01001505 h2s_close(h2s);
1506 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001507 if (b_size(&h2s->rxbuf)) {
1508 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001509 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001510 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001511
1512 if (h2s->subs)
1513 h2s->subs->events = 0;
1514
Joseph Herlantd77575d2018-11-25 10:54:45 -08001515 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001516 * reference left would be in the h2c send_list/fctl_list, and if
1517 * we're in it, we're getting out anyway
1518 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001519 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001520
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001521 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001522 tasklet_free(h2s->shut_tl);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001523 BUG_ON(h2s->endp && !(h2s->endp->flags & CS_EP_ORPHAN));
1524 cs_endpoint_free(h2s->endp);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001525 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001526
1527 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001528}
1529
Willy Tarreaua8e49542018-10-03 18:53:55 +02001530/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1531 * stream tree. In case of error, nothing is added and NULL is returned. The
1532 * causes of errors can be any failed memory allocation. The caller is
1533 * responsible for checking if the connection may support an extra stream
1534 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001535 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001536static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001537{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001538 struct h2s *h2s;
1539
Willy Tarreau7838a792019-08-12 18:42:03 +02001540 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1541
Willy Tarreaubafbe012017-11-24 17:34:44 +01001542 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001543 if (!h2s)
1544 goto out;
1545
Willy Tarreau5723f292020-01-10 15:16:57 +01001546 h2s->shut_tl = tasklet_new();
1547 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001548 pool_free(pool_head_h2s, h2s);
1549 goto out;
1550 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001551 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001552 h2s->shut_tl->process = h2_deferred_shut;
1553 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001554 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001555 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001556 h2s->cs = NULL;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001557 h2s->endp = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001558 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001559 h2s->flags = H2_SF_NONE;
1560 h2s->errcode = H2_ERR_NO_ERROR;
1561 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001562 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001563 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001564 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001565 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001566
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001567 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001568 if (id > 0)
1569 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001570 else
1571 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001572
1573 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001574 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001575 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001576
Willy Tarreau4781b152021-04-06 13:53:36 +02001577 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1578 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001579
Willy Tarreau7838a792019-08-12 18:42:03 +02001580 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001581 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001582 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001583 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001584 return NULL;
1585}
1586
1587/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001588 * case of memory allocation error. <input> is used as input buffer for the new
1589 * stream. On success, it is transferred to the stream and the mux is no longer
1590 * responsible of it. On error, <input> is unchanged, thus the mux must still
1591 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001592 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001593static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001594{
1595 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001596 struct h2s *h2s;
1597
Willy Tarreau7838a792019-08-12 18:42:03 +02001598 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1599
Willy Tarreaua8e49542018-10-03 18:53:55 +02001600 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1601 goto out;
1602
1603 h2s = h2s_new(h2c, id);
1604 if (!h2s)
1605 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001606
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001607 h2s->endp = cs_endpoint_new();
1608 if (!h2s->endp)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001609 goto out_close;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001610 h2s->endp->target = h2s;
1611 h2s->endp->ctx = h2c->conn;
1612 h2s->endp->flags |= (CS_EP_T_MUX|CS_EP_ORPHAN|CS_EP_NOT_FIRST);
1613
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001614 /* FIXME wrong analogy between ext-connect and websocket, this need to
1615 * be refine.
1616 */
1617 if (flags & H2_SF_EXT_CONNECT_RCVD)
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001618 h2s->endp->flags |= CS_EP_WEBSOCKET;
Christopher Fauletb669d682022-03-22 18:37:19 +01001619
Willy Tarreaud0de6772022-02-04 09:05:37 +01001620 /* The stream will record the request's accept date (which is either the
1621 * end of the connection's or the date immediately after the previous
1622 * request) and the idle time, which is the delay since the previous
1623 * request. We can set the value now, it will be copied by stream_new().
1624 */
1625 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001626
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001627 h2s->cs = cs_new_from_mux(h2s->endp, sess, input);
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001628 if (!h2s->cs) {
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001629 goto out_close;
1630 }
1631 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001632
Willy Tarreau590a0512018-09-05 11:56:48 +02001633 /* We want the accept date presented to the next stream to be the one
1634 * we have now, the handshake time to be null (since the next stream
1635 * is not delayed by a handshake), and the idle time to count since
1636 * right now.
1637 */
1638 sess->accept_date = date;
1639 sess->tv_accept = now;
1640 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001641 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001642
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001643 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001644 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001645 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001646 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001647 return h2s;
1648
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001649 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001650 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001651 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001652 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001653 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001654 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001655}
1656
Willy Tarreau751f2d02018-10-05 09:35:00 +02001657/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1658 * and returns it, or NULL in case of memory allocation error or if the highest
1659 * possible stream ID was reached.
1660 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001661static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001662{
1663 struct h2s *h2s = NULL;
1664
Willy Tarreau7838a792019-08-12 18:42:03 +02001665 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1666
Willy Tarreau86949782019-01-31 10:42:05 +01001667 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001668 goto out;
1669
Willy Tarreaua80dca82019-01-24 17:08:28 +01001670 if (h2_streams_left(h2c) < 1)
1671 goto out;
1672
Willy Tarreau751f2d02018-10-05 09:35:00 +02001673 /* Defer choosing the ID until we send the first message to create the stream */
1674 h2s = h2s_new(h2c, 0);
1675 if (!h2s)
1676 goto out;
1677
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001678 cs_attach_mux(cs, h2s, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001679 h2s->cs = cs;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001680 h2s->endp = cs->endp;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001681 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001682 h2c->nb_cs++;
1683
Willy Tarreau751f2d02018-10-05 09:35:00 +02001684 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001685 if (likely(h2s))
1686 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1687 else
1688 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001689 return h2s;
1690}
1691
Willy Tarreaube5b7152017-09-25 16:25:39 +02001692/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1693 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1694 * the various settings codes.
1695 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001696static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001697{
1698 struct buffer *res;
1699 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001700 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001701 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001702 int ret = 0;
1703
1704 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001705
1706 if (h2c_mux_busy(h2c, NULL)) {
1707 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001708 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001709 }
1710
Willy Tarreaube5b7152017-09-25 16:25:39 +02001711 chunk_init(&buf, buf_data, sizeof(buf_data));
1712 chunk_memcpy(&buf,
1713 "\x00\x00\x00" /* length : 0 for now */
1714 "\x04\x00" /* type : 4 (settings), flags : 0 */
1715 "\x00\x00\x00\x00", /* stream ID : 0 */
1716 9);
1717
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001718 if (h2c->flags & H2_CF_IS_BACK) {
1719 /* send settings_enable_push=0 */
1720 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1721 }
1722
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001723 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1724 * sent automatically unless disabled in the global config */
1725 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1726 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001727
Willy Tarreaube5b7152017-09-25 16:25:39 +02001728 if (h2_settings_header_table_size != 4096) {
1729 char str[6] = "\x00\x01"; /* header_table_size */
1730
1731 write_n32(str + 2, h2_settings_header_table_size);
1732 chunk_memcat(&buf, str, 6);
1733 }
1734
1735 if (h2_settings_initial_window_size != 65535) {
1736 char str[6] = "\x00\x04"; /* initial_window_size */
1737
1738 write_n32(str + 2, h2_settings_initial_window_size);
1739 chunk_memcat(&buf, str, 6);
1740 }
1741
1742 if (h2_settings_max_concurrent_streams != 0) {
1743 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1744
1745 /* Note: 0 means "unlimited" for haproxy's config but not for
1746 * the protocol, so never send this value!
1747 */
1748 write_n32(str + 2, h2_settings_max_concurrent_streams);
1749 chunk_memcat(&buf, str, 6);
1750 }
1751
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001752 mfs = h2_settings_max_frame_size;
1753 if (mfs > global.tune.bufsize)
1754 mfs = global.tune.bufsize;
1755
1756 if (!mfs)
1757 mfs = global.tune.bufsize;
1758
1759 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001760 char str[6] = "\x00\x05"; /* max_frame_size */
1761
1762 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1763 * match bufsize - rewrite size, but at the moment it seems
1764 * that clients don't take care of it.
1765 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001766 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001767 chunk_memcat(&buf, str, 6);
1768 }
1769
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001770 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001771
1772 res = br_tail(h2c->mbuf);
1773 retry:
1774 if (!h2_get_buf(h2c, res)) {
1775 h2c->flags |= H2_CF_MUX_MALLOC;
1776 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001777 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001778 }
1779
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001780 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001781 if (unlikely(ret <= 0)) {
1782 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001783 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1784 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001785 h2c->flags |= H2_CF_MUX_MFULL;
1786 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001787 }
1788 else {
1789 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001790 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001791 }
1792 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001793 out:
1794 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001795 return ret;
1796}
1797
Willy Tarreau52eed752017-09-22 15:05:09 +02001798/* Try to receive a connection preface, then upon success try to send our
1799 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1800 * missing data. It may return an error in h2c.
1801 */
1802static int h2c_frt_recv_preface(struct h2c *h2c)
1803{
1804 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001805 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001806
Willy Tarreau7838a792019-08-12 18:42:03 +02001807 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1808
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001809 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001810
1811 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001812 if (!ret1)
1813 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001814 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001815 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 +02001816 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001817 if (b_data(&h2c->dbuf) ||
1818 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1819 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001820 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001821 ret2 = 0;
1822 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001823 }
1824
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001825 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001826 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001827 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001828 out:
1829 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001830 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001831}
1832
Willy Tarreau01b44822018-10-03 14:26:37 +02001833/* Try to send a connection preface, then upon success try to send our
1834 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1835 * missing data. It may return an error in h2c.
1836 */
1837static int h2c_bck_send_preface(struct h2c *h2c)
1838{
1839 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001840 int ret = 0;
1841
1842 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001843
1844 if (h2c_mux_busy(h2c, NULL)) {
1845 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001846 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001847 }
1848
Willy Tarreaubcc45952019-05-26 10:05:50 +02001849 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001850 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001851 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001852 h2c->flags |= H2_CF_MUX_MALLOC;
1853 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001854 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001855 }
1856
1857 if (!b_data(res)) {
1858 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001859 ret = b_istput(res, ist(H2_CONN_PREFACE));
1860 if (unlikely(ret <= 0)) {
1861 if (!ret) {
1862 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1863 goto retry;
1864 h2c->flags |= H2_CF_MUX_MFULL;
1865 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001866 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001867 }
1868 else {
1869 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001870 ret = 0;
1871 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001872 }
1873 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001874 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001875 ret = h2c_send_settings(h2c);
1876 out:
1877 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1878 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001879}
1880
Willy Tarreau081d4722017-05-16 21:51:05 +02001881/* try to send a GOAWAY frame on the connection to report an error or a graceful
1882 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1883 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1884 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1885 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1886 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1887 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001888 * case, nor will it send one if settings were not sent (e.g. still waiting for
1889 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001890 */
1891static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1892{
1893 struct buffer *res;
1894 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001895 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001896
Willy Tarreau7838a792019-08-12 18:42:03 +02001897 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1898
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001899 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001900 ret = 1; // claim that it worked
1901 goto out;
1902 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001903
1904 if (h2c_mux_busy(h2c, h2s)) {
1905 if (h2s)
1906 h2s->flags |= H2_SF_BLK_MBUSY;
1907 else
1908 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001909 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001910 }
1911
Willy Tarreau9c218e72019-05-26 10:08:28 +02001912 /* len: 8, type: 7, flags: none, sid: 0 */
1913 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1914
1915 if (h2c->last_sid < 0)
1916 h2c->last_sid = h2c->max_id;
1917
1918 write_n32(str + 9, h2c->last_sid);
1919 write_n32(str + 13, h2c->errcode);
1920
Willy Tarreaubcc45952019-05-26 10:05:50 +02001921 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001922 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001923 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001924 h2c->flags |= H2_CF_MUX_MALLOC;
1925 if (h2s)
1926 h2s->flags |= H2_SF_BLK_MROOM;
1927 else
1928 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001929 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001930 }
1931
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001932 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001933 if (unlikely(ret <= 0)) {
1934 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001935 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1936 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001937 h2c->flags |= H2_CF_MUX_MFULL;
1938 if (h2s)
1939 h2s->flags |= H2_SF_BLK_MROOM;
1940 else
1941 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001942 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001943 }
1944 else {
1945 /* we cannot report this error using GOAWAY, so we mark
1946 * it and claim a success.
1947 */
1948 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1949 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001950 ret = 1;
1951 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001952 }
1953 }
1954 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001955
1956 /* some codes are not for real errors, just attempts to close cleanly */
1957 switch (h2c->errcode) {
1958 case H2_ERR_NO_ERROR:
1959 case H2_ERR_ENHANCE_YOUR_CALM:
1960 case H2_ERR_REFUSED_STREAM:
1961 case H2_ERR_CANCEL:
1962 break;
1963 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001964 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001965 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001966 out:
1967 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001968 return ret;
1969}
1970
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001971/* Try to send an RST_STREAM frame on the connection for the indicated stream
1972 * during mux operations. This stream must be valid and cannot be closed
1973 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1974 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1975 * not yet.
1976 *
1977 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1978 * to write the message, it subscribes the stream to future notifications.
1979 */
1980static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1981{
1982 struct buffer *res;
1983 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001984 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001985
Willy Tarreau7838a792019-08-12 18:42:03 +02001986 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1987
1988 if (!h2s || h2s->st == H2_SS_CLOSED) {
1989 ret = 1;
1990 goto out;
1991 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001992
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001993 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1994 * RST_STREAM in response to a RST_STREAM frame.
1995 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001996 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001997 ret = 1;
1998 goto ignore;
1999 }
2000
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002001 if (h2c_mux_busy(h2c, h2s)) {
2002 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002003 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002004 }
2005
Willy Tarreau9c218e72019-05-26 10:08:28 +02002006 /* len: 4, type: 3, flags: none */
2007 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2008 write_n32(str + 5, h2s->id);
2009 write_n32(str + 9, h2s->errcode);
2010
Willy Tarreaubcc45952019-05-26 10:05:50 +02002011 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002012 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002013 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002014 h2c->flags |= H2_CF_MUX_MALLOC;
2015 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002016 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002017 }
2018
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002019 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002020 if (unlikely(ret <= 0)) {
2021 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002022 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2023 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002024 h2c->flags |= H2_CF_MUX_MFULL;
2025 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002026 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002027 }
2028 else {
2029 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002030 ret = 0;
2031 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002032 }
2033 }
2034
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002035 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002036 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002037 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002038 out:
2039 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002040 return ret;
2041}
2042
2043/* Try to send an RST_STREAM frame on the connection for the stream being
2044 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01002045 * error code, even if the stream is one of the dummy ones, and will update
2046 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002047 *
2048 * Returns > 0 on success or zero if nothing was done. In case of lack of room
2049 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08002050 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002051 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02002052 */
2053static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
2054{
2055 struct buffer *res;
2056 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002057 int ret = 0;
2058
2059 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002060
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002061 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
2062 * RST_STREAM in response to a RST_STREAM frame.
2063 */
2064 if (h2c->dft == H2_FT_RST_STREAM) {
2065 ret = 1;
2066 goto ignore;
2067 }
2068
Willy Tarreau27a84c92017-10-17 08:10:17 +02002069 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002070 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002071 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002072 }
2073
Willy Tarreau9c218e72019-05-26 10:08:28 +02002074 /* len: 4, type: 3, flags: none */
2075 memcpy(str, "\x00\x00\x04\x03\x00", 5);
2076
2077 write_n32(str + 5, h2c->dsi);
2078 write_n32(str + 9, h2s->errcode);
2079
Willy Tarreaubcc45952019-05-26 10:05:50 +02002080 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002081 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002082 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002083 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002084 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002085 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002086 }
2087
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002088 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002089 if (unlikely(ret <= 0)) {
2090 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002091 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2092 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002093 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002094 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002095 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002096 }
2097 else {
2098 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002099 ret = 0;
2100 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002101 }
2102 }
2103
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002104 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002105 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002106 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002107 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002108 }
2109
Willy Tarreau7838a792019-08-12 18:42:03 +02002110 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002111 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002112 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002113 return ret;
2114}
2115
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002116/* try to send an empty DATA frame with the ES flag set to notify about the
2117 * end of stream and match a shutdown(write). If an ES was already sent as
2118 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2119 * on success or zero if nothing was done. In case of lack of room to write the
2120 * message, it subscribes the requesting stream to future notifications.
2121 */
2122static int h2_send_empty_data_es(struct h2s *h2s)
2123{
2124 struct h2c *h2c = h2s->h2c;
2125 struct buffer *res;
2126 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002127 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002128
Willy Tarreau7838a792019-08-12 18:42:03 +02002129 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2130
2131 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2132 ret = 1;
2133 goto out;
2134 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002135
2136 if (h2c_mux_busy(h2c, h2s)) {
2137 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002138 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002139 }
2140
Willy Tarreau9c218e72019-05-26 10:08:28 +02002141 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2142 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2143 write_n32(str + 5, h2s->id);
2144
Willy Tarreaubcc45952019-05-26 10:05:50 +02002145 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002146 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002147 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002148 h2c->flags |= H2_CF_MUX_MALLOC;
2149 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002150 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002151 }
2152
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002153 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002154 if (likely(ret > 0)) {
2155 h2s->flags |= H2_SF_ES_SENT;
2156 }
2157 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002158 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2159 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002160 h2c->flags |= H2_CF_MUX_MFULL;
2161 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002162 }
2163 else {
2164 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002165 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002166 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002167 out:
2168 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002169 return ret;
2170}
2171
Christopher Fauletb041b232022-03-24 10:27:02 +01002172/* wake a specific stream and assign its conn_stream some CS_EP_* flags among
2173 * CS_EP_ERR_PENDING and CS_EP_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002174 * is automatically updated accordingly. If the stream is orphaned, it is
2175 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002176 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002177static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002178{
Willy Tarreau7838a792019-08-12 18:42:03 +02002179 struct h2c *h2c = h2s->h2c;
2180
2181 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2182
Christopher Fauletf02ca002019-03-07 16:21:34 +01002183 if (!h2s->cs) {
2184 /* this stream was already orphaned */
2185 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002186 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002187 return;
2188 }
2189
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002190 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002191 if (h2s->st == H2_SS_OPEN)
2192 h2s->st = H2_SS_HREM;
2193 else if (h2s->st == H2_SS_HLOC)
2194 h2s_close(h2s);
2195 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002196
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002197 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2198 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Christopher Fauletb041b232022-03-24 10:27:02 +01002199 h2s->endp->flags |= CS_EP_ERR_PENDING;
2200 if (h2s->endp->flags & CS_EP_EOS)
2201 h2s->endp->flags |= CS_EP_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002202
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002203 if (h2s->st < H2_SS_ERROR)
2204 h2s->st = H2_SS_ERROR;
2205 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002206
2207 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002208 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002209}
2210
2211/* wake the streams attached to the connection, whose id is greater than <last>
2212 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002213 */
Willy Tarreau23482912019-05-07 15:23:14 +02002214static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002215{
2216 struct eb32_node *node;
2217 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002218
Willy Tarreau7838a792019-08-12 18:42:03 +02002219 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2220
Christopher Fauletf02ca002019-03-07 16:21:34 +01002221 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002222 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2223 while (node) {
2224 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002225 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002226 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002227 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002228
Christopher Fauletf02ca002019-03-07 16:21:34 +01002229 /* Wake all streams with unassigned ID (ID == 0) */
2230 node = eb32_lookup(&h2c->streams_by_id, 0);
2231 while (node) {
2232 h2s = container_of(node, struct h2s, by_id);
2233 if (h2s->id > 0)
2234 break;
2235 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002236 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002237 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002238
2239 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002240}
2241
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002242/* Wake up all blocked streams whose window size has become positive after the
2243 * mux's initial window was adjusted. This should be done after having processed
2244 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002245 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002246static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002247{
2248 struct h2s *h2s;
2249 struct eb32_node *node;
2250
Willy Tarreau7838a792019-08-12 18:42:03 +02002251 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2252
Willy Tarreau3421aba2017-07-27 15:41:03 +02002253 node = eb32_first(&h2c->streams_by_id);
2254 while (node) {
2255 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002256 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002257 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002258 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002259 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2260 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002261 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002262 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002263 node = eb32_next(node);
2264 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002265
2266 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002267}
2268
2269/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2270 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002271 * return an error in h2c. The caller must have already verified frame length
2272 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002273 */
2274static int h2c_handle_settings(struct h2c *h2c)
2275{
2276 unsigned int offset;
2277 int error;
2278
Willy Tarreau7838a792019-08-12 18:42:03 +02002279 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2280
Willy Tarreau3421aba2017-07-27 15:41:03 +02002281 if (h2c->dff & H2_F_SETTINGS_ACK) {
2282 if (h2c->dfl) {
2283 error = H2_ERR_FRAME_SIZE_ERROR;
2284 goto fail;
2285 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002286 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002287 }
2288
Willy Tarreau3421aba2017-07-27 15:41:03 +02002289 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002290 if (b_data(&h2c->dbuf) < h2c->dfl) {
2291 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002292 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002293 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002294
2295 /* parse the frame */
2296 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002297 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2298 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002299
2300 switch (type) {
2301 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2302 /* we need to update all existing streams with the
2303 * difference from the previous iws.
2304 */
2305 if (arg < 0) { // RFC7540#6.5.2
2306 error = H2_ERR_FLOW_CONTROL_ERROR;
2307 goto fail;
2308 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002309 h2c->miw = arg;
2310 break;
2311 case H2_SETTINGS_MAX_FRAME_SIZE:
2312 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002313 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 +02002314 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002315 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002316 goto fail;
2317 }
2318 h2c->mfs = arg;
2319 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002320 case H2_SETTINGS_HEADER_TABLE_SIZE:
2321 h2c->flags |= H2_CF_SHTS_UPDATED;
2322 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002323 case H2_SETTINGS_ENABLE_PUSH:
2324 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002325 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002326 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002327 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002328 goto fail;
2329 }
2330 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002331 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2332 if (h2c->flags & H2_CF_IS_BACK) {
2333 /* the limit is only for the backend; for the frontend it is our limit */
2334 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2335 arg = h2_settings_max_concurrent_streams;
2336 h2c->streams_limit = arg;
2337 }
2338 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002339 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002340 if (arg == 1)
2341 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002342 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002343 }
2344 }
2345
2346 /* need to ACK this frame now */
2347 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002348 done:
2349 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002350 return 1;
2351 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002352 if (!(h2c->flags & H2_CF_IS_BACK))
2353 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002354 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002355 out0:
2356 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 +02002357 return 0;
2358}
2359
2360/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2361 * success or one of the h2_status values.
2362 */
2363static int h2c_ack_settings(struct h2c *h2c)
2364{
2365 struct buffer *res;
2366 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002367 int ret = 0;
2368
2369 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002370
2371 if (h2c_mux_busy(h2c, NULL)) {
2372 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002373 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002374 }
2375
Willy Tarreau9c218e72019-05-26 10:08:28 +02002376 memcpy(str,
2377 "\x00\x00\x00" /* length : 0 (no data) */
2378 "\x04" "\x01" /* type : 4, flags : ACK */
2379 "\x00\x00\x00\x00" /* stream ID */, 9);
2380
Willy Tarreaubcc45952019-05-26 10:05:50 +02002381 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002382 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002383 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002384 h2c->flags |= H2_CF_MUX_MALLOC;
2385 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002386 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002387 }
2388
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002389 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002390 if (unlikely(ret <= 0)) {
2391 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002392 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2393 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002394 h2c->flags |= H2_CF_MUX_MFULL;
2395 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002396 }
2397 else {
2398 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002399 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002400 }
2401 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002402 out:
2403 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002404 return ret;
2405}
2406
Willy Tarreaucf68c782017-10-10 17:11:41 +02002407/* processes a PING frame and schedules an ACK if needed. The caller must pass
2408 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002409 * missing data. The caller must have already verified frame length
2410 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002411 */
2412static int h2c_handle_ping(struct h2c *h2c)
2413{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002414 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002415 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002416 h2c->st0 = H2_CS_FRAME_A;
2417 return 1;
2418}
2419
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002420/* Try to send a window update for stream id <sid> and value <increment>.
2421 * Returns > 0 on success or zero on missing room or failure. It may return an
2422 * error in h2c.
2423 */
2424static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2425{
2426 struct buffer *res;
2427 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002428 int ret = 0;
2429
2430 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002431
2432 if (h2c_mux_busy(h2c, NULL)) {
2433 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002434 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002435 }
2436
Willy Tarreau9c218e72019-05-26 10:08:28 +02002437 /* length: 4, type: 8, flags: none */
2438 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2439 write_n32(str + 5, sid);
2440 write_n32(str + 9, increment);
2441
Willy Tarreaubcc45952019-05-26 10:05:50 +02002442 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002443 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002444 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002445 h2c->flags |= H2_CF_MUX_MALLOC;
2446 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002447 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002448 }
2449
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002450 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002451 if (unlikely(ret <= 0)) {
2452 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002453 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2454 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002455 h2c->flags |= H2_CF_MUX_MFULL;
2456 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002457 }
2458 else {
2459 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002460 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002461 }
2462 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002463 out:
2464 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002465 return ret;
2466}
2467
2468/* try to send pending window update for the connection. It's safe to call it
2469 * with no pending updates. Returns > 0 on success or zero on missing room or
2470 * failure. It may return an error in h2c.
2471 */
2472static int h2c_send_conn_wu(struct h2c *h2c)
2473{
2474 int ret = 1;
2475
Willy Tarreau7838a792019-08-12 18:42:03 +02002476 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2477
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002478 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002479 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002480
Willy Tarreau97aaa672018-12-23 09:49:04 +01002481 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2482 /* increase the advertised connection window to 2G on
2483 * first update.
2484 */
2485 h2c->flags |= H2_CF_WINDOW_OPENED;
2486 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2487 }
2488
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002489 /* send WU for the connection */
2490 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2491 if (ret > 0)
2492 h2c->rcvd_c = 0;
2493
Willy Tarreau7838a792019-08-12 18:42:03 +02002494 out:
2495 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002496 return ret;
2497}
2498
2499/* try to send pending window update for the current dmux stream. It's safe to
2500 * call it with no pending updates. Returns > 0 on success or zero on missing
2501 * room or failure. It may return an error in h2c.
2502 */
2503static int h2c_send_strm_wu(struct h2c *h2c)
2504{
2505 int ret = 1;
2506
Willy Tarreau7838a792019-08-12 18:42:03 +02002507 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2508
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002509 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002510 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002511
2512 /* send WU for the stream */
2513 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2514 if (ret > 0)
2515 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002516 out:
2517 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002518 return ret;
2519}
2520
Willy Tarreaucf68c782017-10-10 17:11:41 +02002521/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2522 * success, 0 on missing data or one of the h2_status values.
2523 */
2524static int h2c_ack_ping(struct h2c *h2c)
2525{
2526 struct buffer *res;
2527 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002528 int ret = 0;
2529
2530 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002531
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002532 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002533 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002534
2535 if (h2c_mux_busy(h2c, NULL)) {
2536 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002537 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002538 }
2539
Willy Tarreaucf68c782017-10-10 17:11:41 +02002540 memcpy(str,
2541 "\x00\x00\x08" /* length : 8 (same payload) */
2542 "\x06" "\x01" /* type : 6, flags : ACK */
2543 "\x00\x00\x00\x00" /* stream ID */, 9);
2544
2545 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002546 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002547
Willy Tarreau9c218e72019-05-26 10:08:28 +02002548 res = br_tail(h2c->mbuf);
2549 retry:
2550 if (!h2_get_buf(h2c, res)) {
2551 h2c->flags |= H2_CF_MUX_MALLOC;
2552 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002553 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002554 }
2555
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002556 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002557 if (unlikely(ret <= 0)) {
2558 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002559 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2560 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002561 h2c->flags |= H2_CF_MUX_MFULL;
2562 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002563 }
2564 else {
2565 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002566 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002567 }
2568 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002569 out:
2570 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002571 return ret;
2572}
2573
Willy Tarreau26f95952017-07-27 17:18:30 +02002574/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2575 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002576 * h2c or h2s. The caller must have already verified frame length and stream ID
2577 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002578 */
2579static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2580{
2581 int32_t inc;
2582 int error;
2583
Willy Tarreau7838a792019-08-12 18:42:03 +02002584 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2585
Willy Tarreau26f95952017-07-27 17:18:30 +02002586 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002587 if (b_data(&h2c->dbuf) < h2c->dfl) {
2588 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002589 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002590 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002591
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002592 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002593
2594 if (h2c->dsi != 0) {
2595 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002596
2597 /* it's not an error to receive WU on a closed stream */
2598 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002599 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002600
2601 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002602 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 +02002603 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002604 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002605 goto strm_err;
2606 }
2607
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002608 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002609 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 +02002610 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002611 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002612 goto strm_err;
2613 }
2614
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002615 h2s->sws += inc;
2616 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002617 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002618 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002619 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2620 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002621 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002622 }
2623 }
2624 else {
2625 /* connection window update */
2626 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002627 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002628 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002629 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002630 goto conn_err;
2631 }
2632
2633 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2634 error = H2_ERR_FLOW_CONTROL_ERROR;
2635 goto conn_err;
2636 }
2637
2638 h2c->mws += inc;
2639 }
2640
Willy Tarreau7838a792019-08-12 18:42:03 +02002641 done:
2642 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002643 return 1;
2644
2645 conn_err:
2646 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002647 out0:
2648 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 +02002649 return 0;
2650
2651 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002652 h2s_error(h2s, error);
2653 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002654 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002655 return 0;
2656}
2657
Willy Tarreaue96b0922017-10-30 00:28:29 +01002658/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002659 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2660 * have already verified frame length and stream ID validity. Described in
2661 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002662 */
2663static int h2c_handle_goaway(struct h2c *h2c)
2664{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002665 int last;
2666
Willy Tarreau7838a792019-08-12 18:42:03 +02002667 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002668 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002669 if (b_data(&h2c->dbuf) < h2c->dfl) {
2670 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002671 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002672 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002673 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002674
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002675 last = h2_get_n32(&h2c->dbuf, 0);
2676 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002677 if (h2c->last_sid < 0)
2678 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002679 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002680 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002681 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002682}
2683
Willy Tarreau92153fc2017-12-03 19:46:19 +01002684/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002685 * invalid. Returns > 0 on success or zero on missing data. It may return an
2686 * error in h2c. The caller must have already verified frame length and stream
2687 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002688 */
2689static int h2c_handle_priority(struct h2c *h2c)
2690{
Willy Tarreau7838a792019-08-12 18:42:03 +02002691 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2692
Willy Tarreau92153fc2017-12-03 19:46:19 +01002693 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002694 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002695 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002696 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002697 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002698 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002699
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002700 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002701 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002702 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002703 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002704 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002705 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002706 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002707 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002708 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002709 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002710}
2711
Willy Tarreaucd234e92017-08-18 10:59:39 +02002712/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002713 * Returns > 0 on success or zero on missing data. The caller must have already
2714 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002715 */
2716static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2717{
Willy Tarreau7838a792019-08-12 18:42:03 +02002718 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2719
Willy Tarreaucd234e92017-08-18 10:59:39 +02002720 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002721 if (b_data(&h2c->dbuf) < h2c->dfl) {
2722 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 +02002723 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002724 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002725 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002726
2727 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002728 if (h2s->st == H2_SS_CLOSED) {
2729 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 +02002730 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002731 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002732
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002733 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002734 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002735
2736 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002737 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002738 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002739 }
2740
2741 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002742 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002743 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002744}
2745
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002746/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2747 * It may return an error in h2c or h2s. The caller must consider that the
2748 * return value is the new h2s in case one was allocated (most common case).
2749 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002750 * errors here are reported as connection errors since it's impossible to
2751 * recover from such errors after the compression context has been altered.
2752 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002753static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002754{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002755 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002756 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002757 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002758 int error;
2759
Willy Tarreau7838a792019-08-12 18:42:03 +02002760 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2761
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002762 if (!b_size(&h2c->dbuf)) {
2763 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002764 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002765 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002766
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002767 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2768 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002769 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002770 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002771
2772 /* now either the frame is complete or the buffer is complete */
2773 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002774 /* The stream exists/existed, this must be a trailers frame */
2775 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002776 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002777 /* unrecoverable error ? */
2778 if (h2c->st0 >= H2_CS_ERROR)
2779 goto out;
2780
Christopher Faulet485da0b2021-10-08 08:56:00 +02002781 if (error == 0) {
2782 /* Demux not blocked because of the stream, it is an incomplete frame */
2783 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2784 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002785 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002786 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002787
2788 if (error < 0) {
2789 /* Failed to decode this frame (e.g. too large request)
2790 * but the HPACK decompressor is still synchronized.
2791 */
2792 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2793 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002794 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002795 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002796 goto done;
2797 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002798 /* the connection was already killed by an RST, let's consume
2799 * the data and send another RST.
2800 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002801 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002802 h2s = (struct h2s*)h2_error_stream;
2803 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002804 }
2805 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2806 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2807 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002808 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002809 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002810 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002811 goto conn_err;
2812 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002813 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2814 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002815
Amaury Denoyelle74162742020-12-11 17:53:05 +01002816 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002817
Willy Tarreau25919232019-01-03 14:48:18 +01002818 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002819 if (h2c->st0 >= H2_CS_ERROR)
2820 goto out;
2821
Willy Tarreau25919232019-01-03 14:48:18 +01002822 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002823 if (error == 0) {
2824 /* Demux not blocked because of the stream, it is an incomplete frame */
2825 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2826 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002827 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002828 }
Willy Tarreau25919232019-01-03 14:48:18 +01002829
2830 /* Failed to decode this stream (e.g. too large request)
2831 * but the HPACK decompressor is still synchronized.
2832 */
2833 h2s = (struct h2s*)h2_error_stream;
2834 goto send_rst;
2835 }
2836
Willy Tarreau29268e92021-06-17 08:29:14 +02002837 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2838
Willy Tarreau22de8d32018-09-05 19:55:58 +02002839 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002840 * positively from h2c_frt_stream_new(), the stream will report the error,
2841 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002842 *
2843 * Xfer the rxbuf to the stream. On success, the new stream owns the
2844 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002845 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002846 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002847 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002848 h2s = (struct h2s*)h2_refused_stream;
2849 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002850 }
2851
2852 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002853 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002854 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002855
Willy Tarreau88d138e2019-01-02 19:38:14 +01002856 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002857 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002858 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002859
2860 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002861 if (h2s->st == H2_SS_OPEN)
2862 h2s->st = H2_SS_HREM;
2863 else
2864 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002865 }
2866
Willy Tarreau3a429f02019-01-03 11:41:50 +01002867 /* update the max stream ID if the request is being processed */
2868 if (h2s->id > h2c->max_id)
2869 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002870
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002871 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002872
2873 conn_err:
2874 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002875 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002876
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002877 out:
2878 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002879 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 +01002880 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002881
2882 send_rst:
2883 /* make the demux send an RST for the current stream. We may only
2884 * do this if we're certain that the HEADERS frame was properly
2885 * decompressed so that the HPACK decoder is still kept up to date.
2886 */
2887 h2_release_buf(h2c, &rxbuf);
2888 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002889
Willy Tarreau022e5e52020-09-10 09:33:15 +02002890 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 +02002891 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002892 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002893}
2894
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002895/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2896 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2897 * errors here are reported as connection errors since it's impossible to
2898 * recover from such errors after the compression context has been altered.
2899 */
2900static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2901{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002902 struct buffer rxbuf = BUF_NULL;
2903 unsigned long long body_len = 0;
2904 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002905 int error;
2906
Willy Tarreau7838a792019-08-12 18:42:03 +02002907 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2908
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002909 if (!b_size(&h2c->dbuf)) {
2910 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002911 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002912 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002913
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002914 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2915 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002916 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002917 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002918
Christopher Faulet6884aa32019-09-23 15:28:20 +02002919 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002920 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002921 }
2922 else {
2923 /* the connection was already killed by an RST, let's consume
2924 * the data and send another RST.
2925 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002926 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002927 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002928 h2c->st0 = H2_CS_FRAME_E;
2929 goto send_rst;
2930 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002931
Willy Tarreau25919232019-01-03 14:48:18 +01002932 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002933 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002934 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002935
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002936 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2937 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002938 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 +01002939 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2940 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002941 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002942 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002943 }
2944
Willy Tarreau25919232019-01-03 14:48:18 +01002945 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002946 if (error == 0) {
2947 /* Demux not blocked because of the stream, it is an incomplete frame */
2948 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2949 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002950 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002951 }
Willy Tarreau25919232019-01-03 14:48:18 +01002952
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002953 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002954 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 +01002955 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002956 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002957 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002958 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002959 }
2960
Christopher Fauletfa922f02019-05-07 10:55:17 +02002961 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002962 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002963
Christopher Fauletb041b232022-03-24 10:27:02 +01002964 if (h2s->cs && (h2s->endp->flags & CS_EP_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002965 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002966 else if (h2s->flags & H2_SF_ES_RCVD) {
2967 if (h2s->st == H2_SS_OPEN)
2968 h2s->st = H2_SS_HREM;
2969 else if (h2s->st == H2_SS_HLOC)
2970 h2s_close(h2s);
2971 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002972
Christopher Fauletf95f8762021-01-22 11:59:07 +01002973 /* Unblock busy server h2s waiting for the response headers to validate
2974 * the tunnel establishment or the end of the response of an oborted
2975 * tunnel
2976 */
2977 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2978 (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)) {
2979 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2980 h2s->flags &= ~H2_SF_BLK_MBUSY;
2981 }
2982
Willy Tarreau9abb3172021-06-16 18:32:42 +02002983 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 +02002984 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002985 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002986 fail:
2987 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2988 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002989
2990 send_rst:
2991 /* make the demux send an RST for the current stream. We may only
2992 * do this if we're certain that the HEADERS frame was properly
2993 * decompressed so that the HPACK decoder is still kept up to date.
2994 */
2995 h2_release_buf(h2c, &rxbuf);
2996 h2c->st0 = H2_CS_FRAME_E;
2997
Willy Tarreau022e5e52020-09-10 09:33:15 +02002998 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 +02002999 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
3000 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003001}
3002
Willy Tarreau454f9052017-10-26 19:40:35 +02003003/* processes a DATA frame. Returns > 0 on success or zero on missing data.
3004 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
3005 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003006static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02003007{
3008 int error;
3009
Willy Tarreau7838a792019-08-12 18:42:03 +02003010 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3011
Willy Tarreau454f9052017-10-26 19:40:35 +02003012 /* note that empty DATA frames are perfectly valid and sometimes used
3013 * to signal an end of stream (with the ES flag).
3014 */
3015
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003016 if (!b_size(&h2c->dbuf) && h2c->dfl) {
3017 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003018 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003019 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003020
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003021 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
3022 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02003023 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003024 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003025
3026 /* now either the frame is complete or the buffer is complete */
3027
Willy Tarreau454f9052017-10-26 19:40:35 +02003028 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
3029 /* RFC7540#6.1 */
3030 error = H2_ERR_STREAM_CLOSED;
3031 goto strm_err;
3032 }
3033
Christopher Faulet4f09ec82019-06-19 09:25:58 +02003034 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01003035 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003036 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 +01003037 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003038 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003039 goto strm_err;
3040 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003041 if (!(h2c->flags & H2_CF_IS_BACK) &&
3042 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
3043 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
3044 /* a tunnel attempt was aborted but the client still try to send some raw data.
3045 * Thus the stream is closed with the CANCEL error. Here we take care it is not
3046 * an empty DATA Frame with the ES flag. The error is only handled if ES was
3047 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05003048 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01003049 */
3050 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3051 error = H2_ERR_CANCEL;
3052 goto strm_err;
3053 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01003054
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003055 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02003056 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01003057
Willy Tarreau454f9052017-10-26 19:40:35 +02003058 /* call the upper layers to process the frame, then let the upper layer
3059 * notify the stream about any change.
3060 */
3061 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02003062 /* The upper layer has already closed, this may happen on
3063 * 4xx/redirects during POST, or when receiving a response
3064 * from an H2 server after the client has aborted.
3065 */
3066 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02003067 goto strm_err;
3068 }
3069
Willy Tarreau8f650c32017-11-21 19:36:21 +01003070 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003071 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01003072
Willy Tarreau721c9742017-11-07 11:05:42 +01003073 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02003074 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01003075 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02003076 }
3077
3078 /* check for completion : the callee will change this to FRAME_A or
3079 * FRAME_H once done.
3080 */
3081 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02003082 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02003083
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003084 /* last frame */
3085 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02003086 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01003087 if (h2s->st == H2_SS_OPEN)
3088 h2s->st = H2_SS_HREM;
3089 else
3090 h2s_close(h2s);
3091
Willy Tarreau1915ca22019-01-24 11:49:37 +01003092 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
3093 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003094 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 +01003095 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02003096 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003097 goto strm_err;
3098 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003099 }
3100
Christopher Fauletf95f8762021-01-22 11:59:07 +01003101 /* Unblock busy server h2s waiting for the end of the response for an
3102 * aborted tunnel
3103 */
3104 if ((h2c->flags & H2_CF_IS_BACK) &&
3105 (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)) {
3106 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3107 h2s->flags &= ~H2_SF_BLK_MBUSY;
3108 }
3109
Willy Tarreau7838a792019-08-12 18:42:03 +02003110 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003111 return 1;
3112
Willy Tarreau454f9052017-10-26 19:40:35 +02003113 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003114 h2s_error(h2s, error);
3115 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003116 fail:
3117 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 +02003118 return 0;
3119}
3120
Willy Tarreau63864812019-08-07 14:25:20 +02003121/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3122 * valid for the current stream state. This is needed only after parsing the
3123 * frame header but in practice it can be performed at any time during
3124 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3125 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3126 */
3127static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3128{
Willy Tarreau7838a792019-08-12 18:42:03 +02003129 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3130
Willy Tarreau63864812019-08-07 14:25:20 +02003131 if (h2s->st == H2_SS_IDLE &&
3132 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3133 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3134 * this state MUST be treated as a connection error
3135 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003136 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 +02003137 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003138 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003139 /* only log if no other stream can report the error */
3140 sess_log(h2c->conn->owner);
3141 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003142 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003143 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 +02003144 return 0;
3145 }
3146
Willy Tarreau57a18162019-11-24 14:57:53 +01003147 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3148 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003149 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 +01003150 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003151 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003152 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3153 return 0;
3154 }
3155
Willy Tarreau63864812019-08-07 14:25:20 +02003156 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3157 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3158 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3159 * this state MUST be treated as a stream error.
3160 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3161 * PUSH_PROMISE/CONTINUATION cause connection errors.
3162 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003163 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003164 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 +02003165 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003166 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003167 }
3168 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003169 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003170 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003171 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 +02003172 return 0;
3173 }
3174
3175 /* Below the management of frames received in closed state is a
3176 * bit hackish because the spec makes strong differences between
3177 * streams closed by receiving RST, sending RST, and seeing ES
3178 * in both directions. In addition to this, the creation of a
3179 * new stream reusing the identifier of a closed one will be
3180 * detected here. Given that we cannot keep track of all closed
3181 * streams forever, we consider that unknown closed streams were
3182 * closed on RST received, which allows us to respond with an
3183 * RST without breaking the connection (eg: to abort a transfer).
3184 * Some frames have to be silently ignored as well.
3185 */
3186 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3187 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3188 /* #5.1.1: The identifier of a newly
3189 * established stream MUST be numerically
3190 * greater than all streams that the initiating
3191 * endpoint has opened or reserved. This
3192 * governs streams that are opened using a
3193 * HEADERS frame and streams that are reserved
3194 * using PUSH_PROMISE. An endpoint that
3195 * receives an unexpected stream identifier
3196 * MUST respond with a connection error.
3197 */
3198 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003199 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 +02003200 return 0;
3201 }
3202
Willy Tarreau4c08f122019-09-26 08:47:15 +02003203 if (h2s->flags & H2_SF_RST_RCVD &&
3204 !(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 +02003205 /* RFC7540#5.1:closed: an endpoint that
3206 * receives any frame other than PRIORITY after
3207 * receiving a RST_STREAM MUST treat that as a
3208 * stream error of type STREAM_CLOSED.
3209 *
3210 * Note that old streams fall into this category
3211 * and will lead to an RST being sent.
3212 *
3213 * However, we cannot generalize this to all frame types. Those
3214 * carrying compression state must still be processed before
3215 * being dropped or we'll desynchronize the decoder. This can
3216 * happen with request trailers received after sending an
3217 * RST_STREAM, or with header/trailers responses received after
3218 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003219 *
3220 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003221 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003222 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003223 */
3224 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3225 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003226 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 +02003227 return 0;
3228 }
3229
3230 /* RFC7540#5.1:closed: if this state is reached as a
3231 * result of sending a RST_STREAM frame, the peer that
3232 * receives the RST_STREAM might have already sent
3233 * frames on the stream that cannot be withdrawn. An
3234 * endpoint MUST ignore frames that it receives on
3235 * closed streams after it has sent a RST_STREAM
3236 * frame. An endpoint MAY choose to limit the period
3237 * over which it ignores frames and treat frames that
3238 * arrive after this time as being in error.
3239 */
3240 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3241 /* RFC7540#5.1:closed: any frame other than
3242 * PRIO/WU/RST in this state MUST be treated as
3243 * a connection error
3244 */
3245 if (h2c->dft != H2_FT_RST_STREAM &&
3246 h2c->dft != H2_FT_PRIORITY &&
3247 h2c->dft != H2_FT_WINDOW_UPDATE) {
3248 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003249 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 +02003250 return 0;
3251 }
3252 }
3253 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003254 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003255 return 1;
3256}
3257
Willy Tarreaubc933932017-10-09 16:21:43 +02003258/* process Rx frames to be demultiplexed */
3259static void h2_process_demux(struct h2c *h2c)
3260{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003261 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003262 struct h2_fh hdr;
3263 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003264 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003265
Willy Tarreau7838a792019-08-12 18:42:03 +02003266 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3267
Willy Tarreau081d4722017-05-16 21:51:05 +02003268 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003269 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003270
3271 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3272 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003273 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003274 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003275 goto out;
3276
Willy Tarreau52eed752017-09-22 15:05:09 +02003277 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3278 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003279 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003280 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003281 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003282 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003283 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003284 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003285 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003286 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003287 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003288 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003289
3290 h2c->max_id = 0;
3291 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003292 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003293 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003294
3295 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003296 /* ensure that what is pending is a valid SETTINGS frame
3297 * without an ACK.
3298 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003299 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 +02003300 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003301 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003302 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003303 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003304 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 +02003305 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003306 if (!(h2c->flags & H2_CF_IS_BACK))
3307 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003308 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003309 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003310 }
3311
3312 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3313 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003314 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 +02003315 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3316 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003317 if (!(h2c->flags & H2_CF_IS_BACK))
3318 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003319 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003320 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003321 }
3322
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003323 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003324 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003325 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 +02003326 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3327 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003328 if (!(h2c->flags & H2_CF_IS_BACK))
3329 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003330 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003331 }
3332
Willy Tarreau3bf69182018-12-21 15:34:50 +01003333 /* that's OK, switch to FRAME_P to process it. This is
3334 * a SETTINGS frame whose header has already been
3335 * deleted above.
3336 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003337 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003338 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003339 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003340 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003341 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003342
3343 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003344 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003345 int ret = 0;
3346
Willy Tarreau7838a792019-08-12 18:42:03 +02003347 if (!b_data(&h2c->dbuf)) {
3348 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003349 h2c->flags |= H2_CF_DEM_SHORT_READ;
3350 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003351 }
3352
3353 if (h2c->st0 >= H2_CS_ERROR) {
3354 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003355 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003356 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003357
3358 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003359 h2c->rcvd_s = 0;
3360
Willy Tarreau7838a792019-08-12 18:42:03 +02003361 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003362 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3363 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003364 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003365 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003366
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003367 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003368 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 +02003369 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003370 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003371 /* only log if no other stream can report the error */
3372 sess_log(h2c->conn->owner);
3373 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003374 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003375 break;
3376 }
3377
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003378 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003379 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3380 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3381 * we read the pad length and drop it from the remaining
3382 * payload (one byte + the 9 remaining ones = 10 total
3383 * removed), so we have a frame payload starting after the
3384 * pad len. Flow controlled frames (DATA) also count the
3385 * padlen in the flow control, so it must be adjusted.
3386 */
3387 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003388 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 +01003389 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003390 if (!(h2c->flags & H2_CF_IS_BACK))
3391 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003392 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003393 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003394 }
3395 hdr.len--;
3396
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003397 if (b_data(&h2c->dbuf) < 10) {
3398 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003399 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003400 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003401
3402 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3403
3404 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003405 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 +01003406 /* RFC7540#6.1 : pad length = length of
3407 * frame payload or greater => error.
3408 */
3409 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003410 if (!(h2c->flags & H2_CF_IS_BACK))
3411 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003412 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003413 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003414 }
3415
3416 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3417 h2c->rcvd_c++;
3418 h2c->rcvd_s++;
3419 }
3420 b_del(&h2c->dbuf, 1);
3421 }
3422 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003423
3424 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003425 h2c->dfl = hdr.len;
3426 h2c->dsi = hdr.sid;
3427 h2c->dft = hdr.ft;
3428 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003429 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003430 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 +02003431 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003432
3433 /* check for minimum basic frame format validity */
3434 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3435 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003436 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 +01003437 h2c_error(h2c, ret);
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 Tarreau54f46e52019-01-30 15:11:03 +01003442 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003443
3444 /* transition to HEADERS frame ends the keep-alive idle
3445 * timer and starts the http-request idle delay.
3446 */
3447 if (hdr.ft == H2_FT_HEADERS)
3448 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003449 }
3450
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003451 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3452 * H2_CS_FRAME_P indicates an incomplete previous operation
3453 * (most often the first attempt) and requires some validity
3454 * checks for the frame and the current state. The two other
3455 * ones are set after completion (or abortion) and must skip
3456 * validity checks.
3457 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003458 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3459
Willy Tarreau567beb82018-12-18 16:52:44 +01003460 if (tmp_h2s != h2s && h2s && h2s->cs &&
3461 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003462 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003463 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003464 (h2s->flags & H2_SF_ES_RCVD) ||
Christopher Fauletb041b232022-03-24 10:27:02 +01003465 (h2s->endp->flags & (CS_EP_ERROR|CS_EP_ERR_PENDING|CS_EP_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003466 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003467 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Christopher Fauletb041b232022-03-24 10:27:02 +01003468 h2s->endp->flags |= CS_EP_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003469 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003470 }
3471 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003472
Willy Tarreau63864812019-08-07 14:25:20 +02003473 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003474 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3475 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003476 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003477 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003478
Willy Tarreau7e98c052017-10-10 15:56:59 +02003479 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003480 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003481 if (h2c->st0 == H2_CS_FRAME_P) {
3482 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003483 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003484 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003485 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003486
Willy Tarreau7838a792019-08-12 18:42:03 +02003487 if (h2c->st0 == H2_CS_FRAME_A) {
3488 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 +02003489 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003490 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003491 break;
3492
Willy Tarreaucf68c782017-10-10 17:11:41 +02003493 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003494 if (h2c->st0 == H2_CS_FRAME_P) {
3495 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003496 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003497 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003498
Willy Tarreau7838a792019-08-12 18:42:03 +02003499 if (h2c->st0 == H2_CS_FRAME_A) {
3500 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 +02003501 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003502 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003503 break;
3504
Willy Tarreau26f95952017-07-27 17:18:30 +02003505 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003506 if (h2c->st0 == H2_CS_FRAME_P) {
3507 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 +02003508 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003509 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003510 break;
3511
Willy Tarreau61290ec2017-10-17 08:19:21 +02003512 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003513 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003514 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3515 * frames' parsers consume all following CONTINUATION
3516 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003517 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003518 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 +01003519 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003520 if (!(h2c->flags & H2_CF_IS_BACK))
3521 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003522 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003523 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003524
Willy Tarreau13278b42017-10-13 19:23:14 +02003525 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003526 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003527 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003528 if (h2c->flags & H2_CF_IS_BACK)
3529 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3530 else
3531 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003532 if (tmp_h2s) {
3533 h2s = tmp_h2s;
3534 ret = 1;
3535 }
3536 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003537 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003538 break;
3539
Willy Tarreau454f9052017-10-26 19:40:35 +02003540 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003541 if (h2c->st0 == H2_CS_FRAME_P) {
3542 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003543 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003544 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003545 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003546
Willy Tarreau7838a792019-08-12 18:42:03 +02003547 if (h2c->st0 == H2_CS_FRAME_A) {
3548 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 +02003549 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003550 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003551 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003552
Willy Tarreau92153fc2017-12-03 19:46:19 +01003553 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003554 if (h2c->st0 == H2_CS_FRAME_P) {
3555 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003556 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003557 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003558 break;
3559
Willy Tarreaucd234e92017-08-18 10:59:39 +02003560 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003561 if (h2c->st0 == H2_CS_FRAME_P) {
3562 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 +02003563 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003564 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003565 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003566 break;
3567
Willy Tarreaue96b0922017-10-30 00:28:29 +01003568 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003569 if (h2c->st0 == H2_CS_FRAME_P) {
3570 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003571 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003572 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003573 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003574 break;
3575
Willy Tarreau1c661982017-10-30 13:52:01 +01003576 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003577 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003578 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003579 /* drop frames that we ignore. They may be larger than
3580 * the buffer so we drain all of their contents until
3581 * we reach the end.
3582 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003583 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3584 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003585 h2c->dfl -= ret;
3586 ret = h2c->dfl == 0;
3587 }
3588
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003589 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003590 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003591 if (h2s->st == H2_SS_ERROR) {
3592 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 +01003593 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003594 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003595
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 if (h2c->st0 == H2_CS_FRAME_E) {
3597 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 +01003598 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003599 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003600
Willy Tarreau7e98c052017-10-10 15:56:59 +02003601 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003602 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003603 break;
3604
3605 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003606 if (h2c->dfl)
3607 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003608 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3609 b_del(&h2c->dbuf, ret);
3610 h2c->dfl -= ret;
3611 if (!h2c->dfl) {
3612 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3613 h2c->st0 = H2_CS_FRAME_H;
3614 h2c->dsi = -1;
3615 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003616 }
3617 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003618
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003619 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003620 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3621 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003622 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003623 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003624
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003625 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003626 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3627 if (h2c->flags & H2_CF_RCVD_SHUT)
3628 h2c->flags |= H2_CF_END_REACHED;
3629 }
3630
Willy Tarreau567beb82018-12-18 16:52:44 +01003631 if (h2s && h2s->cs &&
3632 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003633 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003634 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003635 (h2s->flags & H2_SF_ES_RCVD) ||
Christopher Fauletb041b232022-03-24 10:27:02 +01003636 (h2s->endp->flags & (CS_EP_ERROR|CS_EP_ERR_PENDING|CS_EP_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003637 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003638 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Christopher Fauletb041b232022-03-24 10:27:02 +01003639 h2s->endp->flags |= CS_EP_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003640 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003641 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003642
Willy Tarreau7838a792019-08-12 18:42:03 +02003643 if (old_iw != h2c->miw) {
3644 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003645 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003646 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003647
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003648 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003649 out:
3650 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003651 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003652}
3653
Willy Tarreau989539b2020-01-10 17:01:29 +01003654/* resume each h2s eligible for sending in list head <head> */
3655static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3656{
3657 struct h2s *h2s, *h2s_back;
3658
3659 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3660
3661 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3662 if (h2c->mws <= 0 ||
3663 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3664 h2c->st0 >= H2_CS_ERROR)
3665 break;
3666
3667 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003668
Willy Tarreaud9464162020-01-10 18:25:07 +01003669 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003670 continue;
3671
Willy Tarreau5723f292020-01-10 15:16:57 +01003672 /* If the sender changed his mind and unsubscribed, let's just
3673 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003674 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003675 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3676 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003677 LIST_DEL_INIT(&h2s->list);
3678 continue;
3679 }
3680
Willy Tarreauf96508a2020-01-10 11:12:48 +01003681 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003682 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003683 tasklet_wakeup(h2s->subs->tasklet);
3684 h2s->subs->events &= ~SUB_RETRY_SEND;
3685 if (!h2s->subs->events)
3686 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003687 }
3688 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3689 tasklet_wakeup(h2s->shut_tl);
3690 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003691 }
3692
3693 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3694}
3695
Willy Tarreaubc933932017-10-09 16:21:43 +02003696/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3697 * the end.
3698 */
3699static int h2_process_mux(struct h2c *h2c)
3700{
Willy Tarreau7838a792019-08-12 18:42:03 +02003701 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3702
Willy Tarreau01b44822018-10-03 14:26:37 +02003703 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3704 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3705 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3706 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003707 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003708 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003709 goto fail;
3710 }
3711 h2c->st0 = H2_CS_SETTINGS1;
3712 }
3713 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003714 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003715 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003716 }
3717
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003718 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003719 if (h2c->rcvd_s > 0 &&
3720 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3721 h2c_send_strm_wu(h2c) < 0)
3722 goto fail;
3723
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003724 if (h2c->rcvd_c > 0 &&
3725 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3726 h2c_send_conn_wu(h2c) < 0)
3727 goto fail;
3728
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003729 /* First we always process the flow control list because the streams
3730 * waiting there were already elected for immediate emission but were
3731 * blocked just on this.
3732 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003733 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3734 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003735
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003736 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003737 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003738 if (h2c->st0 == H2_CS_ERROR) {
3739 if (h2c->max_id >= 0) {
3740 h2c_send_goaway_error(h2c, NULL);
3741 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003742 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003743 }
3744
3745 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3746 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003747 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003748 done:
3749 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3750 return 1;
3751 out0:
3752 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3753 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003754}
3755
Willy Tarreau62f52692017-10-08 23:01:42 +02003756
Willy Tarreau479998a2018-11-18 06:30:59 +01003757/* Attempt to read data, and subscribe if none available.
3758 * The function returns 1 if data has been received, otherwise zero.
3759 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003760static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003761{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003762 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003763 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003764 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003765 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003766
Willy Tarreau7838a792019-08-12 18:42:03 +02003767 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3768
3769 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3770 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003771 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003772 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003773
Willy Tarreau7838a792019-08-12 18:42:03 +02003774 if (!h2_recv_allowed(h2c)) {
3775 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003776 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003777 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003778
Willy Tarreau44e973f2018-03-01 17:49:30 +01003779 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003780 if (!buf) {
3781 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003782 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003783 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003784 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003785
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003786 if (h2c->flags & H2_CF_RCVD_SHUT) {
3787 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau3a8bbcc2021-11-19 11:41:10 +01003788 return 1;
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003789 }
3790
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003791 if (!b_data(buf)) {
3792 /* try to pre-align the buffer like the
3793 * rxbufs will be to optimize memory copies. We'll make
3794 * sure that the frame header lands at the end of the
3795 * HTX block to alias it upon recv. We cannot use the
3796 * head because rcv_buf() will realign the buffer if
3797 * it's empty. Thus we cheat and pretend we already
3798 * have a few bytes there.
3799 */
3800 max = buf_room_for_htx_data(buf) + 9;
3801 buf->head = sizeof(struct htx) - 9;
3802 }
3803 else
3804 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003805
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003806 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003807
Christopher Fauletde9d6052021-04-23 12:25:18 +02003808 if (max && !ret && h2_recv_allowed(h2c)) {
3809 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3810 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003811 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003812 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003813 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3814 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003815
Christopher Fauletde9d6052021-04-23 12:25:18 +02003816 if (conn_xprt_read0_pending(h2c->conn)) {
3817 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3818 h2c->flags |= H2_CF_RCVD_SHUT;
3819 }
3820
Olivier Houcharda1411e62018-08-17 18:42:48 +02003821 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003822 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003823 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003824 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003825 }
3826
Willy Tarreau7838a792019-08-12 18:42:03 +02003827 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003828 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003829 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003830 }
3831
3832 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003833 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003834}
3835
Willy Tarreau479998a2018-11-18 06:30:59 +01003836/* Try to send data if possible.
3837 * The function returns 1 if data have been sent, otherwise zero.
3838 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003839static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003840{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003841 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003842 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003843 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003844
Willy Tarreau7838a792019-08-12 18:42:03 +02003845 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003846
Willy Tarreau7838a792019-08-12 18:42:03 +02003847 if (conn->flags & CO_FL_ERROR) {
3848 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3849 return 1;
3850 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003851
Willy Tarreau911db9b2020-01-23 16:27:54 +01003852 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003853 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003854 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003855 }
3856
Willy Tarreaubc933932017-10-09 16:21:43 +02003857 /* This loop is quite simple : it tries to fill as much as it can from
3858 * pending streams into the existing buffer until it's reportedly full
3859 * or the end of send requests is reached. Then it tries to send this
3860 * buffer's contents out, marks it not full if at least one byte could
3861 * be sent, and tries again.
3862 *
3863 * The snd_buf() function normally takes a "flags" argument which may
3864 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3865 * data immediately comes and CO_SFL_STREAMER to indicate that the
3866 * connection is streaming lots of data (used to increase TLS record
3867 * size at the expense of latency). The former can be sent any time
3868 * there's a buffer full flag, as it indicates at least one stream
3869 * attempted to send and failed so there are pending data. An
3870 * alternative would be to set it as long as there's an active stream
3871 * but that would be problematic for ACKs until we have an absolute
3872 * guarantee that all waiters have at least one byte to send. The
3873 * latter should possibly not be set for now.
3874 */
3875
3876 done = 0;
3877 while (!done) {
3878 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003879 unsigned int released = 0;
3880 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003881
3882 /* fill as much as we can into the current buffer */
3883 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3884 done = h2_process_mux(h2c);
3885
Olivier Houchard2b094432019-01-29 18:28:36 +01003886 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003887 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003888
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003889 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003890 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003891 break;
3892
3893 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3894 flags |= CO_SFL_MSG_MORE;
3895
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003896 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3897 if (b_data(buf)) {
3898 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003899 if (!ret) {
3900 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003901 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003902 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003903 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003904 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003905 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003906 if (b_data(buf)) {
3907 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003908 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003909 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003910 }
3911 b_free(buf);
3912 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003913 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003914
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003915 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003916 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003917
Willy Tarreaubc933932017-10-09 16:21:43 +02003918 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003919 if (sent)
3920 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003921 }
3922
Willy Tarreaua2af5122017-10-09 11:56:46 +02003923 if (conn->flags & CO_FL_SOCK_WR_SH) {
3924 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003925 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003926 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003927 /* We're not full anymore, so we can wake any task that are waiting
3928 * for us.
3929 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003930 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3931 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003932
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003933 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003934 if (!br_data(h2c->mbuf)) {
3935 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003936 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003937 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003938schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003939 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3940 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003941 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003942 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003943
Willy Tarreau7838a792019-08-12 18:42:03 +02003944 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003945 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003946}
3947
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003948/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003949struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003950{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003951 struct connection *conn;
3952 struct tasklet *tl = (struct tasklet *)t;
3953 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003954 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003955 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003956
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003957 if (state & TASK_F_USR1) {
3958 /* the tasklet was idling on an idle connection, it might have
3959 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003960 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003961 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3962 if (t->context == NULL) {
3963 /* The connection has been taken over by another thread,
3964 * we're no longer responsible for it, so just free the
3965 * tasklet, and do nothing.
3966 */
3967 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3968 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003969 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003970 goto leave;
3971 }
3972 conn = h2c->conn;
3973 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003974
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003975 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003976
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003977 /* Remove the connection from the list, to be sure nobody attempts
3978 * to use it while we handle the I/O events
3979 */
3980 if (conn_in_list)
3981 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003982
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003983 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3984 } else {
3985 /* we're certain the connection was not in an idle list */
3986 conn = h2c->conn;
3987 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3988 conn_in_list = 0;
3989 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003990
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003991 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003992 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003993 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003994 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003995 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003996 ret = h2_process(h2c);
3997
3998 /* If we were in an idle list, we want to add it back into it,
3999 * unless h2_process() returned -1, which mean it has destroyed
4000 * the connection (testing !ret is enough, if h2_process() wasn't
4001 * called then ret will be 0 anyway.
4002 */
Willy Tarreau74163142021-03-13 11:30:19 +01004003 if (ret < 0)
4004 t = NULL;
4005
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004006 if (!ret && conn_in_list) {
4007 struct server *srv = objt_server(conn->target);
4008
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004009 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004010 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004011 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004012 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004013 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004014 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004015 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004016
Willy Tarreau38468772020-06-28 00:31:13 +02004017leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02004018 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01004019 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004020}
Willy Tarreaua2af5122017-10-09 11:56:46 +02004021
Willy Tarreau62f52692017-10-08 23:01:42 +02004022/* callback called on any event by the connection handler.
4023 * It applies changes and returns zero, or < 0 if it wants immediate
4024 * destruction of the connection (which normally doesn not happen in h2).
4025 */
Olivier Houchard7505f942018-08-21 18:10:44 +02004026static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02004027{
Olivier Houchard7505f942018-08-21 18:10:44 +02004028 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02004029
Willy Tarreau7838a792019-08-12 18:42:03 +02004030 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4031
Willy Tarreauf0961222021-02-05 11:41:46 +01004032 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
4033 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01004034 h2_process_demux(h2c);
4035
4036 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004037 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004038
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004039 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01004040 h2c->flags &= ~H2_CF_DEM_DFULL;
4041 }
Olivier Houchard7505f942018-08-21 18:10:44 +02004042 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01004043
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004044 if (unlikely(h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !(h2c->flags & H2_CF_IS_BACK)) {
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004045 int send_goaway = 1;
4046 /* If a close-spread-time option is set, we want to avoid
4047 * closing all the active HTTP2 connections at once so we add a
4048 * random factor that will spread the closing.
4049 */
4050 if (tick_isset(global.close_spread_end)) {
4051 int remaining_window = tick_remain(now_ms, global.close_spread_end);
4052 if (remaining_window) {
4053 /* This should increase the closing rate the
4054 * further along the window we are. */
4055 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
4056 }
4057 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004058 /* frontend is stopping, reload likely in progress, let's try
4059 * to announce a graceful shutdown if not yet done. We don't
4060 * care if it fails, it will be tried again later.
4061 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02004062 if (send_goaway) {
4063 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
4064 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
4065 if (h2c->last_sid < 0)
4066 h2c->last_sid = (1U << 31) - 1;
4067 h2c_send_goaway_error(h2c, NULL);
4068 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01004069 }
4070 }
4071
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004072 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004073 * If we received early data, and the handshake is done, wake
4074 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004075 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004076 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004077 (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 +01004078 struct eb32_node *node;
4079 struct h2s *h2s;
4080
4081 h2c->flags |= H2_CF_WAIT_FOR_HS;
4082 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4083
4084 while (node) {
4085 h2s = container_of(node, struct h2s, by_id);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01004086 if (h2s->cs && h2s->endp->flags & CS_EP_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01004087 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004088 node = eb32_next(node);
4089 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004090 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004091
Christopher Fauletaade4ed2020-10-08 15:38:41 +02004092 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004093 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4094 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4095 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004096 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004097
4098 if (eb_is_empty(&h2c->streams_by_id)) {
4099 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004100 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004101 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004102 return -1;
4103 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004104
4105 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004106 if (conn->flags & CO_FL_LIST_MASK) {
4107 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004108 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004109 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4110 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004111 }
4112 else if (h2c->st0 == H2_CS_ERROR) {
4113 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004114 if (conn->flags & CO_FL_LIST_MASK) {
4115 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004116 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004117 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4118 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004119 }
4120
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004121 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004122 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004123
Olivier Houchard53216e72018-10-10 15:46:36 +02004124 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4125 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4126 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004127 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004128 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4129 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004130 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004131
Willy Tarreau15a47332022-03-18 15:57:34 +01004132 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004133 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004134 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004135 return 0;
4136}
4137
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004138/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004139static int h2_wake(struct connection *conn)
4140{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004141 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004142 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004143
Willy Tarreau7838a792019-08-12 18:42:03 +02004144 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4145 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004146 if (ret >= 0)
4147 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004148 TRACE_LEAVE(H2_EV_H2C_WAKE);
4149 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004150}
4151
Willy Tarreauea392822017-10-31 10:02:25 +01004152/* Connection timeout management. The principle is that if there's no receipt
4153 * nor sending for a certain amount of time, the connection is closed. If the
4154 * MUX buffer still has lying data or is not allocatable, the connection is
4155 * immediately killed. If it's allocatable and empty, we attempt to send a
4156 * GOAWAY frame.
4157 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004158struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004159{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004160 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004161 int expired = tick_is_expired(t->expire, now_ms);
4162
Willy Tarreau7838a792019-08-12 18:42:03 +02004163 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4164
Willy Tarreaubd42e922020-06-30 11:19:23 +02004165 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004166 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004167 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004168
4169 /* Somebody already stole the connection from us, so we should not
4170 * free it, we just have to free the task.
4171 */
4172 if (!t->context) {
4173 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004174 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004175 goto do_leave;
4176 }
4177
4178
Willy Tarreaubd42e922020-06-30 11:19:23 +02004179 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004180 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004181 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4182 return t;
4183 }
Willy Tarreauea392822017-10-31 10:02:25 +01004184
Willy Tarreaubd42e922020-06-30 11:19:23 +02004185 if (!h2c_may_expire(h2c)) {
4186 /* we do still have streams but all of them are idle, waiting
4187 * for the data layer, so we must not enforce the timeout here.
4188 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004189 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004190 t->expire = TICK_ETERNITY;
4191 return t;
4192 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004193
Willy Tarreaubd42e922020-06-30 11:19:23 +02004194 /* We're about to destroy the connection, so make sure nobody attempts
4195 * to steal it from us.
4196 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004197 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004198 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004199
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004200 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004201 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004202
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004203do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004204 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004205
4206 if (!h2c) {
4207 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004208 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004209 return NULL;
4210 }
4211
4212 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004213 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004214 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004215
Willy Tarreau662fafc2019-05-26 09:43:07 +02004216 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004217 /* don't even try to send a GOAWAY, the buffer is stuck */
4218 h2c->flags |= H2_CF_GOAWAY_FAILED;
4219 }
4220
4221 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004222 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004223 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4224 h2c->flags |= H2_CF_GOAWAY_FAILED;
4225
Willy Tarreau662fafc2019-05-26 09:43:07 +02004226 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004227 unsigned int released = 0;
4228 struct buffer *buf;
4229
4230 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4231 if (b_data(buf)) {
4232 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4233 if (!ret)
4234 break;
4235 b_del(buf, ret);
4236 if (b_data(buf))
4237 break;
4238 b_free(buf);
4239 released++;
4240 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004241 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004242
4243 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004244 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004245 }
Willy Tarreauea392822017-10-31 10:02:25 +01004246
Willy Tarreau4481e262019-10-31 15:36:30 +01004247 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004248 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4249 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004250 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004251 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4252 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004253
Willy Tarreau0975f112018-03-29 15:22:59 +02004254 /* either we can release everything now or it will be done later once
4255 * the last stream closes.
4256 */
4257 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004258 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004259
Willy Tarreau7838a792019-08-12 18:42:03 +02004260 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004261 return NULL;
4262}
4263
4264
Willy Tarreau62f52692017-10-08 23:01:42 +02004265/*******************************************/
4266/* functions below are used by the streams */
4267/*******************************************/
4268
4269/*
4270 * Attach a new stream to a connection
4271 * (Used for outgoing connections)
4272 */
Christopher Faulete00ad352021-12-16 14:44:31 +01004273static int h2_attach(struct connection *conn, struct conn_stream *cs, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004274{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004275 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004276 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004277
Willy Tarreau7838a792019-08-12 18:42:03 +02004278 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchardf502aca2018-12-14 19:42:40 +01004279 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004280 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004281 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004282 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004283 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004284
4285 /* the connection is not idle anymore, let's mark this */
4286 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004287 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004288
Willy Tarreau7838a792019-08-12 18:42:03 +02004289 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004290 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004291}
4292
Willy Tarreaufafd3982018-11-18 21:29:20 +01004293/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4294 * We have to scan because we may have some orphan streams. It might be
4295 * beneficial to scan backwards from the end to reduce the likeliness to find
4296 * orphans.
4297 */
4298static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4299{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004300 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004301 struct h2s *h2s;
4302 struct eb32_node *node;
4303
4304 node = eb32_first(&h2c->streams_by_id);
4305 while (node) {
4306 h2s = container_of(node, struct h2s, by_id);
4307 if (h2s->cs)
4308 return h2s->cs;
4309 node = eb32_next(node);
4310 }
4311 return NULL;
4312}
4313
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004314static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4315{
4316 int ret = 0;
4317 struct h2c *h2c = conn->ctx;
4318
4319 switch (mux_ctl) {
4320 case MUX_STATUS:
4321 /* Only consider the mux to be ready if we're done with
4322 * the preface and settings, and we had no error.
4323 */
4324 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4325 ret |= MUX_STATUS_READY;
4326 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004327 case MUX_EXIT_STATUS:
4328 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004329 default:
4330 return -1;
4331 }
4332}
4333
Willy Tarreau62f52692017-10-08 23:01:42 +02004334/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004335 * Destroy the mux and the associated connection, if it is no longer used
4336 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004337static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004338{
Christopher Faulet73c12072019-04-08 11:23:22 +02004339 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004340
Willy Tarreau7838a792019-08-12 18:42:03 +02004341 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004342 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004343 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004344 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004345}
4346
4347/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004348 * Detach the stream from the connection and possibly release the connection.
4349 */
4350static void h2_detach(struct conn_stream *cs)
4351{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004352 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau60935142017-10-16 18:11:19 +02004353 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004354 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004355
Willy Tarreau7838a792019-08-12 18:42:03 +02004356 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4357
Willy Tarreau7838a792019-08-12 18:42:03 +02004358 if (!h2s) {
4359 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004360 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004361 }
Willy Tarreau60935142017-10-16 18:11:19 +02004362
Willy Tarreaud9464162020-01-10 18:25:07 +01004363 /* there's no txbuf so we're certain not to be able to send anything */
4364 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004365
Olivier Houchardf502aca2018-12-14 19:42:40 +01004366 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004367 h2c = h2s->h2c;
4368 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004369 h2c->nb_cs--;
Willy Tarreau15a47332022-03-18 15:57:34 +01004370 if (!h2c->nb_cs)
4371 h2c->idle_start = now_ms;
4372
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004373 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4374 !h2_frt_has_too_many_cs(h2c)) {
4375 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004376 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004377 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004378 }
Willy Tarreau60935142017-10-16 18:11:19 +02004379
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004380 /* this stream may be blocked waiting for some data to leave (possibly
4381 * an ES or RST frame), so orphan it in this case.
4382 */
Christopher Faulet897d6122021-12-17 17:28:35 +01004383 if (!(h2c->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004384 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004385 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004386 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004387 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004388 /* refresh the timeout if none was active, so that the last
4389 * leaving stream may arm it.
4390 */
4391 if (!tick_isset(h2c->task->expire))
4392 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004393 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004394 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004395
Willy Tarreau45f752e2017-10-30 15:44:59 +01004396 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4397 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4398 /* unblock the connection if it was blocked on this
4399 * stream.
4400 */
4401 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4402 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004403 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004404 }
4405
Willy Tarreau71049cc2018-03-28 13:56:39 +02004406 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004407
Christopher Faulet9b79a102019-07-15 11:22:56 +02004408 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004409 if (!(h2c->conn->flags &
4410 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004411 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004412 /* Add the connection in the session server list, if not already done */
4413 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4414 h2c->conn->owner = NULL;
4415 if (eb_is_empty(&h2c->streams_by_id)) {
4416 h2c->conn->mux->destroy(h2c);
4417 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4418 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004419 }
4420 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004421 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004422 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4423 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4424 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004425 return;
4426 }
4427 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004428 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004429 else {
4430 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004431 /* If the connection is owned by the session, first remove it
4432 * from its list
4433 */
4434 if (h2c->conn->owner) {
4435 session_unown_conn(h2c->conn->owner, h2c->conn);
4436 h2c->conn->owner = NULL;
4437 }
4438
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004439 /* mark that the tasklet may lose its context to another thread and
4440 * that the handler needs to check it under the idle conns lock.
4441 */
4442 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004443 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4444
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004445 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004446 /* The server doesn't want it, let's kill the connection right away */
4447 h2c->conn->mux->destroy(h2c);
4448 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4449 return;
4450 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004451 /* At this point, the connection has been added to the
4452 * server idle list, so another thread may already have
4453 * hijacked it, so we can't do anything with it.
4454 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004455 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4456 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004457
Olivier Houchard8a786902018-12-15 16:05:40 +01004458 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004459 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004460 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004461 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004462 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004463 &h2c->conn->hash_node->node,
4464 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004465 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004466 }
4467 }
4468 }
4469
Willy Tarreaue323f342018-03-28 13:51:45 +02004470 /* We don't want to close right now unless we're removing the
4471 * last stream, and either the connection is in error, or it
4472 * reached the ID already specified in a GOAWAY frame received
4473 * or sent (as seen by last_sid >= 0).
4474 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004475 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004476 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004477 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004478 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004479 }
4480 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004481 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004482 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004483 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004484 else
4485 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004486}
4487
Willy Tarreau88bdba32019-05-13 18:17:53 +02004488/* Performs a synchronous or asynchronous shutr(). */
4489static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004490{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004491 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004492
Willy Tarreauf983d002019-05-14 10:40:21 +02004493 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004494 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004495
Willy Tarreau7838a792019-08-12 18:42:03 +02004496 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4497
Willy Tarreau18059042019-01-31 19:12:48 +01004498 /* a connstream may require us to immediately kill the whole connection
4499 * for example because of a "tcp-request content reject" rule that is
4500 * normally used to limit abuse. In this case we schedule a goaway to
4501 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004502 */
Christopher Fauletca2b5272022-03-30 14:48:10 +02004503 if ((h2s->endp->flags & CS_EP_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004504 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004505 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004506 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4507 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4508 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004509 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4510 /* Nothing was never sent for this stream, so reset with
4511 * REFUSED_STREAM error to let the client retry the
4512 * request.
4513 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004514 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004515 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4516 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004517 else {
4518 /* a final response was already provided, we don't want this
4519 * stream anymore. This may happen when the server responds
4520 * before the end of an upload and closes quickly (redirect,
4521 * deny, ...)
4522 */
4523 h2s_error(h2s, H2_ERR_CANCEL);
4524 }
Willy Tarreau18059042019-01-31 19:12:48 +01004525
Willy Tarreau90c32322017-11-24 08:00:30 +01004526 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004527 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004528 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004529
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004530 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004531 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004532 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004533 done:
4534 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004535 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004536 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004537add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004538 /* Let the handler know we want to shutr, and add ourselves to the
4539 * most relevant list if not yet done. h2_deferred_shut() will be
4540 * automatically called via the shut_tl tasklet when there's room
4541 * again.
4542 */
4543 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004544 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004545 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004546 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004547 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004548 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004549 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004550 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004551 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004552}
4553
Willy Tarreau88bdba32019-05-13 18:17:53 +02004554/* Performs a synchronous or asynchronous shutw(). */
4555static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004556{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004557 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004558
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004559 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004560 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004561
Willy Tarreau7838a792019-08-12 18:42:03 +02004562 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4563
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004564 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004565 /* we can cleanly close using an empty data frame only after headers */
4566
4567 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4568 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004569 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004570
4571 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004572 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004573 else
4574 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004575 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004576 /* a connstream may require us to immediately kill the whole connection
4577 * for example because of a "tcp-request content reject" rule that is
4578 * normally used to limit abuse. In this case we schedule a goaway to
4579 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004580 */
Christopher Fauletca2b5272022-03-30 14:48:10 +02004581 if ((h2s->endp->flags & CS_EP_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004582 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004583 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004584 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4585 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4586 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004587 else {
4588 /* Nothing was never sent for this stream, so reset with
4589 * REFUSED_STREAM error to let the client retry the
4590 * request.
4591 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004592 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004593 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4594 }
Willy Tarreau18059042019-01-31 19:12:48 +01004595
Willy Tarreau90c32322017-11-24 08:00:30 +01004596 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004597 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004598 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004599
Willy Tarreau00dd0782018-03-01 16:31:34 +01004600 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004601 }
4602
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004603 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004604 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004605
4606 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4607
Willy Tarreau88bdba32019-05-13 18:17:53 +02004608 done:
4609 h2s->flags &= ~H2_SF_WANT_SHUTW;
4610 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004611
4612 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004613 /* Let the handler know we want to shutw, and add ourselves to the
4614 * most relevant list if not yet done. h2_deferred_shut() will be
4615 * automatically called via the shut_tl tasklet when there's room
4616 * again.
4617 */
4618 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004619 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004620 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004621 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004622 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004623 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004624 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004625 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004626 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004627}
4628
Willy Tarreau5723f292020-01-10 15:16:57 +01004629/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004630 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4631 * and prevented the last frame from being emitted.
4632 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004633struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004634{
4635 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004636 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004637
Willy Tarreau7838a792019-08-12 18:42:03 +02004638 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4639
Willy Tarreau5723f292020-01-10 15:16:57 +01004640 if (h2s->flags & H2_SF_NOTIFIED) {
4641 /* some data processing remains to be done first */
4642 goto end;
4643 }
4644
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004645 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004646 h2_do_shutw(h2s);
4647
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004648 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004649 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004650
Willy Tarreau88bdba32019-05-13 18:17:53 +02004651 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004652 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004653 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004654
Willy Tarreau88bdba32019-05-13 18:17:53 +02004655 if (!h2s->cs) {
4656 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004657 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004658 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004659 t = NULL;
4660 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004661 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004662 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004663 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004664 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004665 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004666}
4667
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004668/* shutr() called by the conn_stream (mux_ops.shutr) */
Christopher Faulet07976562022-03-31 11:05:05 +02004669static void h2_shutr(struct conn_stream *cs, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004670{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004671 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004672
Willy Tarreau7838a792019-08-12 18:42:03 +02004673 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004674 if (mode)
4675 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004676 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004677}
4678
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004679/* shutw() called by the conn_stream (mux_ops.shutw) */
Christopher Faulet07976562022-03-31 11:05:05 +02004680static void h2_shutw(struct conn_stream *cs, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004681{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01004682 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004683
Willy Tarreau7838a792019-08-12 18:42:03 +02004684 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004685 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004686 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004687}
4688
Christopher Faulet9b79a102019-07-15 11:22:56 +02004689/* Decode the payload of a HEADERS frame and produce the HTX request or response
4690 * depending on the connection's side. Returns a positive value on success, a
4691 * negative value on failure, or 0 if it couldn't proceed. May report connection
4692 * errors in h2c->errcode if the frame is non-decodable and the connection
4693 * unrecoverable. In absence of connection error when a failure is reported, the
4694 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004695 *
4696 * The function may fold CONTINUATION frames into the initial HEADERS frame
4697 * by removing padding and next frame header, then moving the CONTINUATION
4698 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4699 * leaving a hole between the main frame and the beginning of the next one.
4700 * The possibly remaining incomplete or next frame at the end may be moved
4701 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4702 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4703 *
4704 * A buffer at the beginning of processing may look like this :
4705 *
4706 * ,---.---------.-----.--------------.--------------.------.---.
4707 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4708 * `---^---------^-----^--------------^--------------^------^---'
4709 * | | <-----> | |
4710 * area | dpl | wrap
4711 * |<--------------> |
4712 * | dfl |
4713 * |<-------------------------------------------------->|
4714 * head data
4715 *
4716 * Padding is automatically overwritten when folding, participating to the
4717 * hole size after dfl :
4718 *
4719 * ,---.------------------------.-----.--------------.------.---.
4720 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4721 * `---^------------------------^-----^--------------^------^---'
4722 * | | <-----> | |
4723 * area | hole | wrap
4724 * |<-----------------------> |
4725 * | dfl |
4726 * |<-------------------------------------------------->|
4727 * head data
4728 *
4729 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4730 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4731 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004732 *
4733 * The <flags> field must point to either the stream's flags or to a copy of it
4734 * so that the function can update the following flags :
4735 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004736 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004737 *
4738 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4739 * decoding, in order to detect if we're dealing with a headers or a trailers
4740 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004741 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004742static 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 +02004743{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004744 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004745 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004746 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004747 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004748 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004749 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004750 int flen; // header frame len
4751 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004752 int ret = 0;
4753 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004754 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004755
Willy Tarreau7838a792019-08-12 18:42:03 +02004756 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4757
Willy Tarreauea18f862018-12-22 20:19:26 +01004758next_frame:
4759 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4760 goto leave; // incomplete input frame
4761
4762 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4763 * this case, we'll try to paste it immediately after the initial
4764 * HEADERS frame payload and kill any possible padding. The initial
4765 * frame's length will be increased to represent the concatenation
4766 * of the two frames. The next frame is read from position <tlen>
4767 * and written at position <flen> (minus padding if some is present).
4768 */
4769 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4770 struct h2_fh hdr;
4771 int clen; // CONTINUATION frame's payload length
4772
Willy Tarreau7838a792019-08-12 18:42:03 +02004773 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 +01004774 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4775 /* no more data, the buffer may be full, either due to
4776 * too large a frame or because of too large a hole that
4777 * we're going to compact at the end.
4778 */
4779 goto leave;
4780 }
4781
4782 if (hdr.ft != H2_FT_CONTINUATION) {
4783 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004784 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 +01004785 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004786 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004787 goto fail;
4788 }
4789
4790 if (hdr.sid != h2c->dsi) {
4791 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004792 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 +01004793 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004794 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004795 goto fail;
4796 }
4797
4798 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4799 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004800 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 +01004801 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4802 goto fail;
4803 }
4804
4805 /* detect when we must stop aggragating frames */
4806 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4807
4808 /* Take as much as we can of the CONTINUATION frame's payload */
4809 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4810 if (clen > hdr.len)
4811 clen = hdr.len;
4812
4813 /* Move the frame's payload over the padding, hole and frame
4814 * header. At least one of hole or dpl is null (see diagrams
4815 * above). The hole moves after the new aggragated frame.
4816 */
4817 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 +02004818 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004819 hole += h2c->dpl + 9;
4820 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004821 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 +01004822 goto next_frame;
4823 }
4824
4825 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004826
Willy Tarreau13278b42017-10-13 19:23:14 +02004827 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004828 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004829 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004830 copy = alloc_trash_chunk();
4831 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004832 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 +02004833 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4834 goto fail;
4835 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004836 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4837 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4838 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004839 }
4840
Willy Tarreau13278b42017-10-13 19:23:14 +02004841 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4842 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004843 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004844 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004845 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 +01004846 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004847 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004848 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004849 }
4850
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004851 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004852 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 +01004853 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4854 goto fail;
4855 }
4856
Willy Tarreau13278b42017-10-13 19:23:14 +02004857 hdrs += 5; // stream dep = 4, weight = 1
4858 flen -= 5;
4859 }
4860
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004861 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004862 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 +01004863 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004864 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004865 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004866
Willy Tarreau937f7602018-02-26 15:22:17 +01004867 /* we can't retry a failed decompression operation so we must be very
4868 * careful not to take any risks. In practice the output buffer is
4869 * always empty except maybe for trailers, in which case we simply have
4870 * to wait for the upper layer to finish consuming what is available.
4871 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004872 htx = htx_from_buf(rxbuf);
4873 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004874 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 +02004875 h2c->flags |= H2_CF_DEM_SFULL;
4876 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004877 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004878
Willy Tarreau25919232019-01-03 14:48:18 +01004879 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004880 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4881 sizeof(list)/sizeof(list[0]), tmp);
4882 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004883 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 +01004884 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4885 goto fail;
4886 }
4887
Willy Tarreau25919232019-01-03 14:48:18 +01004888 /* The PACK decompressor was updated, let's update the input buffer and
4889 * the parser's state to commit these changes and allow us to later
4890 * fail solely on the stream if needed.
4891 */
4892 b_del(&h2c->dbuf, h2c->dfl + hole);
4893 h2c->dfl = hole = 0;
4894 h2c->st0 = H2_CS_FRAME_H;
4895
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004896 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004897 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004898 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004899 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004900 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004901 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004902
Willy Tarreau88d138e2019-01-02 19:38:14 +01004903 if (*flags & H2_SF_HEADERS_RCVD)
4904 goto trailers;
4905
4906 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004907 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004908 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004909 else
4910 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004911
Christopher Faulet3d875582021-04-26 17:46:13 +02004912 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004913 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004914 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4915 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004916 goto fail;
4917 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004918
Willy Tarreau174b06a2018-04-25 18:13:58 +02004919 if (msgf & H2_MSGF_BODY) {
4920 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004921 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004922 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004923 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004924 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004925 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004926 if (msgf & H2_MSGF_BODYLESS_RSP)
4927 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004928
Christopher Fauletd0db4232021-01-22 11:46:30 +01004929 if (msgf & H2_MSGF_BODY_TUNNEL)
4930 *flags |= H2_SF_BODY_TUNNEL;
4931 else {
4932 /* Abort the tunnel attempt, if any */
4933 if (*flags & H2_SF_BODY_TUNNEL)
4934 *flags |= H2_SF_TUNNEL_ABRT;
4935 *flags &= ~H2_SF_BODY_TUNNEL;
4936 }
4937
Willy Tarreau88d138e2019-01-02 19:38:14 +01004938 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004939 /* indicate that a HEADERS frame was received for this stream, except
4940 * for 1xx responses. For 1xx responses, another HEADERS frame is
4941 * expected.
4942 */
4943 if (!(msgf & H2_MSGF_RSP_1XX))
4944 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004945
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004946 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4947 /* no more data are expected for this message */
4948 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004949 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004950
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004951 if (msgf & H2_MSGF_EXT_CONNECT)
4952 *flags |= H2_SF_EXT_CONNECT_RCVD;
4953
Willy Tarreau86277d42019-01-02 15:36:11 +01004954 /* success */
4955 ret = 1;
4956
Willy Tarreau68dd9852017-07-03 14:44:26 +02004957 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004958 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004959 * move the remaining data over it.
4960 */
4961 if (hole) {
4962 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4963 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4964 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4965 b_sub(&h2c->dbuf, hole);
4966 }
4967
Christopher Faulet07f88d72021-04-21 10:39:53 +02004968 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004969 /* too large frames */
4970 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004971 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004972 }
4973
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004974 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004975 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004976 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004977 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004978 return ret;
4979
Willy Tarreau68dd9852017-07-03 14:44:26 +02004980 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004981 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004982 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004983
4984 trailers:
4985 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004986 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4987 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004988 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 +01004989 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004990 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004991 goto fail;
4992 }
4993
Christopher Faulet9b79a102019-07-15 11:22:56 +02004994 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004995 if (h2_make_htx_trailers(list, htx) <= 0) {
4996 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 +02004997 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004998 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004999 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02005000}
5001
Christopher Faulet9b79a102019-07-15 11:22:56 +02005002/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005003 * parser state is automatically updated. Returns > 0 if it could completely
5004 * send the current frame, 0 if it couldn't complete, in which case
Christopher Fauletb041b232022-03-24 10:27:02 +01005005 * CS_EP_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005006 * DATA frame can return 0 as a valid result). Stream errors are reported in
5007 * h2s->errcode and connection errors in h2c->errcode. The caller must already
5008 * have checked the frame header and ensured that the frame was complete or the
5009 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02005010 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01005011static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02005012{
5013 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005014 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005015 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005016 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005017 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02005018 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02005019
Willy Tarreau7838a792019-08-12 18:42:03 +02005020 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5021
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005022 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02005023
Olivier Houchard638b7992018-08-16 15:41:52 +02005024 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005025 if (!csbuf) {
5026 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02005027 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 +01005028 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005029 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005030 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01005031
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005032try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005033 flen = h2c->dfl - h2c->dpl;
5034 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01005035 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005036
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005037 if (flen > b_data(&h2c->dbuf)) {
5038 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005039 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01005040 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01005041 }
5042
Christopher Faulet9b79a102019-07-15 11:22:56 +02005043 block = htx_free_data_space(htx);
5044 if (!block) {
5045 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005046 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 +02005047 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005048 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005049 if (flen > block)
5050 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005051
Christopher Faulet9b79a102019-07-15 11:22:56 +02005052 /* here, flen is the max we can copy into the output buffer */
5053 block = b_contig_data(&h2c->dbuf, 0);
5054 if (flen > block)
5055 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005056
Christopher Faulet9b79a102019-07-15 11:22:56 +02005057 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005058 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 +02005059
Christopher Faulet9b79a102019-07-15 11:22:56 +02005060 b_del(&h2c->dbuf, sent);
5061 h2c->dfl -= sent;
5062 h2c->rcvd_c += sent;
5063 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005064
Christopher Faulet9b79a102019-07-15 11:22:56 +02005065 if (h2s->flags & H2_SF_DATA_CLEN) {
5066 h2s->body_len -= sent;
5067 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005068 }
5069
Christopher Faulet9b79a102019-07-15 11:22:56 +02005070 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005071 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005072 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 +01005073 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005074 }
5075
Christopher Faulet9b79a102019-07-15 11:22:56 +02005076 goto try_again;
5077
Willy Tarreau4a28da12018-01-04 14:41:00 +01005078 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005079 /* here we're done with the frame, all the payload (except padding) was
5080 * transferred.
5081 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005082
Christopher Faulet5be651d2021-01-22 15:28:03 +01005083 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5084 /* no more data are expected for this message. This add the EOM
5085 * flag but only on the response path or if no tunnel attempt
5086 * was aborted. Otherwise (request path + tunnel abrted), the
5087 * EOM was already reported.
5088 */
Christopher Faulet33724322021-02-10 09:04:59 +01005089 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5090 /* If we receive an empty DATA frame with ES flag while the HTX
5091 * message is empty, we must be sure to push a block to be sure
5092 * the HTX EOM flag will be handled on the other side. It is a
5093 * workaround because for now it is not possible to push empty
5094 * HTX DATA block. And without this block, there is no way to
5095 * "commit" the end of the message.
5096 */
5097 if (htx_is_empty(htx)) {
5098 if (!htx_add_endof(htx, HTX_BLK_EOT))
5099 goto fail;
5100 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005101 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005102 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005103 }
5104
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005105 h2c->rcvd_c += h2c->dpl;
5106 h2c->rcvd_s += h2c->dpl;
5107 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005108 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005109 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005110 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005111 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005112 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005113 if (htx)
5114 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005115 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005116 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005117}
5118
Willy Tarreau115e83b2018-12-01 19:17:53 +01005119/* Try to send a HEADERS frame matching HTX response present in HTX message
5120 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5121 * must check the stream's status to detect any error which might have happened
5122 * subsequently to a successful send. The htx blocks are automatically removed
5123 * from the message. The htx message is assumed to be valid since produced from
5124 * the internal code, hence it contains a start line, an optional series of
5125 * header blocks and an end of header, otherwise an invalid frame could be
5126 * emitted and the resulting htx message could be left in an inconsistent state.
5127 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005128static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005129{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005130 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005131 struct h2c *h2c = h2s->h2c;
5132 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005133 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005134 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005135 struct htx_sl *sl;
5136 enum htx_blk_type type;
5137 int es_now = 0;
5138 int ret = 0;
5139 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005140
Willy Tarreau7838a792019-08-12 18:42:03 +02005141 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5142
Willy Tarreau115e83b2018-12-01 19:17:53 +01005143 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005144 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005145 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005146 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005147 return 0;
5148 }
5149
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005150 /* get the start line (we do have one) and the rest of the headers,
5151 * that we dump starting at header 0 */
5152 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005153 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005154 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005155 type = htx_get_blk_type(blk);
5156
5157 if (type == HTX_BLK_UNUSED)
5158 continue;
5159
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005160 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005161 break;
5162
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005163 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005164 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005165 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5166 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5167 goto fail;
5168 }
5169
5170 list[hdr].n = htx_get_blk_name(htx, blk);
5171 list[hdr].v = htx_get_blk_value(htx, blk);
5172 hdr++;
5173 }
5174 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005175 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005176 sl = htx_get_blk_ptr(htx, blk);
5177 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005178 if (h2s->status == 204 || h2s->status == 304)
5179 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005180 if (h2s->status < 100 || h2s->status > 999) {
5181 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5182 goto fail;
5183 }
5184 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005185 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5186 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5187 h2s->status = 200;
5188 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5189 }
5190 else {
5191 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5192 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5193 goto fail;
5194 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005195 }
5196 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5197 /* Abort the tunnel attempt */
5198 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5199 h2s->flags |= H2_SF_TUNNEL_ABRT;
5200 }
5201 }
5202 else {
5203 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 +01005204 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005205 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005206 }
5207
Christopher Faulet56498132021-01-29 11:39:43 +01005208 /* The start-line me be defined */
5209 BUG_ON(!sl);
5210
Willy Tarreau115e83b2018-12-01 19:17:53 +01005211 /* marker for end of headers */
5212 list[hdr].n = ist("");
5213
Willy Tarreau9c218e72019-05-26 10:08:28 +02005214 mbuf = br_tail(h2c->mbuf);
5215 retry:
5216 if (!h2_get_buf(h2c, mbuf)) {
5217 h2c->flags |= H2_CF_MUX_MALLOC;
5218 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005219 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 +02005220 return 0;
5221 }
5222
Willy Tarreau115e83b2018-12-01 19:17:53 +01005223 chunk_reset(&outbuf);
5224
5225 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005226 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5227 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005228 break;
5229 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005230 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005231 }
5232
5233 if (outbuf.size < 9)
5234 goto full;
5235
5236 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5237 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5238 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5239 outbuf.data = 9;
5240
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005241 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5242 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5243 * dynamic table size update so that some clients are not
5244 * confused. In practice we only need to send the DTSU when the
5245 * advertised size is lower than the current one, and since we
5246 * don't use it and don't care about the default 4096 bytes,
5247 * we only ack it with a zero size thus we at most have to deal
5248 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5249 * below for the whole context and interoperability risks:
5250 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5251 */
5252 if (b_room(&outbuf) < 1)
5253 goto full;
5254 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5255
5256 /* let's not update the flags now but only once the buffer is
5257 * really committed.
5258 */
5259 }
5260
Willy Tarreau115e83b2018-12-01 19:17:53 +01005261 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005262 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005263 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005264 goto realign_again;
5265 goto full;
5266 }
5267
5268 /* encode all headers, stop at empty name */
5269 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5270 /* these ones do not exist in H2 and must be dropped. */
5271 if (isteq(list[hdr].n, ist("connection")) ||
5272 isteq(list[hdr].n, ist("proxy-connection")) ||
5273 isteq(list[hdr].n, ist("keep-alive")) ||
5274 isteq(list[hdr].n, ist("upgrade")) ||
5275 isteq(list[hdr].n, ist("transfer-encoding")))
5276 continue;
5277
Christopher Faulet86d144c2019-08-14 16:32:25 +02005278 /* Skip all pseudo-headers */
5279 if (*(list[hdr].n.ptr) == ':')
5280 continue;
5281
Willy Tarreau115e83b2018-12-01 19:17:53 +01005282 if (isteq(list[hdr].n, ist("")))
5283 break; // end
5284
5285 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5286 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005287 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005288 goto realign_again;
5289 goto full;
5290 }
5291 }
5292
Willy Tarreaucb985a42019-10-07 16:56:34 +02005293 /* update the frame's size */
5294 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5295
5296 if (outbuf.data > h2c->mfs + 9) {
5297 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5298 /* output full */
5299 if (b_space_wraps(mbuf))
5300 goto realign_again;
5301 goto full;
5302 }
5303 }
5304
Willy Tarreau3a537072021-06-17 08:40:04 +02005305 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5306
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005307 /* remove all header blocks including the EOH and compute the
5308 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005309 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005310 ret = 0;
5311 blk = htx_get_head_blk(htx);
5312 while (blk) {
5313 type = htx_get_blk_type(blk);
5314 ret += htx_get_blksz(blk);
5315 blk = htx_remove_blk(htx, blk);
5316 /* The removed block is the EOH */
5317 if (type == HTX_BLK_EOH)
5318 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005319 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005320
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01005321 if (!h2s->cs || h2s->endp->flags & CS_EP_SHW) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005322 /* Response already closed: add END_STREAM */
5323 es_now = 1;
5324 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005325 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5326 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005327 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005328 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005329 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5330 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005331 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005332
Willy Tarreau115e83b2018-12-01 19:17:53 +01005333 if (es_now)
5334 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5335
5336 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005337 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005338
5339 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5340 * 1xx responses, another HEADERS frame is expected.
5341 */
Christopher Faulet89899422020-12-07 18:24:43 +01005342 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005343 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005344
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005345 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5346 /* was sent above */
5347 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005348 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005349 }
5350
Willy Tarreau115e83b2018-12-01 19:17:53 +01005351 if (es_now) {
5352 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005353 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 +01005354 if (h2s->st == H2_SS_OPEN)
5355 h2s->st = H2_SS_HLOC;
5356 else
5357 h2s_close(h2s);
5358 }
5359
5360 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005361 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005362 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005363 return ret;
5364 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005365 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5366 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005367 h2c->flags |= H2_CF_MUX_MFULL;
5368 h2s->flags |= H2_SF_BLK_MROOM;
5369 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005370 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 +01005371 goto end;
5372 fail:
5373 /* unparsable HTX messages, too large ones to be produced in the local
5374 * list etc go here (unrecoverable errors).
5375 */
5376 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5377 ret = 0;
5378 goto end;
5379}
5380
Willy Tarreau80739692018-10-05 11:35:57 +02005381/* Try to send a HEADERS frame matching HTX request present in HTX message
5382 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5383 * must check the stream's status to detect any error which might have happened
5384 * subsequently to a successful send. The htx blocks are automatically removed
5385 * from the message. The htx message is assumed to be valid since produced from
5386 * the internal code, hence it contains a start line, an optional series of
5387 * header blocks and an end of header, otherwise an invalid frame could be
5388 * emitted and the resulting htx message could be left in an inconsistent state.
5389 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005390static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005391{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005392 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005393 struct h2c *h2c = h2s->h2c;
5394 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005395 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005396 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005397 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005398 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005399 enum htx_blk_type type;
5400 int es_now = 0;
5401 int ret = 0;
5402 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005403 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005404
Willy Tarreau7838a792019-08-12 18:42:03 +02005405 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5406
Willy Tarreau80739692018-10-05 11:35:57 +02005407 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005408 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005409 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005410 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005411 return 0;
5412 }
5413
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005414 /* get the start line (we do have one) and the rest of the headers,
5415 * that we dump starting at header 0 */
5416 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005417 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005418 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005419 type = htx_get_blk_type(blk);
5420
5421 if (type == HTX_BLK_UNUSED)
5422 continue;
5423
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005424 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005425 break;
5426
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005427 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005428 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005429 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5430 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5431 goto fail;
5432 }
Willy Tarreau80739692018-10-05 11:35:57 +02005433
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005434 list[hdr].n = htx_get_blk_name(htx, blk);
5435 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005436
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005437 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005438 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5439 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005440 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005441
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005442 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005443 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005444 /* rfc 7230 #6.1 Connection = list of tokens */
5445 struct ist connection_ist = list[hdr].v;
5446 do {
5447 if (isteqi(iststop(connection_ist, ','),
5448 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005449 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5450 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5451 goto fail;
5452 }
5453
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005454 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 +01005455 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5456 sl->info.req.meth = HTTP_METH_CONNECT;
5457 meth = ist("CONNECT");
5458
5459 extended_connect = 1;
5460 break;
5461 }
5462
5463 connection_ist = istadv(istfind(connection_ist, ','), 1);
5464 } while (istlen(connection_ist));
5465 }
5466
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005467 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005468 /* rfc 7230 #6.7 Upgrade = list of protocols
5469 * rfc 8441 #4 Extended connect = :protocol is single-valued
5470 *
5471 * only first HTTP/1 protocol is preserved
5472 */
5473 const struct ist protocol = iststop(list[hdr].v, ',');
5474 /* upgrade_protocol field is 16 bytes long in h2s */
5475 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5476 }
5477
5478 if (isteq(list[hdr].n, ist("host")))
5479 host = list[hdr].v;
5480
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005481 hdr++;
5482 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005483 else if (type == HTX_BLK_REQ_SL) {
5484 BUG_ON(sl); /* Only one start-line expected */
5485 sl = htx_get_blk_ptr(htx, blk);
5486 meth = htx_sl_req_meth(sl);
5487 uri = htx_sl_req_uri(sl);
5488 if (sl->info.req.meth == HTTP_METH_HEAD)
5489 h2s->flags |= H2_SF_BODYLESS_RESP;
5490 if (unlikely(uri.len == 0)) {
5491 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5492 goto fail;
5493 }
5494 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005495 else {
5496 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5497 goto fail;
5498 }
Willy Tarreau80739692018-10-05 11:35:57 +02005499 }
5500
Christopher Faulet56498132021-01-29 11:39:43 +01005501 /* The start-line me be defined */
5502 BUG_ON(!sl);
5503
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005504 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005505 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005506 struct server *srv = objt_server(h2c->conn->target);
5507
5508 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005509 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005510 list[hdr].v = ist(srv->id);
5511 hdr++;
5512 }
5513 }
5514
Willy Tarreau80739692018-10-05 11:35:57 +02005515 /* marker for end of headers */
5516 list[hdr].n = ist("");
5517
Willy Tarreau9c218e72019-05-26 10:08:28 +02005518 mbuf = br_tail(h2c->mbuf);
5519 retry:
5520 if (!h2_get_buf(h2c, mbuf)) {
5521 h2c->flags |= H2_CF_MUX_MALLOC;
5522 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005523 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 +02005524 return 0;
5525 }
5526
Willy Tarreau80739692018-10-05 11:35:57 +02005527 chunk_reset(&outbuf);
5528
5529 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005530 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5531 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005532 break;
5533 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005534 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005535 }
5536
5537 if (outbuf.size < 9)
5538 goto full;
5539
5540 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5541 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5542 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5543 outbuf.data = 9;
5544
5545 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005546 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005547 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005548 goto realign_again;
5549 goto full;
5550 }
5551
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005552 auth = ist(NULL);
5553
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005554 /* RFC7540 #8.3: the CONNECT method must have :
5555 * - :authority set to the URI part (host:port)
5556 * - :method set to CONNECT
5557 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005558 *
5559 * Note that this is not applicable in case of the Extended CONNECT
5560 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005561 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005562 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005563 auth = uri;
5564
5565 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5566 /* output full */
5567 if (b_space_wraps(mbuf))
5568 goto realign_again;
5569 goto full;
5570 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005571 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005572 } else {
5573 /* other methods need a :scheme. If an authority is known from
5574 * the request line, it must be sent, otherwise only host is
5575 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005576 *
5577 * This code is also applicable for Extended CONNECT protocol
5578 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005579 */
5580 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005581
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005582 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5583 /* the URI seems to start with a scheme */
5584 int len = 1;
5585
5586 while (len < uri.len && uri.ptr[len] != ':')
5587 len++;
5588
5589 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5590 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005591 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005592 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005593
5594 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005595 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005596 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5597 auth.len++;
5598
Tim Duesterhus154374c2021-03-02 18:57:27 +01005599 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005600 }
5601 }
5602
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005603 /* For Extended CONNECT, the :authority must be present.
5604 * Use host value for it.
5605 */
5606 if (unlikely(extended_connect) && isttest(host))
5607 auth = host;
5608
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005609 if (!scheme.len) {
5610 /* no explicit scheme, we're using an origin-form URI,
5611 * probably from an H1 request transcoded to H2 via an
5612 * external layer, then received as H2 without authority.
5613 * So we have to look up the scheme from the HTX flags.
5614 * In such a case only http and https are possible, and
5615 * https is the default (sent by browsers).
5616 */
5617 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5618 scheme = ist("http");
5619 else
5620 scheme = ist("https");
5621 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005622
5623 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005624 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005625 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005626 goto realign_again;
5627 goto full;
5628 }
Willy Tarreau80739692018-10-05 11:35:57 +02005629
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005630 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005631 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005632 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005633 goto realign_again;
5634 goto full;
5635 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005636
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005637 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5638 * be sent as '/' or '*'.
5639 */
5640 if (unlikely(!uri.len)) {
5641 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5642 uri = ist("*");
5643 else
5644 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005645 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005646
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005647 if (!hpack_encode_path(&outbuf, uri)) {
5648 /* output full */
5649 if (b_space_wraps(mbuf))
5650 goto realign_again;
5651 goto full;
5652 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005653
5654 /* encode the pseudo-header protocol from rfc8441 if using
5655 * Extended CONNECT method.
5656 */
5657 if (unlikely(extended_connect)) {
5658 const struct ist protocol = ist(h2s->upgrade_protocol);
5659 if (isttest(protocol)) {
5660 if (!hpack_encode_header(&outbuf,
5661 ist(":protocol"),
5662 protocol)) {
5663 /* output full */
5664 if (b_space_wraps(mbuf))
5665 goto realign_again;
5666 goto full;
5667 }
5668 }
5669 }
Willy Tarreau80739692018-10-05 11:35:57 +02005670 }
5671
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005672 /* encode all headers, stop at empty name. Host is only sent if we
5673 * do not provide an authority.
5674 */
Willy Tarreau80739692018-10-05 11:35:57 +02005675 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005676 struct ist n = list[hdr].n;
5677 struct ist v = list[hdr].v;
5678
Willy Tarreau80739692018-10-05 11:35:57 +02005679 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005680 if (isteq(n, ist("connection")) ||
5681 (auth.len && isteq(n, ist("host"))) ||
5682 isteq(n, ist("proxy-connection")) ||
5683 isteq(n, ist("keep-alive")) ||
5684 isteq(n, ist("upgrade")) ||
5685 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005686 continue;
5687
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005688 if (isteq(n, ist("te"))) {
5689 /* "te" may only be sent with "trailers" if this value
5690 * is present, otherwise it must be deleted.
5691 */
5692 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005693 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005694 continue;
5695 v = ist("trailers");
5696 }
5697
Christopher Faulet86d144c2019-08-14 16:32:25 +02005698 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005699 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005700 continue;
5701
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005702 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005703 break; // end
5704
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005705 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005706 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005707 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005708 goto realign_again;
5709 goto full;
5710 }
5711 }
5712
Willy Tarreaucb985a42019-10-07 16:56:34 +02005713 /* update the frame's size */
5714 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5715
5716 if (outbuf.data > h2c->mfs + 9) {
5717 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5718 /* output full */
5719 if (b_space_wraps(mbuf))
5720 goto realign_again;
5721 goto full;
5722 }
5723 }
5724
Willy Tarreau3a537072021-06-17 08:40:04 +02005725 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5726
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005727 /* remove all header blocks including the EOH and compute the
5728 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005729 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005730 ret = 0;
5731 blk = htx_get_head_blk(htx);
5732 while (blk) {
5733 type = htx_get_blk_type(blk);
5734 ret += htx_get_blksz(blk);
5735 blk = htx_remove_blk(htx, blk);
5736 /* The removed block is the EOH */
5737 if (type == HTX_BLK_EOH)
5738 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005739 }
Willy Tarreau80739692018-10-05 11:35:57 +02005740
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01005741 if (!h2s->cs || h2s->endp->flags & CS_EP_SHW) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005742 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005743 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005744 }
5745 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5746 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5747 * request)
5748 */
5749 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5750 es_now = 1;
5751 }
Willy Tarreau80739692018-10-05 11:35:57 +02005752
Willy Tarreau80739692018-10-05 11:35:57 +02005753 if (es_now)
5754 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5755
5756 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005757 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005758 h2s->flags |= H2_SF_HEADERS_SENT;
5759 h2s->st = H2_SS_OPEN;
5760
Willy Tarreau80739692018-10-05 11:35:57 +02005761 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005762 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 +02005763 // trim any possibly pending data (eg: inconsistent content-length)
5764 h2s->flags |= H2_SF_ES_SENT;
5765 h2s->st = H2_SS_HLOC;
5766 }
5767
Willy Tarreau80739692018-10-05 11:35:57 +02005768 end:
5769 return ret;
5770 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005771 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5772 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005773 h2c->flags |= H2_CF_MUX_MFULL;
5774 h2s->flags |= H2_SF_BLK_MROOM;
5775 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005776 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 +02005777 goto end;
5778 fail:
5779 /* unparsable HTX messages, too large ones to be produced in the local
5780 * list etc go here (unrecoverable errors).
5781 */
5782 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5783 ret = 0;
5784 goto end;
5785}
5786
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005787/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005788 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5789 * caller must check the stream's status to detect any error which might have
5790 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005791 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005792 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005793static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005794{
5795 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005796 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005797 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005798 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005799 size_t total = 0;
5800 int es_now = 0;
5801 int bsize; /* htx block size */
5802 int fsize; /* h2 frame size */
5803 struct htx_blk *blk;
5804 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005805 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005806
Willy Tarreau7838a792019-08-12 18:42:03 +02005807 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5808
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005809 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005810 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005811 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005812 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005813 goto end;
5814 }
5815
Willy Tarreau98de12a2018-12-12 07:03:00 +01005816 htx = htx_from_buf(buf);
5817
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005818 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005819
5820 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005821 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005822 goto end;
5823
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005824 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005825 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5826 /* The response HEADERS frame not received yet. Thus the tunnel
5827 * is not fully established yet. In this situation, we block
5828 * data sending.
5829 */
5830 h2s->flags |= H2_SF_BLK_MBUSY;
5831 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5832 goto end;
5833 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005834 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5835 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5836 * Thus the stream is closed with the CANCEL error. The error will be reported to
5837 * the upper layer as aserver abort. But at this stage there is nothing more we can
5838 * do. We just wait for the end of the response to be sure to not truncate it.
5839 */
5840 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5841 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5842 h2s->flags |= H2_SF_BLK_MBUSY;
5843 }
5844 else {
5845 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5846 h2s_error(h2s, H2_ERR_CANCEL);
5847 }
5848 goto end;
5849 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005850
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005851 blk = htx_get_head_blk(htx);
5852 type = htx_get_blk_type(blk);
5853 bsize = htx_get_blksz(blk);
5854 fsize = bsize;
5855 trunc_out = 0;
5856 if (type != HTX_BLK_DATA)
5857 goto end;
5858
Willy Tarreau9c218e72019-05-26 10:08:28 +02005859 mbuf = br_tail(h2c->mbuf);
5860 retry:
5861 if (!h2_get_buf(h2c, mbuf)) {
5862 h2c->flags |= H2_CF_MUX_MALLOC;
5863 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005864 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 +02005865 goto end;
5866 }
5867
Willy Tarreau98de12a2018-12-12 07:03:00 +01005868 /* Perform some optimizations to reduce the number of buffer copies.
5869 * First, if the mux's buffer is empty and the htx area contains
5870 * exactly one data block of the same size as the requested count, and
5871 * this count fits within the frame size, the stream's window size, and
5872 * the connection's window size, then it's possible to simply swap the
5873 * caller's buffer with the mux's output buffer and adjust offsets and
5874 * length to match the entire DATA HTX block in the middle. In this
5875 * case we perform a true zero-copy operation from end-to-end. This is
5876 * the situation that happens all the time with large files. Second, if
5877 * this is not possible, but the mux's output buffer is empty, we still
5878 * have an opportunity to avoid the copy to the intermediary buffer, by
5879 * making the intermediary buffer's area point to the output buffer's
5880 * area. In this case we want to skip the HTX header to make sure that
5881 * copies remain aligned and that this operation remains possible all
5882 * the time. This goes for headers, data blocks and any data extracted
5883 * from the HTX blocks.
5884 */
5885 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005886 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005887 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005888 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005889
Willy Tarreaubcc45952019-05-26 10:05:50 +02005890 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005891 /* Too bad there are data left there. We're willing to memcpy/memmove
5892 * up to 1/4 of the buffer, which means that it's OK to copy a large
5893 * frame into a buffer containing few data if it needs to be realigned,
5894 * and that it's also OK to copy few data without realigning. Otherwise
5895 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005896 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005897 if (fsize + 9 <= b_room(mbuf) &&
5898 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005899 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5900 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 +01005901 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005902 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005903
Willy Tarreau9c218e72019-05-26 10:08:28 +02005904 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5905 goto retry;
5906
Willy Tarreau98de12a2018-12-12 07:03:00 +01005907 h2c->flags |= H2_CF_MUX_MFULL;
5908 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005909 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 +01005910 goto end;
5911 }
5912
Christopher Faulet925abdf2021-04-27 22:51:07 +02005913 if (htx->flags & HTX_FL_EOM) {
5914 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5915 * message)
5916 */
5917 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5918 es_now = 1;
5919 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005920 /* map an H2 frame to the HTX block so that we can put the
5921 * frame header there.
5922 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005923 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5924 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005925
5926 /* prepend an H2 DATA frame header just before the DATA block */
5927 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5928 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005929 if (es_now)
5930 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005931 h2_set_frame_size(outbuf.area, fsize);
5932
5933 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005934 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005935 h2c->mws -= fsize;
5936
5937 /* and exchange with our old area */
5938 buf->area = old_area;
5939 buf->data = buf->head = 0;
5940 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005941 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005942
5943 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 +02005944 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005945 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005946
Willy Tarreau98de12a2018-12-12 07:03:00 +01005947 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005948 /* for DATA and EOM we'll have to emit a frame, even if empty */
5949
5950 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005951 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5952 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005953 break;
5954 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005955 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005956 }
5957
5958 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005959 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5960 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005961 h2c->flags |= H2_CF_MUX_MFULL;
5962 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005963 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005964 goto end;
5965 }
5966
5967 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5968 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5969 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5970 outbuf.data = 9;
5971
5972 /* we have in <fsize> the exact number of bytes we need to copy from
5973 * the HTX buffer. We need to check this against the connection's and
5974 * the stream's send windows, and to ensure that this fits in the max
5975 * frame size and in the buffer's available space minus 9 bytes (for
5976 * the frame header). The connection's flow control is applied last so
5977 * that we can use a separate list of streams which are immediately
5978 * unblocked on window opening. Note: we don't implement padding.
5979 */
5980
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005981 if (!fsize)
5982 goto send_empty;
5983
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005984 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005985 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005986 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005987 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005988 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005989 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 +01005990 goto end;
5991 }
5992
Willy Tarreauee573762018-12-04 15:25:57 +01005993 if (fsize > count)
5994 fsize = count;
5995
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005996 if (fsize > h2s_mws(h2s))
5997 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005998
5999 if (h2c->mfs && fsize > h2c->mfs)
6000 fsize = h2c->mfs; // >0
6001
6002 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02006003 /* It doesn't fit at once. If it at least fits once split and
6004 * the amount of data to move is low, let's defragment the
6005 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006006 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006007 if (b_space_wraps(mbuf) &&
6008 (fsize + 9 <= b_room(mbuf)) &&
6009 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006010 goto realign_again;
6011 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01006012 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006013
6014 if (fsize <= 0) {
6015 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02006016 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6017 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006018 h2c->flags |= H2_CF_MUX_MFULL;
6019 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006020 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006021 goto end;
6022 }
6023 }
6024
6025 if (h2c->mws <= 0) {
6026 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02006027 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 +01006028 goto end;
6029 }
6030
6031 if (fsize > h2c->mws)
6032 fsize = h2c->mws;
6033
6034 /* now let's copy this this into the output buffer */
6035 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02006036 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01006037 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01006038 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006039
6040 send_empty:
6041 /* update the frame's size */
6042 h2_set_frame_size(outbuf.area, fsize);
6043
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006044 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006045 total += fsize;
6046 if (fsize == bsize) {
6047 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006048 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
6049 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6050 * message)
6051 */
6052 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6053 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006054 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006055 }
6056 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006057 /* we've truncated this block */
6058 htx_cut_data_blk(htx, blk, fsize);
6059 }
6060
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006061 if (es_now)
6062 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6063
6064 /* commit the H2 response */
6065 b_add(mbuf, fsize + 9);
6066
Christopher Faulet925abdf2021-04-27 22:51:07 +02006067 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006068 if (es_now) {
6069 if (h2s->st == H2_SS_OPEN)
6070 h2s->st = H2_SS_HLOC;
6071 else
6072 h2s_close(h2s);
6073
6074 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006075 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 +01006076 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006077 else if (fsize) {
6078 if (fsize == bsize) {
6079 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6080 goto new_frame;
6081 }
6082 else if (trunc_out) {
6083 /* we've truncated this block */
6084 goto new_frame;
6085 }
6086 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006087
6088 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006089 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006090 return total;
6091}
6092
Christopher Faulet991febd2020-12-02 15:17:31 +01006093/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6094 * ES flag set for stream <h2s>. This function is called for response known to
6095 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006096 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006097 * which might have happened subsequently to a successful send. Returns the
6098 * number of data bytes consumed, or zero if nothing done.
6099 */
6100static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6101{
6102 struct h2c *h2c = h2s->h2c;
6103 struct htx *htx;
6104 int bsize; /* htx block size */
6105 int fsize; /* h2 frame size */
6106 struct htx_blk *blk;
6107 enum htx_blk_type type;
6108 size_t total = 0;
6109
6110 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6111
6112 if (h2c_mux_busy(h2c, h2s)) {
6113 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6114 h2s->flags |= H2_SF_BLK_MBUSY;
6115 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6116 goto end;
6117 }
6118
6119 htx = htx_from_buf(buf);
6120
6121 next_data:
6122 if (!count || htx_is_empty(htx))
6123 goto end;
6124 blk = htx_get_head_blk(htx);
6125 type = htx_get_blk_type(blk);
6126 bsize = htx_get_blksz(blk);
6127 fsize = bsize;
6128 if (type != HTX_BLK_DATA)
6129 goto end;
6130
6131 if (fsize > count)
6132 fsize = count;
6133
6134 if (fsize != bsize)
6135 goto skip_data;
6136
6137 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6138 goto skip_data;
6139
6140 /* Here, it is the last block and it is also the end of the message. So
6141 * we can emit an empty DATA frame with the ES flag set
6142 */
6143 if (h2_send_empty_data_es(h2s) <= 0)
6144 goto end;
6145
6146 if (h2s->st == H2_SS_OPEN)
6147 h2s->st = H2_SS_HLOC;
6148 else
6149 h2s_close(h2s);
6150
6151 skip_data:
6152 /* consume incoming HTX block */
6153 total += fsize;
6154 if (fsize == bsize) {
6155 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6156 htx_remove_blk(htx, blk);
6157 goto next_data;
6158 }
6159 else {
6160 /* we've truncated this block */
6161 htx_cut_data_blk(htx, blk, fsize);
6162 }
6163
6164 end:
6165 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6166 return total;
6167}
6168
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006169/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6170 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6171 * processed. The caller must check the stream's status to detect any error
6172 * which might have happened subsequently to a successful send. The htx blocks
6173 * are automatically removed from the message. The htx message is assumed to be
6174 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006175 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6176 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006177 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006178static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006179{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006180 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006181 struct h2c *h2c = h2s->h2c;
6182 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006183 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006184 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006185 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006186 int ret = 0;
6187 int hdr;
6188 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006189
Willy Tarreau7838a792019-08-12 18:42:03 +02006190 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6191
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006192 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006193 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006194 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006195 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006196 goto end;
6197 }
6198
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006199 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006200 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006201 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006202 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006203
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006204 if (type == HTX_BLK_UNUSED)
6205 continue;
6206
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006207 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006208 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006209 if (type == HTX_BLK_TLR) {
6210 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6211 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6212 goto fail;
6213 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006214
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006215 list[hdr].n = htx_get_blk_name(htx, blk);
6216 list[hdr].v = htx_get_blk_value(htx, blk);
6217 hdr++;
6218 }
6219 else {
6220 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 +01006221 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006222 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006223 }
6224
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006225 /* marker for end of trailers */
6226 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006227
Willy Tarreau9c218e72019-05-26 10:08:28 +02006228 mbuf = br_tail(h2c->mbuf);
6229 retry:
6230 if (!h2_get_buf(h2c, mbuf)) {
6231 h2c->flags |= H2_CF_MUX_MALLOC;
6232 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006233 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 +02006234 goto end;
6235 }
6236
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006237 chunk_reset(&outbuf);
6238
6239 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006240 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6241 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006242 break;
6243 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006244 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006245 }
6246
6247 if (outbuf.size < 9)
6248 goto full;
6249
6250 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6251 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6252 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6253 outbuf.data = 9;
6254
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006255 /* encode all headers */
6256 for (idx = 0; idx < hdr; idx++) {
6257 /* these ones do not exist in H2 or must not appear in
6258 * trailers and must be dropped.
6259 */
6260 if (isteq(list[idx].n, ist("host")) ||
6261 isteq(list[idx].n, ist("content-length")) ||
6262 isteq(list[idx].n, ist("connection")) ||
6263 isteq(list[idx].n, ist("proxy-connection")) ||
6264 isteq(list[idx].n, ist("keep-alive")) ||
6265 isteq(list[idx].n, ist("upgrade")) ||
6266 isteq(list[idx].n, ist("te")) ||
6267 isteq(list[idx].n, ist("transfer-encoding")))
6268 continue;
6269
Christopher Faulet86d144c2019-08-14 16:32:25 +02006270 /* Skip all pseudo-headers */
6271 if (*(list[idx].n.ptr) == ':')
6272 continue;
6273
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006274 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6275 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006276 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006277 goto realign_again;
6278 goto full;
6279 }
6280 }
6281
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006282 if (outbuf.data == 9) {
6283 /* here we have a problem, we have nothing to emit (either we
6284 * received an empty trailers block followed or we removed its
6285 * contents above). Because of this we can't send a HEADERS
6286 * frame, so we have to cheat and instead send an empty DATA
6287 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006288 */
6289 outbuf.area[3] = H2_FT_DATA;
6290 outbuf.area[4] = H2_F_DATA_END_STREAM;
6291 }
6292
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006293 /* update the frame's size */
6294 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6295
Willy Tarreau572d9f52019-10-11 16:58:37 +02006296 if (outbuf.data > h2c->mfs + 9) {
6297 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6298 /* output full */
6299 if (b_space_wraps(mbuf))
6300 goto realign_again;
6301 goto full;
6302 }
6303 }
6304
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006305 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006306 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 +02006307 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006308 h2s->flags |= H2_SF_ES_SENT;
6309
6310 if (h2s->st == H2_SS_OPEN)
6311 h2s->st = H2_SS_HLOC;
6312 else
6313 h2s_close(h2s);
6314
6315 /* OK we could properly deliver the response */
6316 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006317 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006318 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006319 blk = htx_get_head_blk(htx);
6320 while (blk) {
6321 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006322 ret += htx_get_blksz(blk);
6323 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006324 /* The removed block is the EOT */
6325 if (type == HTX_BLK_EOT)
6326 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006327 }
6328
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006329 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006330 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006331 return ret;
6332 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006333 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6334 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006335 h2c->flags |= H2_CF_MUX_MFULL;
6336 h2s->flags |= H2_SF_BLK_MROOM;
6337 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006338 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 +01006339 goto end;
6340 fail:
6341 /* unparsable HTX messages, too large ones to be produced in the local
6342 * list etc go here (unrecoverable errors).
6343 */
6344 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6345 ret = 0;
6346 goto end;
6347}
6348
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006349/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6350 * event subscriber <es> is not allowed to change from a previous call as long
6351 * as at least one event is still subscribed. The <event_type> must only be a
6352 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006353 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006354static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006355{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006356 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006357 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006358
Willy Tarreau7838a792019-08-12 18:42:03 +02006359 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006360
6361 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006362 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006363
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006364 es->events |= event_type;
6365 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006366
6367 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006368 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006369
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006370 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006371 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006372 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006373 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006374 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006375 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006376 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006377 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006378 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006379 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006380 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006381 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006382}
6383
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006384/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6385 * The <es> pointer is not allowed to differ from the one passed to the
6386 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006387 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006388static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006389{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006390 struct h2s *h2s = __cs_mux(cs);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006391
Willy Tarreau7838a792019-08-12 18:42:03 +02006392 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006393
6394 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006395 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006396
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006397 es->events &= ~event_type;
6398 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006399 h2s->subs = NULL;
6400
6401 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006402 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006403
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006404 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006405 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006406 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006407 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6408 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006409 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006410
Willy Tarreau7838a792019-08-12 18:42:03 +02006411 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006412 return 0;
6413}
6414
6415
Christopher Faulet564e39c2021-09-21 15:50:55 +02006416/* Called from the upper layer, to receive data
6417 *
6418 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6419 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6420 * means the caller wants to flush input data (from the mux buffer and the
6421 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6422 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6423 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6424 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6425 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6426 * copy as much data as possible.
6427 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006428static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6429{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006430 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau082f5592018-11-25 08:03:32 +01006431 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006432 struct htx *h2s_htx = NULL;
6433 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006434 size_t ret = 0;
6435
Willy Tarreau7838a792019-08-12 18:42:03 +02006436 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6437
Olivier Houchard511efea2018-08-16 15:30:32 +02006438 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006439 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006440 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006441 /* Here htx_to_buf() will set buffer data to 0 because
6442 * the HTX is empty.
6443 */
6444 htx_to_buf(h2s_htx, &h2s->rxbuf);
6445 goto end;
6446 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006447
Christopher Faulet9b79a102019-07-15 11:22:56 +02006448 ret = h2s_htx->data;
6449 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006450
Christopher Faulet9b79a102019-07-15 11:22:56 +02006451 /* <buf> is empty and the message is small enough, swap the
6452 * buffers. */
6453 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006454 htx_to_buf(buf_htx, buf);
6455 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006456 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6457 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006458 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006459
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006460 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006461
6462 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6463 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6464 if (htx_is_empty(buf_htx))
Christopher Fauletb041b232022-03-24 10:27:02 +01006465 cs->endp->flags |= CS_EP_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006466 }
Christopher Faulet810df062020-07-22 16:20:34 +02006467 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006468 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006469
Christopher Faulet9b79a102019-07-15 11:22:56 +02006470 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6471 htx_to_buf(buf_htx, buf);
6472 htx_to_buf(h2s_htx, &h2s->rxbuf);
6473 ret -= h2s_htx->data;
6474
Christopher Faulet37070b22019-02-14 15:12:14 +01006475 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006476 if (b_data(&h2s->rxbuf))
Christopher Fauletb041b232022-03-24 10:27:02 +01006477 cs->endp->flags |= (CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006478 else {
Christopher Fauletb041b232022-03-24 10:27:02 +01006479 cs->endp->flags &= ~(CS_EP_RCV_MORE | CS_EP_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006480 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletb041b232022-03-24 10:27:02 +01006481 cs->endp->flags |= CS_EP_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006482 /* Add EOS flag for tunnel */
6483 if (h2s->flags & H2_SF_BODY_TUNNEL)
Christopher Fauletb041b232022-03-24 10:27:02 +01006484 cs->endp->flags |= CS_EP_EOS;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006485 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006486 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Christopher Fauletb041b232022-03-24 10:27:02 +01006487 cs->endp->flags |= CS_EP_EOS;
6488 if (cs->endp->flags & CS_EP_ERR_PENDING)
6489 cs->endp->flags |= CS_EP_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006490 if (b_size(&h2s->rxbuf)) {
6491 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006492 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006493 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006494 }
6495
Willy Tarreau082f5592018-11-25 08:03:32 +01006496 if (ret && h2c->dsi == h2s->id) {
6497 /* demux is blocking on this stream's buffer */
6498 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006499 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006500 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006501
Willy Tarreau7838a792019-08-12 18:42:03 +02006502 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006503 return ret;
6504}
6505
Olivier Houchardd846c262018-10-19 17:24:29 +02006506
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006507/* Called from the upper layer, to send data from buffer <buf> for no more than
6508 * <count> bytes. Returns the number of bytes effectively sent. Some status
6509 * flags may be updated on the conn_stream.
6510 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006511static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006512{
Christopher Fauletdb90f2a2022-03-22 16:06:25 +01006513 struct h2s *h2s = __cs_mux(cs);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006514 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006515 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006516 struct htx *htx;
6517 struct htx_blk *blk;
6518 enum htx_blk_type btype;
6519 uint32_t bsize;
6520 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006521
Willy Tarreau7838a792019-08-12 18:42:03 +02006522 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6523
Olivier Houchardd360ac62019-03-22 17:37:16 +01006524 /* If we were not just woken because we wanted to send but couldn't,
6525 * and there's somebody else that is waiting to send, do nothing,
6526 * we will subscribe later and be put at the end of the list
6527 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006528 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006529 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6530 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 +01006531 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006532 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006533 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006534
Willy Tarreau7838a792019-08-12 18:42:03 +02006535 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6536 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 +02006537 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006538 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006539
Willy Tarreaucab22952019-10-31 15:48:18 +01006540 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Christopher Fauletb041b232022-03-24 10:27:02 +01006541 cs->endp->flags |= CS_EP_ERROR;
Willy Tarreaucab22952019-10-31 15:48:18 +01006542 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);
6543 return 0;
6544 }
6545
Christopher Faulet9b79a102019-07-15 11:22:56 +02006546 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006547
Willy Tarreau0bad0432018-06-14 16:54:01 +02006548 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006549 h2s->flags |= H2_SF_OUTGOING_DATA;
6550
Willy Tarreau751f2d02018-10-05 09:35:00 +02006551 if (h2s->id == 0) {
6552 int32_t id = h2c_get_next_sid(h2s->h2c);
6553
6554 if (id < 0) {
Christopher Fauletb041b232022-03-24 10:27:02 +01006555 cs->endp->flags |= CS_EP_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006556 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 +02006557 return 0;
6558 }
6559
6560 eb32_delete(&h2s->by_id);
6561 h2s->by_id.key = h2s->id = id;
6562 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006563 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006564 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6565 }
6566
Christopher Faulet9b79a102019-07-15 11:22:56 +02006567 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6568 count && !htx_is_empty(htx)) {
6569 idx = htx_get_head(htx);
6570 blk = htx_get_blk(htx, idx);
6571 btype = htx_get_blk_type(blk);
6572 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006573
Christopher Faulet9b79a102019-07-15 11:22:56 +02006574 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006575 case HTX_BLK_REQ_SL:
6576 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006577 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006578 if (ret > 0) {
6579 total += ret;
6580 count -= ret;
6581 if (ret < bsize)
6582 goto done;
6583 }
6584 break;
6585
Willy Tarreau115e83b2018-12-01 19:17:53 +01006586 case HTX_BLK_RES_SL:
6587 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006588 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006589 if (ret > 0) {
6590 total += ret;
6591 count -= ret;
6592 if (ret < bsize)
6593 goto done;
6594 }
6595 break;
6596
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006597 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006598 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006599 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6600 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6601 ret = h2s_skip_data(h2s, buf, count);
6602 else
6603 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006604 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006605 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006606 total += ret;
6607 count -= ret;
6608 if (ret < bsize)
6609 goto done;
6610 }
6611 break;
6612
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006613 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006614 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006615 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006616 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006617 if (ret > 0) {
6618 total += ret;
6619 count -= ret;
6620 if (ret < bsize)
6621 goto done;
6622 }
6623 break;
6624
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006625 default:
6626 htx_remove_blk(htx, blk);
6627 total += bsize;
6628 count -= bsize;
6629 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006630 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006631 }
6632
Christopher Faulet9b79a102019-07-15 11:22:56 +02006633 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006634 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006635 /* trim any possibly pending data after we close (extra CR-LF,
6636 * unprocessed trailers, abnormal extra data, ...)
6637 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006638 total += count;
6639 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006640 }
6641
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006642 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006643 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006644 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 +01006645 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006646 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006647 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006648 }
6649
Christopher Faulet9b79a102019-07-15 11:22:56 +02006650 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006651
Olivier Houchard7505f942018-08-21 18:10:44 +02006652 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006653 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006654 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 +02006655 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006656 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006657
Olivier Houchard7505f942018-08-21 18:10:44 +02006658 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006659 /* If we're waiting for flow control, and we got a shutr on the
6660 * connection, we will never be unlocked, so add an error on
6661 * the conn_stream.
6662 */
6663 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6664 !b_data(&h2s->h2c->dbuf) &&
6665 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006666 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);
Christopher Fauletb041b232022-03-24 10:27:02 +01006667 if (cs->endp->flags & CS_EP_EOS)
6668 cs->endp->flags |= CS_EP_ERROR;
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006669 else
Christopher Fauletb041b232022-03-24 10:27:02 +01006670 cs->endp->flags |= CS_EP_ERR_PENDING;
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006671 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006672
Willy Tarreau5723f292020-01-10 15:16:57 +01006673 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6674 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006675 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006676 LIST_DEL_INIT(&h2s->list);
6677 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006678
Willy Tarreau7838a792019-08-12 18:42:03 +02006679 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006680 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006681}
6682
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006683/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006684static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006685{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006686 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006687 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006688 struct eb32_node *node;
6689 int fctl_cnt = 0;
6690 int send_cnt = 0;
6691 int tree_cnt = 0;
6692 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006693 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006694 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006695
6696 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006697 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006698
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006699 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006700 fctl_cnt++;
6701
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006702 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006703 send_cnt++;
6704
Willy Tarreau3af37712018-12-18 14:34:41 +01006705 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006706 node = eb32_first(&h2c->streams_by_id);
6707 while (node) {
6708 h2s = container_of(node, struct h2s, by_id);
6709 tree_cnt++;
6710 if (!h2s->cs)
6711 orph_cnt++;
6712 node = eb32_next(node);
6713 }
6714
Willy Tarreau60f62682019-05-26 11:32:27 +02006715 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006716 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006717 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006718 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006719 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6720 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006721 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006722 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006723 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006724 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6725 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6726 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006727 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6728 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6729 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006730 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6731 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006732
6733 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006734 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 +02006735 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006736 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6737 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6738 h2s->cs);
6739 if (h2s->cs)
Christopher Fauletf835dea2021-12-21 14:35:17 +01006740 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6741 h2s->cs->flags, h2s->cs->app);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006742
6743 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6744 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006745 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6746 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6747 h2s->subs->tasklet->calls,
6748 h2s->subs->tasklet->context);
6749 if (h2s->subs->tasklet->calls >= 1000000)
6750 ret = 1;
6751 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6752 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006753 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006754 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006755 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006756}
Willy Tarreau62f52692017-10-08 23:01:42 +02006757
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006758/* Migrate the the connection to the current thread.
6759 * Return 0 if successful, non-zero otherwise.
6760 * Expected to be called with the old thread lock held.
6761 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006762static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006763{
6764 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006765 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006766
6767 if (fd_takeover(conn->handle.fd, conn) != 0)
6768 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006769
6770 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6771 /* We failed to takeover the xprt, even if the connection may
6772 * still be valid, flag it as error'd, as we have already
6773 * taken over the fd, and wake the tasklet, so that it will
6774 * destroy it.
6775 */
6776 conn->flags |= CO_FL_ERROR;
6777 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6778 return -1;
6779 }
6780
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006781 if (h2c->wait_event.events)
6782 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6783 h2c->wait_event.events, &h2c->wait_event);
6784 /* To let the tasklet know it should free itself, and do nothing else,
6785 * set its context to NULL.
6786 */
6787 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006788 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006789
6790 task = h2c->task;
6791 if (task) {
6792 task->context = NULL;
6793 h2c->task = NULL;
6794 __ha_barrier_store();
6795 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006796
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006797 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006798 if (!h2c->task) {
6799 h2_release(h2c);
6800 return -1;
6801 }
6802 h2c->task->process = h2_timeout_task;
6803 h2c->task->context = h2c;
6804 }
6805 h2c->wait_event.tasklet = tasklet_new();
6806 if (!h2c->wait_event.tasklet) {
6807 h2_release(h2c);
6808 return -1;
6809 }
6810 h2c->wait_event.tasklet->process = h2_io_cb;
6811 h2c->wait_event.tasklet->context = h2c;
6812 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6813 SUB_RETRY_RECV, &h2c->wait_event);
6814
6815 return 0;
6816}
6817
Willy Tarreau62f52692017-10-08 23:01:42 +02006818/*******************************************************/
6819/* functions below are dedicated to the config parsers */
6820/*******************************************************/
6821
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006822/* config parser for global "tune.h2.header-table-size" */
6823static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006824 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006825 char **err)
6826{
6827 if (too_many_args(1, args, err, NULL))
6828 return -1;
6829
6830 h2_settings_header_table_size = atoi(args[1]);
6831 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6832 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6833 return -1;
6834 }
6835 return 0;
6836}
Willy Tarreau62f52692017-10-08 23:01:42 +02006837
Willy Tarreaue6baec02017-07-27 11:45:11 +02006838/* config parser for global "tune.h2.initial-window-size" */
6839static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006840 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006841 char **err)
6842{
6843 if (too_many_args(1, args, err, NULL))
6844 return -1;
6845
6846 h2_settings_initial_window_size = atoi(args[1]);
6847 if (h2_settings_initial_window_size < 0) {
6848 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6849 return -1;
6850 }
6851 return 0;
6852}
6853
Willy Tarreau5242ef82017-07-27 11:47:28 +02006854/* config parser for global "tune.h2.max-concurrent-streams" */
6855static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006856 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006857 char **err)
6858{
6859 if (too_many_args(1, args, err, NULL))
6860 return -1;
6861
6862 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006863 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006864 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6865 return -1;
6866 }
6867 return 0;
6868}
6869
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006870/* config parser for global "tune.h2.max-frame-size" */
6871static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006872 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006873 char **err)
6874{
6875 if (too_many_args(1, args, err, NULL))
6876 return -1;
6877
6878 h2_settings_max_frame_size = atoi(args[1]);
6879 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6880 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6881 return -1;
6882 }
6883 return 0;
6884}
6885
Willy Tarreau62f52692017-10-08 23:01:42 +02006886
6887/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006888/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006889/***************************************/
6890
6891/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006892static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006893 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006894 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006895 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006896 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006897 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006898 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006899 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006900 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006901 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006902 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006903 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006904 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006905 .shutr = h2_shutr,
6906 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006907 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006908 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006909 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006910 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006911 .name = "H2",
6912};
6913
Christopher Faulet32f61c02018-04-10 14:33:41 +02006914static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006915 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006916
Willy Tarreau0108d902018-11-25 19:14:37 +01006917INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6918
Willy Tarreau62f52692017-10-08 23:01:42 +02006919/* config keyword parsers */
6920static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006921 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006922 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006923 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006924 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006925 { 0, NULL, NULL }
6926}};
6927
Willy Tarreau0108d902018-11-25 19:14:37 +01006928INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006929
6930/* initialize internal structs after the config is parsed.
6931 * Returns zero on success, non-zero on error.
6932 */
6933static int init_h2()
6934{
6935 pool_head_hpack_tbl = create_pool("hpack_tbl",
6936 h2_settings_header_table_size,
6937 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006938 if (!pool_head_hpack_tbl) {
6939 ha_alert("failed to allocate hpack_tbl memory pool\n");
6940 return (ERR_ALERT | ERR_FATAL);
6941 }
6942 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006943}
6944
6945REGISTER_POST_CHECK(init_h2);