blob: 8a7b2353dd084eddca7aa1c4070dbccee645f8dc [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>
Willy Tarreaubf073142020-06-03 12:04:01 +020018#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020019#include <haproxy/hpack-dec.h>
20#include <haproxy/hpack-enc.h>
21#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020022#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020023#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020025#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020026#include <haproxy/net_helper.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020027#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010028#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020029#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020030#include <haproxy/stream_interface.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020031#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020032
33
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010034/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020035static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010036static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010037static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020038static const struct h2s *h2_idle_stream;
39
Willy Tarreau5ab6b572017-09-22 08:05:00 +020040/* Connection flags (32 bit), in h2c->flags */
41#define H2_CF_NONE 0x00000000
42
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020043/* Flags indicating why writing to the mux is blocked. */
44#define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer
45#define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full
46#define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above
47
Willy Tarreau315d8072017-12-10 22:17:57 +010048/* Flags indicating why writing to the demux is blocked.
49 * The first two ones directly affect the ability for the mux to receive data
50 * from the connection. The other ones affect the mux's ability to demux
51 * received data.
52 */
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020053#define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer
54#define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full
Willy Tarreau315d8072017-12-10 22:17:57 +010055
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020056#define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy
57#define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer
58#define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer
59#define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full
Willy Tarreauf2101912018-07-19 10:11:38 +020060#define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave
61#define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL
Christopher Fauletb5f7b522021-07-26 12:06:53 +020062 // (SHORT_READ is also excluded)
63
64#define H2_CF_DEM_SHORT_READ 0x00080200 // demux blocked on incomplete frame
Willy Tarreau2e5b60e2017-09-25 11:49:03 +020065
Willy Tarreau081d4722017-05-16 21:51:05 +020066/* other flags */
Willy Tarreauf2101912018-07-19 10:11:38 +020067#define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent
68#define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent
69#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 +020070#define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection
Willy Tarreau3d4631f2021-01-20 10:53:13 +010071#define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised
72#define H2_CF_RCVD_SHUT 0x00020000 // a recv() attempt already failed on a shutdown
73#define H2_CF_END_REACHED 0x00040000 // pending data too short with RCVD_SHUT present
Willy Tarreau081d4722017-05-16 21:51:05 +020074
Willy Tarreau5ab6b572017-09-22 08:05:00 +020075/* H2 connection state, in h2c->st0 */
76enum h2_cs {
77 H2_CS_PREFACE, // init done, waiting for connection preface
78 H2_CS_SETTINGS1, // preface OK, waiting for first settings frame
79 H2_CS_FRAME_H, // first settings frame ok, waiting for frame header
80 H2_CS_FRAME_P, // frame header OK, waiting for frame payload
Willy Tarreaua20a5192017-12-27 11:02:06 +010081 H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame
82 H2_CS_FRAME_E, // frame payload OK, trying to send RST frame
Willy Tarreau5ab6b572017-09-22 08:05:00 +020083 H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP
84 H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP
85 H2_CS_ENTRIES // must be last
86} __attribute__((packed));
87
Willy Tarreau51330962019-05-26 09:38:07 +020088
Willy Tarreau9c218e72019-05-26 10:08:28 +020089/* 32 buffers: one for the ring's root, rest for the mbuf itself */
90#define H2C_MBUF_CNT 32
Willy Tarreau51330962019-05-26 09:38:07 +020091
Willy Tarreau5ab6b572017-09-22 08:05:00 +020092/* H2 connection descriptor */
93struct h2c {
94 struct connection *conn;
95
96 enum h2_cs st0; /* mux state */
97 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
98
99 /* 16 bit hole here */
100 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100101 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200102 int32_t max_id; /* highest ID known on this connection, <0 before preface */
103 uint32_t rcvd_c; /* newly received data to ACK for the connection */
104 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */
105
106 /* states for the demux direction */
107 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200108 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200109
110 int32_t dsi; /* demux stream ID (<0 = idle) */
111 int32_t dfl; /* demux frame length (if dsi >= 0) */
112 int8_t dft; /* demux frame type (if dsi >= 0) */
113 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +0100114 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
115 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200116 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
117
118 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +0200119 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200120 int32_t msi; /* mux stream ID (<0 = idle) */
121 int32_t mfl; /* mux frame length (if dsi >= 0) */
122 int8_t mft; /* mux frame type (if dsi >= 0) */
123 int8_t mff; /* mux frame flags (if dsi >= 0) */
124 /* 16 bit hole here */
125 int32_t miw; /* mux initial window size for all new streams */
126 int32_t mws; /* mux window size. Can be negative. */
127 int32_t mfs; /* mux's max frame size */
128
Willy Tarreauea392822017-10-31 10:02:25 +0100129 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +0100130 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau49745612017-12-03 18:56:02 +0100131 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200132 unsigned int nb_cs; /* number of attached conn_streams */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100133 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100134 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +0200135 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +0100136 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100137 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200138 struct eb_root streams_by_id; /* all active streams by their ID */
139 struct list send_list; /* list of blocked streams requesting to send */
140 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200141 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100142 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200143 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200144};
145
Willy Tarreau18312642017-10-11 07:57:07 +0200146/* H2 stream state, in h2s->st */
147enum h2_ss {
148 H2_SS_IDLE = 0, // idle
149 H2_SS_RLOC, // reserved(local)
150 H2_SS_RREM, // reserved(remote)
151 H2_SS_OPEN, // open
152 H2_SS_HREM, // half-closed(remote)
153 H2_SS_HLOC, // half-closed(local)
Willy Tarreau96060ba2017-10-16 18:34:34 +0200154 H2_SS_ERROR, // an error needs to be sent using RST_STREAM
Willy Tarreau18312642017-10-11 07:57:07 +0200155 H2_SS_CLOSED, // closed
156 H2_SS_ENTRIES // must be last
157} __attribute__((packed));
158
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200159#define H2_SS_MASK(state) (1UL << (state))
160#define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE)
161#define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC)
162#define H2_SS_RREM_BIT (1UL << H2_SS_RREM)
163#define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN)
164#define H2_SS_HREM_BIT (1UL << H2_SS_HREM)
165#define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC)
166#define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR)
167#define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED)
Willy Tarreau4c688eb2019-05-14 11:44:03 +0200168
Willy Tarreau18312642017-10-11 07:57:07 +0200169/* HTTP/2 stream flags (32 bit), in h2s->flags */
170#define H2_SF_NONE 0x00000000
171#define H2_SF_ES_RCVD 0x00000001
172#define H2_SF_ES_SENT 0x00000002
173
174#define H2_SF_RST_RCVD 0x00000004 // received RST_STREAM
175#define H2_SF_RST_SENT 0x00000008 // sent RST_STREAM
176
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200177/* stream flags indicating the reason the stream is blocked */
178#define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient)
Willy Tarreau9edf6db2019-10-02 10:49:59 +0200179#define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list)
180#define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list)
181#define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list)
Willy Tarreau2e5b60e2017-09-25 11:49:03 +0200182#define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above
183
Willy Tarreau454f9052017-10-26 19:40:35 +0200184/* stream flags indicating how data is supposed to be sent */
185#define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length
Christopher Faulet7d247f02020-12-02 14:26:36 +0100186#define H2_SF_BODYLESS_RESP 0x00000200 /* Bodyless response message */
Christopher Fauletd0db4232021-01-22 11:46:30 +0100187#define H2_SF_BODY_TUNNEL 0x00000400 // Attempt to establish a Tunnelled stream (the result depends on the status code)
188
Willy Tarreau454f9052017-10-26 19:40:35 +0200189
Willy Tarreaud9464162020-01-10 18:25:07 +0100190#define H2_SF_NOTIFIED 0x00000800 // a paused stream was notified to try to send again
Willy Tarreau67434202017-11-06 20:20:51 +0100191#define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream
Willy Tarreauc4312d32017-11-07 12:01:53 +0100192#define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data
Willy Tarreau67434202017-11-06 20:20:51 +0100193
Willy Tarreau6cc85a52019-01-02 15:49:20 +0100194#define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream
195
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200196#define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy)
197#define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy)
Willy Tarreau3cf69fe2019-05-14 10:44:40 +0200198#define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200199
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100200#define H2_SF_EXT_CONNECT_SENT 0x00040000 // rfc 8441 an Extended CONNECT has been sent
Amaury Denoyelleefe22762020-12-11 17:53:08 +0100201#define H2_SF_EXT_CONNECT_RCVD 0x00080000 // rfc 8441 an Extended CONNECT has been received and parsed
Christopher Fauletd0db4232021-01-22 11:46:30 +0100202
Amaury Denoyelle5fb48ea2020-12-11 17:53:04 +0100203#define H2_SF_TUNNEL_ABRT 0x00100000 // A tunnel attempt was aborted
Willy Tarreau2c249eb2019-05-13 18:06:17 +0200204
Willy Tarreau18312642017-10-11 07:57:07 +0200205/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +0100206 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +0200207 */
208struct h2s {
209 struct conn_stream *cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100210 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200211 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200212 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200213 int32_t id; /* stream ID */
214 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200215 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200216 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
217 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200218 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100219 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200220 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreauf96508a2020-01-10 11:12:48 +0100221 struct wait_event *subs; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200222 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100223 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
224 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100225
226 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200227};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200228
Willy Tarreauc6405142017-09-21 20:23:50 +0200229/* descriptor for an h2 frame header */
230struct h2_fh {
231 uint32_t len; /* length, host order, 24 bits */
232 uint32_t sid; /* stream id, host order, 31 bits */
233 uint8_t ft; /* frame type */
234 uint8_t ff; /* frame flags */
235};
236
Willy Tarreau12ae2122019-08-08 18:23:12 +0200237/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200238static void h2_trace(enum trace_level level, uint64_t mask, \
239 const struct trace_source *src,
240 const struct ist where, const struct ist func,
241 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242
243/* The event representation is split like this :
244 * strm - application layer
245 * h2s - internal H2 stream
246 * h2c - internal H2 connection
247 * conn - external connection
248 *
249 */
250static const struct trace_event h2_trace_events[] = {
251#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200252 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200253#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200254 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200255#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200256 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200257#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200258 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200259#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200260 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200261#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200262 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200263#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200264 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200265#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200266 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200267#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200268 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200269#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200270 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200272 { .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 +0200273#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200274 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200276 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200277#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200278 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200279#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200280 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200281#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200282 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200283#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200284 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200285#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200286 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200287#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200288 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200289#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200290 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200291#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200292 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200293#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200294 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200295#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200296 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200297#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200298 { .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 +0200299#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200300 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200301#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200302 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200303#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200304 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200305#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200306 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200307#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200308 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200309#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200310 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200311#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200312 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200313#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200314 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200315#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200316 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200317#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200318 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200319#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200320 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200321#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200322 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200323#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200324 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200325#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200326 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200327#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200328 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200329#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200330 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200331#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200332 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200333#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200334 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200335#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200336 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200337#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200338 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200339#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200340 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200341#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200342 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200343#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200344 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200345#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200346 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200347#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200348 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200349#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200350 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200351#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200352 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200353#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200354 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200355 { }
356};
357
358static const struct name_desc h2_trace_lockon_args[4] = {
359 /* arg1 */ { /* already used by the connection */ },
360 /* arg2 */ { .name="h2s", .desc="H2 stream" },
361 /* arg3 */ { },
362 /* arg4 */ { }
363};
364
365static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200366#define H2_VERB_CLEAN 1
367 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
368#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200369 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200370#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200371 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200372#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200373 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200374#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200375 { .name="complete", .desc="add full data dump when available" },
376 { /* end */ }
377};
378
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200379static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200380 .name = IST("h2"),
381 .desc = "HTTP/2 multiplexer",
382 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200383 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200384 .known_events = h2_trace_events,
385 .lockon_args = h2_trace_lockon_args,
386 .decoding = h2_trace_decoding,
387 .report_events = ~0, // report everything by default
388};
389
390#define TRACE_SOURCE &trace_h2
391INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
392
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100393/* h2 stats module */
394enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100395 H2_ST_HEADERS_RCVD,
396 H2_ST_DATA_RCVD,
397 H2_ST_SETTINGS_RCVD,
398 H2_ST_RST_STREAM_RCVD,
399 H2_ST_GOAWAY_RCVD,
400
Amaury Denoyellea8879232020-10-27 17:16:03 +0100401 H2_ST_CONN_PROTO_ERR,
402 H2_ST_STRM_PROTO_ERR,
403 H2_ST_RST_STREAM_RESP,
404 H2_ST_GOAWAY_RESP,
405
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100406 H2_ST_OPEN_CONN,
407 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100408 H2_ST_TOTAL_CONN,
409 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100410
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100411 H2_STATS_COUNT /* must be the last member of the enum */
412};
413
414static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100415 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100416 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100417 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100418 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100419 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100420 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100421 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100422 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100423 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100424 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100425
426 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
427 .desc = "Total number of connection protocol errors" },
428 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
429 .desc = "Total number of stream protocol errors" },
430 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100431 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100432 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100433 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100434
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100435 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
436 .desc = "Count of currently open connections" },
437 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
438 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100439 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100440 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100441 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100442 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100443};
444
445static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100446 long long headers_rcvd; /* total number of HEADERS frame received */
447 long long data_rcvd; /* total number of DATA frame received */
448 long long settings_rcvd; /* total number of SETTINGS frame received */
449 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
450 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100451
452 long long conn_proto_err; /* total number of protocol errors detected */
453 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100454 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
455 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100456
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100457 long long open_conns; /* count of currently open connections */
458 long long open_streams; /* count of currently open streams */
459 long long total_conns; /* total number of connections */
460 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100461} h2_counters;
462
463static void h2_fill_stats(void *data, struct field *stats)
464{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100465 struct h2_counters *counters = data;
466
467 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
468 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
469 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
470 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
471 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100472
473 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
474 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
475 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
476 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100477
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100478 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
479 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
480 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
481 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100482}
483
484static struct stats_module h2_stats_module = {
485 .name = "h2",
486 .fill_stats = h2_fill_stats,
487 .stats = h2_stats,
488 .stats_count = H2_STATS_COUNT,
489 .counters = &h2_counters,
490 .counters_size = sizeof(h2_counters),
491 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
492 .clearable = 1,
493};
494
495INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
496
Willy Tarreau8ceae722018-11-26 11:58:30 +0100497/* the h2c connection pool */
498DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
499
500/* the h2s stream pool */
501DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
502
Willy Tarreaudc572362018-12-12 08:08:05 +0100503/* The default connection window size is 65535, it may only be enlarged using
504 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
505 * we'll pretend we already received the difference between the two to send
506 * an equivalent window update to enlarge it to 2G-1.
507 */
508#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
509
Willy Tarreau455d5682019-05-24 19:42:18 +0200510/* maximum amount of data we're OK with re-aligning for buffer optimizations */
511#define MAX_DATA_REALIGN 1024
512
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200513/* a few settings from the global section */
514static int h2_settings_header_table_size = 4096; /* initial value */
Willy Tarreaue6baec02017-07-27 11:45:11 +0200515static int h2_settings_initial_window_size = 65535; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100516static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100517static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200518
Willy Tarreau2a856182017-05-16 15:20:39 +0200519/* a dmumy closed stream */
520static const struct h2s *h2_closed_stream = &(const struct h2s){
521 .cs = NULL,
522 .h2c = NULL,
523 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100524 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100525 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200526 .id = 0,
527};
528
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100529/* a dmumy closed stream returning a PROTOCOL_ERROR error */
530static const struct h2s *h2_error_stream = &(const struct h2s){
531 .cs = NULL,
532 .h2c = NULL,
533 .st = H2_SS_CLOSED,
534 .errcode = H2_ERR_PROTOCOL_ERROR,
535 .flags = 0,
536 .id = 0,
537};
538
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100539/* a dmumy closed stream returning a REFUSED_STREAM error */
540static const struct h2s *h2_refused_stream = &(const struct h2s){
541 .cs = NULL,
542 .h2c = NULL,
543 .st = H2_SS_CLOSED,
544 .errcode = H2_ERR_REFUSED_STREAM,
545 .flags = 0,
546 .id = 0,
547};
548
Willy Tarreau2a856182017-05-16 15:20:39 +0200549/* and a dummy idle stream for use with any unannounced stream */
550static const struct h2s *h2_idle_stream = &(const struct h2s){
551 .cs = NULL,
552 .h2c = NULL,
553 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100554 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200555 .id = 0,
556};
557
Willy Tarreau144f84a2021-03-02 16:09:26 +0100558struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200559static int h2_send(struct h2c *h2c);
560static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200561static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100562/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100563struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100564static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Amaury Denoyelle74162742020-12-11 17:53:05 +0100565static 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 +0100566static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100567struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Olivier Houchardf502aca2018-12-14 19:42:40 +0100568static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100569static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200570
Willy Tarreauab2ec452019-08-30 07:07:08 +0200571/* returns a h2c state as an abbreviated 3-letter string, or "???" if unknown */
572static inline const char *h2c_st_to_str(enum h2_cs st)
573{
574 switch (st) {
575 case H2_CS_PREFACE: return "PRF";
576 case H2_CS_SETTINGS1: return "STG";
577 case H2_CS_FRAME_H: return "FRH";
578 case H2_CS_FRAME_P: return "FRP";
579 case H2_CS_FRAME_A: return "FRA";
580 case H2_CS_FRAME_E: return "FRE";
581 case H2_CS_ERROR: return "ERR";
582 case H2_CS_ERROR2: return "ER2";
583 default: return "???";
584 }
585}
586
587/* returns a h2s state as an abbreviated 3-letter string, or "???" if unknown */
588static inline const char *h2s_st_to_str(enum h2_ss st)
589{
590 switch (st) {
591 case H2_SS_IDLE: return "IDL"; // idle
592 case H2_SS_RLOC: return "RSL"; // reserved local
593 case H2_SS_RREM: return "RSR"; // reserved remote
594 case H2_SS_OPEN: return "OPN"; // open
595 case H2_SS_HREM: return "HCR"; // half-closed remote
596 case H2_SS_HLOC: return "HCL"; // half-closed local
597 case H2_SS_ERROR : return "ERR"; // error
598 case H2_SS_CLOSED: return "CLO"; // closed
599 default: return "???";
600 }
601}
602
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200603/* the H2 traces always expect that arg1, if non-null, is of type connection
604 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
605 * that arg3, if non-null, is either of type htx for tx headers, or of type
606 * buffer for everything else.
607 */
608static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
609 const struct ist where, const struct ist func,
610 const void *a1, const void *a2, const void *a3, const void *a4)
611{
612 const struct connection *conn = a1;
613 const struct h2c *h2c = conn ? conn->ctx : NULL;
614 const struct h2s *h2s = a2;
615 const struct buffer *buf = a3;
616 const struct htx *htx;
617 int pos;
618
619 if (!h2c) // nothing to add
620 return;
621
Willy Tarreau17104d42019-08-30 07:12:55 +0200622 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200623 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
624
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200625 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
626 conn_append_debug_info(&trace_buf, conn, " : ");
627
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100628 if (h2c->errcode)
629 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
630
Willy Tarreau73db4342019-09-25 07:28:44 +0200631 if (h2c->dsi >= 0 &&
632 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200633 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 +0200634 }
635
636 if (h2s) {
637 if (h2s->id <= 0)
638 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
639 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100640 if (h2s->id && h2s->errcode)
641 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200642 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200643 }
644
645 /* Let's dump decoded requests and responses right after parsing. They
646 * are traced at level USER with a few recognizable flags.
647 */
648 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
649 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
650 htx = htxbuf(buf); // recv req/res
651 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
652 htx = a3; // send req/res
653 else
654 htx = NULL;
655
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200656 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200657 const struct htx_blk *blk = htx_get_blk(htx, pos);
658 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
659 enum htx_blk_type type = htx_get_blk_type(blk);
660
661 if (type == HTX_BLK_REQ_SL)
662 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200663 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200664 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
665 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
666 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
667 else if (type == HTX_BLK_RES_SL)
668 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200669 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200670 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
671 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
672 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
673 }
674}
675
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200676
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100677/* Detect a pending read0 for a H2 connection. It happens if a read0 was
678 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
679 * to parse pending data, confirming no more progress is possible because
680 * we're facing a truncated frame. The function returns 1 to report a read0
681 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200682 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100683static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200684{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100685 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200686}
687
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200688/* returns true if the connection is allowed to expire, false otherwise. A
689 * connection may expire when:
690 * - it has no stream
691 * - it has data in the mux buffer
692 * - it has streams in the blocked list
693 * - it has streams in the fctl list
694 * - it has streams in the send list
695 * Otherwise it means some streams are waiting in the data layer and it should
696 * not expire.
697 */
698static inline int h2c_may_expire(const struct h2c *h2c)
699{
700 return eb_is_empty(&h2c->streams_by_id) ||
701 br_data(h2c->mbuf) ||
702 !LIST_ISEMPTY(&h2c->blocked_list) ||
703 !LIST_ISEMPTY(&h2c->fctl_list) ||
Willy Tarreaud9464162020-01-10 18:25:07 +0100704 !LIST_ISEMPTY(&h2c->send_list);
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200705}
706
Olivier Houchard7a977432019-03-21 15:47:13 +0100707static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200708h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100709{
710 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
711 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
712 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
713 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200714 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100715 (conn_xprt_read0_pending(h2c->conn) ||
716 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
717 return 1;
718
719 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100720}
721
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200722/*****************************************************/
723/* functions below are for dynamic buffer management */
724/*****************************************************/
725
Willy Tarreau315d8072017-12-10 22:17:57 +0100726/* indicates whether or not the we may call the h2_recv() function to attempt
727 * to receive data into the buffer and/or demux pending data. The condition is
728 * a bit complex due to some API limits for now. The rules are the following :
729 * - if an error or a shutdown was detected on the connection and the buffer
730 * is empty, we must not attempt to receive
731 * - if the demux buf failed to be allocated, we must not try to receive and
732 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100733 * - if no flag indicates a blocking condition, we may attempt to receive,
734 * regardless of whether the demux buffer is full or not, so that only
735 * de demux part decides whether or not to block. This is needed because
736 * the connection API indeed prevents us from re-enabling receipt that is
737 * already enabled in a polled state, so we must always immediately stop
738 * as soon as the demux can't proceed so as never to hit an end of read
739 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100740 * - otherwise must may not attempt
741 */
742static inline int h2_recv_allowed(const struct h2c *h2c)
743{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200744 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100745 (h2c->st0 >= H2_CS_ERROR ||
746 h2c->conn->flags & CO_FL_ERROR ||
747 conn_xprt_read0_pending(h2c->conn)))
748 return 0;
749
750 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100751 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100752 return 1;
753
754 return 0;
755}
756
Willy Tarreau47b515a2018-12-21 16:09:41 +0100757/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200758static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100759{
760 if (!h2_recv_allowed(h2c))
761 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200762 if ((!consider_buffer || !b_data(&h2c->dbuf))
763 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100764 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200765 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100766}
767
768
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100769/* returns true if the front connection has too many conn_streams attached */
770static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200771{
Willy Tarreaua8754662018-12-23 20:43:58 +0100772 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200773}
774
Willy Tarreau44e973f2018-03-01 17:49:30 +0100775/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
776 * flags are used to figure what buffer was requested. It returns 1 if the
777 * allocation succeeds, in which case the connection is woken up, or 0 if it's
778 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200779 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100780static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200781{
782 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100783 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200784
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100785 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200786 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200787 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200788 return 1;
789 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200790
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100791 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100792 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200793
794 if (h2c->flags & H2_CF_DEM_MROOM) {
795 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200796 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200797 }
Willy Tarreau14398122017-09-22 14:26:04 +0200798 return 1;
799 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100800
801 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
802 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100803 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100804 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200805 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100806 return 1;
807 }
808
Willy Tarreau14398122017-09-22 14:26:04 +0200809 return 0;
810}
811
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200812static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200813{
814 struct buffer *buf = NULL;
815
Willy Tarreau2b718102021-04-21 07:32:39 +0200816 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100817 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100818 h2c->buf_wait.target = h2c;
819 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200820 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200821 }
822 return buf;
823}
824
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200825static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200826{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200827 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100828 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100829 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200830 }
831}
832
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200833static inline void h2_release_mbuf(struct h2c *h2c)
834{
835 struct buffer *buf;
836 unsigned int count = 0;
837
838 while (b_size(buf = br_head_pick(h2c->mbuf))) {
839 b_free(buf);
840 count++;
841 }
842 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100843 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200844}
845
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100846/* returns the number of allocatable outgoing streams for the connection taking
847 * the last_sid and the reserved ones into account.
848 */
849static inline int h2_streams_left(const struct h2c *h2c)
850{
851 int ret;
852
853 /* consider the number of outgoing streams we're allowed to create before
854 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
855 * nb_reserved is the number of streams which don't yet have an ID.
856 */
857 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
858 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
859 if (ret < 0)
860 ret = 0;
861 return ret;
862}
863
Willy Tarreau00f18a32019-01-26 12:19:01 +0100864/* returns the number of streams in use on a connection to figure if it's
865 * idle or not. We check nb_cs and not nb_streams as the caller will want
866 * to know if it was the last one after a detach().
867 */
868static int h2_used_streams(struct connection *conn)
869{
870 struct h2c *h2c = conn->ctx;
871
872 return h2c->nb_cs;
873}
874
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100875/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100876static int h2_avail_streams(struct connection *conn)
877{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100878 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100879 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100880 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100881
Willy Tarreau6afec462019-01-28 06:40:19 +0100882 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
883 * streams on the connection.
884 */
885 if (h2c->last_sid >= 0)
886 return 0;
887
Willy Tarreauc61966f2019-10-31 15:10:03 +0100888 if (h2c->st0 >= H2_CS_ERROR)
889 return 0;
890
Willy Tarreau86949782019-01-31 10:42:05 +0100891 /* note: may be negative if a SETTINGS frame changes the limit */
892 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100893
894 /* we must also consider the limit imposed by stream IDs */
895 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100896 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100897 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100898 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
899 ret1 = MIN(ret1, ret2);
900 }
901 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100902}
903
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200904
Willy Tarreau62f52692017-10-08 23:01:42 +0200905/*****************************************************************/
906/* functions below are dedicated to the mux setup and management */
907/*****************************************************************/
908
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200909/* Initialize the mux once it's attached. For outgoing connections, the context
910 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200911 * connections from the fact that the context is still NULL (even during mux
912 * upgrades). <input> is always used as Input buffer and may contain data. It is
913 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200914 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200915static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
916 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200917{
918 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100919 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200920 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200921
Christopher Fauletf81ef032019-10-04 15:19:43 +0200922 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200923
Willy Tarreaubafbe012017-11-24 17:34:44 +0100924 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200925 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200926 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200927
Christopher Faulete9b70722019-04-08 10:46:02 +0200928 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200929 h2c->flags = H2_CF_IS_BACK;
930 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
931 if (tick_isset(prx->timeout.serverfin))
932 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100933
934 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
935 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200936 } else {
937 h2c->flags = H2_CF_NONE;
938 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
939 if (tick_isset(prx->timeout.clientfin))
940 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100941
942 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
943 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200944 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100945
Willy Tarreau0b37d652018-10-03 10:33:02 +0200946 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100947 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100948 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200949 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100950 if (!t)
951 goto fail;
952
953 h2c->task = t;
954 t->process = h2_timeout_task;
955 t->context = h2c;
956 t->expire = tick_add(now_ms, h2c->timeout);
957 }
Willy Tarreauea392822017-10-31 10:02:25 +0100958
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200959 h2c->wait_event.tasklet = tasklet_new();
960 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200961 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200962 h2c->wait_event.tasklet->process = h2_io_cb;
963 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100964 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200965 if (!conn_is_back(conn)) {
966 /* Connection might already be in the stopping_list if subject
967 * to h1->h2 upgrade.
968 */
969 if (!LIST_INLIST(&conn->stopping_list)) {
970 LIST_APPEND(&mux_stopping_data[tid].list,
971 &conn->stopping_list);
972 }
973 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200974
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200975 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200976 if (!h2c->ddht)
977 goto fail;
978
979 /* Initialise the context. */
980 h2c->st0 = H2_CS_PREFACE;
981 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100982 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200983 h2c->max_id = -1;
984 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100985 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200986 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100987 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200988 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100989 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100990 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200991
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200992 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200993 h2c->dsi = -1;
994 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100995
Willy Tarreau32218eb2017-09-22 08:07:25 +0200996 h2c->last_sid = -1;
997
Willy Tarreau51330962019-05-26 09:38:07 +0200998 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200999 h2c->miw = 65535; /* mux initial window size */
1000 h2c->mws = 65535; /* mux window size */
1001 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001002 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001003 LIST_INIT(&h2c->send_list);
1004 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001005 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001006 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001007
Christopher Fauletf81ef032019-10-04 15:19:43 +02001008 conn->ctx = h2c;
1009
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001010 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1011
Willy Tarreau3f133572017-10-31 19:21:06 +01001012 if (t)
1013 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001014
Willy Tarreau01b44822018-10-03 14:26:37 +02001015 if (h2c->flags & H2_CF_IS_BACK) {
1016 /* FIXME: this is temporary, for outgoing connections we need
1017 * to immediately allocate a stream until the code is modified
1018 * so that the caller calls ->attach(). For now the outgoing cs
Christopher Fauletf81ef032019-10-04 15:19:43 +02001019 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001020 */
1021 struct h2s *h2s;
1022
Christopher Fauletf81ef032019-10-04 15:19:43 +02001023 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001024 if (!h2s)
1025 goto fail_stream;
1026 }
1027
Willy Tarreau4781b152021-04-06 13:53:36 +02001028 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1029 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001030
Willy Tarreau0f383582018-10-03 14:22:21 +02001031 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001032 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001033 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001034 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001035 fail_stream:
1036 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001037 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001038 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001039 if (h2c->wait_event.tasklet)
1040 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001041 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001042 fail_no_h2c:
Christopher Fauletf81ef032019-10-04 15:19:43 +02001043 conn->ctx = conn_ctx; /* restore saved ctx */
1044 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001045 return -1;
1046}
1047
Willy Tarreau751f2d02018-10-05 09:35:00 +02001048/* returns the next allocatable outgoing stream ID for the H2 connection, or
1049 * -1 if no more is allocatable.
1050 */
1051static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1052{
1053 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001054
1055 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001056 id = -1;
1057 return id;
1058}
1059
Willy Tarreau2373acc2017-10-12 17:35:14 +02001060/* returns the stream associated with id <id> or NULL if not found */
1061static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1062{
1063 struct eb32_node *node;
1064
Willy Tarreau751f2d02018-10-05 09:35:00 +02001065 if (id == 0)
1066 return (struct h2s *)h2_closed_stream;
1067
Willy Tarreau2a856182017-05-16 15:20:39 +02001068 if (id > h2c->max_id)
1069 return (struct h2s *)h2_idle_stream;
1070
Willy Tarreau2373acc2017-10-12 17:35:14 +02001071 node = eb32_lookup(&h2c->streams_by_id, id);
1072 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001073 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001074
1075 return container_of(node, struct h2s, by_id);
1076}
1077
Christopher Faulet73c12072019-04-08 11:23:22 +02001078/* release function. This one should be called to free all resources allocated
1079 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001080 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001081static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001082{
William Dauchy477757c2020-08-07 22:19:23 +02001083 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001084
Willy Tarreau7838a792019-08-12 18:42:03 +02001085 TRACE_ENTER(H2_EV_H2C_END);
1086
Willy Tarreau32218eb2017-09-22 08:07:25 +02001087 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +02001088 /* The connection must be aattached to this mux to be released */
1089 if (h2c->conn && h2c->conn->ctx == h2c)
1090 conn = h2c->conn;
1091
Willy Tarreau7838a792019-08-12 18:42:03 +02001092 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001093 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +02001094
Willy Tarreau2b718102021-04-21 07:32:39 +02001095 if (LIST_INLIST(&h2c->buf_wait.list))
Willy Tarreau90f366b2021-02-20 11:49:49 +01001096 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001097
Willy Tarreau44e973f2018-03-01 17:49:30 +01001098 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +02001099 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +01001100
Willy Tarreauea392822017-10-31 10:02:25 +01001101 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +02001102 h2c->task->context = NULL;
1103 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +01001104 h2c->task = NULL;
1105 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001106 if (h2c->wait_event.tasklet)
1107 tasklet_free(h2c->wait_event.tasklet);
Christopher Faulet21d849f2019-09-18 11:07:20 +02001108 if (conn && h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001109 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Christopher Faulet21d849f2019-09-18 11:07:20 +02001110 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001111
Willy Tarreau4781b152021-04-06 13:53:36 +02001112 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001113
Willy Tarreaubafbe012017-11-24 17:34:44 +01001114 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001115 }
1116
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001117 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001118 if (!conn_is_back(conn))
1119 LIST_DEL_INIT(&conn->stopping_list);
1120
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001121 conn->mux = NULL;
1122 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001123 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001124
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001125 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001126
1127 /* there might be a GOAWAY frame still pending in the TCP
1128 * stack, and if the peer continues to send (i.e. window
1129 * updates etc), this can result in losing the GOAWAY. For
1130 * this reason we try to drain anything received in between.
1131 */
1132 conn->flags |= CO_FL_WANT_DRAIN;
1133
1134 conn_xprt_shutw(conn);
1135 conn_xprt_close(conn);
1136 conn_sock_shutw(conn, !conn_is_back(conn));
1137 conn_ctrl_close(conn);
1138
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001139 if (conn->destroy_cb)
1140 conn->destroy_cb(conn);
1141 conn_free(conn);
1142 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001143
1144 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001145}
1146
1147
Willy Tarreau71681172017-10-23 14:39:06 +02001148/******************************************************/
1149/* functions below are for the H2 protocol processing */
1150/******************************************************/
1151
1152/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001153static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001154{
1155 return h2s ? h2s->id : 0;
1156}
1157
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001158/* returns the sum of the stream's own window size and the mux's initial
1159 * window, which together form the stream's effective window size.
1160 */
1161static inline int h2s_mws(const struct h2s *h2s)
1162{
1163 return h2s->sws + h2s->h2c->miw;
1164}
1165
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001166/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001167static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +02001168{
1169 if (h2c->msi < 0)
1170 return 0;
1171
1172 if (h2c->msi == h2s_id(h2s))
1173 return 0;
1174
1175 return 1;
1176}
1177
Willy Tarreau741d6df2017-10-17 08:00:59 +02001178/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +01001179static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001180{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001181 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001182 h2c->errcode = err;
1183 h2c->st0 = H2_CS_ERROR;
1184}
1185
Willy Tarreau175cebb2019-01-24 10:02:24 +01001186/* marks an error on the stream. It may also update an already closed stream
1187 * (e.g. to report an error after an RST was received).
1188 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001189static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001190{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001191 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001192 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001193 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001194 if (h2s->st < H2_SS_ERROR)
1195 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +01001196 if (h2s->cs)
1197 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001198 }
1199}
1200
Willy Tarreau7e094452018-12-19 18:08:52 +01001201/* attempt to notify the data layer of recv availability */
1202static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1203{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001204 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001205 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001206 tasklet_wakeup(h2s->subs->tasklet);
1207 h2s->subs->events &= ~SUB_RETRY_RECV;
1208 if (!h2s->subs->events)
1209 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001210 }
1211}
1212
1213/* attempt to notify the data layer of send availability */
1214static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1215{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001216 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001217 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001218 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001219 tasklet_wakeup(h2s->subs->tasklet);
1220 h2s->subs->events &= ~SUB_RETRY_SEND;
1221 if (!h2s->subs->events)
1222 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001223 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001224 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1225 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1226 tasklet_wakeup(h2s->shut_tl);
1227 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001228}
1229
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001230/* alerts the data layer, trying to wake it up by all means, following
1231 * this sequence :
1232 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1233 * - if its subscribed to send, then it's woken up for send
1234 * - if it was subscribed to neither, its ->wake() callback is called
1235 * It is safe to call this function with a closed stream which doesn't have a
1236 * conn_stream anymore.
1237 */
1238static void __maybe_unused h2s_alert(struct h2s *h2s)
1239{
Willy Tarreau7838a792019-08-12 18:42:03 +02001240 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1241
Willy Tarreauf96508a2020-01-10 11:12:48 +01001242 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001243 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001244 h2s_notify_recv(h2s);
1245 h2s_notify_send(h2s);
1246 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001247 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1248 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001249 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001250 }
1251
1252 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001253}
1254
Willy Tarreaue4820742017-07-27 13:37:23 +02001255/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001256static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001257{
1258 uint8_t *out = frame;
1259
1260 *out = len >> 16;
1261 write_n16(out + 1, len);
1262}
1263
Willy Tarreau54c15062017-10-10 17:10:03 +02001264/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1265 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1266 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001267 * available in the buffer's input prior to calling this function. The buffer
1268 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001269 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001270static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001271 const struct buffer *b, int o)
1272{
Willy Tarreau591d4452018-06-15 17:21:00 +02001273 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 +02001274}
1275
Willy Tarreau1f094672017-11-20 21:27:45 +01001276static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001277{
Willy Tarreau591d4452018-06-15 17:21:00 +02001278 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001279}
1280
Willy Tarreau1f094672017-11-20 21:27:45 +01001281static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001282{
Willy Tarreau591d4452018-06-15 17:21:00 +02001283 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001284}
1285
Willy Tarreau1f094672017-11-20 21:27:45 +01001286static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001287{
Willy Tarreau591d4452018-06-15 17:21:00 +02001288 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001289}
1290
1291
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001292/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1293 * The algorithm is not obvious. It turns out that H2 headers are neither
1294 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1295 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001296 *
1297 * b0 b1 b2 b3 b4 b5..b8
1298 * +----------+---------+--------+----+----+----------------------+
1299 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1300 * +----------+---------+--------+----+----+----------------------+
1301 *
1302 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1303 * we get the sid properly aligned and ordered, and 16 bits of len properly
1304 * ordered as well. The type and flags can be extracted using bit shifts from
1305 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001306 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1307 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001308 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001309static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001310{
1311 uint64_t w;
1312
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001313 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001314 return 0;
1315
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001316 w = h2_get_n64(b, o + 1);
1317 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001318 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1319 h->ff = w >> 32;
1320 h->ft = w >> 40;
1321 h->len += w >> 48;
1322 return 1;
1323}
1324
1325/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1326 * h2_peek_frame_hdr() above.
1327 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001328static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001329{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001330 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001331}
1332
1333/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001334static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001335{
1336 int ret;
1337
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001338 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001339 if (ret > 0)
1340 h2_skip_frame_hdr(b);
1341 return ret;
1342}
1343
Willy Tarreaucb985a42019-10-07 16:56:34 +02001344
1345/* try to fragment the headers frame present at the beginning of buffer <b>,
1346 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1347 * success. Typical causes of failure include a buffer not large enough to
1348 * add extra frame headers. The existing frame size is read in the current
1349 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1350 * and its length will be adjusted. The stream ID for continuation frames will
1351 * be copied from the initial frame's.
1352 */
1353static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1354{
1355 size_t remain = b->data - 9;
1356 int extra_frames = (remain - 1) / mfs;
1357 size_t fsize;
1358 char *fptr;
1359 int frame;
1360
1361 if (b->data <= mfs + 9)
1362 return 1;
1363
1364 /* Too large a frame, we need to fragment it using CONTINUATION
1365 * frames. We start from the end and move tails as needed.
1366 */
1367 if (b->data + extra_frames * 9 > b->size)
1368 return 0;
1369
1370 for (frame = extra_frames; frame; frame--) {
1371 fsize = ((remain - 1) % mfs) + 1;
1372 remain -= fsize;
1373
1374 /* move data */
1375 fptr = b->area + 9 + remain + (frame - 1) * 9;
1376 memmove(fptr + 9, b->area + 9 + remain, fsize);
1377 b->data += 9;
1378
1379 /* write new frame header */
1380 h2_set_frame_size(fptr, fsize);
1381 fptr[3] = H2_FT_CONTINUATION;
1382 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1383 write_n32(fptr + 5, read_n32(b->area + 5));
1384 }
1385
1386 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1387 h2_set_frame_size(b->area, remain);
1388 return 1;
1389}
1390
1391
Willy Tarreau00dd0782018-03-01 16:31:34 +01001392/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1393 * its connection if the stream was not yet closed. Please use this exclusively
1394 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001395 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001396static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001397{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001398 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001399 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001400 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001401 if (!h2s->id)
1402 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001403 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001404 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1405 h2s_notify_recv(h2s);
1406 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001407 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001408
Willy Tarreau7838a792019-08-12 18:42:03 +02001409 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001410 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001411 h2s->st = H2_SS_CLOSED;
1412}
1413
Willy Tarreau71049cc2018-03-28 13:56:39 +02001414/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001415/* h2s_destroy should only ever be called by the thread that owns the stream,
1416 * that means that a tasklet should be used if we want to destroy the h2s
1417 * from another thread
1418 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001419static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001420{
Willy Tarreau7838a792019-08-12 18:42:03 +02001421 struct connection *conn = h2s->h2c->conn;
1422
1423 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1424
Willy Tarreau0a10de62018-03-01 16:27:53 +01001425 h2s_close(h2s);
1426 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001427 if (b_size(&h2s->rxbuf)) {
1428 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001429 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001430 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001431
1432 if (h2s->subs)
1433 h2s->subs->events = 0;
1434
Joseph Herlantd77575d2018-11-25 10:54:45 -08001435 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001436 * reference left would be in the h2c send_list/fctl_list, and if
1437 * we're in it, we're getting out anyway
1438 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001439 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001440
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001441 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001442 tasklet_free(h2s->shut_tl);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001443 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001444
1445 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001446}
1447
Willy Tarreaua8e49542018-10-03 18:53:55 +02001448/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1449 * stream tree. In case of error, nothing is added and NULL is returned. The
1450 * causes of errors can be any failed memory allocation. The caller is
1451 * responsible for checking if the connection may support an extra stream
1452 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001453 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001454static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001455{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001456 struct h2s *h2s;
1457
Willy Tarreau7838a792019-08-12 18:42:03 +02001458 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1459
Willy Tarreaubafbe012017-11-24 17:34:44 +01001460 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001461 if (!h2s)
1462 goto out;
1463
Willy Tarreau5723f292020-01-10 15:16:57 +01001464 h2s->shut_tl = tasklet_new();
1465 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001466 pool_free(pool_head_h2s, h2s);
1467 goto out;
1468 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001469 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001470 h2s->shut_tl->process = h2_deferred_shut;
1471 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001472 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001473 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001474 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001475 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001476 h2s->flags = H2_SF_NONE;
1477 h2s->errcode = H2_ERR_NO_ERROR;
1478 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001479 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001480 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001481 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001482 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001483
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001484 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001485 if (id > 0)
1486 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001487 else
1488 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001489
1490 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001491 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001492 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001493
Willy Tarreau4781b152021-04-06 13:53:36 +02001494 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1495 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001496
Willy Tarreau7838a792019-08-12 18:42:03 +02001497 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001498 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001499 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001500 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001501 return NULL;
1502}
1503
1504/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001505 * case of memory allocation error. <input> is used as input buffer for the new
1506 * stream. On success, it is transferred to the stream and the mux is no longer
1507 * responsible of it. On error, <input> is unchanged, thus the mux must still
1508 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001509 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01001510static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001511{
1512 struct session *sess = h2c->conn->owner;
1513 struct conn_stream *cs;
1514 struct h2s *h2s;
1515
Willy Tarreau7838a792019-08-12 18:42:03 +02001516 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1517
Willy Tarreaua8e49542018-10-03 18:53:55 +02001518 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1519 goto out;
1520
1521 h2s = h2s_new(h2c, id);
1522 if (!h2s)
1523 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001524
Christopher Faulet236c93b2020-07-02 09:19:54 +02001525 cs = cs_new(h2c->conn, h2c->conn->target);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001526 if (!cs)
1527 goto out_close;
1528
Olivier Houchard746fb772018-12-15 19:42:00 +01001529 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001530 h2s->cs = cs;
1531 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001532 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001533
Christopher Faulet7d013e72020-12-15 16:56:50 +01001534 if (stream_create_from_cs(cs, input) < 0)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001535 goto out_free_cs;
1536
Willy Tarreau590a0512018-09-05 11:56:48 +02001537 /* We want the accept date presented to the next stream to be the one
1538 * we have now, the handshake time to be null (since the next stream
1539 * is not delayed by a handshake), and the idle time to count since
1540 * right now.
1541 */
1542 sess->accept_date = date;
1543 sess->tv_accept = now;
1544 sess->t_handshake = 0;
1545
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001546 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001547 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001548 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001549 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001550 return h2s;
1551
1552 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001553 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001554 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001555 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001556 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001557 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001558 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001559 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001560 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001561 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001562}
1563
Willy Tarreau751f2d02018-10-05 09:35:00 +02001564/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1565 * and returns it, or NULL in case of memory allocation error or if the highest
1566 * possible stream ID was reached.
1567 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001568static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001569{
1570 struct h2s *h2s = NULL;
1571
Willy Tarreau7838a792019-08-12 18:42:03 +02001572 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1573
Willy Tarreau86949782019-01-31 10:42:05 +01001574 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001575 goto out;
1576
Willy Tarreaua80dca82019-01-24 17:08:28 +01001577 if (h2_streams_left(h2c) < 1)
1578 goto out;
1579
Willy Tarreau751f2d02018-10-05 09:35:00 +02001580 /* Defer choosing the ID until we send the first message to create the stream */
1581 h2s = h2s_new(h2c, 0);
1582 if (!h2s)
1583 goto out;
1584
1585 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001586 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001587 cs->ctx = h2s;
1588 h2c->nb_cs++;
1589
Willy Tarreau751f2d02018-10-05 09:35:00 +02001590 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001591 if (likely(h2s))
1592 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1593 else
1594 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001595 return h2s;
1596}
1597
Willy Tarreaube5b7152017-09-25 16:25:39 +02001598/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1599 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1600 * the various settings codes.
1601 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001602static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001603{
1604 struct buffer *res;
1605 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001606 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001607 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001608 int ret = 0;
1609
1610 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001611
1612 if (h2c_mux_busy(h2c, NULL)) {
1613 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001614 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001615 }
1616
Willy Tarreaube5b7152017-09-25 16:25:39 +02001617 chunk_init(&buf, buf_data, sizeof(buf_data));
1618 chunk_memcpy(&buf,
1619 "\x00\x00\x00" /* length : 0 for now */
1620 "\x04\x00" /* type : 4 (settings), flags : 0 */
1621 "\x00\x00\x00\x00", /* stream ID : 0 */
1622 9);
1623
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001624 if (h2c->flags & H2_CF_IS_BACK) {
1625 /* send settings_enable_push=0 */
1626 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1627 }
1628
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001629 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1630 * sent automatically unless disabled in the global config */
1631 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1632 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001633
Willy Tarreaube5b7152017-09-25 16:25:39 +02001634 if (h2_settings_header_table_size != 4096) {
1635 char str[6] = "\x00\x01"; /* header_table_size */
1636
1637 write_n32(str + 2, h2_settings_header_table_size);
1638 chunk_memcat(&buf, str, 6);
1639 }
1640
1641 if (h2_settings_initial_window_size != 65535) {
1642 char str[6] = "\x00\x04"; /* initial_window_size */
1643
1644 write_n32(str + 2, h2_settings_initial_window_size);
1645 chunk_memcat(&buf, str, 6);
1646 }
1647
1648 if (h2_settings_max_concurrent_streams != 0) {
1649 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1650
1651 /* Note: 0 means "unlimited" for haproxy's config but not for
1652 * the protocol, so never send this value!
1653 */
1654 write_n32(str + 2, h2_settings_max_concurrent_streams);
1655 chunk_memcat(&buf, str, 6);
1656 }
1657
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001658 mfs = h2_settings_max_frame_size;
1659 if (mfs > global.tune.bufsize)
1660 mfs = global.tune.bufsize;
1661
1662 if (!mfs)
1663 mfs = global.tune.bufsize;
1664
1665 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001666 char str[6] = "\x00\x05"; /* max_frame_size */
1667
1668 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1669 * match bufsize - rewrite size, but at the moment it seems
1670 * that clients don't take care of it.
1671 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001672 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001673 chunk_memcat(&buf, str, 6);
1674 }
1675
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001676 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001677
1678 res = br_tail(h2c->mbuf);
1679 retry:
1680 if (!h2_get_buf(h2c, res)) {
1681 h2c->flags |= H2_CF_MUX_MALLOC;
1682 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001683 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001684 }
1685
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001686 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001687 if (unlikely(ret <= 0)) {
1688 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001689 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1690 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001691 h2c->flags |= H2_CF_MUX_MFULL;
1692 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001693 }
1694 else {
1695 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001696 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001697 }
1698 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001699 out:
1700 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001701 return ret;
1702}
1703
Willy Tarreau52eed752017-09-22 15:05:09 +02001704/* Try to receive a connection preface, then upon success try to send our
1705 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1706 * missing data. It may return an error in h2c.
1707 */
1708static int h2c_frt_recv_preface(struct h2c *h2c)
1709{
1710 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001711 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001712
Willy Tarreau7838a792019-08-12 18:42:03 +02001713 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1714
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001715 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001716
1717 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001718 if (!ret1)
1719 h2c->flags |= H2_CF_DEM_SHORT_READ;
Amaury Denoyellea8879232020-10-27 17:16:03 +01001720 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001721 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 +02001722 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001723 if (b_data(&h2c->dbuf) ||
1724 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1725 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001726 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001727 ret2 = 0;
1728 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001729 }
1730
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001731 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001732 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001733 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001734 out:
1735 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001736 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001737}
1738
Willy Tarreau01b44822018-10-03 14:26:37 +02001739/* Try to send a connection preface, then upon success try to send our
1740 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1741 * missing data. It may return an error in h2c.
1742 */
1743static int h2c_bck_send_preface(struct h2c *h2c)
1744{
1745 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001746 int ret = 0;
1747
1748 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001749
1750 if (h2c_mux_busy(h2c, NULL)) {
1751 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001752 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001753 }
1754
Willy Tarreaubcc45952019-05-26 10:05:50 +02001755 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001756 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001757 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001758 h2c->flags |= H2_CF_MUX_MALLOC;
1759 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001760 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001761 }
1762
1763 if (!b_data(res)) {
1764 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001765 ret = b_istput(res, ist(H2_CONN_PREFACE));
1766 if (unlikely(ret <= 0)) {
1767 if (!ret) {
1768 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1769 goto retry;
1770 h2c->flags |= H2_CF_MUX_MFULL;
1771 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001772 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001773 }
1774 else {
1775 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001776 ret = 0;
1777 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001778 }
1779 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001780 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001781 ret = h2c_send_settings(h2c);
1782 out:
1783 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1784 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001785}
1786
Willy Tarreau081d4722017-05-16 21:51:05 +02001787/* try to send a GOAWAY frame on the connection to report an error or a graceful
1788 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1789 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1790 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1791 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1792 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1793 * on unrecoverable failure. It will not attempt to send one again in this last
1794 * case so that it is safe to use h2c_error() to report such errors.
1795 */
1796static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1797{
1798 struct buffer *res;
1799 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001800 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001801
Willy Tarreau7838a792019-08-12 18:42:03 +02001802 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1803
1804 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1805 ret = 1; // claim that it worked
1806 goto out;
1807 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001808
1809 if (h2c_mux_busy(h2c, h2s)) {
1810 if (h2s)
1811 h2s->flags |= H2_SF_BLK_MBUSY;
1812 else
1813 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001814 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001815 }
1816
Willy Tarreau9c218e72019-05-26 10:08:28 +02001817 /* len: 8, type: 7, flags: none, sid: 0 */
1818 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1819
1820 if (h2c->last_sid < 0)
1821 h2c->last_sid = h2c->max_id;
1822
1823 write_n32(str + 9, h2c->last_sid);
1824 write_n32(str + 13, h2c->errcode);
1825
Willy Tarreaubcc45952019-05-26 10:05:50 +02001826 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001827 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001828 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001829 h2c->flags |= H2_CF_MUX_MALLOC;
1830 if (h2s)
1831 h2s->flags |= H2_SF_BLK_MROOM;
1832 else
1833 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001834 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001835 }
1836
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001837 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001838 if (unlikely(ret <= 0)) {
1839 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001840 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1841 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001842 h2c->flags |= H2_CF_MUX_MFULL;
1843 if (h2s)
1844 h2s->flags |= H2_SF_BLK_MROOM;
1845 else
1846 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001847 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001848 }
1849 else {
1850 /* we cannot report this error using GOAWAY, so we mark
1851 * it and claim a success.
1852 */
1853 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1854 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001855 ret = 1;
1856 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001857 }
1858 }
1859 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001860
1861 /* some codes are not for real errors, just attempts to close cleanly */
1862 switch (h2c->errcode) {
1863 case H2_ERR_NO_ERROR:
1864 case H2_ERR_ENHANCE_YOUR_CALM:
1865 case H2_ERR_REFUSED_STREAM:
1866 case H2_ERR_CANCEL:
1867 break;
1868 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001869 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001870 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001871 out:
1872 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001873 return ret;
1874}
1875
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001876/* Try to send an RST_STREAM frame on the connection for the indicated stream
1877 * during mux operations. This stream must be valid and cannot be closed
1878 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1879 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1880 * not yet.
1881 *
1882 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1883 * to write the message, it subscribes the stream to future notifications.
1884 */
1885static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1886{
1887 struct buffer *res;
1888 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001889 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001890
Willy Tarreau7838a792019-08-12 18:42:03 +02001891 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1892
1893 if (!h2s || h2s->st == H2_SS_CLOSED) {
1894 ret = 1;
1895 goto out;
1896 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001897
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001898 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1899 * RST_STREAM in response to a RST_STREAM frame.
1900 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001901 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001902 ret = 1;
1903 goto ignore;
1904 }
1905
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001906 if (h2c_mux_busy(h2c, h2s)) {
1907 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001908 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001909 }
1910
Willy Tarreau9c218e72019-05-26 10:08:28 +02001911 /* len: 4, type: 3, flags: none */
1912 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1913 write_n32(str + 5, h2s->id);
1914 write_n32(str + 9, h2s->errcode);
1915
Willy Tarreaubcc45952019-05-26 10:05:50 +02001916 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001917 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001918 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001919 h2c->flags |= H2_CF_MUX_MALLOC;
1920 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001921 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001922 }
1923
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001924 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001925 if (unlikely(ret <= 0)) {
1926 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001927 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1928 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001929 h2c->flags |= H2_CF_MUX_MFULL;
1930 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001931 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001932 }
1933 else {
1934 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001935 ret = 0;
1936 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001937 }
1938 }
1939
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001940 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001941 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001942 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001943 out:
1944 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001945 return ret;
1946}
1947
1948/* Try to send an RST_STREAM frame on the connection for the stream being
1949 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001950 * error code, even if the stream is one of the dummy ones, and will update
1951 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001952 *
1953 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1954 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001955 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001956 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001957 */
1958static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1959{
1960 struct buffer *res;
1961 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001962 int ret = 0;
1963
1964 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001965
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001966 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1967 * RST_STREAM in response to a RST_STREAM frame.
1968 */
1969 if (h2c->dft == H2_FT_RST_STREAM) {
1970 ret = 1;
1971 goto ignore;
1972 }
1973
Willy Tarreau27a84c92017-10-17 08:10:17 +02001974 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001975 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001976 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001977 }
1978
Willy Tarreau9c218e72019-05-26 10:08:28 +02001979 /* len: 4, type: 3, flags: none */
1980 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1981
1982 write_n32(str + 5, h2c->dsi);
1983 write_n32(str + 9, h2s->errcode);
1984
Willy Tarreaubcc45952019-05-26 10:05:50 +02001985 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001986 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001987 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001988 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001989 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001990 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001991 }
1992
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001993 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001994 if (unlikely(ret <= 0)) {
1995 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001996 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1997 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001998 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001999 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002000 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002001 }
2002 else {
2003 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002004 ret = 0;
2005 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002006 }
2007 }
2008
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002009 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002010 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002011 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002012 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002013 }
2014
Willy Tarreau7838a792019-08-12 18:42:03 +02002015 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002016 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002017 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002018 return ret;
2019}
2020
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002021/* try to send an empty DATA frame with the ES flag set to notify about the
2022 * end of stream and match a shutdown(write). If an ES was already sent as
2023 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2024 * on success or zero if nothing was done. In case of lack of room to write the
2025 * message, it subscribes the requesting stream to future notifications.
2026 */
2027static int h2_send_empty_data_es(struct h2s *h2s)
2028{
2029 struct h2c *h2c = h2s->h2c;
2030 struct buffer *res;
2031 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002032 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002033
Willy Tarreau7838a792019-08-12 18:42:03 +02002034 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2035
2036 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2037 ret = 1;
2038 goto out;
2039 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002040
2041 if (h2c_mux_busy(h2c, h2s)) {
2042 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002043 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002044 }
2045
Willy Tarreau9c218e72019-05-26 10:08:28 +02002046 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2047 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2048 write_n32(str + 5, h2s->id);
2049
Willy Tarreaubcc45952019-05-26 10:05:50 +02002050 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002051 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002052 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002053 h2c->flags |= H2_CF_MUX_MALLOC;
2054 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002055 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002056 }
2057
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002058 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002059 if (likely(ret > 0)) {
2060 h2s->flags |= H2_SF_ES_SENT;
2061 }
2062 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002063 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2064 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002065 h2c->flags |= H2_CF_MUX_MFULL;
2066 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002067 }
2068 else {
2069 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002070 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002071 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002072 out:
2073 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002074 return ret;
2075}
2076
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002077/* wake a specific stream and assign its conn_stream some CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02002078 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002079 * is automatically updated accordingly. If the stream is orphaned, it is
2080 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002081 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002082static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002083{
Willy Tarreau7838a792019-08-12 18:42:03 +02002084 struct h2c *h2c = h2s->h2c;
2085
2086 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2087
Christopher Fauletf02ca002019-03-07 16:21:34 +01002088 if (!h2s->cs) {
2089 /* this stream was already orphaned */
2090 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002091 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002092 return;
2093 }
2094
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002095 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002096 if (h2s->st == H2_SS_OPEN)
2097 h2s->st = H2_SS_HREM;
2098 else if (h2s->st == H2_SS_HLOC)
2099 h2s_close(h2s);
2100 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002101
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002102 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
2103 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
2104 h2s->cs->flags |= CS_FL_ERR_PENDING;
2105 if (h2s->cs->flags & CS_FL_EOS)
2106 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02002107
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002108 if (h2s->st < H2_SS_ERROR)
2109 h2s->st = H2_SS_ERROR;
2110 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002111
2112 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002113 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002114}
2115
2116/* wake the streams attached to the connection, whose id is greater than <last>
2117 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002118 */
Willy Tarreau23482912019-05-07 15:23:14 +02002119static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002120{
2121 struct eb32_node *node;
2122 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002123
Willy Tarreau7838a792019-08-12 18:42:03 +02002124 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2125
Christopher Fauletf02ca002019-03-07 16:21:34 +01002126 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002127 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2128 while (node) {
2129 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002130 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002131 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002132 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002133
Christopher Fauletf02ca002019-03-07 16:21:34 +01002134 /* Wake all streams with unassigned ID (ID == 0) */
2135 node = eb32_lookup(&h2c->streams_by_id, 0);
2136 while (node) {
2137 h2s = container_of(node, struct h2s, by_id);
2138 if (h2s->id > 0)
2139 break;
2140 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002141 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002142 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002143
2144 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002145}
2146
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002147/* Wake up all blocked streams whose window size has become positive after the
2148 * mux's initial window was adjusted. This should be done after having processed
2149 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002150 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002151static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002152{
2153 struct h2s *h2s;
2154 struct eb32_node *node;
2155
Willy Tarreau7838a792019-08-12 18:42:03 +02002156 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2157
Willy Tarreau3421aba2017-07-27 15:41:03 +02002158 node = eb32_first(&h2c->streams_by_id);
2159 while (node) {
2160 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002161 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002162 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002163 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002164 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2165 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002166 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002167 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002168 node = eb32_next(node);
2169 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002170
2171 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002172}
2173
2174/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2175 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002176 * return an error in h2c. The caller must have already verified frame length
2177 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002178 */
2179static int h2c_handle_settings(struct h2c *h2c)
2180{
2181 unsigned int offset;
2182 int error;
2183
Willy Tarreau7838a792019-08-12 18:42:03 +02002184 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2185
Willy Tarreau3421aba2017-07-27 15:41:03 +02002186 if (h2c->dff & H2_F_SETTINGS_ACK) {
2187 if (h2c->dfl) {
2188 error = H2_ERR_FRAME_SIZE_ERROR;
2189 goto fail;
2190 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002191 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002192 }
2193
Willy Tarreau3421aba2017-07-27 15:41:03 +02002194 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002195 if (b_data(&h2c->dbuf) < h2c->dfl) {
2196 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002197 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002198 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002199
2200 /* parse the frame */
2201 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002202 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2203 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002204
2205 switch (type) {
2206 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2207 /* we need to update all existing streams with the
2208 * difference from the previous iws.
2209 */
2210 if (arg < 0) { // RFC7540#6.5.2
2211 error = H2_ERR_FLOW_CONTROL_ERROR;
2212 goto fail;
2213 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002214 h2c->miw = arg;
2215 break;
2216 case H2_SETTINGS_MAX_FRAME_SIZE:
2217 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002218 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 +02002219 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002220 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002221 goto fail;
2222 }
2223 h2c->mfs = arg;
2224 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002225 case H2_SETTINGS_ENABLE_PUSH:
2226 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002227 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002228 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002229 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002230 goto fail;
2231 }
2232 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002233 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2234 if (h2c->flags & H2_CF_IS_BACK) {
2235 /* the limit is only for the backend; for the frontend it is our limit */
2236 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2237 arg = h2_settings_max_concurrent_streams;
2238 h2c->streams_limit = arg;
2239 }
2240 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002241 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
2242 /* nothing to do here as this settings is automatically
2243 * transmits to the client */
2244 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002245 }
2246 }
2247
2248 /* need to ACK this frame now */
2249 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002250 done:
2251 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002252 return 1;
2253 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002254 if (!(h2c->flags & H2_CF_IS_BACK))
2255 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002256 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002257 out0:
2258 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 +02002259 return 0;
2260}
2261
2262/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2263 * success or one of the h2_status values.
2264 */
2265static int h2c_ack_settings(struct h2c *h2c)
2266{
2267 struct buffer *res;
2268 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002269 int ret = 0;
2270
2271 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002272
2273 if (h2c_mux_busy(h2c, NULL)) {
2274 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002275 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002276 }
2277
Willy Tarreau9c218e72019-05-26 10:08:28 +02002278 memcpy(str,
2279 "\x00\x00\x00" /* length : 0 (no data) */
2280 "\x04" "\x01" /* type : 4, flags : ACK */
2281 "\x00\x00\x00\x00" /* stream ID */, 9);
2282
Willy Tarreaubcc45952019-05-26 10:05:50 +02002283 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002284 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002285 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002286 h2c->flags |= H2_CF_MUX_MALLOC;
2287 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002288 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002289 }
2290
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002291 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002292 if (unlikely(ret <= 0)) {
2293 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002294 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2295 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002296 h2c->flags |= H2_CF_MUX_MFULL;
2297 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002298 }
2299 else {
2300 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002301 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002302 }
2303 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002304 out:
2305 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002306 return ret;
2307}
2308
Willy Tarreaucf68c782017-10-10 17:11:41 +02002309/* processes a PING frame and schedules an ACK if needed. The caller must pass
2310 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002311 * missing data. The caller must have already verified frame length
2312 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002313 */
2314static int h2c_handle_ping(struct h2c *h2c)
2315{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002316 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002317 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002318 h2c->st0 = H2_CS_FRAME_A;
2319 return 1;
2320}
2321
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002322/* Try to send a window update for stream id <sid> and value <increment>.
2323 * Returns > 0 on success or zero on missing room or failure. It may return an
2324 * error in h2c.
2325 */
2326static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2327{
2328 struct buffer *res;
2329 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002330 int ret = 0;
2331
2332 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002333
2334 if (h2c_mux_busy(h2c, NULL)) {
2335 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002336 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002337 }
2338
Willy Tarreau9c218e72019-05-26 10:08:28 +02002339 /* length: 4, type: 8, flags: none */
2340 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2341 write_n32(str + 5, sid);
2342 write_n32(str + 9, increment);
2343
Willy Tarreaubcc45952019-05-26 10:05:50 +02002344 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002345 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002346 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002347 h2c->flags |= H2_CF_MUX_MALLOC;
2348 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002349 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002350 }
2351
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002352 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002353 if (unlikely(ret <= 0)) {
2354 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002355 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2356 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002357 h2c->flags |= H2_CF_MUX_MFULL;
2358 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002359 }
2360 else {
2361 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002362 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002363 }
2364 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002365 out:
2366 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002367 return ret;
2368}
2369
2370/* try to send pending window update for the connection. It's safe to call it
2371 * with no pending updates. Returns > 0 on success or zero on missing room or
2372 * failure. It may return an error in h2c.
2373 */
2374static int h2c_send_conn_wu(struct h2c *h2c)
2375{
2376 int ret = 1;
2377
Willy Tarreau7838a792019-08-12 18:42:03 +02002378 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2379
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002380 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002381 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002382
Willy Tarreau97aaa672018-12-23 09:49:04 +01002383 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2384 /* increase the advertised connection window to 2G on
2385 * first update.
2386 */
2387 h2c->flags |= H2_CF_WINDOW_OPENED;
2388 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2389 }
2390
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002391 /* send WU for the connection */
2392 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2393 if (ret > 0)
2394 h2c->rcvd_c = 0;
2395
Willy Tarreau7838a792019-08-12 18:42:03 +02002396 out:
2397 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002398 return ret;
2399}
2400
2401/* try to send pending window update for the current dmux stream. It's safe to
2402 * call it with no pending updates. Returns > 0 on success or zero on missing
2403 * room or failure. It may return an error in h2c.
2404 */
2405static int h2c_send_strm_wu(struct h2c *h2c)
2406{
2407 int ret = 1;
2408
Willy Tarreau7838a792019-08-12 18:42:03 +02002409 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2410
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002411 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002412 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002413
2414 /* send WU for the stream */
2415 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2416 if (ret > 0)
2417 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002418 out:
2419 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002420 return ret;
2421}
2422
Willy Tarreaucf68c782017-10-10 17:11:41 +02002423/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2424 * success, 0 on missing data or one of the h2_status values.
2425 */
2426static int h2c_ack_ping(struct h2c *h2c)
2427{
2428 struct buffer *res;
2429 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002430 int ret = 0;
2431
2432 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002433
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002434 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002435 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002436
2437 if (h2c_mux_busy(h2c, NULL)) {
2438 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002439 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002440 }
2441
Willy Tarreaucf68c782017-10-10 17:11:41 +02002442 memcpy(str,
2443 "\x00\x00\x08" /* length : 8 (same payload) */
2444 "\x06" "\x01" /* type : 6, flags : ACK */
2445 "\x00\x00\x00\x00" /* stream ID */, 9);
2446
2447 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002448 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002449
Willy Tarreau9c218e72019-05-26 10:08:28 +02002450 res = br_tail(h2c->mbuf);
2451 retry:
2452 if (!h2_get_buf(h2c, res)) {
2453 h2c->flags |= H2_CF_MUX_MALLOC;
2454 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002455 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002456 }
2457
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002458 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002459 if (unlikely(ret <= 0)) {
2460 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002461 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2462 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002463 h2c->flags |= H2_CF_MUX_MFULL;
2464 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002465 }
2466 else {
2467 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002468 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002469 }
2470 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002471 out:
2472 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002473 return ret;
2474}
2475
Willy Tarreau26f95952017-07-27 17:18:30 +02002476/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2477 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002478 * h2c or h2s. The caller must have already verified frame length and stream ID
2479 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002480 */
2481static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2482{
2483 int32_t inc;
2484 int error;
2485
Willy Tarreau7838a792019-08-12 18:42:03 +02002486 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2487
Willy Tarreau26f95952017-07-27 17:18:30 +02002488 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002489 if (b_data(&h2c->dbuf) < h2c->dfl) {
2490 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002491 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002492 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002493
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002494 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002495
2496 if (h2c->dsi != 0) {
2497 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002498
2499 /* it's not an error to receive WU on a closed stream */
2500 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002501 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002502
2503 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002504 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 +02002505 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002506 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002507 goto strm_err;
2508 }
2509
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002510 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002511 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 +02002512 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002513 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002514 goto strm_err;
2515 }
2516
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002517 h2s->sws += inc;
2518 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002519 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002520 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002521 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2522 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002523 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002524 }
2525 }
2526 else {
2527 /* connection window update */
2528 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002529 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002530 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002531 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002532 goto conn_err;
2533 }
2534
2535 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2536 error = H2_ERR_FLOW_CONTROL_ERROR;
2537 goto conn_err;
2538 }
2539
2540 h2c->mws += inc;
2541 }
2542
Willy Tarreau7838a792019-08-12 18:42:03 +02002543 done:
2544 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002545 return 1;
2546
2547 conn_err:
2548 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002549 out0:
2550 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 +02002551 return 0;
2552
2553 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002554 h2s_error(h2s, error);
2555 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002556 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002557 return 0;
2558}
2559
Willy Tarreaue96b0922017-10-30 00:28:29 +01002560/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002561 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2562 * have already verified frame length and stream ID validity. Described in
2563 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002564 */
2565static int h2c_handle_goaway(struct h2c *h2c)
2566{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002567 int last;
2568
Willy Tarreau7838a792019-08-12 18:42:03 +02002569 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002570 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002571 if (b_data(&h2c->dbuf) < h2c->dfl) {
2572 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002573 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002574 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002575 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002576
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002577 last = h2_get_n32(&h2c->dbuf, 0);
2578 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002579 if (h2c->last_sid < 0)
2580 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002581 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002582 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002583 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002584}
2585
Willy Tarreau92153fc2017-12-03 19:46:19 +01002586/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002587 * invalid. Returns > 0 on success or zero on missing data. It may return an
2588 * error in h2c. The caller must have already verified frame length and stream
2589 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002590 */
2591static int h2c_handle_priority(struct h2c *h2c)
2592{
Willy Tarreau7838a792019-08-12 18:42:03 +02002593 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2594
Willy Tarreau92153fc2017-12-03 19:46:19 +01002595 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002596 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002597 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002598 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002599 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002600 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002601
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002602 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002603 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002604 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002605 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002606 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002607 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002608 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002609 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002610 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002611 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002612}
2613
Willy Tarreaucd234e92017-08-18 10:59:39 +02002614/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002615 * Returns > 0 on success or zero on missing data. The caller must have already
2616 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002617 */
2618static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2619{
Willy Tarreau7838a792019-08-12 18:42:03 +02002620 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2621
Willy Tarreaucd234e92017-08-18 10:59:39 +02002622 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002623 if (b_data(&h2c->dbuf) < h2c->dfl) {
2624 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 +02002625 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002626 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002627 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002628
2629 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002630 if (h2s->st == H2_SS_CLOSED) {
2631 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 +02002632 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002633 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002634
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002635 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002636 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002637
2638 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002639 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002640 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002641 }
2642
2643 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002644 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002645 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002646}
2647
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002648/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2649 * It may return an error in h2c or h2s. The caller must consider that the
2650 * return value is the new h2s in case one was allocated (most common case).
2651 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002652 * errors here are reported as connection errors since it's impossible to
2653 * recover from such errors after the compression context has been altered.
2654 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002655static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002656{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002657 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002658 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002659 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002660 int error;
2661
Willy Tarreau7838a792019-08-12 18:42:03 +02002662 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2663
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002664 if (!b_size(&h2c->dbuf)) {
2665 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002666 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002667 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002668
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002669 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2670 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002671 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002672 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002673
2674 /* now either the frame is complete or the buffer is complete */
2675 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002676 /* The stream exists/existed, this must be a trailers frame */
2677 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002678 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002679 /* unrecoverable error ? */
2680 if (h2c->st0 >= H2_CS_ERROR)
2681 goto out;
2682
Christopher Faulet485da0b2021-10-08 08:56:00 +02002683 if (error == 0) {
2684 /* Demux not blocked because of the stream, it is an incomplete frame */
2685 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2686 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002687 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002688 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002689
2690 if (error < 0) {
2691 /* Failed to decode this frame (e.g. too large request)
2692 * but the HPACK decompressor is still synchronized.
2693 */
2694 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2695 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002696 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002697 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002698 goto done;
2699 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002700 /* the connection was already killed by an RST, let's consume
2701 * the data and send another RST.
2702 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002703 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau1f035502019-01-30 11:44:07 +01002704 h2s = (struct h2s*)h2_error_stream;
2705 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002706 }
2707 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2708 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2709 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002710 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002711 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002712 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002713 goto conn_err;
2714 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002715 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2716 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002717
Amaury Denoyelle74162742020-12-11 17:53:05 +01002718 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002719
Willy Tarreau25919232019-01-03 14:48:18 +01002720 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002721 if (h2c->st0 >= H2_CS_ERROR)
2722 goto out;
2723
Willy Tarreau25919232019-01-03 14:48:18 +01002724 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002725 if (error == 0) {
2726 /* Demux not blocked because of the stream, it is an incomplete frame */
2727 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2728 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002729 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002730 }
Willy Tarreau25919232019-01-03 14:48:18 +01002731
2732 /* Failed to decode this stream (e.g. too large request)
2733 * but the HPACK decompressor is still synchronized.
2734 */
2735 h2s = (struct h2s*)h2_error_stream;
2736 goto send_rst;
2737 }
2738
Willy Tarreau29268e92021-06-17 08:29:14 +02002739 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2740
Willy Tarreau22de8d32018-09-05 19:55:58 +02002741 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002742 * positively from h2c_frt_stream_new(), the stream will report the error,
2743 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002744 *
2745 * Xfer the rxbuf to the stream. On success, the new stream owns the
2746 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002747 */
Christopher Faulet7d013e72020-12-15 16:56:50 +01002748 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02002749 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002750 h2s = (struct h2s*)h2_refused_stream;
2751 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002752 }
2753
2754 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002755 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002756 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002757
Willy Tarreau88d138e2019-01-02 19:38:14 +01002758 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002759 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002760 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002761
2762 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002763 if (h2s->st == H2_SS_OPEN)
2764 h2s->st = H2_SS_HREM;
2765 else
2766 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002767 }
2768
Willy Tarreau3a429f02019-01-03 11:41:50 +01002769 /* update the max stream ID if the request is being processed */
2770 if (h2s->id > h2c->max_id)
2771 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002772
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002773 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002774
2775 conn_err:
2776 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002777 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002778
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002779 out:
2780 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002781 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 +01002782 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002783
2784 send_rst:
2785 /* make the demux send an RST for the current stream. We may only
2786 * do this if we're certain that the HEADERS frame was properly
2787 * decompressed so that the HPACK decoder is still kept up to date.
2788 */
2789 h2_release_buf(h2c, &rxbuf);
2790 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002791
Willy Tarreau022e5e52020-09-10 09:33:15 +02002792 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 +02002793 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002794 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002795}
2796
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002797/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2798 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2799 * errors here are reported as connection errors since it's impossible to
2800 * recover from such errors after the compression context has been altered.
2801 */
2802static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2803{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002804 struct buffer rxbuf = BUF_NULL;
2805 unsigned long long body_len = 0;
2806 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002807 int error;
2808
Willy Tarreau7838a792019-08-12 18:42:03 +02002809 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2810
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002811 if (!b_size(&h2c->dbuf)) {
2812 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002813 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002814 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002815
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002816 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2817 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002818 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002819 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002820
Christopher Faulet6884aa32019-09-23 15:28:20 +02002821 if (h2s->st != H2_SS_CLOSED) {
Amaury Denoyelle74162742020-12-11 17:53:05 +01002822 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002823 }
2824 else {
2825 /* the connection was already killed by an RST, let's consume
2826 * the data and send another RST.
2827 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01002828 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002829 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002830 h2c->st0 = H2_CS_FRAME_E;
2831 goto send_rst;
2832 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002833
Willy Tarreau25919232019-01-03 14:48:18 +01002834 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002835 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002836 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002837
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002838 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2839 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002840 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 +01002841 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2842 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002843 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002844 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002845 }
2846
Willy Tarreau25919232019-01-03 14:48:18 +01002847 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002848 if (error == 0) {
2849 /* Demux not blocked because of the stream, it is an incomplete frame */
2850 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2851 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002852 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002853 }
Willy Tarreau25919232019-01-03 14:48:18 +01002854
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002855 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002856 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 +01002857 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002858 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002859 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002860 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002861 }
2862
Christopher Fauletfa922f02019-05-07 10:55:17 +02002863 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002864 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002865
Willy Tarreau927b88b2019-03-04 08:03:25 +01002866 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002867 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002868 else if (h2s->flags & H2_SF_ES_RCVD) {
2869 if (h2s->st == H2_SS_OPEN)
2870 h2s->st = H2_SS_HREM;
2871 else if (h2s->st == H2_SS_HLOC)
2872 h2s_close(h2s);
2873 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002874
Christopher Fauletf95f8762021-01-22 11:59:07 +01002875 /* Unblock busy server h2s waiting for the response headers to validate
2876 * the tunnel establishment or the end of the response of an oborted
2877 * tunnel
2878 */
2879 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2880 (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)) {
2881 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2882 h2s->flags &= ~H2_SF_BLK_MBUSY;
2883 }
2884
Willy Tarreau9abb3172021-06-16 18:32:42 +02002885 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 +02002886 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002887 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002888 fail:
2889 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2890 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002891
2892 send_rst:
2893 /* make the demux send an RST for the current stream. We may only
2894 * do this if we're certain that the HEADERS frame was properly
2895 * decompressed so that the HPACK decoder is still kept up to date.
2896 */
2897 h2_release_buf(h2c, &rxbuf);
2898 h2c->st0 = H2_CS_FRAME_E;
2899
Willy Tarreau022e5e52020-09-10 09:33:15 +02002900 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 +02002901 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2902 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002903}
2904
Willy Tarreau454f9052017-10-26 19:40:35 +02002905/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2906 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2907 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002908static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002909{
2910 int error;
2911
Willy Tarreau7838a792019-08-12 18:42:03 +02002912 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2913
Willy Tarreau454f9052017-10-26 19:40:35 +02002914 /* note that empty DATA frames are perfectly valid and sometimes used
2915 * to signal an end of stream (with the ES flag).
2916 */
2917
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002918 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2919 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002920 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002921 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002922
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002923 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2924 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002925 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002926 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002927
2928 /* now either the frame is complete or the buffer is complete */
2929
Willy Tarreau454f9052017-10-26 19:40:35 +02002930 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2931 /* RFC7540#6.1 */
2932 error = H2_ERR_STREAM_CLOSED;
2933 goto strm_err;
2934 }
2935
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002936 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002937 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002938 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 +01002939 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002940 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002941 goto strm_err;
2942 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002943 if (!(h2c->flags & H2_CF_IS_BACK) &&
2944 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2945 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2946 /* a tunnel attempt was aborted but the client still try to send some raw data.
2947 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2948 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2949 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002950 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002951 */
2952 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2953 error = H2_ERR_CANCEL;
2954 goto strm_err;
2955 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002956
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002957 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002958 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002959
Willy Tarreau454f9052017-10-26 19:40:35 +02002960 /* call the upper layers to process the frame, then let the upper layer
2961 * notify the stream about any change.
2962 */
2963 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002964 /* The upper layer has already closed, this may happen on
2965 * 4xx/redirects during POST, or when receiving a response
2966 * from an H2 server after the client has aborted.
2967 */
2968 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002969 goto strm_err;
2970 }
2971
Willy Tarreau8f650c32017-11-21 19:36:21 +01002972 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002973 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002974
Willy Tarreau721c9742017-11-07 11:05:42 +01002975 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002976 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002977 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002978 }
2979
2980 /* check for completion : the callee will change this to FRAME_A or
2981 * FRAME_H once done.
2982 */
2983 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002984 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002985
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002986 /* last frame */
2987 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002988 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002989 if (h2s->st == H2_SS_OPEN)
2990 h2s->st = H2_SS_HREM;
2991 else
2992 h2s_close(h2s);
2993
Willy Tarreau1915ca22019-01-24 11:49:37 +01002994 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2995 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002996 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 +01002997 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002998 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002999 goto strm_err;
3000 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003001 }
3002
Christopher Fauletf95f8762021-01-22 11:59:07 +01003003 /* Unblock busy server h2s waiting for the end of the response for an
3004 * aborted tunnel
3005 */
3006 if ((h2c->flags & H2_CF_IS_BACK) &&
3007 (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)) {
3008 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3009 h2s->flags &= ~H2_SF_BLK_MBUSY;
3010 }
3011
Willy Tarreau7838a792019-08-12 18:42:03 +02003012 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003013 return 1;
3014
Willy Tarreau454f9052017-10-26 19:40:35 +02003015 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003016 h2s_error(h2s, error);
3017 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003018 fail:
3019 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 +02003020 return 0;
3021}
3022
Willy Tarreau63864812019-08-07 14:25:20 +02003023/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3024 * valid for the current stream state. This is needed only after parsing the
3025 * frame header but in practice it can be performed at any time during
3026 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3027 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3028 */
3029static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3030{
Willy Tarreau7838a792019-08-12 18:42:03 +02003031 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3032
Willy Tarreau63864812019-08-07 14:25:20 +02003033 if (h2s->st == H2_SS_IDLE &&
3034 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3035 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3036 * this state MUST be treated as a connection error
3037 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003038 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 +02003039 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003040 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003041 /* only log if no other stream can report the error */
3042 sess_log(h2c->conn->owner);
3043 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003044 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003045 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 +02003046 return 0;
3047 }
3048
Willy Tarreau57a18162019-11-24 14:57:53 +01003049 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3050 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003051 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 +01003052 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003053 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003054 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3055 return 0;
3056 }
3057
Willy Tarreau63864812019-08-07 14:25:20 +02003058 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3059 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3060 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3061 * this state MUST be treated as a stream error.
3062 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3063 * PUSH_PROMISE/CONTINUATION cause connection errors.
3064 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003065 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003066 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 +02003067 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003068 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003069 }
3070 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003071 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003072 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003073 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 +02003074 return 0;
3075 }
3076
3077 /* Below the management of frames received in closed state is a
3078 * bit hackish because the spec makes strong differences between
3079 * streams closed by receiving RST, sending RST, and seeing ES
3080 * in both directions. In addition to this, the creation of a
3081 * new stream reusing the identifier of a closed one will be
3082 * detected here. Given that we cannot keep track of all closed
3083 * streams forever, we consider that unknown closed streams were
3084 * closed on RST received, which allows us to respond with an
3085 * RST without breaking the connection (eg: to abort a transfer).
3086 * Some frames have to be silently ignored as well.
3087 */
3088 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3089 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3090 /* #5.1.1: The identifier of a newly
3091 * established stream MUST be numerically
3092 * greater than all streams that the initiating
3093 * endpoint has opened or reserved. This
3094 * governs streams that are opened using a
3095 * HEADERS frame and streams that are reserved
3096 * using PUSH_PROMISE. An endpoint that
3097 * receives an unexpected stream identifier
3098 * MUST respond with a connection error.
3099 */
3100 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003101 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 +02003102 return 0;
3103 }
3104
Willy Tarreau4c08f122019-09-26 08:47:15 +02003105 if (h2s->flags & H2_SF_RST_RCVD &&
3106 !(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 +02003107 /* RFC7540#5.1:closed: an endpoint that
3108 * receives any frame other than PRIORITY after
3109 * receiving a RST_STREAM MUST treat that as a
3110 * stream error of type STREAM_CLOSED.
3111 *
3112 * Note that old streams fall into this category
3113 * and will lead to an RST being sent.
3114 *
3115 * However, we cannot generalize this to all frame types. Those
3116 * carrying compression state must still be processed before
3117 * being dropped or we'll desynchronize the decoder. This can
3118 * happen with request trailers received after sending an
3119 * RST_STREAM, or with header/trailers responses received after
3120 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003121 *
3122 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003123 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003124 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003125 */
3126 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3127 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003128 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 +02003129 return 0;
3130 }
3131
3132 /* RFC7540#5.1:closed: if this state is reached as a
3133 * result of sending a RST_STREAM frame, the peer that
3134 * receives the RST_STREAM might have already sent
3135 * frames on the stream that cannot be withdrawn. An
3136 * endpoint MUST ignore frames that it receives on
3137 * closed streams after it has sent a RST_STREAM
3138 * frame. An endpoint MAY choose to limit the period
3139 * over which it ignores frames and treat frames that
3140 * arrive after this time as being in error.
3141 */
3142 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3143 /* RFC7540#5.1:closed: any frame other than
3144 * PRIO/WU/RST in this state MUST be treated as
3145 * a connection error
3146 */
3147 if (h2c->dft != H2_FT_RST_STREAM &&
3148 h2c->dft != H2_FT_PRIORITY &&
3149 h2c->dft != H2_FT_WINDOW_UPDATE) {
3150 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003151 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 +02003152 return 0;
3153 }
3154 }
3155 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003156 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003157 return 1;
3158}
3159
Willy Tarreaubc933932017-10-09 16:21:43 +02003160/* process Rx frames to be demultiplexed */
3161static void h2_process_demux(struct h2c *h2c)
3162{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003163 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003164 struct h2_fh hdr;
3165 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003166 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003167
Willy Tarreau7838a792019-08-12 18:42:03 +02003168 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3169
Willy Tarreau081d4722017-05-16 21:51:05 +02003170 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003171 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003172
3173 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3174 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003175 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003176 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003177 goto out;
3178
Willy Tarreau52eed752017-09-22 15:05:09 +02003179 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3180 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003181 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003182 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003183 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003184 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003185 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003186 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003187 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003188 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003189 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003190 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003191
3192 h2c->max_id = 0;
3193 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003194 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003195 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003196
3197 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003198 /* ensure that what is pending is a valid SETTINGS frame
3199 * without an ACK.
3200 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003201 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 +02003202 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003203 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003204 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003205 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003206 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 +02003207 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003208 if (!(h2c->flags & H2_CF_IS_BACK))
3209 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003210 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003211 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003212 }
3213
3214 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3215 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003216 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 +02003217 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3218 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003219 if (!(h2c->flags & H2_CF_IS_BACK))
3220 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003221 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003222 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003223 }
3224
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003225 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003226 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003227 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 +02003228 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3229 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003230 if (!(h2c->flags & H2_CF_IS_BACK))
3231 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003232 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003233 }
3234
Willy Tarreau3bf69182018-12-21 15:34:50 +01003235 /* that's OK, switch to FRAME_P to process it. This is
3236 * a SETTINGS frame whose header has already been
3237 * deleted above.
3238 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003239 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003240 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003241 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003242 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003243 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003244
3245 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003246 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003247 int ret = 0;
3248
Willy Tarreau7838a792019-08-12 18:42:03 +02003249 if (!b_data(&h2c->dbuf)) {
3250 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003251 h2c->flags |= H2_CF_DEM_SHORT_READ;
3252 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003253 }
3254
3255 if (h2c->st0 >= H2_CS_ERROR) {
3256 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003257 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003258 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003259
3260 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02003261 h2c->rcvd_s = 0;
3262
Willy Tarreau7838a792019-08-12 18:42:03 +02003263 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003264 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3265 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003266 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003267 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003268
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003269 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003270 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 +02003271 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003272 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003273 /* only log if no other stream can report the error */
3274 sess_log(h2c->conn->owner);
3275 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003276 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003277 break;
3278 }
3279
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003280 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003281 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3282 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3283 * we read the pad length and drop it from the remaining
3284 * payload (one byte + the 9 remaining ones = 10 total
3285 * removed), so we have a frame payload starting after the
3286 * pad len. Flow controlled frames (DATA) also count the
3287 * padlen in the flow control, so it must be adjusted.
3288 */
3289 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003290 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 +01003291 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003292 if (!(h2c->flags & H2_CF_IS_BACK))
3293 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003294 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003295 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003296 }
3297 hdr.len--;
3298
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003299 if (b_data(&h2c->dbuf) < 10) {
3300 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003301 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003302 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003303
3304 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3305
3306 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003307 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 +01003308 /* RFC7540#6.1 : pad length = length of
3309 * frame payload or greater => error.
3310 */
3311 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003312 if (!(h2c->flags & H2_CF_IS_BACK))
3313 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003314 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003315 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003316 }
3317
3318 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3319 h2c->rcvd_c++;
3320 h2c->rcvd_s++;
3321 }
3322 b_del(&h2c->dbuf, 1);
3323 }
3324 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003325
3326 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003327 h2c->dfl = hdr.len;
3328 h2c->dsi = hdr.sid;
3329 h2c->dft = hdr.ft;
3330 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003331 h2c->dpl = padlen;
Willy Tarreau73db4342019-09-25 07:28:44 +02003332 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 +02003333 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003334
3335 /* check for minimum basic frame format validity */
3336 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3337 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003338 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 +01003339 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003340 if (!(h2c->flags & H2_CF_IS_BACK))
3341 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003342 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003343 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003344 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003345 }
3346
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003347 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3348 * H2_CS_FRAME_P indicates an incomplete previous operation
3349 * (most often the first attempt) and requires some validity
3350 * checks for the frame and the current state. The two other
3351 * ones are set after completion (or abortion) and must skip
3352 * validity checks.
3353 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003354 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3355
Willy Tarreau567beb82018-12-18 16:52:44 +01003356 if (tmp_h2s != h2s && h2s && h2s->cs &&
3357 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003358 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003359 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003360 (h2s->flags & H2_SF_ES_RCVD) ||
3361 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003362 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003363 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003364 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003365 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003366 }
3367 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003368
Willy Tarreau63864812019-08-07 14:25:20 +02003369 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003370 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3371 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003372 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003373 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003374
Willy Tarreau7e98c052017-10-10 15:56:59 +02003375 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003376 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003377 if (h2c->st0 == H2_CS_FRAME_P) {
3378 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003379 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003380 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003381 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003382
Willy Tarreau7838a792019-08-12 18:42:03 +02003383 if (h2c->st0 == H2_CS_FRAME_A) {
3384 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 +02003385 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003386 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003387 break;
3388
Willy Tarreaucf68c782017-10-10 17:11:41 +02003389 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003390 if (h2c->st0 == H2_CS_FRAME_P) {
3391 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003392 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003393 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003394
Willy Tarreau7838a792019-08-12 18:42:03 +02003395 if (h2c->st0 == H2_CS_FRAME_A) {
3396 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 +02003397 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003398 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003399 break;
3400
Willy Tarreau26f95952017-07-27 17:18:30 +02003401 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003402 if (h2c->st0 == H2_CS_FRAME_P) {
3403 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 +02003404 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003405 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003406 break;
3407
Willy Tarreau61290ec2017-10-17 08:19:21 +02003408 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003409 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003410 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3411 * frames' parsers consume all following CONTINUATION
3412 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003413 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003414 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 +01003415 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003416 if (!(h2c->flags & H2_CF_IS_BACK))
3417 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003418 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003419 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003420
Willy Tarreau13278b42017-10-13 19:23:14 +02003421 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003422 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003423 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003424 if (h2c->flags & H2_CF_IS_BACK)
3425 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3426 else
3427 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003428 if (tmp_h2s) {
3429 h2s = tmp_h2s;
3430 ret = 1;
3431 }
3432 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003433 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003434 break;
3435
Willy Tarreau454f9052017-10-26 19:40:35 +02003436 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003437 if (h2c->st0 == H2_CS_FRAME_P) {
3438 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003439 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003440 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003441 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003442
Willy Tarreau7838a792019-08-12 18:42:03 +02003443 if (h2c->st0 == H2_CS_FRAME_A) {
3444 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 +02003445 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003446 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003447 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003448
Willy Tarreau92153fc2017-12-03 19:46:19 +01003449 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003450 if (h2c->st0 == H2_CS_FRAME_P) {
3451 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003452 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003453 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003454 break;
3455
Willy Tarreaucd234e92017-08-18 10:59:39 +02003456 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003457 if (h2c->st0 == H2_CS_FRAME_P) {
3458 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 +02003459 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003460 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003461 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003462 break;
3463
Willy Tarreaue96b0922017-10-30 00:28:29 +01003464 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003465 if (h2c->st0 == H2_CS_FRAME_P) {
3466 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003467 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003468 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003469 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003470 break;
3471
Willy Tarreau1c661982017-10-30 13:52:01 +01003472 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003473 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003474 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003475 /* drop frames that we ignore. They may be larger than
3476 * the buffer so we drain all of their contents until
3477 * we reach the end.
3478 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003479 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3480 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003481 h2c->dfl -= ret;
3482 ret = h2c->dfl == 0;
3483 }
3484
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003485 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003486 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003487 if (h2s->st == H2_SS_ERROR) {
3488 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 +01003489 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003490 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003491
Willy Tarreau7838a792019-08-12 18:42:03 +02003492 if (h2c->st0 == H2_CS_FRAME_E) {
3493 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 +01003494 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003495 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003496
Willy Tarreau7e98c052017-10-10 15:56:59 +02003497 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003498 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003499 break;
3500
3501 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003502 if (h2c->dfl)
3503 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003504 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3505 b_del(&h2c->dbuf, ret);
3506 h2c->dfl -= ret;
3507 if (!h2c->dfl) {
3508 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3509 h2c->st0 = H2_CS_FRAME_H;
3510 h2c->dsi = -1;
3511 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003512 }
3513 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003514
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003515 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003516 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3517 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003518 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003519 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003520
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003521 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003522 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3523 if (h2c->flags & H2_CF_RCVD_SHUT)
3524 h2c->flags |= H2_CF_END_REACHED;
3525 }
3526
Willy Tarreau567beb82018-12-18 16:52:44 +01003527 if (h2s && h2s->cs &&
3528 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003529 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003530 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003531 (h2s->flags & H2_SF_ES_RCVD) ||
3532 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003533 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003534 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003535 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003536 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003537 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003538
Willy Tarreau7838a792019-08-12 18:42:03 +02003539 if (old_iw != h2c->miw) {
3540 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003541 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003542 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003543
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003544 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003545 out:
3546 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003547 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003548}
3549
Willy Tarreau989539b2020-01-10 17:01:29 +01003550/* resume each h2s eligible for sending in list head <head> */
3551static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3552{
3553 struct h2s *h2s, *h2s_back;
3554
3555 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3556
3557 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3558 if (h2c->mws <= 0 ||
3559 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3560 h2c->st0 >= H2_CS_ERROR)
3561 break;
3562
3563 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003564
Willy Tarreaud9464162020-01-10 18:25:07 +01003565 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003566 continue;
3567
Willy Tarreau5723f292020-01-10 15:16:57 +01003568 /* If the sender changed his mind and unsubscribed, let's just
3569 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003570 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003571 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3572 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003573 LIST_DEL_INIT(&h2s->list);
3574 continue;
3575 }
3576
Willy Tarreauf96508a2020-01-10 11:12:48 +01003577 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003578 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003579 tasklet_wakeup(h2s->subs->tasklet);
3580 h2s->subs->events &= ~SUB_RETRY_SEND;
3581 if (!h2s->subs->events)
3582 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003583 }
3584 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3585 tasklet_wakeup(h2s->shut_tl);
3586 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003587 }
3588
3589 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3590}
3591
Willy Tarreaubc933932017-10-09 16:21:43 +02003592/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3593 * the end.
3594 */
3595static int h2_process_mux(struct h2c *h2c)
3596{
Willy Tarreau7838a792019-08-12 18:42:03 +02003597 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3598
Willy Tarreau01b44822018-10-03 14:26:37 +02003599 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3600 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3601 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3602 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003603 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003604 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003605 goto fail;
3606 }
3607 h2c->st0 = H2_CS_SETTINGS1;
3608 }
3609 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003610 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003611 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003612 }
3613
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003614 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003615 if (h2c->rcvd_s > 0 &&
3616 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3617 h2c_send_strm_wu(h2c) < 0)
3618 goto fail;
3619
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003620 if (h2c->rcvd_c > 0 &&
3621 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3622 h2c_send_conn_wu(h2c) < 0)
3623 goto fail;
3624
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003625 /* First we always process the flow control list because the streams
3626 * waiting there were already elected for immediate emission but were
3627 * blocked just on this.
3628 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003629 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3630 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003631
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003632 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003633 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003634 if (h2c->st0 == H2_CS_ERROR) {
3635 if (h2c->max_id >= 0) {
3636 h2c_send_goaway_error(h2c, NULL);
3637 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003638 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003639 }
3640
3641 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3642 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003643 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003644 done:
3645 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3646 return 1;
3647 out0:
3648 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3649 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003650}
3651
Willy Tarreau62f52692017-10-08 23:01:42 +02003652
Willy Tarreau479998a2018-11-18 06:30:59 +01003653/* Attempt to read data, and subscribe if none available.
3654 * The function returns 1 if data has been received, otherwise zero.
3655 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003656static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003657{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003658 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003659 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003660 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003661 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003662
Willy Tarreau7838a792019-08-12 18:42:03 +02003663 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3664
3665 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3666 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003667 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003668 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003669
Willy Tarreau7838a792019-08-12 18:42:03 +02003670 if (!h2_recv_allowed(h2c)) {
3671 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003672 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003673 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003674
Willy Tarreau44e973f2018-03-01 17:49:30 +01003675 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003676 if (!buf) {
3677 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003678 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003679 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003680 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003681
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003682 if (h2c->flags & H2_CF_RCVD_SHUT) {
3683 TRACE_DEVEL("leaving on rcvd_shut", H2_EV_H2C_RECV, h2c->conn);
3684 return 0;
3685 }
3686
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003687 if (!b_data(buf)) {
3688 /* try to pre-align the buffer like the
3689 * rxbufs will be to optimize memory copies. We'll make
3690 * sure that the frame header lands at the end of the
3691 * HTX block to alias it upon recv. We cannot use the
3692 * head because rcv_buf() will realign the buffer if
3693 * it's empty. Thus we cheat and pretend we already
3694 * have a few bytes there.
3695 */
3696 max = buf_room_for_htx_data(buf) + 9;
3697 buf->head = sizeof(struct htx) - 9;
3698 }
3699 else
3700 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003701
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003702 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003703
Christopher Fauletde9d6052021-04-23 12:25:18 +02003704 if (max && !ret && h2_recv_allowed(h2c)) {
3705 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3706 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003707 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003708 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003709 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3710 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003711
Christopher Fauletde9d6052021-04-23 12:25:18 +02003712 if (conn_xprt_read0_pending(h2c->conn)) {
3713 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3714 h2c->flags |= H2_CF_RCVD_SHUT;
3715 }
3716
Olivier Houcharda1411e62018-08-17 18:42:48 +02003717 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003718 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003719 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003720 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003721 }
3722
Willy Tarreau7838a792019-08-12 18:42:03 +02003723 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003724 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003725 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003726 }
3727
3728 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003729 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003730}
3731
Willy Tarreau479998a2018-11-18 06:30:59 +01003732/* Try to send data if possible.
3733 * The function returns 1 if data have been sent, otherwise zero.
3734 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003735static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003736{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003737 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003738 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003739 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003740
Willy Tarreau7838a792019-08-12 18:42:03 +02003741 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003742
Willy Tarreau7838a792019-08-12 18:42:03 +02003743 if (conn->flags & CO_FL_ERROR) {
3744 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3745 return 1;
3746 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003747
Willy Tarreau911db9b2020-01-23 16:27:54 +01003748 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003749 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003750 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003751 }
3752
Willy Tarreaubc933932017-10-09 16:21:43 +02003753 /* This loop is quite simple : it tries to fill as much as it can from
3754 * pending streams into the existing buffer until it's reportedly full
3755 * or the end of send requests is reached. Then it tries to send this
3756 * buffer's contents out, marks it not full if at least one byte could
3757 * be sent, and tries again.
3758 *
3759 * The snd_buf() function normally takes a "flags" argument which may
3760 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3761 * data immediately comes and CO_SFL_STREAMER to indicate that the
3762 * connection is streaming lots of data (used to increase TLS record
3763 * size at the expense of latency). The former can be sent any time
3764 * there's a buffer full flag, as it indicates at least one stream
3765 * attempted to send and failed so there are pending data. An
3766 * alternative would be to set it as long as there's an active stream
3767 * but that would be problematic for ACKs until we have an absolute
3768 * guarantee that all waiters have at least one byte to send. The
3769 * latter should possibly not be set for now.
3770 */
3771
3772 done = 0;
3773 while (!done) {
3774 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003775 unsigned int released = 0;
3776 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003777
3778 /* fill as much as we can into the current buffer */
3779 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3780 done = h2_process_mux(h2c);
3781
Olivier Houchard2b094432019-01-29 18:28:36 +01003782 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003783 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003784
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003785 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003786 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003787 break;
3788
3789 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3790 flags |= CO_SFL_MSG_MORE;
3791
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003792 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3793 if (b_data(buf)) {
3794 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003795 if (!ret) {
3796 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003797 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003798 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003799 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003800 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003801 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003802 if (b_data(buf)) {
3803 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003804 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003805 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003806 }
3807 b_free(buf);
3808 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003809 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003810
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003811 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003812 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003813
Willy Tarreaubc933932017-10-09 16:21:43 +02003814 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003815 if (sent)
3816 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003817 }
3818
Willy Tarreaua2af5122017-10-09 11:56:46 +02003819 if (conn->flags & CO_FL_SOCK_WR_SH) {
3820 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003821 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003822 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003823 /* We're not full anymore, so we can wake any task that are waiting
3824 * for us.
3825 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003826 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3827 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003828
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003829 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003830 if (!br_data(h2c->mbuf)) {
3831 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003832 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003833 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003834schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003835 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3836 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003837 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003838 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003839
Willy Tarreau7838a792019-08-12 18:42:03 +02003840 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003841 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003842}
3843
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003844/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003845struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003846{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003847 struct connection *conn;
3848 struct tasklet *tl = (struct tasklet *)t;
3849 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003850 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003851 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003852
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003853 if (state & TASK_F_USR1) {
3854 /* the tasklet was idling on an idle connection, it might have
3855 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003856 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003857 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3858 if (t->context == NULL) {
3859 /* The connection has been taken over by another thread,
3860 * we're no longer responsible for it, so just free the
3861 * tasklet, and do nothing.
3862 */
3863 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3864 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003865 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003866 goto leave;
3867 }
3868 conn = h2c->conn;
3869 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003870
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003871 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003872
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003873 /* Remove the connection from the list, to be sure nobody attempts
3874 * to use it while we handle the I/O events
3875 */
3876 if (conn_in_list)
3877 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003878
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003879 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3880 } else {
3881 /* we're certain the connection was not in an idle list */
3882 conn = h2c->conn;
3883 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3884 conn_in_list = 0;
3885 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003886
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003887 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003888 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003889 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003890 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003891 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003892 ret = h2_process(h2c);
3893
3894 /* If we were in an idle list, we want to add it back into it,
3895 * unless h2_process() returned -1, which mean it has destroyed
3896 * the connection (testing !ret is enough, if h2_process() wasn't
3897 * called then ret will be 0 anyway.
3898 */
Willy Tarreau74163142021-03-13 11:30:19 +01003899 if (ret < 0)
3900 t = NULL;
3901
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003902 if (!ret && conn_in_list) {
3903 struct server *srv = objt_server(conn->target);
3904
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003905 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003906 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003907 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003908 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003909 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003910 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003911 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003912
Willy Tarreau38468772020-06-28 00:31:13 +02003913leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003914 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003915 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003916}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003917
Willy Tarreau62f52692017-10-08 23:01:42 +02003918/* callback called on any event by the connection handler.
3919 * It applies changes and returns zero, or < 0 if it wants immediate
3920 * destruction of the connection (which normally doesn not happen in h2).
3921 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003922static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003923{
Olivier Houchard7505f942018-08-21 18:10:44 +02003924 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003925
Willy Tarreau7838a792019-08-12 18:42:03 +02003926 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3927
Willy Tarreauf0961222021-02-05 11:41:46 +01003928 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3929 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003930 h2_process_demux(h2c);
3931
3932 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003933 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003934
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003935 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003936 h2c->flags &= ~H2_CF_DEM_DFULL;
3937 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003938 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003939
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003940 if (unlikely(h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003941 /* frontend is stopping, reload likely in progress, let's try
3942 * to announce a graceful shutdown if not yet done. We don't
3943 * care if it fails, it will be tried again later.
3944 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003945 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003946 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3947 if (h2c->last_sid < 0)
3948 h2c->last_sid = (1U << 31) - 1;
3949 h2c_send_goaway_error(h2c, NULL);
3950 }
3951 }
3952
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003953 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003954 * If we received early data, and the handshake is done, wake
3955 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003956 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003957 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003958 (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 +01003959 struct eb32_node *node;
3960 struct h2s *h2s;
3961
3962 h2c->flags |= H2_CF_WAIT_FOR_HS;
3963 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3964
3965 while (node) {
3966 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003967 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003968 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003969 node = eb32_next(node);
3970 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003971 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003972
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003973 if (conn->flags & CO_FL_ERROR || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003974 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3975 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3976 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003977 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003978
3979 if (eb_is_empty(&h2c->streams_by_id)) {
3980 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003981 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003982 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003983 return -1;
3984 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003985
3986 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003987 if (conn->flags & CO_FL_LIST_MASK) {
3988 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003989 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003990 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3991 }
Willy Tarreau4481e262019-10-31 15:36:30 +01003992 }
3993 else if (h2c->st0 == H2_CS_ERROR) {
3994 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003995 if (conn->flags & CO_FL_LIST_MASK) {
3996 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01003997 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01003998 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3999 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004000 }
4001
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004002 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004003 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004004
Olivier Houchard53216e72018-10-10 15:46:36 +02004005 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
4006 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
4007 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004008 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004009 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4010 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004011 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004012
Willy Tarreau3f133572017-10-31 19:21:06 +01004013 if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004014 if (h2c_may_expire(h2c))
4015 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4016 else
4017 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004018 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01004019 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02004020
Olivier Houchard7505f942018-08-21 18:10:44 +02004021 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004022 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004023 return 0;
4024}
4025
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004026/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004027static int h2_wake(struct connection *conn)
4028{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004029 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004030 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004031
Willy Tarreau7838a792019-08-12 18:42:03 +02004032 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4033 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004034 if (ret >= 0)
4035 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004036 TRACE_LEAVE(H2_EV_H2C_WAKE);
4037 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004038}
4039
Willy Tarreauea392822017-10-31 10:02:25 +01004040/* Connection timeout management. The principle is that if there's no receipt
4041 * nor sending for a certain amount of time, the connection is closed. If the
4042 * MUX buffer still has lying data or is not allocatable, the connection is
4043 * immediately killed. If it's allocatable and empty, we attempt to send a
4044 * GOAWAY frame.
4045 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004046struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004047{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004048 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004049 int expired = tick_is_expired(t->expire, now_ms);
4050
Willy Tarreau7838a792019-08-12 18:42:03 +02004051 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4052
Willy Tarreaubd42e922020-06-30 11:19:23 +02004053 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004054 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004055 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004056
4057 /* Somebody already stole the connection from us, so we should not
4058 * free it, we just have to free the task.
4059 */
4060 if (!t->context) {
4061 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004062 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004063 goto do_leave;
4064 }
4065
4066
Willy Tarreaubd42e922020-06-30 11:19:23 +02004067 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004068 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004069 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4070 return t;
4071 }
Willy Tarreauea392822017-10-31 10:02:25 +01004072
Willy Tarreaubd42e922020-06-30 11:19:23 +02004073 if (!h2c_may_expire(h2c)) {
4074 /* we do still have streams but all of them are idle, waiting
4075 * for the data layer, so we must not enforce the timeout here.
4076 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004077 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004078 t->expire = TICK_ETERNITY;
4079 return t;
4080 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004081
Willy Tarreaubd42e922020-06-30 11:19:23 +02004082 /* We're about to destroy the connection, so make sure nobody attempts
4083 * to steal it from us.
4084 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004085 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004086 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004087
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004088 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004089 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004090
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004091do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004092 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004093
4094 if (!h2c) {
4095 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004096 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004097 return NULL;
4098 }
4099
4100 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004101 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004102 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004103
Willy Tarreau662fafc2019-05-26 09:43:07 +02004104 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004105 /* don't even try to send a GOAWAY, the buffer is stuck */
4106 h2c->flags |= H2_CF_GOAWAY_FAILED;
4107 }
4108
4109 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004110 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004111 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4112 h2c->flags |= H2_CF_GOAWAY_FAILED;
4113
Willy Tarreau662fafc2019-05-26 09:43:07 +02004114 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004115 unsigned int released = 0;
4116 struct buffer *buf;
4117
4118 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4119 if (b_data(buf)) {
4120 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4121 if (!ret)
4122 break;
4123 b_del(buf, ret);
4124 if (b_data(buf))
4125 break;
4126 b_free(buf);
4127 released++;
4128 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004129 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004130
4131 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004132 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004133 }
Willy Tarreauea392822017-10-31 10:02:25 +01004134
Willy Tarreau4481e262019-10-31 15:36:30 +01004135 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004136 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4137 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004138 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004139 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4140 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004141
Willy Tarreau0975f112018-03-29 15:22:59 +02004142 /* either we can release everything now or it will be done later once
4143 * the last stream closes.
4144 */
4145 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004146 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004147
Willy Tarreau7838a792019-08-12 18:42:03 +02004148 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004149 return NULL;
4150}
4151
4152
Willy Tarreau62f52692017-10-08 23:01:42 +02004153/*******************************************/
4154/* functions below are used by the streams */
4155/*******************************************/
4156
4157/*
4158 * Attach a new stream to a connection
4159 * (Used for outgoing connections)
4160 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01004161static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004162{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004163 struct conn_stream *cs;
4164 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004165 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004166
Willy Tarreau7838a792019-08-12 18:42:03 +02004167 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Christopher Faulet236c93b2020-07-02 09:19:54 +02004168 cs = cs_new(conn, conn->target);
Willy Tarreau7838a792019-08-12 18:42:03 +02004169 if (!cs) {
4170 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004171 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004172 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01004173 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004174 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004175 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004176 cs_free(cs);
4177 return NULL;
4178 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004179
4180 /* the connection is not idle anymore, let's mark this */
4181 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004182 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004183
Willy Tarreau7838a792019-08-12 18:42:03 +02004184 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004185 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02004186}
4187
Willy Tarreaufafd3982018-11-18 21:29:20 +01004188/* Retrieves the first valid conn_stream from this connection, or returns NULL.
4189 * We have to scan because we may have some orphan streams. It might be
4190 * beneficial to scan backwards from the end to reduce the likeliness to find
4191 * orphans.
4192 */
4193static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
4194{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004195 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004196 struct h2s *h2s;
4197 struct eb32_node *node;
4198
4199 node = eb32_first(&h2c->streams_by_id);
4200 while (node) {
4201 h2s = container_of(node, struct h2s, by_id);
4202 if (h2s->cs)
4203 return h2s->cs;
4204 node = eb32_next(node);
4205 }
4206 return NULL;
4207}
4208
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004209static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4210{
4211 int ret = 0;
4212 struct h2c *h2c = conn->ctx;
4213
4214 switch (mux_ctl) {
4215 case MUX_STATUS:
4216 /* Only consider the mux to be ready if we're done with
4217 * the preface and settings, and we had no error.
4218 */
4219 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4220 ret |= MUX_STATUS_READY;
4221 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004222 case MUX_EXIT_STATUS:
4223 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004224 default:
4225 return -1;
4226 }
4227}
4228
Willy Tarreau62f52692017-10-08 23:01:42 +02004229/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004230 * Destroy the mux and the associated connection, if it is no longer used
4231 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004232static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004233{
Christopher Faulet73c12072019-04-08 11:23:22 +02004234 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004235
Willy Tarreau7838a792019-08-12 18:42:03 +02004236 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02004237 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02004238 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004239 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004240}
4241
4242/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004243 * Detach the stream from the connection and possibly release the connection.
4244 */
4245static void h2_detach(struct conn_stream *cs)
4246{
Willy Tarreau60935142017-10-16 18:11:19 +02004247 struct h2s *h2s = cs->ctx;
4248 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004249 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004250
Willy Tarreau7838a792019-08-12 18:42:03 +02004251 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4252
Willy Tarreau60935142017-10-16 18:11:19 +02004253 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004254 if (!h2s) {
4255 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004256 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004257 }
Willy Tarreau60935142017-10-16 18:11:19 +02004258
Willy Tarreaud9464162020-01-10 18:25:07 +01004259 /* there's no txbuf so we're certain not to be able to send anything */
4260 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004261
Olivier Houchardf502aca2018-12-14 19:42:40 +01004262 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004263 h2c = h2s->h2c;
4264 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02004265 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004266 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
4267 !h2_frt_has_too_many_cs(h2c)) {
4268 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004269 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004270 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004271 }
Willy Tarreau60935142017-10-16 18:11:19 +02004272
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004273 /* this stream may be blocked waiting for some data to leave (possibly
4274 * an ES or RST frame), so orphan it in this case.
4275 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02004276 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004277 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004278 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004279 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004280 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004281 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004282 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004283
Willy Tarreau45f752e2017-10-30 15:44:59 +01004284 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
4285 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
4286 /* unblock the connection if it was blocked on this
4287 * stream.
4288 */
4289 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4290 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004291 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004292 }
4293
Willy Tarreau71049cc2018-03-28 13:56:39 +02004294 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004295
Christopher Faulet9b79a102019-07-15 11:22:56 +02004296 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01004297 if (!(h2c->conn->flags &
4298 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004299 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004300 /* Add the connection in the session server list, if not already done */
4301 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4302 h2c->conn->owner = NULL;
4303 if (eb_is_empty(&h2c->streams_by_id)) {
4304 h2c->conn->mux->destroy(h2c);
4305 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4306 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004307 }
4308 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004309 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004310 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4311 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4312 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004313 return;
4314 }
4315 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004316 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004317 else {
4318 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004319 /* If the connection is owned by the session, first remove it
4320 * from its list
4321 */
4322 if (h2c->conn->owner) {
4323 session_unown_conn(h2c->conn->owner, h2c->conn);
4324 h2c->conn->owner = NULL;
4325 }
4326
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004327 /* mark that the tasklet may lose its context to another thread and
4328 * that the handler needs to check it under the idle conns lock.
4329 */
4330 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004331 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4332
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004333 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004334 /* The server doesn't want it, let's kill the connection right away */
4335 h2c->conn->mux->destroy(h2c);
4336 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4337 return;
4338 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004339 /* At this point, the connection has been added to the
4340 * server idle list, so another thread may already have
4341 * hijacked it, so we can't do anything with it.
4342 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004343 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4344 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004345
Olivier Houchard8a786902018-12-15 16:05:40 +01004346 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004347 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004348 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004349 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004350 ebmb_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004351 &h2c->conn->hash_node->node,
4352 sizeof(h2c->conn->hash_node->hash));
Christopher Fauletc5579d12020-07-01 15:45:41 +02004353 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004354 }
4355 }
4356 }
4357
Willy Tarreaue323f342018-03-28 13:51:45 +02004358 /* We don't want to close right now unless we're removing the
4359 * last stream, and either the connection is in error, or it
4360 * reached the ID already specified in a GOAWAY frame received
4361 * or sent (as seen by last_sid >= 0).
4362 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004363 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004364 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004365 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004366 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004367 }
4368 else if (h2c->task) {
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004369 if (h2c_may_expire(h2c))
4370 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
4371 else
4372 h2c->task->expire = TICK_ETERNITY;
Willy Tarreau73481192019-06-07 08:20:46 +02004373 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02004374 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004375 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004376 else
4377 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004378}
4379
Willy Tarreau88bdba32019-05-13 18:17:53 +02004380/* Performs a synchronous or asynchronous shutr(). */
4381static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004382{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004383 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004384
Willy Tarreauf983d002019-05-14 10:40:21 +02004385 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004386 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004387
Willy Tarreau7838a792019-08-12 18:42:03 +02004388 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4389
Willy Tarreau18059042019-01-31 19:12:48 +01004390 /* a connstream may require us to immediately kill the whole connection
4391 * for example because of a "tcp-request content reject" rule that is
4392 * normally used to limit abuse. In this case we schedule a goaway to
4393 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004394 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004395 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004396 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004397 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004398 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4399 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4400 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004401 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4402 /* Nothing was never sent for this stream, so reset with
4403 * REFUSED_STREAM error to let the client retry the
4404 * request.
4405 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004406 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004407 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4408 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004409 else {
4410 /* a final response was already provided, we don't want this
4411 * stream anymore. This may happen when the server responds
4412 * before the end of an upload and closes quickly (redirect,
4413 * deny, ...)
4414 */
4415 h2s_error(h2s, H2_ERR_CANCEL);
4416 }
Willy Tarreau18059042019-01-31 19:12:48 +01004417
Willy Tarreau90c32322017-11-24 08:00:30 +01004418 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004419 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004420 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004421
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004422 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004423 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004424 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004425 done:
4426 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004427 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004428 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004429add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004430 /* Let the handler know we want to shutr, and add ourselves to the
4431 * most relevant list if not yet done. h2_deferred_shut() will be
4432 * automatically called via the shut_tl tasklet when there's room
4433 * again.
4434 */
4435 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004436 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004437 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004438 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004439 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004440 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004441 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004442 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004443 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004444}
4445
Willy Tarreau88bdba32019-05-13 18:17:53 +02004446/* Performs a synchronous or asynchronous shutw(). */
4447static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004448{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004449 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004450
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004451 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004452 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004453
Willy Tarreau7838a792019-08-12 18:42:03 +02004454 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4455
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004456 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01004457 /* we can cleanly close using an empty data frame only after headers */
4458
4459 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4460 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004461 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004462
4463 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004464 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004465 else
4466 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004467 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004468 /* a connstream may require us to immediately kill the whole connection
4469 * for example because of a "tcp-request content reject" rule that is
4470 * normally used to limit abuse. In this case we schedule a goaway to
4471 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004472 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004473 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004474 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004475 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004476 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4477 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4478 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004479 else {
4480 /* Nothing was never sent for this stream, so reset with
4481 * REFUSED_STREAM error to let the client retry the
4482 * request.
4483 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004484 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004485 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4486 }
Willy Tarreau18059042019-01-31 19:12:48 +01004487
Willy Tarreau90c32322017-11-24 08:00:30 +01004488 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004489 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004490 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004491
Willy Tarreau00dd0782018-03-01 16:31:34 +01004492 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004493 }
4494
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004495 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004496 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004497
4498 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4499
Willy Tarreau88bdba32019-05-13 18:17:53 +02004500 done:
4501 h2s->flags &= ~H2_SF_WANT_SHUTW;
4502 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004503
4504 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004505 /* Let the handler know we want to shutw, and add ourselves to the
4506 * most relevant list if not yet done. h2_deferred_shut() will be
4507 * automatically called via the shut_tl tasklet when there's room
4508 * again.
4509 */
4510 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004511 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004512 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004513 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004514 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004515 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004516 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004517 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004518 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004519}
4520
Willy Tarreau5723f292020-01-10 15:16:57 +01004521/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004522 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4523 * and prevented the last frame from being emitted.
4524 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004525struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004526{
4527 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004528 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004529
Willy Tarreau7838a792019-08-12 18:42:03 +02004530 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4531
Willy Tarreau5723f292020-01-10 15:16:57 +01004532 if (h2s->flags & H2_SF_NOTIFIED) {
4533 /* some data processing remains to be done first */
4534 goto end;
4535 }
4536
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004537 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004538 h2_do_shutw(h2s);
4539
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004540 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004541 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004542
Willy Tarreau88bdba32019-05-13 18:17:53 +02004543 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004544 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004545 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004546
Willy Tarreau88bdba32019-05-13 18:17:53 +02004547 if (!h2s->cs) {
4548 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004549 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004550 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004551 t = NULL;
4552 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004553 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004554 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004555 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004556 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004557 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004558}
4559
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004560/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004561static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
4562{
4563 struct h2s *h2s = cs->ctx;
4564
Willy Tarreau7838a792019-08-12 18:42:03 +02004565 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004566 if (cs->flags & CS_FL_KILL_CONN)
4567 h2s->flags |= H2_SF_KILL_CONN;
4568
Willy Tarreau7838a792019-08-12 18:42:03 +02004569 if (mode)
4570 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004571
Willy Tarreau7838a792019-08-12 18:42:03 +02004572 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004573}
4574
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004575/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004576static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
4577{
4578 struct h2s *h2s = cs->ctx;
4579
Willy Tarreau7838a792019-08-12 18:42:03 +02004580 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02004581 if (cs->flags & CS_FL_KILL_CONN)
4582 h2s->flags |= H2_SF_KILL_CONN;
4583
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004584 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004585 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004586}
4587
Christopher Faulet9b79a102019-07-15 11:22:56 +02004588/* Decode the payload of a HEADERS frame and produce the HTX request or response
4589 * depending on the connection's side. Returns a positive value on success, a
4590 * negative value on failure, or 0 if it couldn't proceed. May report connection
4591 * errors in h2c->errcode if the frame is non-decodable and the connection
4592 * unrecoverable. In absence of connection error when a failure is reported, the
4593 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004594 *
4595 * The function may fold CONTINUATION frames into the initial HEADERS frame
4596 * by removing padding and next frame header, then moving the CONTINUATION
4597 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4598 * leaving a hole between the main frame and the beginning of the next one.
4599 * The possibly remaining incomplete or next frame at the end may be moved
4600 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4601 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4602 *
4603 * A buffer at the beginning of processing may look like this :
4604 *
4605 * ,---.---------.-----.--------------.--------------.------.---.
4606 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4607 * `---^---------^-----^--------------^--------------^------^---'
4608 * | | <-----> | |
4609 * area | dpl | wrap
4610 * |<--------------> |
4611 * | dfl |
4612 * |<-------------------------------------------------->|
4613 * head data
4614 *
4615 * Padding is automatically overwritten when folding, participating to the
4616 * hole size after dfl :
4617 *
4618 * ,---.------------------------.-----.--------------.------.---.
4619 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4620 * `---^------------------------^-----^--------------^------^---'
4621 * | | <-----> | |
4622 * area | hole | wrap
4623 * |<-----------------------> |
4624 * | dfl |
4625 * |<-------------------------------------------------->|
4626 * head data
4627 *
4628 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4629 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4630 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004631 *
4632 * The <flags> field must point to either the stream's flags or to a copy of it
4633 * so that the function can update the following flags :
4634 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004635 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004636 *
4637 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4638 * decoding, in order to detect if we're dealing with a headers or a trailers
4639 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004640 */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004641static 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 +02004642{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004643 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004644 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004645 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004646 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004647 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004648 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004649 int flen; // header frame len
4650 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004651 int ret = 0;
4652 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004653 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004654
Willy Tarreau7838a792019-08-12 18:42:03 +02004655 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4656
Willy Tarreauea18f862018-12-22 20:19:26 +01004657next_frame:
4658 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4659 goto leave; // incomplete input frame
4660
4661 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4662 * this case, we'll try to paste it immediately after the initial
4663 * HEADERS frame payload and kill any possible padding. The initial
4664 * frame's length will be increased to represent the concatenation
4665 * of the two frames. The next frame is read from position <tlen>
4666 * and written at position <flen> (minus padding if some is present).
4667 */
4668 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4669 struct h2_fh hdr;
4670 int clen; // CONTINUATION frame's payload length
4671
Willy Tarreau7838a792019-08-12 18:42:03 +02004672 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 +01004673 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4674 /* no more data, the buffer may be full, either due to
4675 * too large a frame or because of too large a hole that
4676 * we're going to compact at the end.
4677 */
4678 goto leave;
4679 }
4680
4681 if (hdr.ft != H2_FT_CONTINUATION) {
4682 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004683 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 +01004684 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004685 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004686 goto fail;
4687 }
4688
4689 if (hdr.sid != h2c->dsi) {
4690 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004691 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 +01004692 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004693 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004694 goto fail;
4695 }
4696
4697 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4698 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004699 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 +01004700 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4701 goto fail;
4702 }
4703
4704 /* detect when we must stop aggragating frames */
4705 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4706
4707 /* Take as much as we can of the CONTINUATION frame's payload */
4708 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4709 if (clen > hdr.len)
4710 clen = hdr.len;
4711
4712 /* Move the frame's payload over the padding, hole and frame
4713 * header. At least one of hole or dpl is null (see diagrams
4714 * above). The hole moves after the new aggragated frame.
4715 */
4716 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 +02004717 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004718 hole += h2c->dpl + 9;
4719 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004720 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 +01004721 goto next_frame;
4722 }
4723
4724 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004725
Willy Tarreau13278b42017-10-13 19:23:14 +02004726 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004727 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004728 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004729 copy = alloc_trash_chunk();
4730 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004731 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 +02004732 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4733 goto fail;
4734 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004735 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4736 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4737 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004738 }
4739
Willy Tarreau13278b42017-10-13 19:23:14 +02004740 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4741 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004742 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004743 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004744 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 +01004745 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004746 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004747 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004748 }
4749
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004750 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004751 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 +01004752 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4753 goto fail;
4754 }
4755
Willy Tarreau13278b42017-10-13 19:23:14 +02004756 hdrs += 5; // stream dep = 4, weight = 1
4757 flen -= 5;
4758 }
4759
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004760 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004761 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 +01004762 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004763 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004764 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004765
Willy Tarreau937f7602018-02-26 15:22:17 +01004766 /* we can't retry a failed decompression operation so we must be very
4767 * careful not to take any risks. In practice the output buffer is
4768 * always empty except maybe for trailers, in which case we simply have
4769 * to wait for the upper layer to finish consuming what is available.
4770 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004771 htx = htx_from_buf(rxbuf);
4772 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004773 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 +02004774 h2c->flags |= H2_CF_DEM_SFULL;
4775 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004776 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004777
Willy Tarreau25919232019-01-03 14:48:18 +01004778 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004779 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4780 sizeof(list)/sizeof(list[0]), tmp);
4781 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004782 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 +01004783 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4784 goto fail;
4785 }
4786
Willy Tarreau25919232019-01-03 14:48:18 +01004787 /* The PACK decompressor was updated, let's update the input buffer and
4788 * the parser's state to commit these changes and allow us to later
4789 * fail solely on the stream if needed.
4790 */
4791 b_del(&h2c->dbuf, h2c->dfl + hole);
4792 h2c->dfl = hole = 0;
4793 h2c->st0 = H2_CS_FRAME_H;
4794
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004795 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004796 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004797 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004798 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004799 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004800 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004801
Willy Tarreau88d138e2019-01-02 19:38:14 +01004802 if (*flags & H2_SF_HEADERS_RCVD)
4803 goto trailers;
4804
4805 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004806 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004807 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004808 else
4809 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004810
Christopher Faulet3d875582021-04-26 17:46:13 +02004811 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004812 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004813 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4814 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004815 goto fail;
4816 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004817
Willy Tarreau174b06a2018-04-25 18:13:58 +02004818 if (msgf & H2_MSGF_BODY) {
4819 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004820 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004821 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004822 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004823 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004824 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004825 if (msgf & H2_MSGF_BODYLESS_RSP)
4826 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004827
Christopher Fauletd0db4232021-01-22 11:46:30 +01004828 if (msgf & H2_MSGF_BODY_TUNNEL)
4829 *flags |= H2_SF_BODY_TUNNEL;
4830 else {
4831 /* Abort the tunnel attempt, if any */
4832 if (*flags & H2_SF_BODY_TUNNEL)
4833 *flags |= H2_SF_TUNNEL_ABRT;
4834 *flags &= ~H2_SF_BODY_TUNNEL;
4835 }
4836
Willy Tarreau88d138e2019-01-02 19:38:14 +01004837 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004838 /* indicate that a HEADERS frame was received for this stream, except
4839 * for 1xx responses. For 1xx responses, another HEADERS frame is
4840 * expected.
4841 */
4842 if (!(msgf & H2_MSGF_RSP_1XX))
4843 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004844
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004845 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
4846 /* no more data are expected for this message */
4847 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004848 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004849
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004850 if (msgf & H2_MSGF_EXT_CONNECT)
4851 *flags |= H2_SF_EXT_CONNECT_RCVD;
4852
Willy Tarreau86277d42019-01-02 15:36:11 +01004853 /* success */
4854 ret = 1;
4855
Willy Tarreau68dd9852017-07-03 14:44:26 +02004856 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004857 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004858 * move the remaining data over it.
4859 */
4860 if (hole) {
4861 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4862 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4863 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4864 b_sub(&h2c->dbuf, hole);
4865 }
4866
Christopher Faulet07f88d72021-04-21 10:39:53 +02004867 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004868 /* too large frames */
4869 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004870 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004871 }
4872
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004873 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004874 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004875 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004876 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004877 return ret;
4878
Willy Tarreau68dd9852017-07-03 14:44:26 +02004879 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004880 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004881 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004882
4883 trailers:
4884 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004885 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4886 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004887 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 +01004888 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004889 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004890 goto fail;
4891 }
4892
Christopher Faulet9b79a102019-07-15 11:22:56 +02004893 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004894 if (h2_make_htx_trailers(list, htx) <= 0) {
4895 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 +02004896 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004897 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004898 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004899}
4900
Christopher Faulet9b79a102019-07-15 11:22:56 +02004901/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004902 * parser state is automatically updated. Returns > 0 if it could completely
4903 * send the current frame, 0 if it couldn't complete, in which case
4904 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4905 * DATA frame can return 0 as a valid result). Stream errors are reported in
4906 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4907 * have checked the frame header and ensured that the frame was complete or the
4908 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004909 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004910static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004911{
4912 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004913 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004914 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004915 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004916 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004917 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004918
Willy Tarreau7838a792019-08-12 18:42:03 +02004919 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4920
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004921 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004922
Olivier Houchard638b7992018-08-16 15:41:52 +02004923 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004924 if (!csbuf) {
4925 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004926 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 +01004927 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004928 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004929 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004930
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004931try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004932 flen = h2c->dfl - h2c->dpl;
4933 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004934 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004935
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004936 if (flen > b_data(&h2c->dbuf)) {
4937 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004938 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004939 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004940 }
4941
Christopher Faulet9b79a102019-07-15 11:22:56 +02004942 block = htx_free_data_space(htx);
4943 if (!block) {
4944 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004945 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 +02004946 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004947 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004948 if (flen > block)
4949 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004950
Christopher Faulet9b79a102019-07-15 11:22:56 +02004951 /* here, flen is the max we can copy into the output buffer */
4952 block = b_contig_data(&h2c->dbuf, 0);
4953 if (flen > block)
4954 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004955
Christopher Faulet9b79a102019-07-15 11:22:56 +02004956 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02004957 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 +02004958
Christopher Faulet9b79a102019-07-15 11:22:56 +02004959 b_del(&h2c->dbuf, sent);
4960 h2c->dfl -= sent;
4961 h2c->rcvd_c += sent;
4962 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004963
Christopher Faulet9b79a102019-07-15 11:22:56 +02004964 if (h2s->flags & H2_SF_DATA_CLEN) {
4965 h2s->body_len -= sent;
4966 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004967 }
4968
Christopher Faulet9b79a102019-07-15 11:22:56 +02004969 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004970 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004971 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 +01004972 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004973 }
4974
Christopher Faulet9b79a102019-07-15 11:22:56 +02004975 goto try_again;
4976
Willy Tarreau4a28da12018-01-04 14:41:00 +01004977 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004978 /* here we're done with the frame, all the payload (except padding) was
4979 * transferred.
4980 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004981
Christopher Faulet5be651d2021-01-22 15:28:03 +01004982 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
4983 /* no more data are expected for this message. This add the EOM
4984 * flag but only on the response path or if no tunnel attempt
4985 * was aborted. Otherwise (request path + tunnel abrted), the
4986 * EOM was already reported.
4987 */
Christopher Faulet33724322021-02-10 09:04:59 +01004988 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
4989 /* If we receive an empty DATA frame with ES flag while the HTX
4990 * message is empty, we must be sure to push a block to be sure
4991 * the HTX EOM flag will be handled on the other side. It is a
4992 * workaround because for now it is not possible to push empty
4993 * HTX DATA block. And without this block, there is no way to
4994 * "commit" the end of the message.
4995 */
4996 if (htx_is_empty(htx)) {
4997 if (!htx_add_endof(htx, HTX_BLK_EOT))
4998 goto fail;
4999 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005000 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005001 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005002 }
5003
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005004 h2c->rcvd_c += h2c->dpl;
5005 h2c->rcvd_s += h2c->dpl;
5006 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005007 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02005008 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005009 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005010 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005011 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005012 if (htx)
5013 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005014 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005015 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005016}
5017
Willy Tarreau115e83b2018-12-01 19:17:53 +01005018/* Try to send a HEADERS frame matching HTX response present in HTX message
5019 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5020 * must check the stream's status to detect any error which might have happened
5021 * subsequently to a successful send. The htx blocks are automatically removed
5022 * from the message. The htx message is assumed to be valid since produced from
5023 * the internal code, hence it contains a start line, an optional series of
5024 * header blocks and an end of header, otherwise an invalid frame could be
5025 * emitted and the resulting htx message could be left in an inconsistent state.
5026 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005027static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005028{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005029 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005030 struct h2c *h2c = h2s->h2c;
5031 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005032 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005033 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005034 struct htx_sl *sl;
5035 enum htx_blk_type type;
5036 int es_now = 0;
5037 int ret = 0;
5038 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005039
Willy Tarreau7838a792019-08-12 18:42:03 +02005040 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5041
Willy Tarreau115e83b2018-12-01 19:17:53 +01005042 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005043 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005044 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005045 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005046 return 0;
5047 }
5048
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005049 /* get the start line (we do have one) and the rest of the headers,
5050 * that we dump starting at header 0 */
5051 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005052 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005053 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005054 type = htx_get_blk_type(blk);
5055
5056 if (type == HTX_BLK_UNUSED)
5057 continue;
5058
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005059 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005060 break;
5061
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005062 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005063 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005064 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5065 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5066 goto fail;
5067 }
5068
5069 list[hdr].n = htx_get_blk_name(htx, blk);
5070 list[hdr].v = htx_get_blk_value(htx, blk);
5071 hdr++;
5072 }
5073 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005074 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005075 sl = htx_get_blk_ptr(htx, blk);
5076 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005077 if (h2s->status == 204 || h2s->status == 304)
5078 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005079 if (h2s->status < 100 || h2s->status > 999) {
5080 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5081 goto fail;
5082 }
5083 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005084 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5085 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5086 h2s->status = 200;
5087 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5088 }
5089 else {
5090 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5091 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5092 goto fail;
5093 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005094 }
5095 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5096 /* Abort the tunnel attempt */
5097 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5098 h2s->flags |= H2_SF_TUNNEL_ABRT;
5099 }
5100 }
5101 else {
5102 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 +01005103 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005104 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005105 }
5106
Christopher Faulet56498132021-01-29 11:39:43 +01005107 /* The start-line me be defined */
5108 BUG_ON(!sl);
5109
Willy Tarreau115e83b2018-12-01 19:17:53 +01005110 /* marker for end of headers */
5111 list[hdr].n = ist("");
5112
Willy Tarreau9c218e72019-05-26 10:08:28 +02005113 mbuf = br_tail(h2c->mbuf);
5114 retry:
5115 if (!h2_get_buf(h2c, mbuf)) {
5116 h2c->flags |= H2_CF_MUX_MALLOC;
5117 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005118 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 +02005119 return 0;
5120 }
5121
Willy Tarreau115e83b2018-12-01 19:17:53 +01005122 chunk_reset(&outbuf);
5123
5124 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005125 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5126 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005127 break;
5128 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005129 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005130 }
5131
5132 if (outbuf.size < 9)
5133 goto full;
5134
5135 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5136 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5137 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5138 outbuf.data = 9;
5139
5140 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005141 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005142 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005143 goto realign_again;
5144 goto full;
5145 }
5146
5147 /* encode all headers, stop at empty name */
5148 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5149 /* these ones do not exist in H2 and must be dropped. */
5150 if (isteq(list[hdr].n, ist("connection")) ||
5151 isteq(list[hdr].n, ist("proxy-connection")) ||
5152 isteq(list[hdr].n, ist("keep-alive")) ||
5153 isteq(list[hdr].n, ist("upgrade")) ||
5154 isteq(list[hdr].n, ist("transfer-encoding")))
5155 continue;
5156
Christopher Faulet86d144c2019-08-14 16:32:25 +02005157 /* Skip all pseudo-headers */
5158 if (*(list[hdr].n.ptr) == ':')
5159 continue;
5160
Willy Tarreau115e83b2018-12-01 19:17:53 +01005161 if (isteq(list[hdr].n, ist("")))
5162 break; // end
5163
5164 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
5165 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005166 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005167 goto realign_again;
5168 goto full;
5169 }
5170 }
5171
Willy Tarreaucb985a42019-10-07 16:56:34 +02005172 /* update the frame's size */
5173 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5174
5175 if (outbuf.data > h2c->mfs + 9) {
5176 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5177 /* output full */
5178 if (b_space_wraps(mbuf))
5179 goto realign_again;
5180 goto full;
5181 }
5182 }
5183
Willy Tarreau3a537072021-06-17 08:40:04 +02005184 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5185
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005186 /* remove all header blocks including the EOH and compute the
5187 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005188 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005189 ret = 0;
5190 blk = htx_get_head_blk(htx);
5191 while (blk) {
5192 type = htx_get_blk_type(blk);
5193 ret += htx_get_blksz(blk);
5194 blk = htx_remove_blk(htx, blk);
5195 /* The removed block is the EOH */
5196 if (type == HTX_BLK_EOH)
5197 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005198 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005199
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005200 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5201 /* Response already closed: add END_STREAM */
5202 es_now = 1;
5203 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005204 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5205 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005206 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005207 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005208 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5209 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005210 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005211
Willy Tarreau115e83b2018-12-01 19:17:53 +01005212 if (es_now)
5213 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5214
5215 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005216 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005217
5218 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5219 * 1xx responses, another HEADERS frame is expected.
5220 */
Christopher Faulet89899422020-12-07 18:24:43 +01005221 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005222 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005223
Willy Tarreau115e83b2018-12-01 19:17:53 +01005224 if (es_now) {
5225 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005226 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 +01005227 if (h2s->st == H2_SS_OPEN)
5228 h2s->st = H2_SS_HLOC;
5229 else
5230 h2s_close(h2s);
5231 }
5232
5233 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005234 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005235 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005236 return ret;
5237 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005238 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5239 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005240 h2c->flags |= H2_CF_MUX_MFULL;
5241 h2s->flags |= H2_SF_BLK_MROOM;
5242 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005243 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 +01005244 goto end;
5245 fail:
5246 /* unparsable HTX messages, too large ones to be produced in the local
5247 * list etc go here (unrecoverable errors).
5248 */
5249 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5250 ret = 0;
5251 goto end;
5252}
5253
Willy Tarreau80739692018-10-05 11:35:57 +02005254/* Try to send a HEADERS frame matching HTX request present in HTX message
5255 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5256 * must check the stream's status to detect any error which might have happened
5257 * subsequently to a successful send. The htx blocks are automatically removed
5258 * from the message. The htx message is assumed to be valid since produced from
5259 * the internal code, hence it contains a start line, an optional series of
5260 * header blocks and an end of header, otherwise an invalid frame could be
5261 * emitted and the resulting htx message could be left in an inconsistent state.
5262 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005263static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005264{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005265 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005266 struct h2c *h2c = h2s->h2c;
5267 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005268 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005269 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005270 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005271 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005272 enum htx_blk_type type;
5273 int es_now = 0;
5274 int ret = 0;
5275 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005276 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005277
Willy Tarreau7838a792019-08-12 18:42:03 +02005278 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5279
Willy Tarreau80739692018-10-05 11:35:57 +02005280 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005281 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005282 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005283 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02005284 return 0;
5285 }
5286
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005287 /* get the start line (we do have one) and the rest of the headers,
5288 * that we dump starting at header 0 */
5289 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005290 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005291 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005292 type = htx_get_blk_type(blk);
5293
5294 if (type == HTX_BLK_UNUSED)
5295 continue;
5296
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005297 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005298 break;
5299
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005300 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005301 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005302 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5303 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5304 goto fail;
5305 }
Willy Tarreau80739692018-10-05 11:35:57 +02005306
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005307 list[hdr].n = htx_get_blk_name(htx, blk);
5308 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005309
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005310 /* Skip header if same name is used to add the server name */
5311 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name &&
5312 isteq(list[hdr].n, ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len)))
5313 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005314
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005315 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005316 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005317 /* rfc 7230 #6.1 Connection = list of tokens */
5318 struct ist connection_ist = list[hdr].v;
5319 do {
5320 if (isteqi(iststop(connection_ist, ','),
5321 ist("upgrade"))) {
5322 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5323 sl->info.req.meth = HTTP_METH_CONNECT;
5324 meth = ist("CONNECT");
5325
5326 extended_connect = 1;
5327 break;
5328 }
5329
5330 connection_ist = istadv(istfind(connection_ist, ','), 1);
5331 } while (istlen(connection_ist));
5332 }
5333
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005334 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005335 /* rfc 7230 #6.7 Upgrade = list of protocols
5336 * rfc 8441 #4 Extended connect = :protocol is single-valued
5337 *
5338 * only first HTTP/1 protocol is preserved
5339 */
5340 const struct ist protocol = iststop(list[hdr].v, ',');
5341 /* upgrade_protocol field is 16 bytes long in h2s */
5342 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5343 }
5344
5345 if (isteq(list[hdr].n, ist("host")))
5346 host = list[hdr].v;
5347
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005348 hdr++;
5349 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005350 else if (type == HTX_BLK_REQ_SL) {
5351 BUG_ON(sl); /* Only one start-line expected */
5352 sl = htx_get_blk_ptr(htx, blk);
5353 meth = htx_sl_req_meth(sl);
5354 uri = htx_sl_req_uri(sl);
5355 if (sl->info.req.meth == HTTP_METH_HEAD)
5356 h2s->flags |= H2_SF_BODYLESS_RESP;
5357 if (unlikely(uri.len == 0)) {
5358 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5359 goto fail;
5360 }
5361 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005362 else {
5363 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5364 goto fail;
5365 }
Willy Tarreau80739692018-10-05 11:35:57 +02005366 }
5367
Christopher Faulet56498132021-01-29 11:39:43 +01005368 /* The start-line me be defined */
5369 BUG_ON(!sl);
5370
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005371 /* Now add the server name to a header (if requested) */
5372 if ((h2c->flags & H2_CF_IS_BACK) && h2c->proxy->server_id_hdr_name) {
5373 struct server *srv = objt_server(h2c->conn->target);
5374
5375 if (srv) {
5376 list[hdr].n = ist2(h2c->proxy->server_id_hdr_name, h2c->proxy->server_id_hdr_len);
5377 list[hdr].v = ist(srv->id);
5378 hdr++;
5379 }
5380 }
5381
Willy Tarreau80739692018-10-05 11:35:57 +02005382 /* marker for end of headers */
5383 list[hdr].n = ist("");
5384
Willy Tarreau9c218e72019-05-26 10:08:28 +02005385 mbuf = br_tail(h2c->mbuf);
5386 retry:
5387 if (!h2_get_buf(h2c, mbuf)) {
5388 h2c->flags |= H2_CF_MUX_MALLOC;
5389 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005390 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 +02005391 return 0;
5392 }
5393
Willy Tarreau80739692018-10-05 11:35:57 +02005394 chunk_reset(&outbuf);
5395
5396 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005397 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5398 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005399 break;
5400 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005401 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005402 }
5403
5404 if (outbuf.size < 9)
5405 goto full;
5406
5407 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5408 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5409 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5410 outbuf.data = 9;
5411
5412 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005413 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005414 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005415 goto realign_again;
5416 goto full;
5417 }
5418
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005419 auth = ist(NULL);
5420
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005421 /* RFC7540 #8.3: the CONNECT method must have :
5422 * - :authority set to the URI part (host:port)
5423 * - :method set to CONNECT
5424 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005425 *
5426 * Note that this is not applicable in case of the Extended CONNECT
5427 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005428 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005429 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005430 auth = uri;
5431
5432 if (!hpack_encode_header(&outbuf, ist(":authority"), auth)) {
5433 /* output full */
5434 if (b_space_wraps(mbuf))
5435 goto realign_again;
5436 goto full;
5437 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005438 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005439 } else {
5440 /* other methods need a :scheme. If an authority is known from
5441 * the request line, it must be sent, otherwise only host is
5442 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005443 *
5444 * This code is also applicable for Extended CONNECT protocol
5445 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005446 */
5447 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005448
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005449 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5450 /* the URI seems to start with a scheme */
5451 int len = 1;
5452
5453 while (len < uri.len && uri.ptr[len] != ':')
5454 len++;
5455
5456 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5457 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005458 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005459 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005460
5461 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005462 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005463 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5464 auth.len++;
5465
Tim Duesterhus154374c2021-03-02 18:57:27 +01005466 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005467 }
5468 }
5469
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005470 /* For Extended CONNECT, the :authority must be present.
5471 * Use host value for it.
5472 */
5473 if (unlikely(extended_connect) && isttest(host))
5474 auth = host;
5475
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005476 if (!scheme.len) {
5477 /* no explicit scheme, we're using an origin-form URI,
5478 * probably from an H1 request transcoded to H2 via an
5479 * external layer, then received as H2 without authority.
5480 * So we have to look up the scheme from the HTX flags.
5481 * In such a case only http and https are possible, and
5482 * https is the default (sent by browsers).
5483 */
5484 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5485 scheme = ist("http");
5486 else
5487 scheme = ist("https");
5488 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005489
5490 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005491 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005492 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005493 goto realign_again;
5494 goto full;
5495 }
Willy Tarreau80739692018-10-05 11:35:57 +02005496
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005497 if (auth.len && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005498 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005499 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005500 goto realign_again;
5501 goto full;
5502 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005503
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005504 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5505 * be sent as '/' or '*'.
5506 */
5507 if (unlikely(!uri.len)) {
5508 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5509 uri = ist("*");
5510 else
5511 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005512 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005513
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005514 if (!hpack_encode_path(&outbuf, uri)) {
5515 /* output full */
5516 if (b_space_wraps(mbuf))
5517 goto realign_again;
5518 goto full;
5519 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005520
5521 /* encode the pseudo-header protocol from rfc8441 if using
5522 * Extended CONNECT method.
5523 */
5524 if (unlikely(extended_connect)) {
5525 const struct ist protocol = ist(h2s->upgrade_protocol);
5526 if (isttest(protocol)) {
5527 if (!hpack_encode_header(&outbuf,
5528 ist(":protocol"),
5529 protocol)) {
5530 /* output full */
5531 if (b_space_wraps(mbuf))
5532 goto realign_again;
5533 goto full;
5534 }
5535 }
5536 }
Willy Tarreau80739692018-10-05 11:35:57 +02005537 }
5538
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005539 /* encode all headers, stop at empty name. Host is only sent if we
5540 * do not provide an authority.
5541 */
Willy Tarreau80739692018-10-05 11:35:57 +02005542 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005543 struct ist n = list[hdr].n;
5544 struct ist v = list[hdr].v;
5545
Willy Tarreau80739692018-10-05 11:35:57 +02005546 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005547 if (isteq(n, ist("connection")) ||
5548 (auth.len && isteq(n, ist("host"))) ||
5549 isteq(n, ist("proxy-connection")) ||
5550 isteq(n, ist("keep-alive")) ||
5551 isteq(n, ist("upgrade")) ||
5552 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005553 continue;
5554
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005555 if (isteq(n, ist("te"))) {
5556 /* "te" may only be sent with "trailers" if this value
5557 * is present, otherwise it must be deleted.
5558 */
5559 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005560 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005561 continue;
5562 v = ist("trailers");
5563 }
5564
Christopher Faulet86d144c2019-08-14 16:32:25 +02005565 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005566 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005567 continue;
5568
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005569 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005570 break; // end
5571
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005572 if (!hpack_encode_header(&outbuf, n, v)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005573 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005574 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005575 goto realign_again;
5576 goto full;
5577 }
5578 }
5579
Willy Tarreaucb985a42019-10-07 16:56:34 +02005580 /* update the frame's size */
5581 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5582
5583 if (outbuf.data > h2c->mfs + 9) {
5584 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5585 /* output full */
5586 if (b_space_wraps(mbuf))
5587 goto realign_again;
5588 goto full;
5589 }
5590 }
5591
Willy Tarreau3a537072021-06-17 08:40:04 +02005592 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5593
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005594 /* remove all header blocks including the EOH and compute the
5595 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005596 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005597 ret = 0;
5598 blk = htx_get_head_blk(htx);
5599 while (blk) {
5600 type = htx_get_blk_type(blk);
5601 ret += htx_get_blksz(blk);
5602 blk = htx_remove_blk(htx, blk);
5603 /* The removed block is the EOH */
5604 if (type == HTX_BLK_EOH)
5605 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005606 }
Willy Tarreau80739692018-10-05 11:35:57 +02005607
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005608 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) {
5609 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005610 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005611 }
5612 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5613 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5614 * request)
5615 */
5616 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5617 es_now = 1;
5618 }
Willy Tarreau80739692018-10-05 11:35:57 +02005619
Willy Tarreau80739692018-10-05 11:35:57 +02005620 if (es_now)
5621 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5622
5623 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005624 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005625 h2s->flags |= H2_SF_HEADERS_SENT;
5626 h2s->st = H2_SS_OPEN;
5627
Willy Tarreau80739692018-10-05 11:35:57 +02005628 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005629 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 +02005630 // trim any possibly pending data (eg: inconsistent content-length)
5631 h2s->flags |= H2_SF_ES_SENT;
5632 h2s->st = H2_SS_HLOC;
5633 }
5634
Willy Tarreau80739692018-10-05 11:35:57 +02005635 end:
5636 return ret;
5637 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005638 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5639 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005640 h2c->flags |= H2_CF_MUX_MFULL;
5641 h2s->flags |= H2_SF_BLK_MROOM;
5642 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005643 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 +02005644 goto end;
5645 fail:
5646 /* unparsable HTX messages, too large ones to be produced in the local
5647 * list etc go here (unrecoverable errors).
5648 */
5649 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5650 ret = 0;
5651 goto end;
5652}
5653
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005654/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005655 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5656 * caller must check the stream's status to detect any error which might have
5657 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005658 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005659 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005660static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005661{
5662 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005663 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005664 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005665 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005666 size_t total = 0;
5667 int es_now = 0;
5668 int bsize; /* htx block size */
5669 int fsize; /* h2 frame size */
5670 struct htx_blk *blk;
5671 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005672 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005673
Willy Tarreau7838a792019-08-12 18:42:03 +02005674 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5675
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005676 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005677 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005678 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005679 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005680 goto end;
5681 }
5682
Willy Tarreau98de12a2018-12-12 07:03:00 +01005683 htx = htx_from_buf(buf);
5684
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005685 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005686
5687 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005688 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005689 goto end;
5690
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005691 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005692 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5693 /* The response HEADERS frame not received yet. Thus the tunnel
5694 * is not fully established yet. In this situation, we block
5695 * data sending.
5696 */
5697 h2s->flags |= H2_SF_BLK_MBUSY;
5698 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5699 goto end;
5700 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005701 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5702 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5703 * Thus the stream is closed with the CANCEL error. The error will be reported to
5704 * the upper layer as aserver abort. But at this stage there is nothing more we can
5705 * do. We just wait for the end of the response to be sure to not truncate it.
5706 */
5707 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5708 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5709 h2s->flags |= H2_SF_BLK_MBUSY;
5710 }
5711 else {
5712 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5713 h2s_error(h2s, H2_ERR_CANCEL);
5714 }
5715 goto end;
5716 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005717
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005718 blk = htx_get_head_blk(htx);
5719 type = htx_get_blk_type(blk);
5720 bsize = htx_get_blksz(blk);
5721 fsize = bsize;
5722 trunc_out = 0;
5723 if (type != HTX_BLK_DATA)
5724 goto end;
5725
Willy Tarreau9c218e72019-05-26 10:08:28 +02005726 mbuf = br_tail(h2c->mbuf);
5727 retry:
5728 if (!h2_get_buf(h2c, mbuf)) {
5729 h2c->flags |= H2_CF_MUX_MALLOC;
5730 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005731 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 +02005732 goto end;
5733 }
5734
Willy Tarreau98de12a2018-12-12 07:03:00 +01005735 /* Perform some optimizations to reduce the number of buffer copies.
5736 * First, if the mux's buffer is empty and the htx area contains
5737 * exactly one data block of the same size as the requested count, and
5738 * this count fits within the frame size, the stream's window size, and
5739 * the connection's window size, then it's possible to simply swap the
5740 * caller's buffer with the mux's output buffer and adjust offsets and
5741 * length to match the entire DATA HTX block in the middle. In this
5742 * case we perform a true zero-copy operation from end-to-end. This is
5743 * the situation that happens all the time with large files. Second, if
5744 * this is not possible, but the mux's output buffer is empty, we still
5745 * have an opportunity to avoid the copy to the intermediary buffer, by
5746 * making the intermediary buffer's area point to the output buffer's
5747 * area. In this case we want to skip the HTX header to make sure that
5748 * copies remain aligned and that this operation remains possible all
5749 * the time. This goes for headers, data blocks and any data extracted
5750 * from the HTX blocks.
5751 */
5752 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005753 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005754 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005755 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005756
Willy Tarreaubcc45952019-05-26 10:05:50 +02005757 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005758 /* Too bad there are data left there. We're willing to memcpy/memmove
5759 * up to 1/4 of the buffer, which means that it's OK to copy a large
5760 * frame into a buffer containing few data if it needs to be realigned,
5761 * and that it's also OK to copy few data without realigning. Otherwise
5762 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005763 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005764 if (fsize + 9 <= b_room(mbuf) &&
5765 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005766 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5767 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 +01005768 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005769 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005770
Willy Tarreau9c218e72019-05-26 10:08:28 +02005771 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5772 goto retry;
5773
Willy Tarreau98de12a2018-12-12 07:03:00 +01005774 h2c->flags |= H2_CF_MUX_MFULL;
5775 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005776 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 +01005777 goto end;
5778 }
5779
Christopher Faulet925abdf2021-04-27 22:51:07 +02005780 if (htx->flags & HTX_FL_EOM) {
5781 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5782 * message)
5783 */
5784 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5785 es_now = 1;
5786 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005787 /* map an H2 frame to the HTX block so that we can put the
5788 * frame header there.
5789 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005790 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5791 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005792
5793 /* prepend an H2 DATA frame header just before the DATA block */
5794 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5795 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005796 if (es_now)
5797 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005798 h2_set_frame_size(outbuf.area, fsize);
5799
5800 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005801 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005802 h2c->mws -= fsize;
5803
5804 /* and exchange with our old area */
5805 buf->area = old_area;
5806 buf->data = buf->head = 0;
5807 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005808 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005809
5810 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 +02005811 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005812 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005813
Willy Tarreau98de12a2018-12-12 07:03:00 +01005814 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005815 /* for DATA and EOM we'll have to emit a frame, even if empty */
5816
5817 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005818 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5819 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005820 break;
5821 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005822 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005823 }
5824
5825 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005826 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5827 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005828 h2c->flags |= H2_CF_MUX_MFULL;
5829 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005830 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005831 goto end;
5832 }
5833
5834 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5835 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5836 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5837 outbuf.data = 9;
5838
5839 /* we have in <fsize> the exact number of bytes we need to copy from
5840 * the HTX buffer. We need to check this against the connection's and
5841 * the stream's send windows, and to ensure that this fits in the max
5842 * frame size and in the buffer's available space minus 9 bytes (for
5843 * the frame header). The connection's flow control is applied last so
5844 * that we can use a separate list of streams which are immediately
5845 * unblocked on window opening. Note: we don't implement padding.
5846 */
5847
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005848 if (!fsize)
5849 goto send_empty;
5850
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005851 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005852 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005853 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005854 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005855 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005856 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 +01005857 goto end;
5858 }
5859
Willy Tarreauee573762018-12-04 15:25:57 +01005860 if (fsize > count)
5861 fsize = count;
5862
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005863 if (fsize > h2s_mws(h2s))
5864 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005865
5866 if (h2c->mfs && fsize > h2c->mfs)
5867 fsize = h2c->mfs; // >0
5868
5869 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005870 /* It doesn't fit at once. If it at least fits once split and
5871 * the amount of data to move is low, let's defragment the
5872 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005873 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005874 if (b_space_wraps(mbuf) &&
5875 (fsize + 9 <= b_room(mbuf)) &&
5876 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005877 goto realign_again;
5878 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005879 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005880
5881 if (fsize <= 0) {
5882 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005883 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5884 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005885 h2c->flags |= H2_CF_MUX_MFULL;
5886 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005887 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005888 goto end;
5889 }
5890 }
5891
5892 if (h2c->mws <= 0) {
5893 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005894 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 +01005895 goto end;
5896 }
5897
5898 if (fsize > h2c->mws)
5899 fsize = h2c->mws;
5900
5901 /* now let's copy this this into the output buffer */
5902 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005903 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005904 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005905 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005906
5907 send_empty:
5908 /* update the frame's size */
5909 h2_set_frame_size(outbuf.area, fsize);
5910
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005911 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005912 total += fsize;
5913 if (fsize == bsize) {
5914 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005915 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5916 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5917 * message)
5918 */
5919 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5920 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02005921 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005922 }
5923 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005924 /* we've truncated this block */
5925 htx_cut_data_blk(htx, blk, fsize);
5926 }
5927
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005928 if (es_now)
5929 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5930
5931 /* commit the H2 response */
5932 b_add(mbuf, fsize + 9);
5933
Christopher Faulet925abdf2021-04-27 22:51:07 +02005934 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005935 if (es_now) {
5936 if (h2s->st == H2_SS_OPEN)
5937 h2s->st = H2_SS_HLOC;
5938 else
5939 h2s_close(h2s);
5940
5941 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005942 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 +01005943 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005944 else if (fsize) {
5945 if (fsize == bsize) {
5946 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5947 goto new_frame;
5948 }
5949 else if (trunc_out) {
5950 /* we've truncated this block */
5951 goto new_frame;
5952 }
5953 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005954
5955 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005956 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005957 return total;
5958}
5959
Christopher Faulet991febd2020-12-02 15:17:31 +01005960/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
5961 * ES flag set for stream <h2s>. This function is called for response known to
5962 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005963 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01005964 * which might have happened subsequently to a successful send. Returns the
5965 * number of data bytes consumed, or zero if nothing done.
5966 */
5967static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
5968{
5969 struct h2c *h2c = h2s->h2c;
5970 struct htx *htx;
5971 int bsize; /* htx block size */
5972 int fsize; /* h2 frame size */
5973 struct htx_blk *blk;
5974 enum htx_blk_type type;
5975 size_t total = 0;
5976
5977 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5978
5979 if (h2c_mux_busy(h2c, h2s)) {
5980 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5981 h2s->flags |= H2_SF_BLK_MBUSY;
5982 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5983 goto end;
5984 }
5985
5986 htx = htx_from_buf(buf);
5987
5988 next_data:
5989 if (!count || htx_is_empty(htx))
5990 goto end;
5991 blk = htx_get_head_blk(htx);
5992 type = htx_get_blk_type(blk);
5993 bsize = htx_get_blksz(blk);
5994 fsize = bsize;
5995 if (type != HTX_BLK_DATA)
5996 goto end;
5997
5998 if (fsize > count)
5999 fsize = count;
6000
6001 if (fsize != bsize)
6002 goto skip_data;
6003
6004 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6005 goto skip_data;
6006
6007 /* Here, it is the last block and it is also the end of the message. So
6008 * we can emit an empty DATA frame with the ES flag set
6009 */
6010 if (h2_send_empty_data_es(h2s) <= 0)
6011 goto end;
6012
6013 if (h2s->st == H2_SS_OPEN)
6014 h2s->st = H2_SS_HLOC;
6015 else
6016 h2s_close(h2s);
6017
6018 skip_data:
6019 /* consume incoming HTX block */
6020 total += fsize;
6021 if (fsize == bsize) {
6022 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6023 htx_remove_blk(htx, blk);
6024 goto next_data;
6025 }
6026 else {
6027 /* we've truncated this block */
6028 htx_cut_data_blk(htx, blk, fsize);
6029 }
6030
6031 end:
6032 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6033 return total;
6034}
6035
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006036/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6037 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6038 * processed. The caller must check the stream's status to detect any error
6039 * which might have happened subsequently to a successful send. The htx blocks
6040 * are automatically removed from the message. The htx message is assumed to be
6041 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006042 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6043 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006044 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006045static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006046{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006047 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006048 struct h2c *h2c = h2s->h2c;
6049 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006050 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006051 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006052 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006053 int ret = 0;
6054 int hdr;
6055 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006056
Willy Tarreau7838a792019-08-12 18:42:03 +02006057 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6058
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006059 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006060 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006061 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02006062 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006063 goto end;
6064 }
6065
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006066 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006067 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006068 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006069 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006070
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006071 if (type == HTX_BLK_UNUSED)
6072 continue;
6073
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006074 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006075 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006076 if (type == HTX_BLK_TLR) {
6077 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6078 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6079 goto fail;
6080 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006081
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006082 list[hdr].n = htx_get_blk_name(htx, blk);
6083 list[hdr].v = htx_get_blk_value(htx, blk);
6084 hdr++;
6085 }
6086 else {
6087 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 +01006088 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006089 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006090 }
6091
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006092 /* marker for end of trailers */
6093 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006094
Willy Tarreau9c218e72019-05-26 10:08:28 +02006095 mbuf = br_tail(h2c->mbuf);
6096 retry:
6097 if (!h2_get_buf(h2c, mbuf)) {
6098 h2c->flags |= H2_CF_MUX_MALLOC;
6099 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006100 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 +02006101 goto end;
6102 }
6103
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006104 chunk_reset(&outbuf);
6105
6106 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006107 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6108 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006109 break;
6110 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006111 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006112 }
6113
6114 if (outbuf.size < 9)
6115 goto full;
6116
6117 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6118 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6119 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6120 outbuf.data = 9;
6121
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006122 /* encode all headers */
6123 for (idx = 0; idx < hdr; idx++) {
6124 /* these ones do not exist in H2 or must not appear in
6125 * trailers and must be dropped.
6126 */
6127 if (isteq(list[idx].n, ist("host")) ||
6128 isteq(list[idx].n, ist("content-length")) ||
6129 isteq(list[idx].n, ist("connection")) ||
6130 isteq(list[idx].n, ist("proxy-connection")) ||
6131 isteq(list[idx].n, ist("keep-alive")) ||
6132 isteq(list[idx].n, ist("upgrade")) ||
6133 isteq(list[idx].n, ist("te")) ||
6134 isteq(list[idx].n, ist("transfer-encoding")))
6135 continue;
6136
Christopher Faulet86d144c2019-08-14 16:32:25 +02006137 /* Skip all pseudo-headers */
6138 if (*(list[idx].n.ptr) == ':')
6139 continue;
6140
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006141 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
6142 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006143 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006144 goto realign_again;
6145 goto full;
6146 }
6147 }
6148
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006149 if (outbuf.data == 9) {
6150 /* here we have a problem, we have nothing to emit (either we
6151 * received an empty trailers block followed or we removed its
6152 * contents above). Because of this we can't send a HEADERS
6153 * frame, so we have to cheat and instead send an empty DATA
6154 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006155 */
6156 outbuf.area[3] = H2_FT_DATA;
6157 outbuf.area[4] = H2_F_DATA_END_STREAM;
6158 }
6159
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006160 /* update the frame's size */
6161 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6162
Willy Tarreau572d9f52019-10-11 16:58:37 +02006163 if (outbuf.data > h2c->mfs + 9) {
6164 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6165 /* output full */
6166 if (b_space_wraps(mbuf))
6167 goto realign_again;
6168 goto full;
6169 }
6170 }
6171
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006172 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006173 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 +02006174 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006175 h2s->flags |= H2_SF_ES_SENT;
6176
6177 if (h2s->st == H2_SS_OPEN)
6178 h2s->st = H2_SS_HLOC;
6179 else
6180 h2s_close(h2s);
6181
6182 /* OK we could properly deliver the response */
6183 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006184 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006185 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006186 blk = htx_get_head_blk(htx);
6187 while (blk) {
6188 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006189 ret += htx_get_blksz(blk);
6190 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006191 /* The removed block is the EOT */
6192 if (type == HTX_BLK_EOT)
6193 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006194 }
6195
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006196 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006197 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006198 return ret;
6199 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006200 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6201 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006202 h2c->flags |= H2_CF_MUX_MFULL;
6203 h2s->flags |= H2_SF_BLK_MROOM;
6204 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006205 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 +01006206 goto end;
6207 fail:
6208 /* unparsable HTX messages, too large ones to be produced in the local
6209 * list etc go here (unrecoverable errors).
6210 */
6211 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6212 ret = 0;
6213 goto end;
6214}
6215
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006216/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6217 * event subscriber <es> is not allowed to change from a previous call as long
6218 * as at least one event is still subscribed. The <event_type> must only be a
6219 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006220 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006221static int h2_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006222{
Olivier Houchard6ff20392018-07-17 18:46:31 +02006223 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006224 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006225
Willy Tarreau7838a792019-08-12 18:42:03 +02006226 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006227
6228 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006229 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006230
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006231 es->events |= event_type;
6232 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006233
6234 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006235 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006236
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006237 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006238 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006239 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006240 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006241 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006242 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006243 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006244 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006245 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006246 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006247 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006248 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006249}
6250
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006251/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6252 * The <es> pointer is not allowed to differ from the one passed to the
6253 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006254 */
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006255static int h2_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006256{
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006257 struct h2s *h2s = cs->ctx;
6258
Willy Tarreau7838a792019-08-12 18:42:03 +02006259 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006260
6261 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006262 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006263
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006264 es->events &= ~event_type;
6265 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006266 h2s->subs = NULL;
6267
6268 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006269 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006270
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006271 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006272 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006273 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006274 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6275 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006276 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006277
Willy Tarreau7838a792019-08-12 18:42:03 +02006278 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006279 return 0;
6280}
6281
6282
Christopher Faulet564e39c2021-09-21 15:50:55 +02006283/* Called from the upper layer, to receive data
6284 *
6285 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6286 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6287 * means the caller wants to flush input data (from the mux buffer and the
6288 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6289 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6290 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6291 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6292 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6293 * copy as much data as possible.
6294 */
Olivier Houchard511efea2018-08-16 15:30:32 +02006295static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
6296{
Olivier Houchard638b7992018-08-16 15:41:52 +02006297 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01006298 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006299 struct htx *h2s_htx = NULL;
6300 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006301 size_t ret = 0;
6302
Willy Tarreau7838a792019-08-12 18:42:03 +02006303 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6304
Olivier Houchard511efea2018-08-16 15:30:32 +02006305 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006306 h2s_htx = htx_from_buf(&h2s->rxbuf);
6307 if (htx_is_empty(h2s_htx)) {
6308 /* Here htx_to_buf() will set buffer data to 0 because
6309 * the HTX is empty.
6310 */
6311 htx_to_buf(h2s_htx, &h2s->rxbuf);
6312 goto end;
6313 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006314
Christopher Faulet9b79a102019-07-15 11:22:56 +02006315 ret = h2s_htx->data;
6316 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006317
Christopher Faulet9b79a102019-07-15 11:22:56 +02006318 /* <buf> is empty and the message is small enough, swap the
6319 * buffers. */
6320 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006321 htx_to_buf(buf_htx, buf);
6322 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006323 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6324 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006325 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006326
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006327 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006328
6329 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6330 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6331 if (htx_is_empty(buf_htx))
6332 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01006333 }
Christopher Faulet810df062020-07-22 16:20:34 +02006334 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006335 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006336
Christopher Faulet9b79a102019-07-15 11:22:56 +02006337 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6338 htx_to_buf(buf_htx, buf);
6339 htx_to_buf(h2s_htx, &h2s->rxbuf);
6340 ret -= h2s_htx->data;
6341
Christopher Faulet37070b22019-02-14 15:12:14 +01006342 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006343 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01006344 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006345 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01006346 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006347 if (h2s->flags & H2_SF_ES_RCVD) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02006348 cs->flags |= CS_FL_EOI;
Christopher Fauletd0db4232021-01-22 11:46:30 +01006349 /* Add EOS flag for tunnel */
6350 if (h2s->flags & H2_SF_BODY_TUNNEL)
6351 cs->flags |= CS_FL_EOS;
6352 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006353 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02006354 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01006355 if (cs->flags & CS_FL_ERR_PENDING)
6356 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02006357 if (b_size(&h2s->rxbuf)) {
6358 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006359 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006360 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006361 }
6362
Willy Tarreau082f5592018-11-25 08:03:32 +01006363 if (ret && h2c->dsi == h2s->id) {
6364 /* demux is blocking on this stream's buffer */
6365 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006366 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006367 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006368
Willy Tarreau7838a792019-08-12 18:42:03 +02006369 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006370 return ret;
6371}
6372
Olivier Houchardd846c262018-10-19 17:24:29 +02006373
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006374/* Called from the upper layer, to send data from buffer <buf> for no more than
6375 * <count> bytes. Returns the number of bytes effectively sent. Some status
6376 * flags may be updated on the conn_stream.
6377 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02006378static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006379{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006380 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006381 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006382 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006383 struct htx *htx;
6384 struct htx_blk *blk;
6385 enum htx_blk_type btype;
6386 uint32_t bsize;
6387 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006388
Willy Tarreau7838a792019-08-12 18:42:03 +02006389 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6390
Olivier Houchardd360ac62019-03-22 17:37:16 +01006391 /* If we were not just woken because we wanted to send but couldn't,
6392 * and there's somebody else that is waiting to send, do nothing,
6393 * we will subscribe later and be put at the end of the list
6394 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006395 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006396 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6397 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 +01006398 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006399 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006400 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006401
Willy Tarreau7838a792019-08-12 18:42:03 +02006402 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6403 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 +02006404 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006405 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006406
Willy Tarreaucab22952019-10-31 15:48:18 +01006407 if (h2s->h2c->st0 >= H2_CS_ERROR) {
6408 cs->flags |= CS_FL_ERROR;
6409 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);
6410 return 0;
6411 }
6412
Christopher Faulet9b79a102019-07-15 11:22:56 +02006413 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006414
Willy Tarreau0bad0432018-06-14 16:54:01 +02006415 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006416 h2s->flags |= H2_SF_OUTGOING_DATA;
6417
Willy Tarreau751f2d02018-10-05 09:35:00 +02006418 if (h2s->id == 0) {
6419 int32_t id = h2c_get_next_sid(h2s->h2c);
6420
6421 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02006422 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02006423 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 +02006424 return 0;
6425 }
6426
6427 eb32_delete(&h2s->by_id);
6428 h2s->by_id.key = h2s->id = id;
6429 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006430 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006431 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6432 }
6433
Christopher Faulet9b79a102019-07-15 11:22:56 +02006434 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6435 count && !htx_is_empty(htx)) {
6436 idx = htx_get_head(htx);
6437 blk = htx_get_blk(htx, idx);
6438 btype = htx_get_blk_type(blk);
6439 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006440
Christopher Faulet9b79a102019-07-15 11:22:56 +02006441 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006442 case HTX_BLK_REQ_SL:
6443 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006444 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006445 if (ret > 0) {
6446 total += ret;
6447 count -= ret;
6448 if (ret < bsize)
6449 goto done;
6450 }
6451 break;
6452
Willy Tarreau115e83b2018-12-01 19:17:53 +01006453 case HTX_BLK_RES_SL:
6454 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006455 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006456 if (ret > 0) {
6457 total += ret;
6458 count -= ret;
6459 if (ret < bsize)
6460 goto done;
6461 }
6462 break;
6463
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006464 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006465 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006466 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6467 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6468 ret = h2s_skip_data(h2s, buf, count);
6469 else
6470 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006471 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006472 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006473 total += ret;
6474 count -= ret;
6475 if (ret < bsize)
6476 goto done;
6477 }
6478 break;
6479
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006480 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006481 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006482 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006483 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006484 if (ret > 0) {
6485 total += ret;
6486 count -= ret;
6487 if (ret < bsize)
6488 goto done;
6489 }
6490 break;
6491
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006492 default:
6493 htx_remove_blk(htx, blk);
6494 total += bsize;
6495 count -= bsize;
6496 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006497 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006498 }
6499
Christopher Faulet9b79a102019-07-15 11:22:56 +02006500 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006501 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006502 /* trim any possibly pending data after we close (extra CR-LF,
6503 * unprocessed trailers, abnormal extra data, ...)
6504 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006505 total += count;
6506 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006507 }
6508
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006509 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006510 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006511 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 +01006512 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006513 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006514 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006515 }
6516
Christopher Faulet9b79a102019-07-15 11:22:56 +02006517 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006518
Olivier Houchard7505f942018-08-21 18:10:44 +02006519 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006520 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006521 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 +02006522 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006523 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006524
Olivier Houchard7505f942018-08-21 18:10:44 +02006525 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006526 /* If we're waiting for flow control, and we got a shutr on the
6527 * connection, we will never be unlocked, so add an error on
6528 * the conn_stream.
6529 */
6530 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
6531 !b_data(&h2s->h2c->dbuf) &&
6532 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006533 TRACE_DEVEL("fctl with shutr, reporting error to app-layer", H2_EV_H2S_SEND|H2_EV_STRM_SEND|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006534 if (cs->flags & CS_FL_EOS)
6535 cs->flags |= CS_FL_ERROR;
6536 else
6537 cs->flags |= CS_FL_ERR_PENDING;
6538 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006539
Willy Tarreau5723f292020-01-10 15:16:57 +01006540 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6541 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006542 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006543 LIST_DEL_INIT(&h2s->list);
6544 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006545
Willy Tarreau7838a792019-08-12 18:42:03 +02006546 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006547 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006548}
6549
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006550/* for debugging with CLI's "show fd" command */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006551static int h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006552{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01006553 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01006554 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006555 struct eb32_node *node;
6556 int fctl_cnt = 0;
6557 int send_cnt = 0;
6558 int tree_cnt = 0;
6559 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02006560 struct buffer *hmbuf, *tmbuf;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006561 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006562
6563 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006564 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006565
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006566 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006567 fctl_cnt++;
6568
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006569 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006570 send_cnt++;
6571
Willy Tarreau3af37712018-12-18 14:34:41 +01006572 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006573 node = eb32_first(&h2c->streams_by_id);
6574 while (node) {
6575 h2s = container_of(node, struct h2s, by_id);
6576 tree_cnt++;
6577 if (!h2s->cs)
6578 orph_cnt++;
6579 node = eb32_next(node);
6580 }
6581
Willy Tarreau60f62682019-05-26 11:32:27 +02006582 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006583 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006584 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01006585 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02006586 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
6587 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006588 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02006589 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006590 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006591 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
6592 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
6593 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02006594 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6595 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6596 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006597 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6598 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006599
6600 if (h2s) {
Willy Tarreaued4464e2021-01-20 15:50:03 +01006601 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 +02006602 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01006603 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
6604 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
6605 h2s->cs);
6606 if (h2s->cs)
Willy Tarreau98e40b92021-01-20 16:27:01 +01006607 chunk_appendf(msg, "(.flg=0x%08x .data=%p)",
Willy Tarreau987c0632018-12-18 10:32:05 +01006608 h2s->cs->flags, h2s->cs->data);
Willy Tarreau98e40b92021-01-20 16:27:01 +01006609
6610 chunk_appendf(&trash, " .subs=%p", h2s->subs);
6611 if (h2s->subs) {
Christopher Faulet6c93c4e2021-02-25 10:06:29 +01006612 chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6613 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6614 h2s->subs->tasklet->calls,
6615 h2s->subs->tasklet->context);
6616 if (h2s->subs->tasklet->calls >= 1000000)
6617 ret = 1;
6618 resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
6619 chunk_appendf(&trash, ")");
Willy Tarreau98e40b92021-01-20 16:27:01 +01006620 }
Willy Tarreau987c0632018-12-18 10:32:05 +01006621 }
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006622 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006623}
Willy Tarreau62f52692017-10-08 23:01:42 +02006624
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006625/* Migrate the the connection to the current thread.
6626 * Return 0 if successful, non-zero otherwise.
6627 * Expected to be called with the old thread lock held.
6628 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006629static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006630{
6631 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006632 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006633
6634 if (fd_takeover(conn->handle.fd, conn) != 0)
6635 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006636
6637 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6638 /* We failed to takeover the xprt, even if the connection may
6639 * still be valid, flag it as error'd, as we have already
6640 * taken over the fd, and wake the tasklet, so that it will
6641 * destroy it.
6642 */
6643 conn->flags |= CO_FL_ERROR;
6644 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6645 return -1;
6646 }
6647
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006648 if (h2c->wait_event.events)
6649 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6650 h2c->wait_event.events, &h2c->wait_event);
6651 /* To let the tasklet know it should free itself, and do nothing else,
6652 * set its context to NULL.
6653 */
6654 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006655 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006656
6657 task = h2c->task;
6658 if (task) {
6659 task->context = NULL;
6660 h2c->task = NULL;
6661 __ha_barrier_store();
6662 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006663
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006664 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006665 if (!h2c->task) {
6666 h2_release(h2c);
6667 return -1;
6668 }
6669 h2c->task->process = h2_timeout_task;
6670 h2c->task->context = h2c;
6671 }
6672 h2c->wait_event.tasklet = tasklet_new();
6673 if (!h2c->wait_event.tasklet) {
6674 h2_release(h2c);
6675 return -1;
6676 }
6677 h2c->wait_event.tasklet->process = h2_io_cb;
6678 h2c->wait_event.tasklet->context = h2c;
6679 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6680 SUB_RETRY_RECV, &h2c->wait_event);
6681
6682 return 0;
6683}
6684
Willy Tarreau62f52692017-10-08 23:01:42 +02006685/*******************************************************/
6686/* functions below are dedicated to the config parsers */
6687/*******************************************************/
6688
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006689/* config parser for global "tune.h2.header-table-size" */
6690static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006691 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006692 char **err)
6693{
6694 if (too_many_args(1, args, err, NULL))
6695 return -1;
6696
6697 h2_settings_header_table_size = atoi(args[1]);
6698 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6699 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6700 return -1;
6701 }
6702 return 0;
6703}
Willy Tarreau62f52692017-10-08 23:01:42 +02006704
Willy Tarreaue6baec02017-07-27 11:45:11 +02006705/* config parser for global "tune.h2.initial-window-size" */
6706static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006707 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006708 char **err)
6709{
6710 if (too_many_args(1, args, err, NULL))
6711 return -1;
6712
6713 h2_settings_initial_window_size = atoi(args[1]);
6714 if (h2_settings_initial_window_size < 0) {
6715 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6716 return -1;
6717 }
6718 return 0;
6719}
6720
Willy Tarreau5242ef82017-07-27 11:47:28 +02006721/* config parser for global "tune.h2.max-concurrent-streams" */
6722static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006723 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006724 char **err)
6725{
6726 if (too_many_args(1, args, err, NULL))
6727 return -1;
6728
6729 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006730 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006731 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6732 return -1;
6733 }
6734 return 0;
6735}
6736
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006737/* config parser for global "tune.h2.max-frame-size" */
6738static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006739 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006740 char **err)
6741{
6742 if (too_many_args(1, args, err, NULL))
6743 return -1;
6744
6745 h2_settings_max_frame_size = atoi(args[1]);
6746 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6747 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6748 return -1;
6749 }
6750 return 0;
6751}
6752
Willy Tarreau62f52692017-10-08 23:01:42 +02006753
6754/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006755/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006756/***************************************/
6757
6758/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006759static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006760 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006761 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006762 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006763 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006764 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006765 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006766 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01006767 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02006768 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006769 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006770 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006771 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006772 .shutr = h2_shutr,
6773 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006774 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006775 .show_fd = h2_show_fd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006776 .takeover = h2_takeover,
Christopher Fauleta4600572021-03-08 15:28:28 +01006777 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006778 .name = "H2",
6779};
6780
Christopher Faulet32f61c02018-04-10 14:33:41 +02006781static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006782 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006783
Willy Tarreau0108d902018-11-25 19:14:37 +01006784INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6785
Willy Tarreau62f52692017-10-08 23:01:42 +02006786/* config keyword parsers */
6787static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006788 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006789 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006790 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006791 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006792 { 0, NULL, NULL }
6793}};
6794
Willy Tarreau0108d902018-11-25 19:14:37 +01006795INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006796
6797/* initialize internal structs after the config is parsed.
6798 * Returns zero on success, non-zero on error.
6799 */
6800static int init_h2()
6801{
6802 pool_head_hpack_tbl = create_pool("hpack_tbl",
6803 h2_settings_header_table_size,
6804 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006805 if (!pool_head_hpack_tbl) {
6806 ha_alert("failed to allocate hpack_tbl memory pool\n");
6807 return (ERR_ALERT | ERR_FATAL);
6808 }
6809 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006810}
6811
6812REGISTER_POST_CHECK(init_h2);