blob: 4b426394c0880e6ccdf6c112de946ff3a5c2c10f [file] [log] [blame]
Willy Tarreau62f52692017-10-08 23:01:42 +02001/*
2 * HTTP/2 mux-demux for connections
3 *
4 * Copyright 2017 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaudfd3de82020-06-04 23:46:14 +020013#include <import/eb32tree.h>
Willy Tarreau63617db2021-10-06 18:23:40 +020014#include <import/ebmbtree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020017#include <haproxy/connection.h>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020018#include <haproxy/dynbuf.h>
Willy Tarreaubf073142020-06-03 12:04:01 +020019#include <haproxy/h2.h>
Willy Tarreaube327fa2020-06-03 09:09:57 +020020#include <haproxy/hpack-dec.h>
21#include <haproxy/hpack-enc.h>
22#include <haproxy/hpack-tbl.h>
Willy Tarreau87735332020-06-04 09:08:41 +020023#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020024#include <haproxy/htx.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/istbuf.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020026#include <haproxy/log.h>
Willy Tarreau6c0fadf2022-09-12 19:07:51 +020027#include <haproxy/mux_h2-t.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020028#include <haproxy/net_helper.h>
Frédéric Lécaille9969adb2023-01-18 11:52:21 +010029#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020030#include <haproxy/session-t.h>
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +010031#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020032#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020033#include <haproxy/stream.h>
Willy Tarreauc6d61d72020-06-04 19:02:42 +020034#include <haproxy/trace.h>
Willy Tarreau62f52692017-10-08 23:01:42 +020035
36
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010037/* dummy streams returned for closed, error, refused, idle and states */
Willy Tarreau2a856182017-05-16 15:20:39 +020038static const struct h2s *h2_closed_stream;
Willy Tarreauecb9dcd2019-01-03 12:00:17 +010039static const struct h2s *h2_error_stream;
Willy Tarreau8d0d58b2018-12-23 18:29:12 +010040static const struct h2s *h2_refused_stream;
Willy Tarreau2a856182017-05-16 15:20:39 +020041static const struct h2s *h2_idle_stream;
42
Willy Tarreau5ab6b572017-09-22 08:05:00 +020043
Willy Tarreau6c0fadf2022-09-12 19:07:51 +020044/**** H2 connection descriptor ****/
Willy Tarreau5ab6b572017-09-22 08:05:00 +020045struct h2c {
46 struct connection *conn;
47
48 enum h2_cs st0; /* mux state */
49 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
50
51 /* 16 bit hole here */
52 uint32_t flags; /* connection flags: H2_CF_* */
Willy Tarreau2e2083a2019-01-31 10:34:07 +010053 uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020054 int32_t max_id; /* highest ID known on this connection, <0 before preface */
55 uint32_t rcvd_c; /* newly received data to ACK for the connection */
Willy Tarreau617592c2022-06-08 16:32:22 +020056 uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) or zero */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020057
58 /* states for the demux direction */
59 struct hpack_dht *ddht; /* demux dynamic header table */
Willy Tarreauc9fa0482018-07-10 17:43:27 +020060 struct buffer dbuf; /* demux buffer */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020061
62 int32_t dsi; /* demux stream ID (<0 = idle) */
63 int32_t dfl; /* demux frame length (if dsi >= 0) */
64 int8_t dft; /* demux frame type (if dsi >= 0) */
65 int8_t dff; /* demux frame flags (if dsi >= 0) */
Willy Tarreau05e5daf2017-12-11 15:17:36 +010066 uint8_t dpl; /* demux pad length (part of dfl), init to 0 */
67 /* 8 bit hole here */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020068 int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */
69
70 /* states for the mux direction */
Willy Tarreau51330962019-05-26 09:38:07 +020071 struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020072 int32_t miw; /* mux initial window size for all new streams */
73 int32_t mws; /* mux window size. Can be negative. */
74 int32_t mfs; /* mux's max frame size */
75
Willy Tarreauea392822017-10-31 10:02:25 +010076 int timeout; /* idle timeout duration in ticks */
Willy Tarreau599391a2017-11-24 10:16:00 +010077 int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */
Willy Tarreau15a47332022-03-18 15:57:34 +010078 int idle_start; /* date of the last time the connection went idle */
79 /* 32-bit hole here */
Willy Tarreau49745612017-12-03 18:56:02 +010080 unsigned int nb_streams; /* number of streams in the tree */
Willy Tarreau36c22322022-05-27 10:41:24 +020081 unsigned int nb_sc; /* number of attached stream connectors */
Willy Tarreaud64a3eb2019-01-23 10:22:21 +010082 unsigned int nb_reserved; /* number of reserved streams */
Willy Tarreaue9634bd2019-01-23 10:25:10 +010083 unsigned int stream_cnt; /* total number of streams seen */
Willy Tarreau0b37d652018-10-03 10:33:02 +020084 struct proxy *proxy; /* the proxy this connection was created for */
Willy Tarreauea392822017-10-31 10:02:25 +010085 struct task *task; /* timeout management task */
Amaury Denoyellec92697d2020-10-27 17:16:01 +010086 struct h2_counters *px_counters; /* h2 counters attached to proxy */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020087 struct eb_root streams_by_id; /* all active streams by their ID */
88 struct list send_list; /* list of blocked streams requesting to send */
89 struct list fctl_list; /* list of streams blocked by connection's fctl */
Willy Tarreau9edf6db2019-10-02 10:49:59 +020090 struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */
Willy Tarreau44e973f2018-03-01 17:49:30 +010091 struct buffer_wait buf_wait; /* wait list for buffer allocations */
Olivier Houchardfa8aa862018-10-10 18:25:41 +020092 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
Willy Tarreau5ab6b572017-09-22 08:05:00 +020093};
94
Willy Tarreau2c249eb2019-05-13 18:06:17 +020095
Willy Tarreau18312642017-10-11 07:57:07 +020096/* H2 stream descriptor, describing the stream as it appears in the H2C, and as
Christopher Fauletfafd1b02020-11-03 18:25:52 +010097 * it is being processed in the internal HTTP representation (HTX).
Willy Tarreau18312642017-10-11 07:57:07 +020098 */
99struct h2s {
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200100 struct sedesc *sd;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100101 struct session *sess;
Willy Tarreau18312642017-10-11 07:57:07 +0200102 struct h2c *h2c;
Willy Tarreau18312642017-10-11 07:57:07 +0200103 struct eb32_node by_id; /* place in h2c's streams_by_id */
Willy Tarreau18312642017-10-11 07:57:07 +0200104 int32_t id; /* stream ID */
105 uint32_t flags; /* H2_SF_* */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200106 int sws; /* stream window size, to be added to the mux's initial window size */
Willy Tarreau18312642017-10-11 07:57:07 +0200107 enum h2_err errcode; /* H2 err code (H2_ERR_*) */
108 enum h2_ss st;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +0200109 uint16_t status; /* HTTP response status */
Willy Tarreau1915ca22019-01-24 11:49:37 +0100110 unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */
Olivier Houchard638b7992018-08-16 15:41:52 +0200111 struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */
Willy Tarreau4596fe22022-05-17 19:07:51 +0200112 struct wait_event *subs; /* recv wait_event the stream connector associated is waiting on (via h2_subscribe) */
Olivier Houchardfa8aa862018-10-10 18:25:41 +0200113 struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */
Willy Tarreau5723f292020-01-10 15:16:57 +0100114 struct tasklet *shut_tl; /* deferred shutdown tasklet, to retry to send an RST after we failed to,
115 * in case there's no other subscription to do it */
Amaury Denoyelle74162742020-12-11 17:53:05 +0100116
117 char upgrade_protocol[16]; /* rfc 8441: requested protocol on Extended CONNECT */
Willy Tarreau18312642017-10-11 07:57:07 +0200118};
Willy Tarreau5ab6b572017-09-22 08:05:00 +0200119
Willy Tarreauc6405142017-09-21 20:23:50 +0200120/* descriptor for an h2 frame header */
121struct h2_fh {
122 uint32_t len; /* length, host order, 24 bits */
123 uint32_t sid; /* stream id, host order, 31 bits */
124 uint8_t ft; /* frame type */
125 uint8_t ff; /* frame flags */
126};
127
Willy Tarreau12ae2122019-08-08 18:23:12 +0200128/* trace source and events */
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200129static void h2_trace(enum trace_level level, uint64_t mask, \
130 const struct trace_source *src,
131 const struct ist where, const struct ist func,
132 const void *a1, const void *a2, const void *a3, const void *a4);
Willy Tarreau12ae2122019-08-08 18:23:12 +0200133
134/* The event representation is split like this :
135 * strm - application layer
136 * h2s - internal H2 stream
137 * h2c - internal H2 connection
138 * conn - external connection
139 *
140 */
141static const struct trace_event h2_trace_events[] = {
142#define H2_EV_H2C_NEW (1ULL << 0)
Willy Tarreau87951942019-08-30 07:34:36 +0200143 { .mask = H2_EV_H2C_NEW, .name = "h2c_new", .desc = "new H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200144#define H2_EV_H2C_RECV (1ULL << 1)
Willy Tarreau87951942019-08-30 07:34:36 +0200145 { .mask = H2_EV_H2C_RECV, .name = "h2c_recv", .desc = "Rx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200146#define H2_EV_H2C_SEND (1ULL << 2)
Willy Tarreau87951942019-08-30 07:34:36 +0200147 { .mask = H2_EV_H2C_SEND, .name = "h2c_send", .desc = "Tx on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200148#define H2_EV_H2C_FCTL (1ULL << 3)
Willy Tarreau87951942019-08-30 07:34:36 +0200149 { .mask = H2_EV_H2C_FCTL, .name = "h2c_fctl", .desc = "H2 connection flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200150#define H2_EV_H2C_BLK (1ULL << 4)
Willy Tarreau87951942019-08-30 07:34:36 +0200151 { .mask = H2_EV_H2C_BLK, .name = "h2c_blk", .desc = "H2 connection blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200152#define H2_EV_H2C_WAKE (1ULL << 5)
Willy Tarreau87951942019-08-30 07:34:36 +0200153 { .mask = H2_EV_H2C_WAKE, .name = "h2c_wake", .desc = "H2 connection woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200154#define H2_EV_H2C_END (1ULL << 6)
Willy Tarreau87951942019-08-30 07:34:36 +0200155 { .mask = H2_EV_H2C_END, .name = "h2c_end", .desc = "H2 connection terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200156#define H2_EV_H2C_ERR (1ULL << 7)
Willy Tarreau87951942019-08-30 07:34:36 +0200157 { .mask = H2_EV_H2C_ERR, .name = "h2c_err", .desc = "error on H2 connection" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200158#define H2_EV_RX_FHDR (1ULL << 8)
Willy Tarreau87951942019-08-30 07:34:36 +0200159 { .mask = H2_EV_RX_FHDR, .name = "rx_fhdr", .desc = "H2 frame header received" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200160#define H2_EV_RX_FRAME (1ULL << 9)
Willy Tarreau87951942019-08-30 07:34:36 +0200161 { .mask = H2_EV_RX_FRAME, .name = "rx_frame", .desc = "receipt of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200162#define H2_EV_RX_EOI (1ULL << 10)
Willy Tarreau87951942019-08-30 07:34:36 +0200163 { .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 +0200164#define H2_EV_RX_PREFACE (1ULL << 11)
Willy Tarreau87951942019-08-30 07:34:36 +0200165 { .mask = H2_EV_RX_PREFACE, .name = "rx_preface", .desc = "receipt of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200166#define H2_EV_RX_DATA (1ULL << 12)
Willy Tarreau87951942019-08-30 07:34:36 +0200167 { .mask = H2_EV_RX_DATA, .name = "rx_data", .desc = "receipt of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200168#define H2_EV_RX_HDR (1ULL << 13)
Willy Tarreau87951942019-08-30 07:34:36 +0200169 { .mask = H2_EV_RX_HDR, .name = "rx_hdr", .desc = "receipt of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200170#define H2_EV_RX_PRIO (1ULL << 14)
Willy Tarreau87951942019-08-30 07:34:36 +0200171 { .mask = H2_EV_RX_PRIO, .name = "rx_prio", .desc = "receipt of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200172#define H2_EV_RX_RST (1ULL << 15)
Willy Tarreau87951942019-08-30 07:34:36 +0200173 { .mask = H2_EV_RX_RST, .name = "rx_rst", .desc = "receipt of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200174#define H2_EV_RX_SETTINGS (1ULL << 16)
Willy Tarreau87951942019-08-30 07:34:36 +0200175 { .mask = H2_EV_RX_SETTINGS, .name = "rx_settings", .desc = "receipt of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200176#define H2_EV_RX_PUSH (1ULL << 17)
Willy Tarreau87951942019-08-30 07:34:36 +0200177 { .mask = H2_EV_RX_PUSH, .name = "rx_push", .desc = "receipt of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200178#define H2_EV_RX_PING (1ULL << 18)
Willy Tarreau87951942019-08-30 07:34:36 +0200179 { .mask = H2_EV_RX_PING, .name = "rx_ping", .desc = "receipt of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200180#define H2_EV_RX_GOAWAY (1ULL << 19)
Willy Tarreau87951942019-08-30 07:34:36 +0200181 { .mask = H2_EV_RX_GOAWAY, .name = "rx_goaway", .desc = "receipt of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200182#define H2_EV_RX_WU (1ULL << 20)
Willy Tarreau87951942019-08-30 07:34:36 +0200183 { .mask = H2_EV_RX_WU, .name = "rx_wu", .desc = "receipt of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200184#define H2_EV_RX_CONT (1ULL << 21)
Willy Tarreau87951942019-08-30 07:34:36 +0200185 { .mask = H2_EV_RX_CONT, .name = "rx_cont", .desc = "receipt of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200186#define H2_EV_TX_FRAME (1ULL << 22)
Willy Tarreau87951942019-08-30 07:34:36 +0200187 { .mask = H2_EV_TX_FRAME, .name = "tx_frame", .desc = "transmission of any H2 frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200188#define H2_EV_TX_EOI (1ULL << 23)
Willy Tarreau87951942019-08-30 07:34:36 +0200189 { .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 +0200190#define H2_EV_TX_PREFACE (1ULL << 24)
Willy Tarreau87951942019-08-30 07:34:36 +0200191 { .mask = H2_EV_TX_PREFACE, .name = "tx_preface", .desc = "transmission of H2 preface" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200192#define H2_EV_TX_DATA (1ULL << 25)
Willy Tarreau87951942019-08-30 07:34:36 +0200193 { .mask = H2_EV_TX_DATA, .name = "tx_data", .desc = "transmission of H2 DATA frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200194#define H2_EV_TX_HDR (1ULL << 26)
Willy Tarreau87951942019-08-30 07:34:36 +0200195 { .mask = H2_EV_TX_HDR, .name = "tx_hdr", .desc = "transmission of H2 HEADERS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200196#define H2_EV_TX_PRIO (1ULL << 27)
Willy Tarreau87951942019-08-30 07:34:36 +0200197 { .mask = H2_EV_TX_PRIO, .name = "tx_prio", .desc = "transmission of H2 PRIORITY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200198#define H2_EV_TX_RST (1ULL << 28)
Willy Tarreau87951942019-08-30 07:34:36 +0200199 { .mask = H2_EV_TX_RST, .name = "tx_rst", .desc = "transmission of H2 RST_STREAM frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200200#define H2_EV_TX_SETTINGS (1ULL << 29)
Willy Tarreau87951942019-08-30 07:34:36 +0200201 { .mask = H2_EV_TX_SETTINGS, .name = "tx_settings", .desc = "transmission of H2 SETTINGS frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200202#define H2_EV_TX_PUSH (1ULL << 30)
Willy Tarreau87951942019-08-30 07:34:36 +0200203 { .mask = H2_EV_TX_PUSH, .name = "tx_push", .desc = "transmission of H2 PUSH_PROMISE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200204#define H2_EV_TX_PING (1ULL << 31)
Willy Tarreau87951942019-08-30 07:34:36 +0200205 { .mask = H2_EV_TX_PING, .name = "tx_ping", .desc = "transmission of H2 PING frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200206#define H2_EV_TX_GOAWAY (1ULL << 32)
Willy Tarreau87951942019-08-30 07:34:36 +0200207 { .mask = H2_EV_TX_GOAWAY, .name = "tx_goaway", .desc = "transmission of H2 GOAWAY frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200208#define H2_EV_TX_WU (1ULL << 33)
Willy Tarreau87951942019-08-30 07:34:36 +0200209 { .mask = H2_EV_TX_WU, .name = "tx_wu", .desc = "transmission of H2 WINDOW_UPDATE frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200210#define H2_EV_TX_CONT (1ULL << 34)
Willy Tarreau87951942019-08-30 07:34:36 +0200211 { .mask = H2_EV_TX_CONT, .name = "tx_cont", .desc = "transmission of H2 CONTINUATION frame" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200212#define H2_EV_H2S_NEW (1ULL << 35)
Willy Tarreau87951942019-08-30 07:34:36 +0200213 { .mask = H2_EV_H2S_NEW, .name = "h2s_new", .desc = "new H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200214#define H2_EV_H2S_RECV (1ULL << 36)
Willy Tarreau87951942019-08-30 07:34:36 +0200215 { .mask = H2_EV_H2S_RECV, .name = "h2s_recv", .desc = "Rx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200216#define H2_EV_H2S_SEND (1ULL << 37)
Willy Tarreau87951942019-08-30 07:34:36 +0200217 { .mask = H2_EV_H2S_SEND, .name = "h2s_send", .desc = "Tx for H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200218#define H2_EV_H2S_FCTL (1ULL << 38)
Willy Tarreau87951942019-08-30 07:34:36 +0200219 { .mask = H2_EV_H2S_FCTL, .name = "h2s_fctl", .desc = "H2 stream flow-controlled" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200220#define H2_EV_H2S_BLK (1ULL << 39)
Willy Tarreau87951942019-08-30 07:34:36 +0200221 { .mask = H2_EV_H2S_BLK, .name = "h2s_blk", .desc = "H2 stream blocked" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200222#define H2_EV_H2S_WAKE (1ULL << 40)
Willy Tarreau87951942019-08-30 07:34:36 +0200223 { .mask = H2_EV_H2S_WAKE, .name = "h2s_wake", .desc = "H2 stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200224#define H2_EV_H2S_END (1ULL << 41)
Willy Tarreau87951942019-08-30 07:34:36 +0200225 { .mask = H2_EV_H2S_END, .name = "h2s_end", .desc = "H2 stream terminated" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200226#define H2_EV_H2S_ERR (1ULL << 42)
Willy Tarreau87951942019-08-30 07:34:36 +0200227 { .mask = H2_EV_H2S_ERR, .name = "h2s_err", .desc = "error on H2 stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200228#define H2_EV_STRM_NEW (1ULL << 43)
Willy Tarreau87951942019-08-30 07:34:36 +0200229 { .mask = H2_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200230#define H2_EV_STRM_RECV (1ULL << 44)
Willy Tarreau87951942019-08-30 07:34:36 +0200231 { .mask = H2_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200232#define H2_EV_STRM_SEND (1ULL << 45)
Willy Tarreau87951942019-08-30 07:34:36 +0200233 { .mask = H2_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200234#define H2_EV_STRM_FULL (1ULL << 46)
Willy Tarreau87951942019-08-30 07:34:36 +0200235 { .mask = H2_EV_STRM_FULL, .name = "strm_full", .desc = "stream buffer full" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200236#define H2_EV_STRM_WAKE (1ULL << 47)
Willy Tarreau87951942019-08-30 07:34:36 +0200237 { .mask = H2_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200238#define H2_EV_STRM_SHUT (1ULL << 48)
Willy Tarreau87951942019-08-30 07:34:36 +0200239 { .mask = H2_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200240#define H2_EV_STRM_END (1ULL << 49)
Willy Tarreau87951942019-08-30 07:34:36 +0200241 { .mask = H2_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200242#define H2_EV_STRM_ERR (1ULL << 50)
Willy Tarreau87951942019-08-30 07:34:36 +0200243 { .mask = H2_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200244#define H2_EV_PROTO_ERR (1ULL << 51)
Willy Tarreau87951942019-08-30 07:34:36 +0200245 { .mask = H2_EV_PROTO_ERR, .name = "proto_err", .desc = "protocol error" },
Willy Tarreau12ae2122019-08-08 18:23:12 +0200246 { }
247};
248
249static const struct name_desc h2_trace_lockon_args[4] = {
250 /* arg1 */ { /* already used by the connection */ },
251 /* arg2 */ { .name="h2s", .desc="H2 stream" },
252 /* arg3 */ { },
253 /* arg4 */ { }
254};
255
256static const struct name_desc h2_trace_decoding[] = {
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200257#define H2_VERB_CLEAN 1
258 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
259#define H2_VERB_MINIMAL 2
Willy Tarreau12ae2122019-08-08 18:23:12 +0200260 { .name="minimal", .desc="report only h2c/h2s state and flags, no real decoding" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200261#define H2_VERB_SIMPLE 3
Willy Tarreau12ae2122019-08-08 18:23:12 +0200262 { .name="simple", .desc="add request/response status line or frame info when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200263#define H2_VERB_ADVANCED 4
Willy Tarreau12ae2122019-08-08 18:23:12 +0200264 { .name="advanced", .desc="add header fields or frame decoding when available" },
Willy Tarreauf7dd5192019-08-30 07:21:18 +0200265#define H2_VERB_COMPLETE 5
Willy Tarreau12ae2122019-08-08 18:23:12 +0200266 { .name="complete", .desc="add full data dump when available" },
267 { /* end */ }
268};
269
Willy Tarreau6eb3d372021-04-10 19:29:26 +0200270static struct trace_source trace_h2 __read_mostly = {
Willy Tarreau12ae2122019-08-08 18:23:12 +0200271 .name = IST("h2"),
272 .desc = "HTTP/2 multiplexer",
273 .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200274 .default_cb = h2_trace,
Willy Tarreau12ae2122019-08-08 18:23:12 +0200275 .known_events = h2_trace_events,
276 .lockon_args = h2_trace_lockon_args,
277 .decoding = h2_trace_decoding,
278 .report_events = ~0, // report everything by default
279};
280
281#define TRACE_SOURCE &trace_h2
282INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
283
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100284/* h2 stats module */
285enum {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100286 H2_ST_HEADERS_RCVD,
287 H2_ST_DATA_RCVD,
288 H2_ST_SETTINGS_RCVD,
289 H2_ST_RST_STREAM_RCVD,
290 H2_ST_GOAWAY_RCVD,
291
Amaury Denoyellea8879232020-10-27 17:16:03 +0100292 H2_ST_CONN_PROTO_ERR,
293 H2_ST_STRM_PROTO_ERR,
294 H2_ST_RST_STREAM_RESP,
295 H2_ST_GOAWAY_RESP,
296
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100297 H2_ST_OPEN_CONN,
298 H2_ST_OPEN_STREAM,
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100299 H2_ST_TOTAL_CONN,
300 H2_ST_TOTAL_STREAM,
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100301
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100302 H2_STATS_COUNT /* must be the last member of the enum */
303};
304
305static struct name_desc h2_stats[] = {
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100306 [H2_ST_HEADERS_RCVD] = { .name = "h2_headers_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100307 .desc = "Total number of received HEADERS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100308 [H2_ST_DATA_RCVD] = { .name = "h2_data_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100309 .desc = "Total number of received DATA frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100310 [H2_ST_SETTINGS_RCVD] = { .name = "h2_settings_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100311 .desc = "Total number of received SETTINGS frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100312 [H2_ST_RST_STREAM_RCVD] = { .name = "h2_rst_stream_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100313 .desc = "Total number of received RST_STREAM frames" },
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100314 [H2_ST_GOAWAY_RCVD] = { .name = "h2_goaway_rcvd",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100315 .desc = "Total number of received GOAWAY frames" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100316
317 [H2_ST_CONN_PROTO_ERR] = { .name = "h2_detected_conn_protocol_errors",
318 .desc = "Total number of connection protocol errors" },
319 [H2_ST_STRM_PROTO_ERR] = { .name = "h2_detected_strm_protocol_errors",
320 .desc = "Total number of stream protocol errors" },
321 [H2_ST_RST_STREAM_RESP] = { .name = "h2_rst_stream_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100322 .desc = "Total number of RST_STREAM sent on detected error" },
Amaury Denoyellea8879232020-10-27 17:16:03 +0100323 [H2_ST_GOAWAY_RESP] = { .name = "h2_goaway_resp",
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100324 .desc = "Total number of GOAWAY sent on detected error" },
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100325
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100326 [H2_ST_OPEN_CONN] = { .name = "h2_open_connections",
327 .desc = "Count of currently open connections" },
328 [H2_ST_OPEN_STREAM] = { .name = "h2_backend_open_streams",
329 .desc = "Count of currently open streams" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100330 [H2_ST_TOTAL_CONN] = { .name = "h2_total_connections",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100331 .desc = "Total number of connections" },
Amaury Denoyelle377d8782021-02-03 16:27:22 +0100332 [H2_ST_TOTAL_STREAM] = { .name = "h2_backend_total_streams",
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100333 .desc = "Total number of streams" },
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100334};
335
336static struct h2_counters {
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100337 long long headers_rcvd; /* total number of HEADERS frame received */
338 long long data_rcvd; /* total number of DATA frame received */
339 long long settings_rcvd; /* total number of SETTINGS frame received */
340 long long rst_stream_rcvd; /* total number of RST_STREAM frame received */
341 long long goaway_rcvd; /* total number of GOAWAY frame received */
Amaury Denoyellea8879232020-10-27 17:16:03 +0100342
343 long long conn_proto_err; /* total number of protocol errors detected */
344 long long strm_proto_err; /* total number of protocol errors detected */
Amaury Denoyelle2ac34d92020-11-03 15:04:44 +0100345 long long rst_stream_resp; /* total number of RST_STREAM frame sent on error */
346 long long goaway_resp; /* total number of GOAWAY frame sent on error */
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100347
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100348 long long open_conns; /* count of currently open connections */
349 long long open_streams; /* count of currently open streams */
350 long long total_conns; /* total number of connections */
351 long long total_streams; /* total number of streams */
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100352} h2_counters;
353
354static void h2_fill_stats(void *data, struct field *stats)
355{
Amaury Denoyelle2dec1eb2020-10-27 17:16:02 +0100356 struct h2_counters *counters = data;
357
358 stats[H2_ST_HEADERS_RCVD] = mkf_u64(FN_COUNTER, counters->headers_rcvd);
359 stats[H2_ST_DATA_RCVD] = mkf_u64(FN_COUNTER, counters->data_rcvd);
360 stats[H2_ST_SETTINGS_RCVD] = mkf_u64(FN_COUNTER, counters->settings_rcvd);
361 stats[H2_ST_RST_STREAM_RCVD] = mkf_u64(FN_COUNTER, counters->rst_stream_rcvd);
362 stats[H2_ST_GOAWAY_RCVD] = mkf_u64(FN_COUNTER, counters->goaway_rcvd);
Amaury Denoyellea8879232020-10-27 17:16:03 +0100363
364 stats[H2_ST_CONN_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->conn_proto_err);
365 stats[H2_ST_STRM_PROTO_ERR] = mkf_u64(FN_COUNTER, counters->strm_proto_err);
366 stats[H2_ST_RST_STREAM_RESP] = mkf_u64(FN_COUNTER, counters->rst_stream_resp);
367 stats[H2_ST_GOAWAY_RESP] = mkf_u64(FN_COUNTER, counters->goaway_resp);
Amaury Denoyelle66942c12020-10-27 17:16:04 +0100368
Amaury Denoyellee7b891f2020-11-03 15:04:45 +0100369 stats[H2_ST_OPEN_CONN] = mkf_u64(FN_GAUGE, counters->open_conns);
370 stats[H2_ST_OPEN_STREAM] = mkf_u64(FN_GAUGE, counters->open_streams);
371 stats[H2_ST_TOTAL_CONN] = mkf_u64(FN_COUNTER, counters->total_conns);
372 stats[H2_ST_TOTAL_STREAM] = mkf_u64(FN_COUNTER, counters->total_streams);
Amaury Denoyelle3238b3f2020-10-27 17:16:00 +0100373}
374
375static struct stats_module h2_stats_module = {
376 .name = "h2",
377 .fill_stats = h2_fill_stats,
378 .stats = h2_stats,
379 .stats_count = H2_STATS_COUNT,
380 .counters = &h2_counters,
381 .counters_size = sizeof(h2_counters),
382 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
383 .clearable = 1,
384};
385
386INITCALL1(STG_REGISTER, stats_register_module, &h2_stats_module);
387
Willy Tarreau8ceae722018-11-26 11:58:30 +0100388/* the h2c connection pool */
389DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c));
390
391/* the h2s stream pool */
392DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s));
393
Willy Tarreaudc572362018-12-12 08:08:05 +0100394/* The default connection window size is 65535, it may only be enlarged using
395 * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1,
396 * we'll pretend we already received the difference between the two to send
397 * an equivalent window update to enlarge it to 2G-1.
398 */
399#define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535)
400
Willy Tarreau455d5682019-05-24 19:42:18 +0200401/* maximum amount of data we're OK with re-aligning for buffer optimizations */
402#define MAX_DATA_REALIGN 1024
403
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200404/* a few settings from the global section */
405static int h2_settings_header_table_size = 4096; /* initial value */
Glenn Strauss0012f892022-06-04 22:11:50 -0400406static int h2_settings_initial_window_size = 65536; /* initial value */
Willy Tarreau5a490b62019-01-31 10:39:51 +0100407static unsigned int h2_settings_max_concurrent_streams = 100;
Willy Tarreaua24b35c2019-02-21 13:24:36 +0100408static int h2_settings_max_frame_size = 0; /* unset */
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200409
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200410/* a dummy closed endpoint */
Willy Tarreauea59b022022-05-17 17:53:22 +0200411static const struct sedesc closed_ep = {
Willy Tarreauc1054922022-05-18 07:43:52 +0200412 .sc = NULL,
Willy Tarreaub605c422022-05-17 17:04:55 +0200413 .flags = SE_FL_DETACHED,
Willy Tarreaub22b5f02022-05-10 14:57:16 +0200414};
415
Willy Tarreau2a856182017-05-16 15:20:39 +0200416/* a dmumy closed stream */
417static const struct h2s *h2_closed_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200418 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200419 .h2c = NULL,
420 .st = H2_SS_CLOSED,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100421 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreauab837502017-12-27 15:07:30 +0100422 .flags = H2_SF_RST_RCVD,
Willy Tarreau2a856182017-05-16 15:20:39 +0200423 .id = 0,
424};
425
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100426/* a dmumy closed stream returning a PROTOCOL_ERROR error */
427static const struct h2s *h2_error_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200428 .sd = (struct sedesc *)&closed_ep,
Willy Tarreauecb9dcd2019-01-03 12:00:17 +0100429 .h2c = NULL,
430 .st = H2_SS_CLOSED,
431 .errcode = H2_ERR_PROTOCOL_ERROR,
432 .flags = 0,
433 .id = 0,
434};
435
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100436/* a dmumy closed stream returning a REFUSED_STREAM error */
437static const struct h2s *h2_refused_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200438 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau8d0d58b2018-12-23 18:29:12 +0100439 .h2c = NULL,
440 .st = H2_SS_CLOSED,
441 .errcode = H2_ERR_REFUSED_STREAM,
442 .flags = 0,
443 .id = 0,
444};
445
Willy Tarreau2a856182017-05-16 15:20:39 +0200446/* and a dummy idle stream for use with any unannounced stream */
447static const struct h2s *h2_idle_stream = &(const struct h2s){
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200448 .sd = (struct sedesc *)&closed_ep,
Willy Tarreau2a856182017-05-16 15:20:39 +0200449 .h2c = NULL,
450 .st = H2_SS_IDLE,
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +0100451 .errcode = H2_ERR_STREAM_CLOSED,
Willy Tarreau2a856182017-05-16 15:20:39 +0200452 .id = 0,
453};
454
Willy Tarreau144f84a2021-03-02 16:09:26 +0100455struct task *h2_timeout_task(struct task *t, void *context, unsigned int state);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +0200456static int h2_send(struct h2c *h2c);
457static int h2_recv(struct h2c *h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +0200458static int h2_process(struct h2c *h2c);
Willy Tarreau691d5032021-01-20 14:55:01 +0100459/* h2_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100460struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state);
Willy Tarreau0b559072018-02-26 15:22:17 +0100461static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id);
Willy Tarreau7cfbb812023-01-26 16:02:01 +0100462static int h2c_dec_hdrs(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol);
Willy Tarreaua56a6de2018-02-26 15:59:07 +0100463static int h2_frt_transfer_data(struct h2s *h2s);
Willy Tarreau144f84a2021-03-02 16:09:26 +0100464struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state);
Willy Tarreau36c22322022-05-27 10:41:24 +0200465static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess);
Willy Tarreau8b2757c2018-12-19 17:36:48 +0100466static void h2s_alert(struct h2s *h2s);
Willy Tarreaufe20e5b2017-07-27 11:42:14 +0200467
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200468/* returns the stconn associated to the H2 stream */
469static forceinline struct stconn *h2s_sc(const struct h2s *h2s)
470{
Willy Tarreau95acc8b2022-05-27 16:14:10 +0200471 return h2s->sd->sc;
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200472}
473
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200474/* the H2 traces always expect that arg1, if non-null, is of type connection
475 * (from which we can derive h2c), that arg2, if non-null, is of type h2s, and
476 * that arg3, if non-null, is either of type htx for tx headers, or of type
477 * buffer for everything else.
478 */
479static void h2_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
480 const struct ist where, const struct ist func,
481 const void *a1, const void *a2, const void *a3, const void *a4)
482{
483 const struct connection *conn = a1;
484 const struct h2c *h2c = conn ? conn->ctx : NULL;
485 const struct h2s *h2s = a2;
486 const struct buffer *buf = a3;
487 const struct htx *htx;
488 int pos;
489
490 if (!h2c) // nothing to add
491 return;
492
Willy Tarreau17104d42019-08-30 07:12:55 +0200493 if (src->verbosity > H2_VERB_CLEAN) {
Willy Tarreau73db4342019-09-25 07:28:44 +0200494 chunk_appendf(&trace_buf, " : h2c=%p(%c,%s)", h2c, conn_is_back(conn) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
495
Willy Tarreau8e6f7492021-06-16 17:47:24 +0200496 if (mask & H2_EV_H2C_NEW) // inside h2_init, otherwise it's hard to match conn & h2c
497 conn_append_debug_info(&trace_buf, conn, " : ");
498
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100499 if (h2c->errcode)
500 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2c->errcode), h2c->errcode);
501
Willy Tarreau0f458712022-08-18 11:19:57 +0200502 if (h2c->flags & H2_CF_DEM_IN_PROGRESS && // frame processing has started, type and length are valid
Willy Tarreau73db4342019-09-25 07:28:44 +0200503 (mask & (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) == (H2_EV_RX_FRAME|H2_EV_RX_FHDR)) {
Willy Tarreau8520d872020-09-18 07:39:29 +0200504 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 +0200505 }
506
507 if (h2s) {
508 if (h2s->id <= 0)
509 chunk_appendf(&trace_buf, " dsi=%d", h2c->dsi);
Willy Tarreauf9f44992023-02-20 16:57:47 +0100510 if (h2s == h2_idle_stream)
511 chunk_appendf(&trace_buf, " h2s=IDL");
512 else if (h2s != h2_closed_stream)
513 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100514 if (h2s->id && h2s->errcode)
515 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200516 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200517 }
518
519 /* Let's dump decoded requests and responses right after parsing. They
520 * are traced at level USER with a few recognizable flags.
521 */
522 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
523 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
524 htx = htxbuf(buf); // recv req/res
525 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
526 htx = a3; // send req/res
527 else
528 htx = NULL;
529
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200530 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200531 const struct htx_blk *blk = htx_get_blk(htx, pos);
532 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
533 enum htx_blk_type type = htx_get_blk_type(blk);
534
535 if (type == HTX_BLK_REQ_SL)
536 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200537 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200538 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
539 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
540 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
541 else if (type == HTX_BLK_RES_SL)
542 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200543 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200544 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
545 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
546 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
547 }
548}
549
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200550
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100551/* Detect a pending read0 for a H2 connection. It happens if a read0 was
552 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
553 * to parse pending data, confirming no more progress is possible because
554 * we're facing a truncated frame. The function returns 1 to report a read0
555 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200556 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100557static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200558{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100559 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200560}
561
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200562/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100563 * connection may expire when it has no attached streams. As long as streams
564 * are attached, the application layer is responsible for timeout management,
565 * and each layer will detach when it doesn't want to wait anymore. When the
566 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200567 */
568static inline int h2c_may_expire(const struct h2c *h2c)
569{
Willy Tarreau36c22322022-05-27 10:41:24 +0200570 return !h2c->nb_sc;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200571}
572
Willy Tarreau15a47332022-03-18 15:57:34 +0100573/* update h2c timeout if needed */
574static void h2c_update_timeout(struct h2c *h2c)
575{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200576 int is_idle_conn = 0;
577
Willy Tarreau15a47332022-03-18 15:57:34 +0100578 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
579
580 if (!h2c->task)
581 goto leave;
582
583 if (h2c_may_expire(h2c)) {
584 /* no more streams attached */
585 if (h2c->last_sid >= 0) {
586 /* GOAWAY sent, closing in progress */
587 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200588 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100589 } else if (br_data(h2c->mbuf)) {
590 /* pending output data: always the regular data timeout */
591 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau6ff91e22022-04-14 11:43:35 +0200592 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100593 /* idle after having seen one stream => keep-alive */
Willy Tarreau86b08a32022-04-13 17:40:28 +0200594 int to;
595
596 if (tick_isset(h2c->proxy->timeout.httpka))
597 to = h2c->proxy->timeout.httpka;
598 else
599 to = h2c->proxy->timeout.httpreq;
600
601 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200602 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100603 } else {
604 /* before first request, or started to deserialize a
605 * new req => http-request, but only set, not refresh.
606 */
607 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
608 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
609 }
610 /* if a timeout above was not set, fall back to the default one */
611 if (!tick_isset(h2c->task->expire))
612 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200613
614 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
615 is_idle_conn && tick_isset(global.close_spread_end)) {
616 /* If a soft-stop is in progress and a close-spread-time
617 * is set, we want to spread idle connection closing roughly
618 * evenly across the defined window. This should only
619 * act on idle frontend connections.
620 * If the window end is already in the past, we wake the
621 * timeout task up immediately so that it can be closed.
622 */
623 int remaining_window = tick_remain(now_ms, global.close_spread_end);
624 if (remaining_window) {
625 /* We don't need to reset the expire if it would
626 * already happen before the close window end.
627 */
628 if (tick_isset(h2c->task->expire) &&
629 tick_is_le(global.close_spread_end, h2c->task->expire)) {
630 /* Set an expire value shorter than the current value
631 * because the close spread window end comes earlier.
632 */
633 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
634 }
635 }
636 else {
637 /* We are past the soft close window end, wake the timeout
638 * task up immediately.
639 */
640 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
641 }
642 }
643
Willy Tarreau15a47332022-03-18 15:57:34 +0100644 } else {
645 h2c->task->expire = TICK_ETERNITY;
646 }
647 task_queue(h2c->task);
648 leave:
649 TRACE_LEAVE(H2_EV_H2C_WAKE);
650}
651
Olivier Houchard7a977432019-03-21 15:47:13 +0100652static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200653h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100654{
655 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200656 ((h2c->flags & H2_CF_ERROR) || /* errors close immediately */
Olivier Houchard7a977432019-03-21 15:47:13 +0100657 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
658 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200659 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200660 ((h2c->flags & H2_CF_RCVD_SHUT) ||
Olivier Houchard7a977432019-03-21 15:47:13 +0100661 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
662 return 1;
663
664 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100665}
666
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200667/*****************************************************/
668/* functions below are for dynamic buffer management */
669/*****************************************************/
670
Willy Tarreau315d8072017-12-10 22:17:57 +0100671/* indicates whether or not the we may call the h2_recv() function to attempt
672 * to receive data into the buffer and/or demux pending data. The condition is
673 * a bit complex due to some API limits for now. The rules are the following :
674 * - if an error or a shutdown was detected on the connection and the buffer
675 * is empty, we must not attempt to receive
676 * - if the demux buf failed to be allocated, we must not try to receive and
677 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100678 * - if no flag indicates a blocking condition, we may attempt to receive,
679 * regardless of whether the demux buffer is full or not, so that only
680 * de demux part decides whether or not to block. This is needed because
681 * the connection API indeed prevents us from re-enabling receipt that is
682 * already enabled in a polled state, so we must always immediately stop
683 * as soon as the demux can't proceed so as never to hit an end of read
684 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100685 * - otherwise must may not attempt
686 */
687static inline int h2_recv_allowed(const struct h2c *h2c)
688{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200689 if (b_data(&h2c->dbuf) == 0 &&
Christopher Fauletff7925d2022-10-11 19:12:40 +0200690 ((h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR)) || h2c->st0 >= H2_CS_ERROR))
Willy Tarreau315d8072017-12-10 22:17:57 +0100691 return 0;
692
693 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100694 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100695 return 1;
696
697 return 0;
698}
699
Willy Tarreau47b515a2018-12-21 16:09:41 +0100700/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200701static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100702{
703 if (!h2_recv_allowed(h2c))
704 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200705 if ((!consider_buffer || !b_data(&h2c->dbuf))
706 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100707 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200708 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100709}
710
711
Willy Tarreau4596fe22022-05-17 19:07:51 +0200712/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200713static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200714{
Willy Tarreau36c22322022-05-27 10:41:24 +0200715 return h2c->nb_sc > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200716}
717
Willy Tarreau44e973f2018-03-01 17:49:30 +0100718/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
719 * flags are used to figure what buffer was requested. It returns 1 if the
720 * allocation succeeds, in which case the connection is woken up, or 0 if it's
721 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200722 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100723static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200724{
725 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100726 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200727
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100728 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200729 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200730 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200731 return 1;
732 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200733
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100734 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100735 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200736
737 if (h2c->flags & H2_CF_DEM_MROOM) {
738 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200739 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200740 }
Willy Tarreau14398122017-09-22 14:26:04 +0200741 return 1;
742 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100743
744 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200745 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100746 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100747 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200748 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100749 return 1;
750 }
751
Willy Tarreau14398122017-09-22 14:26:04 +0200752 return 0;
753}
754
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200755static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200756{
757 struct buffer *buf = NULL;
758
Willy Tarreau2b718102021-04-21 07:32:39 +0200759 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100760 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100761 h2c->buf_wait.target = h2c;
762 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200763 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200764 }
765 return buf;
766}
767
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200768static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200769{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200770 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100771 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100772 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200773 }
774}
775
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200776static inline void h2_release_mbuf(struct h2c *h2c)
777{
778 struct buffer *buf;
779 unsigned int count = 0;
780
781 while (b_size(buf = br_head_pick(h2c->mbuf))) {
782 b_free(buf);
783 count++;
784 }
785 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100786 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200787}
788
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100789/* returns the number of allocatable outgoing streams for the connection taking
790 * the last_sid and the reserved ones into account.
791 */
792static inline int h2_streams_left(const struct h2c *h2c)
793{
794 int ret;
795
796 /* consider the number of outgoing streams we're allowed to create before
797 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
798 * nb_reserved is the number of streams which don't yet have an ID.
799 */
800 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
801 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
802 if (ret < 0)
803 ret = 0;
804 return ret;
805}
806
Willy Tarreau00f18a32019-01-26 12:19:01 +0100807/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200808 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100809 * to know if it was the last one after a detach().
810 */
811static int h2_used_streams(struct connection *conn)
812{
813 struct h2c *h2c = conn->ctx;
814
Willy Tarreau36c22322022-05-27 10:41:24 +0200815 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100816}
817
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100818/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100819static int h2_avail_streams(struct connection *conn)
820{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100821 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100822 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100823 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100824
Willy Tarreau6afec462019-01-28 06:40:19 +0100825 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
826 * streams on the connection.
827 */
828 if (h2c->last_sid >= 0)
829 return 0;
830
Willy Tarreauc61966f2019-10-31 15:10:03 +0100831 if (h2c->st0 >= H2_CS_ERROR)
832 return 0;
833
Willy Tarreau86949782019-01-31 10:42:05 +0100834 /* note: may be negative if a SETTINGS frame changes the limit */
835 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100836
837 /* we must also consider the limit imposed by stream IDs */
838 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100839 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100840 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100841 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
842 ret1 = MIN(ret1, ret2);
843 }
844 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100845}
846
Willy Tarreau11e8a8c2023-01-24 19:43:11 +0100847/* inconditionally produce a trace of the header. Please do not call this one
848 * and use h2_trace_header() instead which first checks if traces are enabled.
849 */
850void _h2_trace_header(const struct ist hn, const struct ist hv,
851 uint64_t mask, const struct ist trc_loc, const char *func,
852 const struct h2c *h2c, const struct h2s *h2s)
853{
854 struct ist n_ist, v_ist;
855 const char *c_str, *s_str;
856
857 chunk_reset(&trash);
858 c_str = chunk_newstr(&trash);
859 if (h2c) {
860 chunk_appendf(&trash, "h2c=%p(%c,%s) ",
861 h2c, (h2c->flags & H2_CF_IS_BACK) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
862 }
863
864 s_str = chunk_newstr(&trash);
865 if (h2s) {
866 if (h2s->id <= 0)
867 chunk_appendf(&trash, "dsi=%d ", h2s->h2c->dsi);
868 chunk_appendf(&trash, "h2s=%p(%d,%s) ", h2s, h2s->id, h2s_st_to_str(h2s->st));
869 }
870 else if (h2c)
871 chunk_appendf(&trash, "dsi=%d ", h2c->dsi);
872
873 n_ist = ist2(chunk_newstr(&trash), 0);
874 istscpy(&n_ist, hn, 256);
875 trash.data += n_ist.len;
876 if (n_ist.len != hn.len)
877 chunk_appendf(&trash, " (... +%ld)", (long)(hn.len - n_ist.len));
878
879 v_ist = ist2(chunk_newstr(&trash), 0);
880 istscpy(&v_ist, hv, 1024);
881 trash.data += v_ist.len;
882 if (v_ist.len != hv.len)
883 chunk_appendf(&trash, " (... +%ld)", (long)(hv.len - v_ist.len));
884
885 TRACE_PRINTF_LOC(TRACE_LEVEL_USER, mask, trc_loc, func,
Christopher Fauletc2545162023-01-30 08:26:09 +0100886 (h2c ? h2c->conn : 0), 0, 0, 0,
Willy Tarreau11e8a8c2023-01-24 19:43:11 +0100887 "%s%s%s %s: %s", c_str, s_str,
888 (mask & H2_EV_TX_HDR) ? "sndh" : "rcvh",
889 n_ist.ptr, v_ist.ptr);
890}
891
892/* produce a trace of the header after checking that tracing is enabled */
893static inline void h2_trace_header(const struct ist hn, const struct ist hv,
894 uint64_t mask, const struct ist trc_loc, const char *func,
895 const struct h2c *h2c, const struct h2s *h2s)
896{
897 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
898 TRACE_ENABLED(TRACE_LEVEL_USER, mask, h2c ? h2c->conn : 0, h2s, 0, 0))
899 _h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
900}
901
902/* hpack-encode header name <hn> and value <hv>, possibly emitting a trace if
903 * currently enabled. This is done on behalf of function <func> at <trc_loc>
904 * passed as ist(TRC_LOC), h2c <h2c>, and h2s <h2s>, all of which may be NULL.
905 * The trace is only emitted if the header is emitted (in which case non-zero
906 * is returned). The trash is modified. In the traces, the header's name will
907 * be truncated to 256 chars and the header's value to 1024 chars.
908 */
909static inline int h2_encode_header(struct buffer *buf, const struct ist hn, const struct ist hv,
910 uint64_t mask, const struct ist trc_loc, const char *func,
911 const struct h2c *h2c, const struct h2s *h2s)
912{
913 int ret;
914
915 ret = hpack_encode_header(buf, hn, hv);
916 if (ret)
917 h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
918
919 return ret;
920}
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200921
Willy Tarreau62f52692017-10-08 23:01:42 +0200922/*****************************************************************/
923/* functions below are dedicated to the mux setup and management */
924/*****************************************************************/
925
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200926/* Initialize the mux once it's attached. For outgoing connections, the context
927 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200928 * connections from the fact that the context is still NULL (even during mux
929 * upgrades). <input> is always used as Input buffer and may contain data. It is
930 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200931 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200932static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
933 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200934{
935 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100936 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200937 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200938
Christopher Fauletf81ef032019-10-04 15:19:43 +0200939 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200940
Willy Tarreaubafbe012017-11-24 17:34:44 +0100941 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200942 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200943 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200944
Christopher Faulete9b70722019-04-08 10:46:02 +0200945 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200946 h2c->flags = H2_CF_IS_BACK;
947 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
948 if (tick_isset(prx->timeout.serverfin))
949 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100950
951 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
952 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200953 } else {
954 h2c->flags = H2_CF_NONE;
955 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
956 if (tick_isset(prx->timeout.clientfin))
957 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100958
959 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
960 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200961 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100962
Willy Tarreau0b37d652018-10-03 10:33:02 +0200963 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100964 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +0100965 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +0100966 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200967 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100968 if (!t)
969 goto fail;
970
971 h2c->task = t;
972 t->process = h2_timeout_task;
973 t->context = h2c;
974 t->expire = tick_add(now_ms, h2c->timeout);
975 }
Willy Tarreauea392822017-10-31 10:02:25 +0100976
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200977 h2c->wait_event.tasklet = tasklet_new();
978 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200979 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200980 h2c->wait_event.tasklet->process = h2_io_cb;
981 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100982 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200983 if (!conn_is_back(conn)) {
984 /* Connection might already be in the stopping_list if subject
985 * to h1->h2 upgrade.
986 */
987 if (!LIST_INLIST(&conn->stopping_list)) {
988 LIST_APPEND(&mux_stopping_data[tid].list,
989 &conn->stopping_list);
990 }
991 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200992
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200993 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200994 if (!h2c->ddht)
995 goto fail;
996
997 /* Initialise the context. */
998 h2c->st0 = H2_CS_PREFACE;
999 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001000 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001001 h2c->max_id = -1;
1002 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001003 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001004 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001005 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +02001006 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001007 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001008 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001009
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001010 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001011 h2c->dsi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001012
Willy Tarreau32218eb2017-09-22 08:07:25 +02001013 h2c->last_sid = -1;
1014
Willy Tarreau51330962019-05-26 09:38:07 +02001015 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001016 h2c->miw = 65535; /* mux initial window size */
1017 h2c->mws = 65535; /* mux window size */
1018 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001019 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001020 LIST_INIT(&h2c->send_list);
1021 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001022 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001023 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001024
Christopher Fauletf81ef032019-10-04 15:19:43 +02001025 conn->ctx = h2c;
1026
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001027 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1028
Willy Tarreau3f133572017-10-31 19:21:06 +01001029 if (t)
1030 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001031
Willy Tarreau01b44822018-10-03 14:26:37 +02001032 if (h2c->flags & H2_CF_IS_BACK) {
1033 /* FIXME: this is temporary, for outgoing connections we need
1034 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +02001035 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +02001036 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001037 */
1038 struct h2s *h2s;
1039
Christopher Fauletf81ef032019-10-04 15:19:43 +02001040 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001041 if (!h2s)
1042 goto fail_stream;
1043 }
1044
Frédéric Lécaille9969adb2023-01-18 11:52:21 +01001045 proxy_inc_fe_cum_sess_ver_ctr(sess->listener, prx, 2);
Willy Tarreau4781b152021-04-06 13:53:36 +02001046 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1047 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001048
Willy Tarreau0f383582018-10-03 14:22:21 +02001049 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001050 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001051 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001052 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001053 fail_stream:
1054 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001055 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001056 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001057 if (h2c->wait_event.tasklet)
1058 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001059 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001060 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001061 if (!conn_is_back(conn))
1062 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001063 conn->ctx = conn_ctx; /* restore saved ctx */
1064 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001065 return -1;
1066}
1067
Willy Tarreau751f2d02018-10-05 09:35:00 +02001068/* returns the next allocatable outgoing stream ID for the H2 connection, or
1069 * -1 if no more is allocatable.
1070 */
1071static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1072{
1073 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001074
1075 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001076 id = -1;
1077 return id;
1078}
1079
Willy Tarreau2373acc2017-10-12 17:35:14 +02001080/* returns the stream associated with id <id> or NULL if not found */
1081static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1082{
1083 struct eb32_node *node;
1084
Willy Tarreau751f2d02018-10-05 09:35:00 +02001085 if (id == 0)
1086 return (struct h2s *)h2_closed_stream;
1087
Willy Tarreau2a856182017-05-16 15:20:39 +02001088 if (id > h2c->max_id)
1089 return (struct h2s *)h2_idle_stream;
1090
Willy Tarreau2373acc2017-10-12 17:35:14 +02001091 node = eb32_lookup(&h2c->streams_by_id, id);
1092 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001093 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001094
1095 return container_of(node, struct h2s, by_id);
1096}
1097
Christopher Faulet73c12072019-04-08 11:23:22 +02001098/* release function. This one should be called to free all resources allocated
1099 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001100 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001101static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001102{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001103 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001104
Willy Tarreau7838a792019-08-12 18:42:03 +02001105 TRACE_ENTER(H2_EV_H2C_END);
1106
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001107 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001108
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001109 if (LIST_INLIST(&h2c->buf_wait.list))
1110 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001111
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001112 h2_release_buf(h2c, &h2c->dbuf);
1113 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001114
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001115 if (h2c->task) {
1116 h2c->task->context = NULL;
1117 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1118 h2c->task = NULL;
1119 }
1120 if (h2c->wait_event.tasklet)
1121 tasklet_free(h2c->wait_event.tasklet);
1122 if (conn && h2c->wait_event.events != 0)
1123 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1124 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001125
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001126 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001127
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001128 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001129
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001130 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001131 if (!conn_is_back(conn))
1132 LIST_DEL_INIT(&conn->stopping_list);
1133
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001134 conn->mux = NULL;
1135 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001136 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001137
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001138 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001139
1140 /* there might be a GOAWAY frame still pending in the TCP
1141 * stack, and if the peer continues to send (i.e. window
1142 * updates etc), this can result in losing the GOAWAY. For
1143 * this reason we try to drain anything received in between.
1144 */
1145 conn->flags |= CO_FL_WANT_DRAIN;
1146
1147 conn_xprt_shutw(conn);
1148 conn_xprt_close(conn);
1149 conn_sock_shutw(conn, !conn_is_back(conn));
1150 conn_ctrl_close(conn);
1151
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001152 if (conn->destroy_cb)
1153 conn->destroy_cb(conn);
1154 conn_free(conn);
1155 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001156
1157 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001158}
1159
1160
Willy Tarreau71681172017-10-23 14:39:06 +02001161/******************************************************/
1162/* functions below are for the H2 protocol processing */
1163/******************************************************/
1164
1165/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001166static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001167{
1168 return h2s ? h2s->id : 0;
1169}
1170
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001171/* returns the sum of the stream's own window size and the mux's initial
1172 * window, which together form the stream's effective window size.
1173 */
1174static inline int h2s_mws(const struct h2s *h2s)
1175{
1176 return h2s->sws + h2s->h2c->miw;
1177}
1178
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001179/* marks an error on the connection. Before settings are sent, we must not send
1180 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1181 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1182 * even try.
1183 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001184static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001185{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001186 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001187 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001188 if (h2c->st0 < H2_CS_SETTINGS1)
1189 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001190 h2c->st0 = H2_CS_ERROR;
1191}
1192
Willy Tarreau175cebb2019-01-24 10:02:24 +01001193/* marks an error on the stream. It may also update an already closed stream
1194 * (e.g. to report an error after an RST was received).
1195 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001196static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001197{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001198 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001199 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001200 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001201 if (h2s->st < H2_SS_ERROR)
1202 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001203 se_fl_set_error(h2s->sd);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001204 }
1205}
1206
Willy Tarreau7e094452018-12-19 18:08:52 +01001207/* attempt to notify the data layer of recv availability */
1208static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1209{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001210 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001211 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001212 tasklet_wakeup(h2s->subs->tasklet);
1213 h2s->subs->events &= ~SUB_RETRY_RECV;
1214 if (!h2s->subs->events)
1215 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001216 }
1217}
1218
1219/* attempt to notify the data layer of send availability */
1220static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1221{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001222 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001223 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001224 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001225 tasklet_wakeup(h2s->subs->tasklet);
1226 h2s->subs->events &= ~SUB_RETRY_SEND;
1227 if (!h2s->subs->events)
1228 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001229 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001230 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1231 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1232 tasklet_wakeup(h2s->shut_tl);
1233 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001234}
1235
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001236/* alerts the data layer, trying to wake it up by all means, following
1237 * this sequence :
1238 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1239 * - if its subscribed to send, then it's woken up for send
1240 * - if it was subscribed to neither, its ->wake() callback is called
1241 * It is safe to call this function with a closed stream which doesn't have a
Willy Tarreau4596fe22022-05-17 19:07:51 +02001242 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001243 */
1244static void __maybe_unused h2s_alert(struct h2s *h2s)
1245{
Willy Tarreau7838a792019-08-12 18:42:03 +02001246 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1247
Willy Tarreauf96508a2020-01-10 11:12:48 +01001248 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001249 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001250 h2s_notify_recv(h2s);
1251 h2s_notify_send(h2s);
1252 }
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001253 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001254 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001255 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
Willy Tarreau7838a792019-08-12 18:42:03 +02001256 }
1257
1258 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001259}
1260
Willy Tarreaue4820742017-07-27 13:37:23 +02001261/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001262static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001263{
1264 uint8_t *out = frame;
1265
1266 *out = len >> 16;
1267 write_n16(out + 1, len);
1268}
1269
Willy Tarreau54c15062017-10-10 17:10:03 +02001270/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1271 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1272 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001273 * available in the buffer's input prior to calling this function. The buffer
1274 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001275 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001276static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001277 const struct buffer *b, int o)
1278{
Willy Tarreau591d4452018-06-15 17:21:00 +02001279 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 +02001280}
1281
Willy Tarreau1f094672017-11-20 21:27:45 +01001282static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001283{
Willy Tarreau591d4452018-06-15 17:21:00 +02001284 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001285}
1286
Willy Tarreau1f094672017-11-20 21:27:45 +01001287static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001288{
Willy Tarreau591d4452018-06-15 17:21:00 +02001289 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001290}
1291
Willy Tarreau1f094672017-11-20 21:27:45 +01001292static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001293{
Willy Tarreau591d4452018-06-15 17:21:00 +02001294 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001295}
1296
1297
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001298/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1299 * The algorithm is not obvious. It turns out that H2 headers are neither
1300 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1301 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001302 *
1303 * b0 b1 b2 b3 b4 b5..b8
1304 * +----------+---------+--------+----+----+----------------------+
1305 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1306 * +----------+---------+--------+----+----+----------------------+
1307 *
1308 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1309 * we get the sid properly aligned and ordered, and 16 bits of len properly
1310 * ordered as well. The type and flags can be extracted using bit shifts from
1311 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001312 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1313 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001314 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001315static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001316{
1317 uint64_t w;
1318
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001319 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001320 return 0;
1321
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001322 w = h2_get_n64(b, o + 1);
1323 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001324 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1325 h->ff = w >> 32;
1326 h->ft = w >> 40;
1327 h->len += w >> 48;
1328 return 1;
1329}
1330
1331/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1332 * h2_peek_frame_hdr() above.
1333 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001334static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001335{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001336 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001337}
1338
1339/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001340static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001341{
1342 int ret;
1343
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001344 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001345 if (ret > 0)
1346 h2_skip_frame_hdr(b);
1347 return ret;
1348}
1349
Willy Tarreaucb985a42019-10-07 16:56:34 +02001350
1351/* try to fragment the headers frame present at the beginning of buffer <b>,
1352 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1353 * success. Typical causes of failure include a buffer not large enough to
1354 * add extra frame headers. The existing frame size is read in the current
1355 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1356 * and its length will be adjusted. The stream ID for continuation frames will
1357 * be copied from the initial frame's.
1358 */
1359static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1360{
1361 size_t remain = b->data - 9;
1362 int extra_frames = (remain - 1) / mfs;
1363 size_t fsize;
1364 char *fptr;
1365 int frame;
1366
1367 if (b->data <= mfs + 9)
1368 return 1;
1369
1370 /* Too large a frame, we need to fragment it using CONTINUATION
1371 * frames. We start from the end and move tails as needed.
1372 */
1373 if (b->data + extra_frames * 9 > b->size)
1374 return 0;
1375
1376 for (frame = extra_frames; frame; frame--) {
1377 fsize = ((remain - 1) % mfs) + 1;
1378 remain -= fsize;
1379
1380 /* move data */
1381 fptr = b->area + 9 + remain + (frame - 1) * 9;
1382 memmove(fptr + 9, b->area + 9 + remain, fsize);
1383 b->data += 9;
1384
1385 /* write new frame header */
1386 h2_set_frame_size(fptr, fsize);
1387 fptr[3] = H2_FT_CONTINUATION;
1388 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1389 write_n32(fptr + 5, read_n32(b->area + 5));
1390 }
1391
1392 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1393 h2_set_frame_size(b->area, remain);
1394 return 1;
1395}
1396
1397
Willy Tarreau00dd0782018-03-01 16:31:34 +01001398/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1399 * its connection if the stream was not yet closed. Please use this exclusively
1400 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001401 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001402static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001403{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001404 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001405 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001406 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001407 if (!h2s->id)
1408 h2s->h2c->nb_reserved--;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02001409 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001410 if (!se_fl_test(h2s->sd, SE_FL_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001411 h2s_notify_recv(h2s);
1412 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001413 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001414
Willy Tarreau7838a792019-08-12 18:42:03 +02001415 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001416 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001417 h2s->st = H2_SS_CLOSED;
1418}
1419
Willy Tarreau71049cc2018-03-28 13:56:39 +02001420/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001421/* h2s_destroy should only ever be called by the thread that owns the stream,
1422 * that means that a tasklet should be used if we want to destroy the h2s
1423 * from another thread
1424 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001425static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001426{
Willy Tarreau7838a792019-08-12 18:42:03 +02001427 struct connection *conn = h2s->h2c->conn;
1428
1429 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1430
Willy Tarreau0a10de62018-03-01 16:27:53 +01001431 h2s_close(h2s);
1432 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001433 if (b_size(&h2s->rxbuf)) {
1434 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001435 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001436 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001437
1438 if (h2s->subs)
1439 h2s->subs->events = 0;
1440
Joseph Herlantd77575d2018-11-25 10:54:45 -08001441 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001442 * reference left would be in the h2c send_list/fctl_list, and if
1443 * we're in it, we're getting out anyway
1444 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001445 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001446
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001447 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001448 tasklet_free(h2s->shut_tl);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001449 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1450 sedesc_free(h2s->sd);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001451 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001452
1453 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001454}
1455
Willy Tarreaua8e49542018-10-03 18:53:55 +02001456/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1457 * stream tree. In case of error, nothing is added and NULL is returned. The
1458 * causes of errors can be any failed memory allocation. The caller is
1459 * responsible for checking if the connection may support an extra stream
1460 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001461 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001462static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001463{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001464 struct h2s *h2s;
1465
Willy Tarreau7838a792019-08-12 18:42:03 +02001466 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1467
Willy Tarreaubafbe012017-11-24 17:34:44 +01001468 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001469 if (!h2s)
1470 goto out;
1471
Willy Tarreau5723f292020-01-10 15:16:57 +01001472 h2s->shut_tl = tasklet_new();
1473 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001474 pool_free(pool_head_h2s, h2s);
1475 goto out;
1476 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001477 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001478 h2s->shut_tl->process = h2_deferred_shut;
1479 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001480 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001481 h2s->h2c = h2c;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001482 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001483 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001484 h2s->flags = H2_SF_NONE;
1485 h2s->errcode = H2_ERR_NO_ERROR;
1486 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001487 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001488 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001489 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001490 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001491
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001492 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001493 if (id > 0)
1494 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001495 else
1496 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001497
1498 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001499 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001500 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001501
Willy Tarreau4781b152021-04-06 13:53:36 +02001502 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1503 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001504
Willy Tarreau7838a792019-08-12 18:42:03 +02001505 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001506 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001507 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001508 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001509 return NULL;
1510}
1511
1512/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001513 * case of memory allocation error. <input> is used as input buffer for the new
1514 * stream. On success, it is transferred to the stream and the mux is no longer
1515 * responsible of it. On error, <input> is unchanged, thus the mux must still
1516 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001517 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001518static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001519{
1520 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001521 struct h2s *h2s;
1522
Willy Tarreau7838a792019-08-12 18:42:03 +02001523 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1524
Willy Tarreaue872f752022-05-12 09:24:41 +02001525 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1526 TRACE_ERROR("HEADERS frame causing MAX_CONCURRENT_STREAMS to be exceeded", H2_EV_H2S_NEW|H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001527 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001528 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001529
1530 h2s = h2s_new(h2c, id);
1531 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001532 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001533
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001534 h2s->sd = sedesc_new();
1535 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001536 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001537 h2s->sd->se = h2s;
1538 h2s->sd->conn = h2c->conn;
1539 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet72722c02023-02-23 14:26:34 +01001540 se_expect_no_data(h2s->sd);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001541
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001542 /* FIXME wrong analogy between ext-connect and websocket, this need to
1543 * be refine.
1544 */
1545 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001546 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001547
Willy Tarreaud0de6772022-02-04 09:05:37 +01001548 /* The stream will record the request's accept date (which is either the
1549 * end of the connection's or the date immediately after the previous
1550 * request) and the idle time, which is the delay since the previous
1551 * request. We can set the value now, it will be copied by stream_new().
1552 */
1553 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001554
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001555 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001556 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001557
Willy Tarreau36c22322022-05-27 10:41:24 +02001558 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001559
Willy Tarreau590a0512018-09-05 11:56:48 +02001560 /* We want the accept date presented to the next stream to be the one
1561 * we have now, the handshake time to be null (since the next stream
1562 * is not delayed by a handshake), and the idle time to count since
1563 * right now.
1564 */
1565 sess->accept_date = date;
1566 sess->tv_accept = now;
1567 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001568 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001569
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001570 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001571 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001572 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001573 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001574 return h2s;
1575
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001576 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001577 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001578 out_alloc:
1579 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW|H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001580 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001581 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001582 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001583 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001584}
1585
Willy Tarreau36c22322022-05-27 10:41:24 +02001586/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001587 * connection and returns it, or NULL in case of memory allocation error or if
1588 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001589 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001590static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001591{
1592 struct h2s *h2s = NULL;
1593
Willy Tarreau7838a792019-08-12 18:42:03 +02001594 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1595
Willy Tarreaue872f752022-05-12 09:24:41 +02001596 if (h2c->nb_streams >= h2c->streams_limit) {
1597 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001598 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001599 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001600
Willy Tarreaue872f752022-05-12 09:24:41 +02001601 if (h2_streams_left(h2c) < 1) {
1602 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001603 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001604 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001605
Willy Tarreau751f2d02018-10-05 09:35:00 +02001606 /* Defer choosing the ID until we send the first message to create the stream */
1607 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001608 if (!h2s) {
1609 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001610 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001611 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001612
Willy Tarreau36c22322022-05-27 10:41:24 +02001613 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001614 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001615 h2s_destroy(h2s);
1616 h2s = NULL;
1617 goto out;
1618 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001619 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001620 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001621 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001622
Willy Tarreau751f2d02018-10-05 09:35:00 +02001623 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001624 if (likely(h2s))
1625 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1626 else
1627 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001628 return h2s;
1629}
1630
Willy Tarreaube5b7152017-09-25 16:25:39 +02001631/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1632 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1633 * the various settings codes.
1634 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001635static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001636{
1637 struct buffer *res;
1638 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001639 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001640 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001641 int ret = 0;
1642
1643 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001644
Willy Tarreaube5b7152017-09-25 16:25:39 +02001645 chunk_init(&buf, buf_data, sizeof(buf_data));
1646 chunk_memcpy(&buf,
1647 "\x00\x00\x00" /* length : 0 for now */
1648 "\x04\x00" /* type : 4 (settings), flags : 0 */
1649 "\x00\x00\x00\x00", /* stream ID : 0 */
1650 9);
1651
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001652 if (h2c->flags & H2_CF_IS_BACK) {
1653 /* send settings_enable_push=0 */
1654 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1655 }
1656
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001657 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1658 * sent automatically unless disabled in the global config */
1659 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1660 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001661
Willy Tarreaube5b7152017-09-25 16:25:39 +02001662 if (h2_settings_header_table_size != 4096) {
1663 char str[6] = "\x00\x01"; /* header_table_size */
1664
1665 write_n32(str + 2, h2_settings_header_table_size);
1666 chunk_memcat(&buf, str, 6);
1667 }
1668
1669 if (h2_settings_initial_window_size != 65535) {
1670 char str[6] = "\x00\x04"; /* initial_window_size */
1671
1672 write_n32(str + 2, h2_settings_initial_window_size);
1673 chunk_memcat(&buf, str, 6);
1674 }
1675
1676 if (h2_settings_max_concurrent_streams != 0) {
1677 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1678
1679 /* Note: 0 means "unlimited" for haproxy's config but not for
1680 * the protocol, so never send this value!
1681 */
1682 write_n32(str + 2, h2_settings_max_concurrent_streams);
1683 chunk_memcat(&buf, str, 6);
1684 }
1685
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001686 mfs = h2_settings_max_frame_size;
1687 if (mfs > global.tune.bufsize)
1688 mfs = global.tune.bufsize;
1689
1690 if (!mfs)
1691 mfs = global.tune.bufsize;
1692
1693 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001694 char str[6] = "\x00\x05"; /* max_frame_size */
1695
1696 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1697 * match bufsize - rewrite size, but at the moment it seems
1698 * that clients don't take care of it.
1699 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001700 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001701 chunk_memcat(&buf, str, 6);
1702 }
1703
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001704 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001705
1706 res = br_tail(h2c->mbuf);
1707 retry:
1708 if (!h2_get_buf(h2c, res)) {
1709 h2c->flags |= H2_CF_MUX_MALLOC;
1710 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001711 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001712 }
1713
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001714 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001715 if (unlikely(ret <= 0)) {
1716 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001717 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1718 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001719 h2c->flags |= H2_CF_MUX_MFULL;
1720 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001721 }
1722 else {
1723 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001724 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001725 }
1726 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001727 out:
1728 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001729 return ret;
1730}
1731
Willy Tarreau52eed752017-09-22 15:05:09 +02001732/* Try to receive a connection preface, then upon success try to send our
1733 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1734 * missing data. It may return an error in h2c.
1735 */
1736static int h2c_frt_recv_preface(struct h2c *h2c)
1737{
1738 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001739 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001740
Willy Tarreau7838a792019-08-12 18:42:03 +02001741 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1742
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001743 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001744
1745 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001746 if (!ret1)
1747 h2c->flags |= H2_CF_DEM_SHORT_READ;
Christopher Fauletff7925d2022-10-11 19:12:40 +02001748 if (ret1 < 0 || (h2c->flags & H2_CF_RCVD_SHUT)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001749 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 +02001750 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001751 if (b_data(&h2c->dbuf) ||
1752 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1753 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001754 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001755 ret2 = 0;
1756 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001757 }
1758
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001759 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001760 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001761 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001762 out:
1763 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001764 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001765}
1766
Willy Tarreau01b44822018-10-03 14:26:37 +02001767/* Try to send a connection preface, then upon success try to send our
1768 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1769 * missing data. It may return an error in h2c.
1770 */
1771static int h2c_bck_send_preface(struct h2c *h2c)
1772{
1773 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001774 int ret = 0;
1775
1776 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001777
Willy Tarreaubcc45952019-05-26 10:05:50 +02001778 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001779 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001780 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001781 h2c->flags |= H2_CF_MUX_MALLOC;
1782 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001783 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001784 }
1785
1786 if (!b_data(res)) {
1787 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001788 ret = b_istput(res, ist(H2_CONN_PREFACE));
1789 if (unlikely(ret <= 0)) {
1790 if (!ret) {
1791 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1792 goto retry;
1793 h2c->flags |= H2_CF_MUX_MFULL;
1794 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001795 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001796 }
1797 else {
1798 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001799 ret = 0;
1800 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001801 }
1802 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001803 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001804 ret = h2c_send_settings(h2c);
1805 out:
1806 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1807 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001808}
1809
Willy Tarreau081d4722017-05-16 21:51:05 +02001810/* try to send a GOAWAY frame on the connection to report an error or a graceful
1811 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1812 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1813 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1814 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1815 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1816 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001817 * case, nor will it send one if settings were not sent (e.g. still waiting for
1818 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001819 */
1820static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1821{
1822 struct buffer *res;
1823 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001824 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001825
Willy Tarreau7838a792019-08-12 18:42:03 +02001826 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1827
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001828 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001829 ret = 1; // claim that it worked
1830 goto out;
1831 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001832
Willy Tarreau9c218e72019-05-26 10:08:28 +02001833 /* len: 8, type: 7, flags: none, sid: 0 */
1834 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1835
1836 if (h2c->last_sid < 0)
1837 h2c->last_sid = h2c->max_id;
1838
1839 write_n32(str + 9, h2c->last_sid);
1840 write_n32(str + 13, h2c->errcode);
1841
Willy Tarreaubcc45952019-05-26 10:05:50 +02001842 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001843 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001844 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001845 h2c->flags |= H2_CF_MUX_MALLOC;
1846 if (h2s)
1847 h2s->flags |= H2_SF_BLK_MROOM;
1848 else
1849 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001850 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001851 }
1852
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001853 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001854 if (unlikely(ret <= 0)) {
1855 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001856 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1857 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001858 h2c->flags |= H2_CF_MUX_MFULL;
1859 if (h2s)
1860 h2s->flags |= H2_SF_BLK_MROOM;
1861 else
1862 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001863 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001864 }
1865 else {
1866 /* we cannot report this error using GOAWAY, so we mark
1867 * it and claim a success.
1868 */
1869 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1870 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001871 ret = 1;
1872 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001873 }
1874 }
1875 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001876
1877 /* some codes are not for real errors, just attempts to close cleanly */
1878 switch (h2c->errcode) {
1879 case H2_ERR_NO_ERROR:
1880 case H2_ERR_ENHANCE_YOUR_CALM:
1881 case H2_ERR_REFUSED_STREAM:
1882 case H2_ERR_CANCEL:
1883 break;
1884 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001885 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001886 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001887 out:
1888 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001889 return ret;
1890}
1891
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001892/* Try to send an RST_STREAM frame on the connection for the indicated stream
1893 * during mux operations. This stream must be valid and cannot be closed
1894 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1895 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1896 * not yet.
1897 *
1898 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1899 * to write the message, it subscribes the stream to future notifications.
1900 */
1901static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1902{
1903 struct buffer *res;
1904 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001905 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001906
Willy Tarreau7838a792019-08-12 18:42:03 +02001907 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1908
1909 if (!h2s || h2s->st == H2_SS_CLOSED) {
1910 ret = 1;
1911 goto out;
1912 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001913
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001914 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1915 * RST_STREAM in response to a RST_STREAM frame.
1916 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001917 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001918 ret = 1;
1919 goto ignore;
1920 }
1921
Willy Tarreau9c218e72019-05-26 10:08:28 +02001922 /* len: 4, type: 3, flags: none */
1923 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1924 write_n32(str + 5, h2s->id);
1925 write_n32(str + 9, h2s->errcode);
1926
Willy Tarreaubcc45952019-05-26 10:05:50 +02001927 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001928 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001929 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001930 h2c->flags |= H2_CF_MUX_MALLOC;
1931 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001932 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001933 }
1934
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001935 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001936 if (unlikely(ret <= 0)) {
1937 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001938 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1939 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001940 h2c->flags |= H2_CF_MUX_MFULL;
1941 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001942 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001943 }
1944 else {
1945 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001946 ret = 0;
1947 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001948 }
1949 }
1950
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001951 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001952 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001953 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001954 out:
1955 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001956 return ret;
1957}
1958
1959/* Try to send an RST_STREAM frame on the connection for the stream being
1960 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001961 * error code, even if the stream is one of the dummy ones, and will update
1962 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001963 *
1964 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1965 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001966 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001967 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001968 */
1969static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1970{
1971 struct buffer *res;
1972 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001973 int ret = 0;
1974
1975 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001976
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001977 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1978 * RST_STREAM in response to a RST_STREAM frame.
1979 */
1980 if (h2c->dft == H2_FT_RST_STREAM) {
1981 ret = 1;
1982 goto ignore;
1983 }
1984
Willy Tarreau9c218e72019-05-26 10:08:28 +02001985 /* len: 4, type: 3, flags: none */
1986 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1987
1988 write_n32(str + 5, h2c->dsi);
1989 write_n32(str + 9, h2s->errcode);
1990
Willy Tarreaubcc45952019-05-26 10:05:50 +02001991 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001992 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001993 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001994 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001995 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001996 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001997 }
1998
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001999 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02002000 if (unlikely(ret <= 0)) {
2001 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002002 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2003 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002004 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002005 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002006 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002007 }
2008 else {
2009 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002010 ret = 0;
2011 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002012 }
2013 }
2014
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002015 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002016 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002017 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002018 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002019 }
2020
Willy Tarreau7838a792019-08-12 18:42:03 +02002021 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002022 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002023 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002024 return ret;
2025}
2026
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002027/* try to send an empty DATA frame with the ES flag set to notify about the
2028 * end of stream and match a shutdown(write). If an ES was already sent as
2029 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2030 * on success or zero if nothing was done. In case of lack of room to write the
2031 * message, it subscribes the requesting stream to future notifications.
2032 */
2033static int h2_send_empty_data_es(struct h2s *h2s)
2034{
2035 struct h2c *h2c = h2s->h2c;
2036 struct buffer *res;
2037 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002038 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002039
Willy Tarreau7838a792019-08-12 18:42:03 +02002040 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2041
2042 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2043 ret = 1;
2044 goto out;
2045 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002046
Willy Tarreau9c218e72019-05-26 10:08:28 +02002047 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2048 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2049 write_n32(str + 5, h2s->id);
2050
Willy Tarreaubcc45952019-05-26 10:05:50 +02002051 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002052 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002053 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002054 h2c->flags |= H2_CF_MUX_MALLOC;
2055 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002056 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002057 }
2058
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002059 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002060 if (likely(ret > 0)) {
2061 h2s->flags |= H2_SF_ES_SENT;
2062 }
2063 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002064 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2065 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002066 h2c->flags |= H2_CF_MUX_MFULL;
2067 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002068 }
2069 else {
2070 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002071 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002072 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002073 out:
2074 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002075 return ret;
2076}
2077
Willy Tarreau4596fe22022-05-17 19:07:51 +02002078/* wake a specific stream and assign its stream connector some SE_FL_* flags
2079 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002080 * is automatically updated accordingly. If the stream is orphaned, it is
2081 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002082 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002083static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002084{
Willy Tarreau7838a792019-08-12 18:42:03 +02002085 struct h2c *h2c = h2s->h2c;
2086
2087 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2088
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002089 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002090 /* this stream was already orphaned */
2091 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002092 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002093 return;
2094 }
2095
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002096 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002097 if (h2s->st == H2_SS_OPEN)
2098 h2s->st = H2_SS_HREM;
2099 else if (h2s->st == H2_SS_HLOC)
2100 h2s_close(h2s);
2101 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002102
Christopher Fauletff7925d2022-10-11 19:12:40 +02002103 if (h2s->h2c->st0 >= H2_CS_ERROR || (h2s->h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) ||
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002104 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02002105 se_fl_set_error(h2s->sd);
Willy Tarreau23482912019-05-07 15:23:14 +02002106
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002107 if (h2s->st < H2_SS_ERROR)
2108 h2s->st = H2_SS_ERROR;
2109 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002110
2111 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002112 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002113}
2114
2115/* wake the streams attached to the connection, whose id is greater than <last>
2116 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002117 */
Willy Tarreau23482912019-05-07 15:23:14 +02002118static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002119{
2120 struct eb32_node *node;
2121 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002122
Willy Tarreau7838a792019-08-12 18:42:03 +02002123 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2124
Christopher Fauletf02ca002019-03-07 16:21:34 +01002125 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002126 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2127 while (node) {
2128 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002129 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002130 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002131 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002132
Christopher Fauletf02ca002019-03-07 16:21:34 +01002133 /* Wake all streams with unassigned ID (ID == 0) */
2134 node = eb32_lookup(&h2c->streams_by_id, 0);
2135 while (node) {
2136 h2s = container_of(node, struct h2s, by_id);
2137 if (h2s->id > 0)
2138 break;
2139 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002140 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002141 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002142
2143 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002144}
2145
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002146/* Wake up all blocked streams whose window size has become positive after the
2147 * mux's initial window was adjusted. This should be done after having processed
2148 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002149 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002150static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002151{
2152 struct h2s *h2s;
2153 struct eb32_node *node;
2154
Willy Tarreau7838a792019-08-12 18:42:03 +02002155 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2156
Willy Tarreau3421aba2017-07-27 15:41:03 +02002157 node = eb32_first(&h2c->streams_by_id);
2158 while (node) {
2159 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002160 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002161 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002162 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002163 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2164 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002165 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002166 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002167 node = eb32_next(node);
2168 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002169
2170 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002171}
2172
2173/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2174 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002175 * return an error in h2c. The caller must have already verified frame length
2176 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002177 */
2178static int h2c_handle_settings(struct h2c *h2c)
2179{
2180 unsigned int offset;
2181 int error;
2182
Willy Tarreau7838a792019-08-12 18:42:03 +02002183 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2184
Willy Tarreau3421aba2017-07-27 15:41:03 +02002185 if (h2c->dff & H2_F_SETTINGS_ACK) {
2186 if (h2c->dfl) {
2187 error = H2_ERR_FRAME_SIZE_ERROR;
2188 goto fail;
2189 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002190 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002191 }
2192
Willy Tarreau3421aba2017-07-27 15:41:03 +02002193 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002194 if (b_data(&h2c->dbuf) < h2c->dfl) {
2195 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002196 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002197 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002198
2199 /* parse the frame */
2200 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002201 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2202 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002203
2204 switch (type) {
2205 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2206 /* we need to update all existing streams with the
2207 * difference from the previous iws.
2208 */
2209 if (arg < 0) { // RFC7540#6.5.2
2210 error = H2_ERR_FLOW_CONTROL_ERROR;
2211 goto fail;
2212 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002213 h2c->miw = arg;
2214 break;
2215 case H2_SETTINGS_MAX_FRAME_SIZE:
2216 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002217 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 +02002218 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002219 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002220 goto fail;
2221 }
2222 h2c->mfs = arg;
2223 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002224 case H2_SETTINGS_HEADER_TABLE_SIZE:
2225 h2c->flags |= H2_CF_SHTS_UPDATED;
2226 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002227 case H2_SETTINGS_ENABLE_PUSH:
2228 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002229 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002230 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002231 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002232 goto fail;
2233 }
2234 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002235 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2236 if (h2c->flags & H2_CF_IS_BACK) {
2237 /* the limit is only for the backend; for the frontend it is our limit */
2238 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2239 arg = h2_settings_max_concurrent_streams;
2240 h2c->streams_limit = arg;
2241 }
2242 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002243 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002244 if (arg == 1)
2245 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002246 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002247 }
2248 }
2249
2250 /* need to ACK this frame now */
2251 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002252 done:
2253 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002254 return 1;
2255 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002256 if (!(h2c->flags & H2_CF_IS_BACK))
2257 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002258 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002259 out0:
2260 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 +02002261 return 0;
2262}
2263
2264/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2265 * success or one of the h2_status values.
2266 */
2267static int h2c_ack_settings(struct h2c *h2c)
2268{
2269 struct buffer *res;
2270 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002271 int ret = 0;
2272
2273 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002274
Willy Tarreau9c218e72019-05-26 10:08:28 +02002275 memcpy(str,
2276 "\x00\x00\x00" /* length : 0 (no data) */
2277 "\x04" "\x01" /* type : 4, flags : ACK */
2278 "\x00\x00\x00\x00" /* stream ID */, 9);
2279
Willy Tarreaubcc45952019-05-26 10:05:50 +02002280 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002281 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002282 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002283 h2c->flags |= H2_CF_MUX_MALLOC;
2284 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002285 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002286 }
2287
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002288 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002289 if (unlikely(ret <= 0)) {
2290 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002291 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2292 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002293 h2c->flags |= H2_CF_MUX_MFULL;
2294 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002295 }
2296 else {
2297 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002298 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002299 }
2300 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002301 out:
2302 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002303 return ret;
2304}
2305
Willy Tarreaucf68c782017-10-10 17:11:41 +02002306/* processes a PING frame and schedules an ACK if needed. The caller must pass
2307 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002308 * missing data. The caller must have already verified frame length
2309 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002310 */
2311static int h2c_handle_ping(struct h2c *h2c)
2312{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002313 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002314 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002315 h2c->st0 = H2_CS_FRAME_A;
2316 return 1;
2317}
2318
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002319/* Try to send a window update for stream id <sid> and value <increment>.
2320 * Returns > 0 on success or zero on missing room or failure. It may return an
2321 * error in h2c.
2322 */
2323static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2324{
2325 struct buffer *res;
2326 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002327 int ret = 0;
2328
2329 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002330
Willy Tarreau9c218e72019-05-26 10:08:28 +02002331 /* length: 4, type: 8, flags: none */
2332 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2333 write_n32(str + 5, sid);
2334 write_n32(str + 9, increment);
2335
Willy Tarreaubcc45952019-05-26 10:05:50 +02002336 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002337 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002338 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002339 h2c->flags |= H2_CF_MUX_MALLOC;
2340 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002341 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002342 }
2343
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002344 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002345 if (unlikely(ret <= 0)) {
2346 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002347 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2348 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002349 h2c->flags |= H2_CF_MUX_MFULL;
2350 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002351 }
2352 else {
2353 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002354 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002355 }
2356 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002357 out:
2358 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002359 return ret;
2360}
2361
2362/* try to send pending window update for the connection. It's safe to call it
2363 * with no pending updates. Returns > 0 on success or zero on missing room or
2364 * failure. It may return an error in h2c.
2365 */
2366static int h2c_send_conn_wu(struct h2c *h2c)
2367{
2368 int ret = 1;
2369
Willy Tarreau7838a792019-08-12 18:42:03 +02002370 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2371
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002372 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002373 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002374
Willy Tarreau97aaa672018-12-23 09:49:04 +01002375 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2376 /* increase the advertised connection window to 2G on
2377 * first update.
2378 */
2379 h2c->flags |= H2_CF_WINDOW_OPENED;
2380 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2381 }
2382
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002383 /* send WU for the connection */
2384 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2385 if (ret > 0)
2386 h2c->rcvd_c = 0;
2387
Willy Tarreau7838a792019-08-12 18:42:03 +02002388 out:
2389 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002390 return ret;
2391}
2392
2393/* try to send pending window update for the current dmux stream. It's safe to
2394 * call it with no pending updates. Returns > 0 on success or zero on missing
2395 * room or failure. It may return an error in h2c.
2396 */
2397static int h2c_send_strm_wu(struct h2c *h2c)
2398{
2399 int ret = 1;
2400
Willy Tarreau7838a792019-08-12 18:42:03 +02002401 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2402
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002403 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002404 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002405
2406 /* send WU for the stream */
2407 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2408 if (ret > 0)
2409 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002410 out:
2411 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002412 return ret;
2413}
2414
Willy Tarreaucf68c782017-10-10 17:11:41 +02002415/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2416 * success, 0 on missing data or one of the h2_status values.
2417 */
2418static int h2c_ack_ping(struct h2c *h2c)
2419{
2420 struct buffer *res;
2421 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002422 int ret = 0;
2423
2424 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002425
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002426 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002427 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002428
Willy Tarreaucf68c782017-10-10 17:11:41 +02002429 memcpy(str,
2430 "\x00\x00\x08" /* length : 8 (same payload) */
2431 "\x06" "\x01" /* type : 6, flags : ACK */
2432 "\x00\x00\x00\x00" /* stream ID */, 9);
2433
2434 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002435 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002436
Willy Tarreau9c218e72019-05-26 10:08:28 +02002437 res = br_tail(h2c->mbuf);
2438 retry:
2439 if (!h2_get_buf(h2c, res)) {
2440 h2c->flags |= H2_CF_MUX_MALLOC;
2441 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002442 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002443 }
2444
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002445 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002446 if (unlikely(ret <= 0)) {
2447 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002448 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2449 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002450 h2c->flags |= H2_CF_MUX_MFULL;
2451 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002452 }
2453 else {
2454 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002455 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002456 }
2457 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002458 out:
2459 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002460 return ret;
2461}
2462
Willy Tarreau26f95952017-07-27 17:18:30 +02002463/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2464 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002465 * h2c or h2s. The caller must have already verified frame length and stream ID
2466 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002467 */
2468static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2469{
2470 int32_t inc;
2471 int error;
2472
Willy Tarreau7838a792019-08-12 18:42:03 +02002473 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2474
Willy Tarreau26f95952017-07-27 17:18:30 +02002475 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002476 if (b_data(&h2c->dbuf) < h2c->dfl) {
2477 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002478 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002479 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002480
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002481 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002482
2483 if (h2c->dsi != 0) {
2484 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002485
2486 /* it's not an error to receive WU on a closed stream */
2487 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002488 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002489
2490 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002491 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 +02002492 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002493 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002494 goto strm_err;
2495 }
2496
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002497 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002498 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 +02002499 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002500 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002501 goto strm_err;
2502 }
2503
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002504 h2s->sws += inc;
2505 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002506 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002507 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002508 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2509 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002510 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002511 }
2512 }
2513 else {
2514 /* connection window update */
2515 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002516 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002517 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002518 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002519 goto conn_err;
2520 }
2521
2522 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2523 error = H2_ERR_FLOW_CONTROL_ERROR;
2524 goto conn_err;
2525 }
2526
2527 h2c->mws += inc;
2528 }
2529
Willy Tarreau7838a792019-08-12 18:42:03 +02002530 done:
2531 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002532 return 1;
2533
2534 conn_err:
2535 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002536 out0:
2537 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 +02002538 return 0;
2539
2540 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002541 h2s_error(h2s, error);
2542 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002543 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002544 return 0;
2545}
2546
Willy Tarreaue96b0922017-10-30 00:28:29 +01002547/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002548 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2549 * have already verified frame length and stream ID validity. Described in
2550 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002551 */
2552static int h2c_handle_goaway(struct h2c *h2c)
2553{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002554 int last;
2555
Willy Tarreau7838a792019-08-12 18:42:03 +02002556 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002557 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002558 if (b_data(&h2c->dbuf) < h2c->dfl) {
2559 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002560 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002561 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002562 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002563
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002564 last = h2_get_n32(&h2c->dbuf, 0);
2565 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002566 if (h2c->last_sid < 0)
2567 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002568 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002569 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002570 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002571}
2572
Willy Tarreau92153fc2017-12-03 19:46:19 +01002573/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002574 * invalid. Returns > 0 on success or zero on missing data. It may return an
2575 * error in h2c. The caller must have already verified frame length and stream
2576 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002577 */
2578static int h2c_handle_priority(struct h2c *h2c)
2579{
Willy Tarreau7838a792019-08-12 18:42:03 +02002580 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2581
Willy Tarreau92153fc2017-12-03 19:46:19 +01002582 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002583 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002584 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002585 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002586 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002587 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002588
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002589 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002590 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002591 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002592 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002593 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002594 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002595 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002596 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002597 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002598 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002599}
2600
Willy Tarreaucd234e92017-08-18 10:59:39 +02002601/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002602 * Returns > 0 on success or zero on missing data. The caller must have already
2603 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002604 */
2605static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2606{
Willy Tarreau7838a792019-08-12 18:42:03 +02002607 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2608
Willy Tarreaucd234e92017-08-18 10:59:39 +02002609 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002610 if (b_data(&h2c->dbuf) < h2c->dfl) {
2611 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 +02002612 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002613 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002614 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002615
2616 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002617 if (h2s->st == H2_SS_CLOSED) {
2618 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 +02002619 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002620 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002621
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002622 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002623 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002624
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002625 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002626 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002627 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002628 }
2629
2630 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002631 TRACE_LEAVE(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 Tarreaucd234e92017-08-18 10:59:39 +02002633}
2634
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002635/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2636 * It may return an error in h2c or h2s. The caller must consider that the
2637 * return value is the new h2s in case one was allocated (most common case).
2638 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002639 * errors here are reported as connection errors since it's impossible to
2640 * recover from such errors after the compression context has been altered.
2641 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002642static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002643{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002644 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002645 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002646 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002647 int error;
2648
Willy Tarreau7838a792019-08-12 18:42:03 +02002649 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2650
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002651 if (!b_size(&h2c->dbuf)) {
2652 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002653 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002654 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002655
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002656 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2657 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002658 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002659 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002660
2661 /* now either the frame is complete or the buffer is complete */
2662 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002663 /* The stream exists/existed, this must be a trailers frame */
2664 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002665 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002666 /* unrecoverable error ? */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002667 if (h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau17c630b2023-01-19 23:58:11 +01002668 TRACE_USER("Unrecoverable error decoding H2 trailers", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002669 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002670 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002671 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002672
Christopher Faulet485da0b2021-10-08 08:56:00 +02002673 if (error == 0) {
2674 /* Demux not blocked because of the stream, it is an incomplete frame */
2675 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2676 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002677 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002678 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002679
2680 if (error < 0) {
2681 /* Failed to decode this frame (e.g. too large request)
2682 * but the HPACK decompressor is still synchronized.
2683 */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002684 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002685 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
Willy Tarreau17c630b2023-01-19 23:58:11 +01002686 TRACE_USER("Stream error decoding H2 trailers", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002687 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002688 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002689 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002690 goto done;
2691 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002692 /* the connection was already killed by an RST, let's consume
2693 * the data and send another RST.
2694 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002695 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002696 sess_log(h2c->conn->owner);
Willy Tarreau1f035502019-01-30 11:44:07 +01002697 h2s = (struct h2s*)h2_error_stream;
2698 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002699 }
2700 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2701 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2702 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002703 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002704 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002705 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002706 goto conn_err;
2707 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002708 else if (h2c->flags & H2_CF_DEM_TOOMANY)
Willy Tarreau36c22322022-05-27 10:41:24 +02002709 goto out; // IDLE but too many sc still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002710
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002711 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002712
Willy Tarreau25919232019-01-03 14:48:18 +01002713 /* unrecoverable error ? */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002714 if (h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau17c630b2023-01-19 23:58:11 +01002715 TRACE_USER("Unrecoverable error decoding H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn, 0, &rxbuf);
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002716 sess_log(h2c->conn->owner);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002717 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002718 }
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002719
Willy Tarreau25919232019-01-03 14:48:18 +01002720 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002721 if (error == 0) {
2722 /* Demux not blocked because of the stream, it is an incomplete frame */
2723 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2724 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002725 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002726 }
Willy Tarreau25919232019-01-03 14:48:18 +01002727
2728 /* Failed to decode this stream (e.g. too large request)
2729 * but the HPACK decompressor is still synchronized.
2730 */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002731 sess_log(h2c->conn->owner);
Willy Tarreau25919232019-01-03 14:48:18 +01002732 h2s = (struct h2s*)h2_error_stream;
2733 goto send_rst;
2734 }
2735
Willy Tarreau29268e92021-06-17 08:29:14 +02002736 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2737
Willy Tarreau198b5072022-05-12 09:08:51 +02002738 /* Now we cannot roll back and we won't come back here anymore for this
2739 * stream, this stream ID is open.
2740 */
2741 if (h2c->dsi > h2c->max_id)
2742 h2c->max_id = h2c->dsi;
2743
Willy Tarreau22de8d32018-09-05 19:55:58 +02002744 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002745 * positively from h2c_frt_stream_new(), the stream will report the error,
2746 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002747 *
2748 * Xfer the rxbuf to the stream. On success, the new stream owns the
2749 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002750 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002751 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002752 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002753 h2s = (struct h2s*)h2_refused_stream;
2754 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002755 }
2756
2757 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002758 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002759 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002760
Willy Tarreau88d138e2019-01-02 19:38:14 +01002761 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002762 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002763 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002764
2765 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002766 if (h2s->st == H2_SS_OPEN)
2767 h2s->st = H2_SS_HREM;
2768 else
2769 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002770 }
Willy Tarreau0d6e5d22023-02-20 17:05:10 +01002771 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002772 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002773
2774 conn_err:
2775 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002776 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002777
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002778 out:
2779 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002780 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 +01002781 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002782
2783 send_rst:
2784 /* make the demux send an RST for the current stream. We may only
2785 * do this if we're certain that the HEADERS frame was properly
2786 * decompressed so that the HPACK decoder is still kept up to date.
2787 */
2788 h2_release_buf(h2c, &rxbuf);
2789 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002790
Willy Tarreau022e5e52020-09-10 09:33:15 +02002791 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 +02002792 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002793 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002794}
2795
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002796/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2797 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2798 * errors here are reported as connection errors since it's impossible to
2799 * recover from such errors after the compression context has been altered.
2800 */
2801static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2802{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002803 struct buffer rxbuf = BUF_NULL;
2804 unsigned long long body_len = 0;
2805 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002806 int error;
2807
Willy Tarreau7838a792019-08-12 18:42:03 +02002808 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2809
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002810 if (!b_size(&h2c->dbuf)) {
2811 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002812 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002813 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002814
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002815 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2816 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002817 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002818 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002819
Christopher Faulet6884aa32019-09-23 15:28:20 +02002820 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002821 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002822 }
2823 else {
2824 /* the connection was already killed by an RST, let's consume
2825 * the data and send another RST.
2826 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002827 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002828 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002829 h2c->st0 = H2_CS_FRAME_E;
2830 goto send_rst;
2831 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002832
Willy Tarreau25919232019-01-03 14:48:18 +01002833 /* unrecoverable error ? */
Willy Tarreau17c630b2023-01-19 23:58:11 +01002834 if (h2c->st0 >= H2_CS_ERROR) {
2835 TRACE_USER("Unrecoverable error decoding H2 HEADERS", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002836 goto fail;
Willy Tarreau17c630b2023-01-19 23:58:11 +01002837 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002838
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002839 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2840 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002841 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 +01002842 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2843 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002844 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002845 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002846 }
2847
Willy Tarreau25919232019-01-03 14:48:18 +01002848 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002849 if (error == 0) {
2850 /* Demux not blocked because of the stream, it is an incomplete frame */
2851 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2852 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002853 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002854 }
Willy Tarreau25919232019-01-03 14:48:18 +01002855
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002856 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002857 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 +01002858 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002859 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002860 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002861 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002862 }
2863
Christopher Fauletfa922f02019-05-07 10:55:17 +02002864 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002865 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002866
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002867 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002868 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002869 else if (h2s->flags & H2_SF_ES_RCVD) {
2870 if (h2s->st == H2_SS_OPEN)
2871 h2s->st = H2_SS_HREM;
2872 else if (h2s->st == H2_SS_HLOC)
2873 h2s_close(h2s);
2874 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002875
Christopher Fauletf95f8762021-01-22 11:59:07 +01002876 /* Unblock busy server h2s waiting for the response headers to validate
2877 * the tunnel establishment or the end of the response of an oborted
2878 * tunnel
2879 */
2880 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2881 (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)) {
2882 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2883 h2s->flags &= ~H2_SF_BLK_MBUSY;
2884 }
2885
Willy Tarreau9abb3172021-06-16 18:32:42 +02002886 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 +02002887 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002888 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002889 fail:
2890 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2891 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002892
2893 send_rst:
2894 /* make the demux send an RST for the current stream. We may only
2895 * do this if we're certain that the HEADERS frame was properly
2896 * decompressed so that the HPACK decoder is still kept up to date.
2897 */
2898 h2_release_buf(h2c, &rxbuf);
2899 h2c->st0 = H2_CS_FRAME_E;
2900
Willy Tarreau022e5e52020-09-10 09:33:15 +02002901 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 +02002902 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2903 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002904}
2905
Willy Tarreau454f9052017-10-26 19:40:35 +02002906/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2907 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2908 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002909static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002910{
2911 int error;
2912
Willy Tarreau7838a792019-08-12 18:42:03 +02002913 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2914
Willy Tarreau454f9052017-10-26 19:40:35 +02002915 /* note that empty DATA frames are perfectly valid and sometimes used
2916 * to signal an end of stream (with the ES flag).
2917 */
2918
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002919 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2920 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002921 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002922 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002923
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002924 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2925 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002926 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002927 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002928
2929 /* now either the frame is complete or the buffer is complete */
2930
Willy Tarreau454f9052017-10-26 19:40:35 +02002931 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2932 /* RFC7540#6.1 */
2933 error = H2_ERR_STREAM_CLOSED;
2934 goto strm_err;
2935 }
2936
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002937 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002938 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002939 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 +01002940 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002941 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002942 goto strm_err;
2943 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002944 if (!(h2c->flags & H2_CF_IS_BACK) &&
2945 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2946 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2947 /* a tunnel attempt was aborted but the client still try to send some raw data.
2948 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2949 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2950 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002951 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002952 */
2953 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2954 error = H2_ERR_CANCEL;
2955 goto strm_err;
2956 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002957
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002958 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002959 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002960
Willy Tarreau454f9052017-10-26 19:40:35 +02002961 /* call the upper layers to process the frame, then let the upper layer
2962 * notify the stream about any change.
2963 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002964 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002965 /* The upper layer has already closed, this may happen on
2966 * 4xx/redirects during POST, or when receiving a response
2967 * from an H2 server after the client has aborted.
2968 */
2969 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002970 goto strm_err;
2971 }
2972
Willy Tarreau8f650c32017-11-21 19:36:21 +01002973 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002974 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002975
Willy Tarreau721c9742017-11-07 11:05:42 +01002976 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002977 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002978 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002979 }
2980
2981 /* check for completion : the callee will change this to FRAME_A or
2982 * FRAME_H once done.
2983 */
2984 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002985 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002986
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002987 /* last frame */
2988 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002989 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002990 if (h2s->st == H2_SS_OPEN)
2991 h2s->st = H2_SS_HREM;
2992 else
2993 h2s_close(h2s);
2994
Willy Tarreau1915ca22019-01-24 11:49:37 +01002995 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2996 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002997 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 +01002998 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002999 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01003000 goto strm_err;
3001 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01003002 }
3003
Christopher Fauletf95f8762021-01-22 11:59:07 +01003004 /* Unblock busy server h2s waiting for the end of the response for an
3005 * aborted tunnel
3006 */
3007 if ((h2c->flags & H2_CF_IS_BACK) &&
3008 (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)) {
3009 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3010 h2s->flags &= ~H2_SF_BLK_MBUSY;
3011 }
3012
Willy Tarreau7838a792019-08-12 18:42:03 +02003013 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003014 return 1;
3015
Willy Tarreau454f9052017-10-26 19:40:35 +02003016 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003017 h2s_error(h2s, error);
3018 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003019 fail:
3020 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 +02003021 return 0;
3022}
3023
Willy Tarreau63864812019-08-07 14:25:20 +02003024/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3025 * valid for the current stream state. This is needed only after parsing the
3026 * frame header but in practice it can be performed at any time during
3027 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3028 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3029 */
3030static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3031{
Willy Tarreau7838a792019-08-12 18:42:03 +02003032 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3033
Willy Tarreau63864812019-08-07 14:25:20 +02003034 if (h2s->st == H2_SS_IDLE &&
3035 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3036 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3037 * this state MUST be treated as a connection error
3038 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003039 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 +02003040 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003041 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003042 /* only log if no other stream can report the error */
3043 sess_log(h2c->conn->owner);
3044 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003045 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003046 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 +02003047 return 0;
3048 }
3049
Willy Tarreau57a18162019-11-24 14:57:53 +01003050 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3051 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003052 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 +01003053 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003054 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003055 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3056 return 0;
3057 }
3058
Willy Tarreau63864812019-08-07 14:25:20 +02003059 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3060 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3061 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3062 * this state MUST be treated as a stream error.
3063 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3064 * PUSH_PROMISE/CONTINUATION cause connection errors.
3065 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003066 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003067 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 +02003068 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003069 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003070 }
3071 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003072 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003073 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003074 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 +02003075 return 0;
3076 }
3077
3078 /* Below the management of frames received in closed state is a
3079 * bit hackish because the spec makes strong differences between
3080 * streams closed by receiving RST, sending RST, and seeing ES
3081 * in both directions. In addition to this, the creation of a
3082 * new stream reusing the identifier of a closed one will be
3083 * detected here. Given that we cannot keep track of all closed
3084 * streams forever, we consider that unknown closed streams were
3085 * closed on RST received, which allows us to respond with an
3086 * RST without breaking the connection (eg: to abort a transfer).
3087 * Some frames have to be silently ignored as well.
3088 */
3089 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3090 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3091 /* #5.1.1: The identifier of a newly
3092 * established stream MUST be numerically
3093 * greater than all streams that the initiating
3094 * endpoint has opened or reserved. This
3095 * governs streams that are opened using a
3096 * HEADERS frame and streams that are reserved
3097 * using PUSH_PROMISE. An endpoint that
3098 * receives an unexpected stream identifier
3099 * MUST respond with a connection error.
3100 */
3101 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003102 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 +02003103 return 0;
3104 }
3105
Willy Tarreau4c08f122019-09-26 08:47:15 +02003106 if (h2s->flags & H2_SF_RST_RCVD &&
3107 !(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 +02003108 /* RFC7540#5.1:closed: an endpoint that
3109 * receives any frame other than PRIORITY after
3110 * receiving a RST_STREAM MUST treat that as a
3111 * stream error of type STREAM_CLOSED.
3112 *
3113 * Note that old streams fall into this category
3114 * and will lead to an RST being sent.
3115 *
3116 * However, we cannot generalize this to all frame types. Those
3117 * carrying compression state must still be processed before
3118 * being dropped or we'll desynchronize the decoder. This can
3119 * happen with request trailers received after sending an
3120 * RST_STREAM, or with header/trailers responses received after
3121 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003122 *
3123 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003124 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003125 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003126 */
3127 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3128 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003129 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 +02003130 return 0;
3131 }
3132
3133 /* RFC7540#5.1:closed: if this state is reached as a
3134 * result of sending a RST_STREAM frame, the peer that
3135 * receives the RST_STREAM might have already sent
3136 * frames on the stream that cannot be withdrawn. An
3137 * endpoint MUST ignore frames that it receives on
3138 * closed streams after it has sent a RST_STREAM
3139 * frame. An endpoint MAY choose to limit the period
3140 * over which it ignores frames and treat frames that
3141 * arrive after this time as being in error.
3142 */
3143 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3144 /* RFC7540#5.1:closed: any frame other than
3145 * PRIO/WU/RST in this state MUST be treated as
3146 * a connection error
3147 */
3148 if (h2c->dft != H2_FT_RST_STREAM &&
3149 h2c->dft != H2_FT_PRIORITY &&
3150 h2c->dft != H2_FT_WINDOW_UPDATE) {
3151 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003152 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 +02003153 return 0;
3154 }
3155 }
3156 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003157 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003158 return 1;
3159}
3160
Willy Tarreaubc933932017-10-09 16:21:43 +02003161/* process Rx frames to be demultiplexed */
3162static void h2_process_demux(struct h2c *h2c)
3163{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003164 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003165 struct h2_fh hdr;
3166 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003167 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003168
Willy Tarreau7838a792019-08-12 18:42:03 +02003169 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3170
Willy Tarreau081d4722017-05-16 21:51:05 +02003171 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003172 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003173
3174 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3175 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003176 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003177 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003178 goto out;
3179
Willy Tarreau52eed752017-09-22 15:05:09 +02003180 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3181 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003182 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003183 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003184 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003185 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003186 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003187 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003188 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003189 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003190 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003191 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003192
3193 h2c->max_id = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02003194 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaued2b9d92022-08-18 15:30:41 +02003195 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau52eed752017-09-22 15:05:09 +02003196 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003197
3198 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003199 /* ensure that what is pending is a valid SETTINGS frame
3200 * without an ACK.
3201 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003202 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 +02003203 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003204 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003205 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003206 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003207 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 +02003208 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003209 if (!(h2c->flags & H2_CF_IS_BACK))
3210 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003211 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003212 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003213 }
3214
3215 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3216 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003217 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 +02003218 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3219 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003220 if (!(h2c->flags & H2_CF_IS_BACK))
3221 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003222 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003223 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003224 }
3225
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003226 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003227 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003228 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 +02003229 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3230 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003231 if (!(h2c->flags & H2_CF_IS_BACK))
3232 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003233 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003234 }
3235
Willy Tarreau3bf69182018-12-21 15:34:50 +01003236 /* that's OK, switch to FRAME_P to process it. This is
3237 * a SETTINGS frame whose header has already been
3238 * deleted above.
3239 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003240 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003241 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003242 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003243 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003244 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003245
3246 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003247 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003248 int ret = 0;
3249
Willy Tarreau7838a792019-08-12 18:42:03 +02003250 if (!b_data(&h2c->dbuf)) {
3251 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003252 h2c->flags |= H2_CF_DEM_SHORT_READ;
3253 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003254 }
3255
3256 if (h2c->st0 >= H2_CS_ERROR) {
3257 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003258 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003259 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003260
3261 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003262 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003263 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3264 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003265 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003266 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003267
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003268 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003269 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 +02003270 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003271 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003272 /* only log if no other stream can report the error */
3273 sess_log(h2c->conn->owner);
3274 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003275 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003276 break;
3277 }
3278
Willy Tarreau617592c2022-06-08 16:32:22 +02003279 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3280 /* changed stream with a pending WU, need to
3281 * send it now.
3282 */
3283 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3284 ret = h2c_send_strm_wu(h2c);
3285 if (ret <= 0)
3286 break;
3287 }
3288
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003289 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003290 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3291 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3292 * we read the pad length and drop it from the remaining
3293 * payload (one byte + the 9 remaining ones = 10 total
3294 * removed), so we have a frame payload starting after the
3295 * pad len. Flow controlled frames (DATA) also count the
3296 * padlen in the flow control, so it must be adjusted.
3297 */
3298 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003299 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 +01003300 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003301 if (!(h2c->flags & H2_CF_IS_BACK))
3302 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003303 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003304 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003305 }
3306 hdr.len--;
3307
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003308 if (b_data(&h2c->dbuf) < 10) {
3309 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003310 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003311 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003312
3313 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3314
3315 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003316 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 +01003317 /* RFC7540#6.1 : pad length = length of
3318 * frame payload or greater => error.
3319 */
3320 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003321 if (!(h2c->flags & H2_CF_IS_BACK))
3322 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003323 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003324 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003325 }
3326
3327 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3328 h2c->rcvd_c++;
3329 h2c->rcvd_s++;
3330 }
3331 b_del(&h2c->dbuf, 1);
3332 }
3333 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003334
3335 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003336 h2c->dfl = hdr.len;
3337 h2c->dsi = hdr.sid;
3338 h2c->dft = hdr.ft;
3339 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003340 h2c->dpl = padlen;
Willy Tarreau0f458712022-08-18 11:19:57 +02003341 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003342 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 +02003343 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003344
3345 /* check for minimum basic frame format validity */
3346 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3347 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003348 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 +01003349 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003350 if (!(h2c->flags & H2_CF_IS_BACK))
3351 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003352 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003353 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003354 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003355
3356 /* transition to HEADERS frame ends the keep-alive idle
3357 * timer and starts the http-request idle delay.
3358 */
3359 if (hdr.ft == H2_FT_HEADERS)
3360 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003361 }
3362
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003363 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3364 * H2_CS_FRAME_P indicates an incomplete previous operation
3365 * (most often the first attempt) and requires some validity
3366 * checks for the frame and the current state. The two other
3367 * ones are set after completion (or abortion) and must skip
3368 * validity checks.
3369 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003370 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3371
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003372 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003373 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003374 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003375 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003376 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003377 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003378 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003379 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_STRM_WAKE, h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003380 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003381 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003382 }
3383 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003384
Willy Tarreau63864812019-08-07 14:25:20 +02003385 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003386 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3387 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003388 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003389 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003390
Willy Tarreau7e98c052017-10-10 15:56:59 +02003391 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003392 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003393 if (h2c->st0 == H2_CS_FRAME_P) {
3394 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003395 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003396 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003397 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003398
Willy Tarreau7838a792019-08-12 18:42:03 +02003399 if (h2c->st0 == H2_CS_FRAME_A) {
3400 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 +02003401 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003402 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003403 break;
3404
Willy Tarreaucf68c782017-10-10 17:11:41 +02003405 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003406 if (h2c->st0 == H2_CS_FRAME_P) {
3407 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003408 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003409 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003410
Willy Tarreau7838a792019-08-12 18:42:03 +02003411 if (h2c->st0 == H2_CS_FRAME_A) {
3412 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 +02003413 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003414 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003415 break;
3416
Willy Tarreau26f95952017-07-27 17:18:30 +02003417 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003418 if (h2c->st0 == H2_CS_FRAME_P) {
3419 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 +02003420 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003421 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003422 break;
3423
Willy Tarreau61290ec2017-10-17 08:19:21 +02003424 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003425 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003426 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3427 * frames' parsers consume all following CONTINUATION
3428 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003429 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003430 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 +01003431 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003432 if (!(h2c->flags & H2_CF_IS_BACK))
3433 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003434 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003435 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003436
Willy Tarreau13278b42017-10-13 19:23:14 +02003437 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003438 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003439 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003440 if (h2c->flags & H2_CF_IS_BACK)
3441 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3442 else
3443 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003444 if (tmp_h2s) {
3445 h2s = tmp_h2s;
3446 ret = 1;
3447 }
3448 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003449 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003450 break;
3451
Willy Tarreau454f9052017-10-26 19:40:35 +02003452 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003453 if (h2c->st0 == H2_CS_FRAME_P) {
3454 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003455 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003456 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003457 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003458
Willy Tarreau7838a792019-08-12 18:42:03 +02003459 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003460 /* rcvd_s will suffice to trigger the sending of a WU */
3461 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003462 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003463 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003464
Willy Tarreau92153fc2017-12-03 19:46:19 +01003465 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003466 if (h2c->st0 == H2_CS_FRAME_P) {
3467 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003468 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003469 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003470 break;
3471
Willy Tarreaucd234e92017-08-18 10:59:39 +02003472 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003473 if (h2c->st0 == H2_CS_FRAME_P) {
3474 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 +02003475 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003476 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003477 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003478 break;
3479
Willy Tarreaue96b0922017-10-30 00:28:29 +01003480 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003481 if (h2c->st0 == H2_CS_FRAME_P) {
3482 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003483 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003484 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003485 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003486 break;
3487
Willy Tarreau1c661982017-10-30 13:52:01 +01003488 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003489 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003490 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003491 /* drop frames that we ignore. They may be larger than
3492 * the buffer so we drain all of their contents until
3493 * we reach the end.
3494 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003495 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3496 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003497 h2c->dfl -= ret;
3498 ret = h2c->dfl == 0;
3499 }
3500
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003501 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003502 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003503 if (h2s->st == H2_SS_ERROR) {
3504 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 +01003505 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003506 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003507
Willy Tarreau7838a792019-08-12 18:42:03 +02003508 if (h2c->st0 == H2_CS_FRAME_E) {
3509 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 +01003510 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003511 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003512
Willy Tarreau7e98c052017-10-10 15:56:59 +02003513 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003514 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003515 break;
3516
3517 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003518 if (h2c->dfl)
3519 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003520 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3521 b_del(&h2c->dbuf, ret);
3522 h2c->dfl -= ret;
3523 if (!h2c->dfl) {
Willy Tarreau0f458712022-08-18 11:19:57 +02003524 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003525 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3526 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003527 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003528 }
3529 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003530
Willy Tarreau617592c2022-06-08 16:32:22 +02003531 if (h2c->rcvd_s > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003532 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003533 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3534 h2c_send_strm_wu(h2c);
3535 }
3536
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003537 if (h2c->rcvd_c > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003538 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003539 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003540 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003541 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003542
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003543 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003544 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3545 if (h2c->flags & H2_CF_RCVD_SHUT)
3546 h2c->flags |= H2_CF_END_REACHED;
3547 }
3548
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003549 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003550 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003551 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003552 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003553 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003554 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003555 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003556 TRACE_DEVEL("notifying stream before switching SID", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003557 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003558 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003559 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003560
Willy Tarreau7838a792019-08-12 18:42:03 +02003561 if (old_iw != h2c->miw) {
3562 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003563 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003564 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003565
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003566 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003567 out:
3568 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003569 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003570}
3571
Willy Tarreau989539b2020-01-10 17:01:29 +01003572/* resume each h2s eligible for sending in list head <head> */
3573static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3574{
3575 struct h2s *h2s, *h2s_back;
3576
3577 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3578
3579 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3580 if (h2c->mws <= 0 ||
3581 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3582 h2c->st0 >= H2_CS_ERROR)
3583 break;
3584
3585 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003586
Willy Tarreaud9464162020-01-10 18:25:07 +01003587 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003588 continue;
3589
Willy Tarreau5723f292020-01-10 15:16:57 +01003590 /* If the sender changed his mind and unsubscribed, let's just
3591 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003592 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003593 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3594 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003595 LIST_DEL_INIT(&h2s->list);
3596 continue;
3597 }
3598
Willy Tarreauf96508a2020-01-10 11:12:48 +01003599 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003600 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003601 tasklet_wakeup(h2s->subs->tasklet);
3602 h2s->subs->events &= ~SUB_RETRY_SEND;
3603 if (!h2s->subs->events)
3604 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003605 }
3606 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3607 tasklet_wakeup(h2s->shut_tl);
3608 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003609 }
3610
3611 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3612}
3613
Willy Tarreaubc933932017-10-09 16:21:43 +02003614/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3615 * the end.
3616 */
3617static int h2_process_mux(struct h2c *h2c)
3618{
Willy Tarreau7838a792019-08-12 18:42:03 +02003619 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3620
Willy Tarreau01b44822018-10-03 14:26:37 +02003621 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3622 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3623 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3624 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003625 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003626 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003627 goto fail;
3628 }
3629 h2c->st0 = H2_CS_SETTINGS1;
3630 }
3631 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003632 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003633 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003634 }
3635
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003636 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003637 if (h2c->rcvd_s > 0 &&
3638 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3639 h2c_send_strm_wu(h2c) < 0)
3640 goto fail;
3641
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003642 if (h2c->rcvd_c > 0 &&
3643 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3644 h2c_send_conn_wu(h2c) < 0)
3645 goto fail;
3646
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003647 /* First we always process the flow control list because the streams
3648 * waiting there were already elected for immediate emission but were
3649 * blocked just on this.
3650 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003651 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3652 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003653
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003654 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003655 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003656 if (h2c->st0 == H2_CS_ERROR) {
3657 if (h2c->max_id >= 0) {
3658 h2c_send_goaway_error(h2c, NULL);
3659 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003660 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003661 }
3662
3663 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3664 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003665 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003666 done:
3667 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3668 return 1;
3669 out0:
3670 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3671 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003672}
3673
Willy Tarreau62f52692017-10-08 23:01:42 +02003674
Willy Tarreau479998a2018-11-18 06:30:59 +01003675/* Attempt to read data, and subscribe if none available.
3676 * The function returns 1 if data has been received, otherwise zero.
3677 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003678static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003679{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003680 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003681 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003682 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003683 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003684
Willy Tarreau7838a792019-08-12 18:42:03 +02003685 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3686
3687 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3688 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003689 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003690 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003691
Willy Tarreau7838a792019-08-12 18:42:03 +02003692 if (!h2_recv_allowed(h2c)) {
3693 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003694 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003695 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003696
Willy Tarreau44e973f2018-03-01 17:49:30 +01003697 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003698 if (!buf) {
3699 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003700 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003701 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003702 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003703
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003704 if (!b_data(buf)) {
3705 /* try to pre-align the buffer like the
3706 * rxbufs will be to optimize memory copies. We'll make
3707 * sure that the frame header lands at the end of the
3708 * HTX block to alias it upon recv. We cannot use the
3709 * head because rcv_buf() will realign the buffer if
3710 * it's empty. Thus we cheat and pretend we already
3711 * have a few bytes there.
3712 */
3713 max = buf_room_for_htx_data(buf) + 9;
3714 buf->head = sizeof(struct htx) - 9;
3715 }
3716 else
3717 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003718
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003719 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003720
Christopher Fauletde9d6052021-04-23 12:25:18 +02003721 if (max && !ret && h2_recv_allowed(h2c)) {
3722 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3723 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003724 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003725 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003726 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3727 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003728
Christopher Fauletde9d6052021-04-23 12:25:18 +02003729 if (conn_xprt_read0_pending(h2c->conn)) {
3730 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3731 h2c->flags |= H2_CF_RCVD_SHUT;
3732 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003733 if (h2c->conn->flags & CO_FL_ERROR) {
3734 TRACE_DATA("connection error", H2_EV_H2C_RECV, h2c->conn);
3735 h2c->flags |= H2_CF_ERROR;
3736 }
Christopher Fauletde9d6052021-04-23 12:25:18 +02003737
Olivier Houcharda1411e62018-08-17 18:42:48 +02003738 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003739 h2_release_buf(h2c, &h2c->dbuf);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003740 goto end;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003741 }
3742
Willy Tarreau7838a792019-08-12 18:42:03 +02003743 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003744 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003745 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003746 }
3747
Christopher Fauletff7925d2022-10-11 19:12:40 +02003748 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02003749 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003750 return !!ret || (h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR));
Willy Tarreau62f52692017-10-08 23:01:42 +02003751}
3752
Willy Tarreau479998a2018-11-18 06:30:59 +01003753/* Try to send data if possible.
3754 * The function returns 1 if data have been sent, otherwise zero.
3755 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003756static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003757{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003758 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003759 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003760 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003761
Willy Tarreau7838a792019-08-12 18:42:03 +02003762 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003763
Christopher Fauletff7925d2022-10-11 19:12:40 +02003764 if (h2c->flags & (H2_CF_ERROR|H2_CF_ERR_PENDING)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003765 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003766 if (h2c->flags & H2_CF_RCVD_SHUT)
3767 h2c->flags |= H2_CF_ERROR;
3768 b_reset(br_tail(h2c->mbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003769 return 1;
3770 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003771
Willy Tarreau911db9b2020-01-23 16:27:54 +01003772 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003773 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003774 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003775 }
3776
Willy Tarreaubc933932017-10-09 16:21:43 +02003777 /* This loop is quite simple : it tries to fill as much as it can from
3778 * pending streams into the existing buffer until it's reportedly full
3779 * or the end of send requests is reached. Then it tries to send this
3780 * buffer's contents out, marks it not full if at least one byte could
3781 * be sent, and tries again.
3782 *
3783 * The snd_buf() function normally takes a "flags" argument which may
3784 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3785 * data immediately comes and CO_SFL_STREAMER to indicate that the
3786 * connection is streaming lots of data (used to increase TLS record
3787 * size at the expense of latency). The former can be sent any time
3788 * there's a buffer full flag, as it indicates at least one stream
3789 * attempted to send and failed so there are pending data. An
3790 * alternative would be to set it as long as there's an active stream
3791 * but that would be problematic for ACKs until we have an absolute
3792 * guarantee that all waiters have at least one byte to send. The
3793 * latter should possibly not be set for now.
3794 */
3795
3796 done = 0;
3797 while (!done) {
3798 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003799 unsigned int released = 0;
3800 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003801
3802 /* fill as much as we can into the current buffer */
3803 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3804 done = h2_process_mux(h2c);
3805
Olivier Houchard2b094432019-01-29 18:28:36 +01003806 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003807 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003808
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003809 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003810 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003811 break;
3812
Christopher Faulet68ee7842022-10-12 10:21:33 +02003813 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))
Willy Tarreaubc933932017-10-09 16:21:43 +02003814 flags |= CO_SFL_MSG_MORE;
3815
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003816 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3817 if (b_data(buf)) {
3818 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003819 if (!ret) {
3820 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003821 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003822 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003823 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003824 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003825 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003826 if (b_data(buf)) {
3827 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003828 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003829 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003830 }
3831 b_free(buf);
3832 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003833 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003834
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003835 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003836 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003837
Willy Tarreaubc933932017-10-09 16:21:43 +02003838 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003839 if (sent)
3840 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003841 }
3842
Christopher Fauletff7925d2022-10-11 19:12:40 +02003843 if (conn->flags & CO_FL_ERROR) {
3844 h2c->flags |= H2_CF_ERR_PENDING;
3845 if (h2c->flags & H2_CF_RCVD_SHUT)
3846 h2c->flags |= H2_CF_ERROR;
Willy Tarreau51330962019-05-26 09:38:07 +02003847 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003848 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003849
Olivier Houchard6ff20392018-07-17 18:46:31 +02003850 /* We're not full anymore, so we can wake any task that are waiting
3851 * for us.
3852 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003853 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3854 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003855
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003856 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003857 if (!br_data(h2c->mbuf)) {
3858 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003859 goto end;
Willy Tarreau7838a792019-08-12 18:42:03 +02003860 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003861schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003862 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3863 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003864 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003865 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003866 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003867end:
3868 return sent || (h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR));
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003869}
3870
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003871/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003872struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003873{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003874 struct connection *conn;
3875 struct tasklet *tl = (struct tasklet *)t;
3876 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003877 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003878 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003879
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003880 if (state & TASK_F_USR1) {
3881 /* the tasklet was idling on an idle connection, it might have
3882 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003883 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003884 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3885 if (t->context == NULL) {
3886 /* The connection has been taken over by another thread,
3887 * we're no longer responsible for it, so just free the
3888 * tasklet, and do nothing.
3889 */
3890 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3891 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003892 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003893 goto leave;
3894 }
3895 conn = h2c->conn;
3896 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003897
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003898 /* Remove the connection from the list, to be sure nobody attempts
3899 * to use it while we handle the I/O events
3900 */
Christopher Faulet3a7b5392023-03-16 11:43:05 +01003901 conn_in_list = conn_get_idle_flag(conn);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003902 if (conn_in_list)
3903 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003904
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003905 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3906 } else {
3907 /* we're certain the connection was not in an idle list */
3908 conn = h2c->conn;
3909 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3910 conn_in_list = 0;
3911 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003912
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003913 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003914 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003915 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003916 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003917 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003918 ret = h2_process(h2c);
3919
3920 /* If we were in an idle list, we want to add it back into it,
3921 * unless h2_process() returned -1, which mean it has destroyed
3922 * the connection (testing !ret is enough, if h2_process() wasn't
3923 * called then ret will be 0 anyway.
3924 */
Willy Tarreau74163142021-03-13 11:30:19 +01003925 if (ret < 0)
3926 t = NULL;
3927
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003928 if (!ret && conn_in_list) {
3929 struct server *srv = objt_server(conn->target);
3930
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003931 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003932 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau85223482022-09-29 20:32:43 +02003933 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003934 else
Willy Tarreau85223482022-09-29 20:32:43 +02003935 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003936 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003937 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003938
Willy Tarreau38468772020-06-28 00:31:13 +02003939leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003940 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003941 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003942}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003943
Willy Tarreau62f52692017-10-08 23:01:42 +02003944/* callback called on any event by the connection handler.
3945 * It applies changes and returns zero, or < 0 if it wants immediate
3946 * destruction of the connection (which normally doesn not happen in h2).
3947 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003948static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003949{
Olivier Houchard7505f942018-08-21 18:10:44 +02003950 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003951
Willy Tarreau7838a792019-08-12 18:42:03 +02003952 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3953
Willy Tarreauf0961222021-02-05 11:41:46 +01003954 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3955 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003956 h2_process_demux(h2c);
3957
Christopher Fauletff7925d2022-10-11 19:12:40 +02003958 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_ERROR))
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003959 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003960
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003961 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003962 h2c->flags &= ~H2_CF_DEM_DFULL;
3963 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003964 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003965
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003966 if (unlikely(h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !(h2c->flags & H2_CF_IS_BACK)) {
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003967 int send_goaway = 1;
3968 /* If a close-spread-time option is set, we want to avoid
3969 * closing all the active HTTP2 connections at once so we add a
3970 * random factor that will spread the closing.
3971 */
3972 if (tick_isset(global.close_spread_end)) {
3973 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3974 if (remaining_window) {
3975 /* This should increase the closing rate the
3976 * further along the window we are. */
3977 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
3978 }
3979 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02003980 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
3981 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01003982 /* frontend is stopping, reload likely in progress, let's try
3983 * to announce a graceful shutdown if not yet done. We don't
3984 * care if it fails, it will be tried again later.
3985 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003986 if (send_goaway) {
3987 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
3988 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3989 if (h2c->last_sid < 0)
3990 h2c->last_sid = (1U << 31) - 1;
3991 h2c_send_goaway_error(h2c, NULL);
3992 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01003993 }
3994 }
3995
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003996 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003997 * If we received early data, and the handshake is done, wake
3998 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003999 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004000 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01004001 (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 +01004002 struct eb32_node *node;
4003 struct h2s *h2s;
4004
4005 h2c->flags |= H2_CF_WAIT_FOR_HS;
4006 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4007
4008 while (node) {
4009 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004010 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01004011 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004012 node = eb32_next(node);
4013 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004014 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004015
Christopher Fauletff7925d2022-10-11 19:12:40 +02004016 if ((h2c->flags & H2_CF_ERROR) || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004017 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4018 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4019 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004020 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004021
4022 if (eb_is_empty(&h2c->streams_by_id)) {
4023 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004024 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004025 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004026 return -1;
4027 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004028
4029 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004030 if (conn->flags & CO_FL_LIST_MASK) {
4031 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004032 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004033 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4034 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004035 }
4036 else if (h2c->st0 == H2_CS_ERROR) {
4037 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004038 if (conn->flags & CO_FL_LIST_MASK) {
4039 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004040 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004041 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4042 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004043 }
4044
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004045 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004046 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004047
Christopher Fauletff7925d2022-10-11 19:12:40 +02004048 if (h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
Olivier Houchard53216e72018-10-10 15:46:36 +02004049 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004050 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004051 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4052 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004053 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004054
Willy Tarreau15a47332022-03-18 15:57:34 +01004055 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004056 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004057 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004058 return 0;
4059}
4060
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004061/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004062static int h2_wake(struct connection *conn)
4063{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004064 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004065 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004066
Willy Tarreau7838a792019-08-12 18:42:03 +02004067 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4068 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004069 if (ret >= 0)
4070 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004071 TRACE_LEAVE(H2_EV_H2C_WAKE);
4072 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004073}
4074
Willy Tarreauea392822017-10-31 10:02:25 +01004075/* Connection timeout management. The principle is that if there's no receipt
4076 * nor sending for a certain amount of time, the connection is closed. If the
4077 * MUX buffer still has lying data or is not allocatable, the connection is
4078 * immediately killed. If it's allocatable and empty, we attempt to send a
4079 * GOAWAY frame.
4080 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004081struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004082{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004083 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004084 int expired = tick_is_expired(t->expire, now_ms);
4085
Willy Tarreau7838a792019-08-12 18:42:03 +02004086 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4087
Willy Tarreaubd42e922020-06-30 11:19:23 +02004088 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004089 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004090 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004091
4092 /* Somebody already stole the connection from us, so we should not
4093 * free it, we just have to free the task.
4094 */
4095 if (!t->context) {
4096 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004097 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004098 goto do_leave;
4099 }
4100
4101
Willy Tarreaubd42e922020-06-30 11:19:23 +02004102 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004103 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004104 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4105 return t;
4106 }
Willy Tarreauea392822017-10-31 10:02:25 +01004107
Willy Tarreaubd42e922020-06-30 11:19:23 +02004108 if (!h2c_may_expire(h2c)) {
4109 /* we do still have streams but all of them are idle, waiting
4110 * for the data layer, so we must not enforce the timeout here.
4111 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004112 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004113 t->expire = TICK_ETERNITY;
4114 return t;
4115 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004116
Willy Tarreaubd42e922020-06-30 11:19:23 +02004117 /* We're about to destroy the connection, so make sure nobody attempts
4118 * to steal it from us.
4119 */
Christopher Faulet3a7b5392023-03-16 11:43:05 +01004120 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004121 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004122
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004123 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004124 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004125
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004126do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004127 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004128
4129 if (!h2c) {
4130 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004131 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004132 return NULL;
4133 }
4134
4135 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004136 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004137 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004138
Willy Tarreau662fafc2019-05-26 09:43:07 +02004139 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004140 /* don't even try to send a GOAWAY, the buffer is stuck */
4141 h2c->flags |= H2_CF_GOAWAY_FAILED;
4142 }
4143
4144 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004145 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004146 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4147 h2c->flags |= H2_CF_GOAWAY_FAILED;
4148
Willy Tarreau662fafc2019-05-26 09:43:07 +02004149 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004150 unsigned int released = 0;
4151 struct buffer *buf;
4152
4153 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4154 if (b_data(buf)) {
4155 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4156 if (!ret)
4157 break;
4158 b_del(buf, ret);
4159 if (b_data(buf))
4160 break;
4161 b_free(buf);
4162 released++;
4163 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004164 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004165
4166 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004167 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004168 }
Willy Tarreauea392822017-10-31 10:02:25 +01004169
Willy Tarreau4481e262019-10-31 15:36:30 +01004170 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004171 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4172 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004173 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004174 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4175 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004176
Willy Tarreau0975f112018-03-29 15:22:59 +02004177 /* either we can release everything now or it will be done later once
4178 * the last stream closes.
4179 */
4180 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004181 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004182
Willy Tarreau7838a792019-08-12 18:42:03 +02004183 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004184 return NULL;
4185}
4186
4187
Willy Tarreau62f52692017-10-08 23:01:42 +02004188/*******************************************/
4189/* functions below are used by the streams */
4190/*******************************************/
4191
4192/*
4193 * Attach a new stream to a connection
4194 * (Used for outgoing connections)
4195 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004196static int h2_attach(struct connection *conn, struct sedesc *sd, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004197{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004198 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004199 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004200
Willy Tarreau7838a792019-08-12 18:42:03 +02004201 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004202 h2s = h2c_bck_stream_new(h2c, sd->sc, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004203 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004204 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004205 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004206 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004207
4208 /* the connection is not idle anymore, let's mark this */
4209 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004210 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004211
Willy Tarreau7838a792019-08-12 18:42:03 +02004212 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004213 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004214}
4215
Willy Tarreau4596fe22022-05-17 19:07:51 +02004216/* Retrieves the first valid stream connector from this connection, or returns
4217 * NULL. We have to scan because we may have some orphan streams. It might be
Willy Tarreaufafd3982018-11-18 21:29:20 +01004218 * beneficial to scan backwards from the end to reduce the likeliness to find
4219 * orphans.
4220 */
Willy Tarreaud1373532022-05-27 11:00:59 +02004221static struct stconn *h2_get_first_sc(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004222{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004223 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004224 struct h2s *h2s;
4225 struct eb32_node *node;
4226
4227 node = eb32_first(&h2c->streams_by_id);
4228 while (node) {
4229 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004230 if (h2s_sc(h2s))
4231 return h2s_sc(h2s);
Willy Tarreaufafd3982018-11-18 21:29:20 +01004232 node = eb32_next(node);
4233 }
4234 return NULL;
4235}
4236
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004237static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4238{
4239 int ret = 0;
4240 struct h2c *h2c = conn->ctx;
4241
4242 switch (mux_ctl) {
4243 case MUX_STATUS:
4244 /* Only consider the mux to be ready if we're done with
4245 * the preface and settings, and we had no error.
4246 */
4247 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4248 ret |= MUX_STATUS_READY;
4249 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004250 case MUX_EXIT_STATUS:
4251 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004252 default:
4253 return -1;
4254 }
4255}
4256
Willy Tarreau62f52692017-10-08 23:01:42 +02004257/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004258 * Destroy the mux and the associated connection, if it is no longer used
4259 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004260static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004261{
Christopher Faulet73c12072019-04-08 11:23:22 +02004262 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004263
Willy Tarreau7838a792019-08-12 18:42:03 +02004264 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004265 if (eb_is_empty(&h2c->streams_by_id)) {
4266 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004267 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004268 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004269 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004270}
4271
4272/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004273 * Detach the stream from the connection and possibly release the connection.
4274 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004275static void h2_detach(struct sedesc *sd)
Willy Tarreau62f52692017-10-08 23:01:42 +02004276{
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004277 struct h2s *h2s = sd->se;
Willy Tarreau60935142017-10-16 18:11:19 +02004278 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004279 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004280
Willy Tarreau7838a792019-08-12 18:42:03 +02004281 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4282
Willy Tarreau7838a792019-08-12 18:42:03 +02004283 if (!h2s) {
4284 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004285 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004286 }
Willy Tarreau60935142017-10-16 18:11:19 +02004287
Willy Tarreaud9464162020-01-10 18:25:07 +01004288 /* there's no txbuf so we're certain not to be able to send anything */
4289 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004290
Olivier Houchardf502aca2018-12-14 19:42:40 +01004291 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004292 h2c = h2s->h2c;
Willy Tarreau36c22322022-05-27 10:41:24 +02004293 h2c->nb_sc--;
4294 if (!h2c->nb_sc)
Willy Tarreau15a47332022-03-18 15:57:34 +01004295 h2c->idle_start = now_ms;
4296
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004297 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
Willy Tarreau36c22322022-05-27 10:41:24 +02004298 !h2_frt_has_too_many_sc(h2c)) {
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004299 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004300 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004301 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004302 }
Willy Tarreau60935142017-10-16 18:11:19 +02004303
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004304 /* this stream may be blocked waiting for some data to leave (possibly
4305 * an ES or RST frame), so orphan it in this case.
4306 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02004307 if (!(h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004308 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004309 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004310 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004311 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004312 /* refresh the timeout if none was active, so that the last
4313 * leaving stream may arm it.
4314 */
4315 if (!tick_isset(h2c->task->expire))
4316 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004317 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004318 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004319
Christopher Faulet68ee7842022-10-12 10:21:33 +02004320 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi)) {
Willy Tarreau45f752e2017-10-30 15:44:59 +01004321 /* unblock the connection if it was blocked on this
4322 * stream.
4323 */
4324 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4325 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004326 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004327 }
4328
Willy Tarreau71049cc2018-03-28 13:56:39 +02004329 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004330
Christopher Faulet9b79a102019-07-15 11:22:56 +02004331 if (h2c->flags & H2_CF_IS_BACK) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02004332 if (!(h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERR_PENDING|H2_CF_ERROR))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004333 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004334 /* Add the connection in the session server list, if not already done */
4335 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4336 h2c->conn->owner = NULL;
4337 if (eb_is_empty(&h2c->streams_by_id)) {
4338 h2c->conn->mux->destroy(h2c);
4339 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4340 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004341 }
4342 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004343 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004344 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4345 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4346 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004347 return;
4348 }
4349 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004350 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004351 else {
4352 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004353 /* If the connection is owned by the session, first remove it
4354 * from its list
4355 */
4356 if (h2c->conn->owner) {
4357 session_unown_conn(h2c->conn->owner, h2c->conn);
4358 h2c->conn->owner = NULL;
4359 }
4360
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004361 /* mark that the tasklet may lose its context to another thread and
4362 * that the handler needs to check it under the idle conns lock.
4363 */
4364 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004365 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4366
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004367 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004368 /* The server doesn't want it, let's kill the connection right away */
4369 h2c->conn->mux->destroy(h2c);
4370 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4371 return;
4372 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004373 /* At this point, the connection has been added to the
4374 * server idle list, so another thread may already have
4375 * hijacked it, so we can't do anything with it.
4376 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004377 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4378 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004379
Olivier Houchard8a786902018-12-15 16:05:40 +01004380 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004381 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004382 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004383 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau85223482022-09-29 20:32:43 +02004384 eb64_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
4385 &h2c->conn->hash_node->node);
Christopher Fauletc5579d12020-07-01 15:45:41 +02004386 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004387 }
4388 }
4389 }
4390
Willy Tarreaue323f342018-03-28 13:51:45 +02004391 /* We don't want to close right now unless we're removing the
4392 * last stream, and either the connection is in error, or it
4393 * reached the ID already specified in a GOAWAY frame received
4394 * or sent (as seen by last_sid >= 0).
4395 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004396 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004397 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004398 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004399 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004400 }
4401 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004402 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004403 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004404 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004405 else
4406 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004407}
4408
Willy Tarreau88bdba32019-05-13 18:17:53 +02004409/* Performs a synchronous or asynchronous shutr(). */
4410static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004411{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004412 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004413
Willy Tarreauf983d002019-05-14 10:40:21 +02004414 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004415 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004416
Willy Tarreau7838a792019-08-12 18:42:03 +02004417 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4418
Willy Tarreau18059042019-01-31 19:12:48 +01004419 /* a connstream may require us to immediately kill the whole connection
4420 * for example because of a "tcp-request content reject" rule that is
4421 * normally used to limit abuse. In this case we schedule a goaway to
4422 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004423 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004424 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004425 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004426 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004427 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4428 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4429 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004430 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4431 /* Nothing was never sent for this stream, so reset with
4432 * REFUSED_STREAM error to let the client retry the
4433 * request.
4434 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004435 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004436 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4437 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004438 else {
4439 /* a final response was already provided, we don't want this
4440 * stream anymore. This may happen when the server responds
4441 * before the end of an upload and closes quickly (redirect,
4442 * deny, ...)
4443 */
4444 h2s_error(h2s, H2_ERR_CANCEL);
4445 }
Willy Tarreau18059042019-01-31 19:12:48 +01004446
Willy Tarreau90c32322017-11-24 08:00:30 +01004447 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004448 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004449 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004450
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004451 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004452 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004453 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004454 done:
4455 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004456 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004457 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004458add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004459 /* Let the handler know we want to shutr, and add ourselves to the
4460 * most relevant list if not yet done. h2_deferred_shut() will be
4461 * automatically called via the shut_tl tasklet when there's room
4462 * again.
4463 */
4464 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004465 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004466 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004467 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004468 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004469 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004470 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004471 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004472 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004473}
4474
Willy Tarreau88bdba32019-05-13 18:17:53 +02004475/* Performs a synchronous or asynchronous shutw(). */
4476static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004477{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004478 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004479
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004480 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004481 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004482
Willy Tarreau7838a792019-08-12 18:42:03 +02004483 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4484
Willy Tarreau473e0e52022-08-18 16:12:15 +02004485 if (h2s->st != H2_SS_ERROR &&
4486 (h2s->flags & (H2_SF_HEADERS_SENT | H2_SF_MORE_HTX_DATA)) == H2_SF_HEADERS_SENT) {
4487 /* we can cleanly close using an empty data frame only after headers
4488 * and if no more data is expected to be sent.
4489 */
Willy Tarreau58e32082017-11-07 14:41:09 +01004490 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4491 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004492 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004493
4494 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004495 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004496 else
4497 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004498 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004499 /* a connstream may require us to immediately kill the whole connection
4500 * for example because of a "tcp-request content reject" rule that is
4501 * normally used to limit abuse. In this case we schedule a goaway to
4502 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004503 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004504 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004505 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004506 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004507 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4508 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4509 }
Willy Tarreau473e0e52022-08-18 16:12:15 +02004510 else if (h2s->flags & H2_SF_MORE_HTX_DATA) {
4511 /* some unsent data were pending (e.g. abort during an upload),
4512 * let's send a CANCEL.
4513 */
4514 TRACE_STATE("shutw before end of data, sending CANCEL", H2_EV_STRM_SHUT, h2c->conn, h2s);
4515 h2s_error(h2s, H2_ERR_CANCEL);
4516 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004517 else {
4518 /* Nothing was never sent for this stream, so reset with
4519 * REFUSED_STREAM error to let the client retry the
4520 * request.
4521 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004522 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004523 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4524 }
Willy Tarreau18059042019-01-31 19:12:48 +01004525
Willy Tarreau90c32322017-11-24 08:00:30 +01004526 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004527 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004528 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004529
Willy Tarreau00dd0782018-03-01 16:31:34 +01004530 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004531 }
4532
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004533 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004534 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004535
4536 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4537
Willy Tarreau88bdba32019-05-13 18:17:53 +02004538 done:
4539 h2s->flags &= ~H2_SF_WANT_SHUTW;
4540 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004541
4542 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004543 /* Let the handler know we want to shutw, and add ourselves to the
4544 * most relevant list if not yet done. h2_deferred_shut() will be
4545 * automatically called via the shut_tl tasklet when there's room
4546 * again.
4547 */
4548 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004549 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004550 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004551 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004552 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004553 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004554 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004555 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004556 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004557}
4558
Willy Tarreau5723f292020-01-10 15:16:57 +01004559/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004560 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4561 * and prevented the last frame from being emitted.
4562 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004563struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004564{
4565 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004566 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004567
Willy Tarreau7838a792019-08-12 18:42:03 +02004568 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4569
Willy Tarreau5723f292020-01-10 15:16:57 +01004570 if (h2s->flags & H2_SF_NOTIFIED) {
4571 /* some data processing remains to be done first */
4572 goto end;
4573 }
4574
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004575 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004576 h2_do_shutw(h2s);
4577
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004578 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004579 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004580
Willy Tarreau88bdba32019-05-13 18:17:53 +02004581 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004582 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004583 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004584
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004585 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004586 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004587 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004588 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004589 t = NULL;
4590 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004591 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004592 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004593 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004594 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004595 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004596}
4597
Willy Tarreau4596fe22022-05-17 19:07:51 +02004598/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004599static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004600{
Willy Tarreau36c22322022-05-27 10:41:24 +02004601 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004602
Willy Tarreau7838a792019-08-12 18:42:03 +02004603 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004604 if (mode)
4605 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004606 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004607}
4608
Willy Tarreau4596fe22022-05-17 19:07:51 +02004609/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004610static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004611{
Willy Tarreau36c22322022-05-27 10:41:24 +02004612 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004613
Willy Tarreau7838a792019-08-12 18:42:03 +02004614 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004615 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004616 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004617}
4618
Christopher Faulet9b79a102019-07-15 11:22:56 +02004619/* Decode the payload of a HEADERS frame and produce the HTX request or response
4620 * depending on the connection's side. Returns a positive value on success, a
4621 * negative value on failure, or 0 if it couldn't proceed. May report connection
4622 * errors in h2c->errcode if the frame is non-decodable and the connection
4623 * unrecoverable. In absence of connection error when a failure is reported, the
4624 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004625 *
4626 * The function may fold CONTINUATION frames into the initial HEADERS frame
4627 * by removing padding and next frame header, then moving the CONTINUATION
4628 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4629 * leaving a hole between the main frame and the beginning of the next one.
4630 * The possibly remaining incomplete or next frame at the end may be moved
4631 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4632 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4633 *
4634 * A buffer at the beginning of processing may look like this :
4635 *
4636 * ,---.---------.-----.--------------.--------------.------.---.
4637 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4638 * `---^---------^-----^--------------^--------------^------^---'
4639 * | | <-----> | |
4640 * area | dpl | wrap
4641 * |<--------------> |
4642 * | dfl |
4643 * |<-------------------------------------------------->|
4644 * head data
4645 *
4646 * Padding is automatically overwritten when folding, participating to the
4647 * hole size after dfl :
4648 *
4649 * ,---.------------------------.-----.--------------.------.---.
4650 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4651 * `---^------------------------^-----^--------------^------^---'
4652 * | | <-----> | |
4653 * area | hole | wrap
4654 * |<-----------------------> |
4655 * | dfl |
4656 * |<-------------------------------------------------->|
4657 * head data
4658 *
4659 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4660 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4661 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004662 *
4663 * The <flags> field must point to either the stream's flags or to a copy of it
4664 * so that the function can update the following flags :
4665 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004666 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004667 *
4668 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4669 * decoding, in order to detect if we're dealing with a headers or a trailers
4670 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004671 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01004672static int h2c_dec_hdrs(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len, char *upgrade_protocol)
Willy Tarreau13278b42017-10-13 19:23:14 +02004673{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004674 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004675 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004676 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004677 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004678 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004679 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004680 int flen; // header frame len
4681 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004682 int ret = 0;
4683 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004684 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004685
Willy Tarreau7838a792019-08-12 18:42:03 +02004686 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4687
Willy Tarreauea18f862018-12-22 20:19:26 +01004688next_frame:
4689 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4690 goto leave; // incomplete input frame
4691
4692 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4693 * this case, we'll try to paste it immediately after the initial
4694 * HEADERS frame payload and kill any possible padding. The initial
4695 * frame's length will be increased to represent the concatenation
4696 * of the two frames. The next frame is read from position <tlen>
4697 * and written at position <flen> (minus padding if some is present).
4698 */
4699 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4700 struct h2_fh hdr;
4701 int clen; // CONTINUATION frame's payload length
4702
Willy Tarreau7838a792019-08-12 18:42:03 +02004703 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 +01004704 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4705 /* no more data, the buffer may be full, either due to
4706 * too large a frame or because of too large a hole that
4707 * we're going to compact at the end.
4708 */
4709 goto leave;
4710 }
4711
4712 if (hdr.ft != H2_FT_CONTINUATION) {
4713 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004714 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 +01004715 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004716 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004717 goto fail;
4718 }
4719
4720 if (hdr.sid != h2c->dsi) {
4721 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004722 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 +01004723 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004724 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004725 goto fail;
4726 }
4727
4728 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4729 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004730 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 +01004731 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4732 goto fail;
4733 }
4734
4735 /* detect when we must stop aggragating frames */
4736 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4737
4738 /* Take as much as we can of the CONTINUATION frame's payload */
4739 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4740 if (clen > hdr.len)
4741 clen = hdr.len;
4742
4743 /* Move the frame's payload over the padding, hole and frame
4744 * header. At least one of hole or dpl is null (see diagrams
4745 * above). The hole moves after the new aggragated frame.
4746 */
4747 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 +02004748 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004749 hole += h2c->dpl + 9;
4750 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004751 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 +01004752 goto next_frame;
4753 }
4754
4755 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004756
Willy Tarreau13278b42017-10-13 19:23:14 +02004757 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004758 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004759 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004760 copy = alloc_trash_chunk();
4761 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004762 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 +02004763 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4764 goto fail;
4765 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004766 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4767 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4768 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004769 }
4770
Willy Tarreau13278b42017-10-13 19:23:14 +02004771 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4772 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004773 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004774 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004775 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 +01004776 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004777 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004778 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004779 }
4780
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004781 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004782 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 +01004783 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4784 goto fail;
4785 }
4786
Willy Tarreau13278b42017-10-13 19:23:14 +02004787 hdrs += 5; // stream dep = 4, weight = 1
4788 flen -= 5;
4789 }
4790
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004791 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004792 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 +01004793 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004794 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004795 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004796
Willy Tarreau937f7602018-02-26 15:22:17 +01004797 /* we can't retry a failed decompression operation so we must be very
4798 * careful not to take any risks. In practice the output buffer is
4799 * always empty except maybe for trailers, in which case we simply have
4800 * to wait for the upper layer to finish consuming what is available.
4801 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004802 htx = htx_from_buf(rxbuf);
4803 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004804 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 +02004805 h2c->flags |= H2_CF_DEM_SFULL;
4806 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004807 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004808
Willy Tarreau25919232019-01-03 14:48:18 +01004809 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004810 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4811 sizeof(list)/sizeof(list[0]), tmp);
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01004812
4813 if (outlen > 0 &&
4814 (TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
4815 TRACE_ENABLED(TRACE_LEVEL_USER, H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, 0, 0, 0)) {
4816 struct ist n;
4817 int i;
4818
4819 for (i = 0; list[i].n.len; i++) {
4820 n = list[i].n;
4821
4822 if (!isttest(n)) {
4823 /* this is in fact a pseudo header whose number is in n.len */
4824 n = h2_phdr_to_ist(n.len);
4825 }
4826
4827 h2_trace_header(n, list[i].v, H2_EV_RX_FRAME|H2_EV_RX_HDR,
4828 ist(TRC_LOC), __FUNCTION__, h2c, NULL);
4829 }
4830 }
4831
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004832 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004833 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 +01004834 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4835 goto fail;
4836 }
4837
Willy Tarreau25919232019-01-03 14:48:18 +01004838 /* The PACK decompressor was updated, let's update the input buffer and
4839 * the parser's state to commit these changes and allow us to later
4840 * fail solely on the stream if needed.
4841 */
4842 b_del(&h2c->dbuf, h2c->dfl + hole);
4843 h2c->dfl = hole = 0;
4844 h2c->st0 = H2_CS_FRAME_H;
4845
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004846 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004847 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004848 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004849 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004850 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004851 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004852
Willy Tarreau88d138e2019-01-02 19:38:14 +01004853 if (*flags & H2_SF_HEADERS_RCVD)
4854 goto trailers;
4855
4856 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004857 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004858 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004859 else
4860 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004861
Christopher Faulet3d875582021-04-26 17:46:13 +02004862 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004863 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004864 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4865 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004866 goto fail;
4867 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004868
Willy Tarreau174b06a2018-04-25 18:13:58 +02004869 if (msgf & H2_MSGF_BODY) {
4870 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004871 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004872 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004873 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004874 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004875 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004876 if (msgf & H2_MSGF_BODYLESS_RSP)
4877 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004878
Christopher Fauletd0db4232021-01-22 11:46:30 +01004879 if (msgf & H2_MSGF_BODY_TUNNEL)
4880 *flags |= H2_SF_BODY_TUNNEL;
4881 else {
4882 /* Abort the tunnel attempt, if any */
4883 if (*flags & H2_SF_BODY_TUNNEL)
4884 *flags |= H2_SF_TUNNEL_ABRT;
4885 *flags &= ~H2_SF_BODY_TUNNEL;
4886 }
4887
Willy Tarreau88d138e2019-01-02 19:38:14 +01004888 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004889 /* indicate that a HEADERS frame was received for this stream, except
4890 * for 1xx responses. For 1xx responses, another HEADERS frame is
4891 * expected.
4892 */
4893 if (!(msgf & H2_MSGF_RSP_1XX))
4894 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004895
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004896 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
Christopher Faulet827a6292022-12-22 09:47:01 +01004897 if (msgf & H2_MSGF_RSP_1XX) {
4898 /* RFC9113#8.1 : HEADERS frame with the ES flag set that carries an informational status code is malformed */
4899 TRACE_STATE("invalid interim response with ES flag!", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2C_ERR|H2_EV_PROTO_ERR, h2c->conn);
4900 goto fail;
4901 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004902 /* no more data are expected for this message */
4903 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004904 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004905
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004906 if (msgf & H2_MSGF_EXT_CONNECT)
4907 *flags |= H2_SF_EXT_CONNECT_RCVD;
4908
Willy Tarreau86277d42019-01-02 15:36:11 +01004909 /* success */
4910 ret = 1;
4911
Willy Tarreau68dd9852017-07-03 14:44:26 +02004912 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004913 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004914 * move the remaining data over it.
4915 */
4916 if (hole) {
4917 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4918 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4919 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4920 b_sub(&h2c->dbuf, hole);
4921 }
4922
Christopher Faulet07f88d72021-04-21 10:39:53 +02004923 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004924 /* too large frames */
4925 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004926 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004927 }
4928
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004929 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004930 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004931 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004932 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004933 return ret;
4934
Willy Tarreau68dd9852017-07-03 14:44:26 +02004935 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004936 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004937 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004938
4939 trailers:
4940 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004941 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4942 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004943 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 +01004944 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004945 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004946 goto fail;
4947 }
4948
Christopher Faulet9b79a102019-07-15 11:22:56 +02004949 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004950 if (h2_make_htx_trailers(list, htx) <= 0) {
4951 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 +02004952 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004953 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004954 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004955}
4956
Christopher Faulet9b79a102019-07-15 11:22:56 +02004957/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004958 * parser state is automatically updated. Returns > 0 if it could completely
4959 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02004960 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004961 * DATA frame can return 0 as a valid result). Stream errors are reported in
4962 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4963 * have checked the frame header and ensured that the frame was complete or the
4964 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004965 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004966static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004967{
4968 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004969 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004970 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004971 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004972 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004973 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004974
Willy Tarreau7838a792019-08-12 18:42:03 +02004975 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4976
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004977 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004978
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004979 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
4980 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004981 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004982 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 +01004983 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004984 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004985 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004986
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004987try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004988 flen = h2c->dfl - h2c->dpl;
4989 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004990 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004991
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004992 if (flen > b_data(&h2c->dbuf)) {
4993 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004994 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004995 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004996 }
4997
Christopher Faulet9b79a102019-07-15 11:22:56 +02004998 block = htx_free_data_space(htx);
4999 if (!block) {
5000 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005001 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 +02005002 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005003 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005004 if (flen > block)
5005 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005006
Christopher Faulet9b79a102019-07-15 11:22:56 +02005007 /* here, flen is the max we can copy into the output buffer */
5008 block = b_contig_data(&h2c->dbuf, 0);
5009 if (flen > block)
5010 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005011
Christopher Faulet9b79a102019-07-15 11:22:56 +02005012 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005013 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 +02005014
Christopher Faulet9b79a102019-07-15 11:22:56 +02005015 b_del(&h2c->dbuf, sent);
5016 h2c->dfl -= sent;
5017 h2c->rcvd_c += sent;
5018 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005019
Christopher Faulet9b79a102019-07-15 11:22:56 +02005020 if (h2s->flags & H2_SF_DATA_CLEN) {
5021 h2s->body_len -= sent;
5022 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005023 }
5024
Christopher Faulet9b79a102019-07-15 11:22:56 +02005025 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005026 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005027 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 +01005028 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005029 }
5030
Christopher Faulet9b79a102019-07-15 11:22:56 +02005031 goto try_again;
5032
Willy Tarreau4a28da12018-01-04 14:41:00 +01005033 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005034 /* here we're done with the frame, all the payload (except padding) was
5035 * transferred.
5036 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005037
Christopher Faulet5be651d2021-01-22 15:28:03 +01005038 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5039 /* no more data are expected for this message. This add the EOM
5040 * flag but only on the response path or if no tunnel attempt
5041 * was aborted. Otherwise (request path + tunnel abrted), the
5042 * EOM was already reported.
5043 */
Christopher Faulet33724322021-02-10 09:04:59 +01005044 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5045 /* If we receive an empty DATA frame with ES flag while the HTX
5046 * message is empty, we must be sure to push a block to be sure
5047 * the HTX EOM flag will be handled on the other side. It is a
5048 * workaround because for now it is not possible to push empty
5049 * HTX DATA block. And without this block, there is no way to
5050 * "commit" the end of the message.
5051 */
5052 if (htx_is_empty(htx)) {
5053 if (!htx_add_endof(htx, HTX_BLK_EOT))
5054 goto fail;
5055 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005056 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005057 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005058 }
5059
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005060 h2c->rcvd_c += h2c->dpl;
5061 h2c->rcvd_s += h2c->dpl;
5062 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005063 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005064 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005065 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005066 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005067 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005068 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005069 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005070 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005071 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005072}
5073
Willy Tarreau115e83b2018-12-01 19:17:53 +01005074/* Try to send a HEADERS frame matching HTX response present in HTX message
5075 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5076 * must check the stream's status to detect any error which might have happened
5077 * subsequently to a successful send. The htx blocks are automatically removed
5078 * from the message. The htx message is assumed to be valid since produced from
5079 * the internal code, hence it contains a start line, an optional series of
5080 * header blocks and an end of header, otherwise an invalid frame could be
5081 * emitted and the resulting htx message could be left in an inconsistent state.
5082 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005083static size_t h2s_snd_fhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005084{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005085 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005086 struct h2c *h2c = h2s->h2c;
5087 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005088 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005089 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005090 struct htx_sl *sl;
5091 enum htx_blk_type type;
5092 int es_now = 0;
5093 int ret = 0;
5094 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005095
Willy Tarreau7838a792019-08-12 18:42:03 +02005096 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5097
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005098 /* get the start line (we do have one) and the rest of the headers,
5099 * that we dump starting at header 0 */
5100 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005101 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005102 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005103 type = htx_get_blk_type(blk);
5104
5105 if (type == HTX_BLK_UNUSED)
5106 continue;
5107
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005108 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005109 break;
5110
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005111 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005112 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005113 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5114 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5115 goto fail;
5116 }
5117
5118 list[hdr].n = htx_get_blk_name(htx, blk);
5119 list[hdr].v = htx_get_blk_value(htx, blk);
5120 hdr++;
5121 }
5122 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005123 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005124 sl = htx_get_blk_ptr(htx, blk);
5125 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005126 if (h2s->status == 204 || h2s->status == 304)
5127 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005128 if (h2s->status < 100 || h2s->status > 999) {
5129 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5130 goto fail;
5131 }
5132 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005133 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5134 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5135 h2s->status = 200;
5136 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5137 }
5138 else {
5139 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5140 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5141 goto fail;
5142 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005143 }
5144 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5145 /* Abort the tunnel attempt */
5146 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5147 h2s->flags |= H2_SF_TUNNEL_ABRT;
5148 }
5149 }
5150 else {
5151 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 +01005152 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005153 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005154 }
5155
Christopher Faulet56498132021-01-29 11:39:43 +01005156 /* The start-line me be defined */
5157 BUG_ON(!sl);
5158
Willy Tarreau115e83b2018-12-01 19:17:53 +01005159 /* marker for end of headers */
5160 list[hdr].n = ist("");
5161
Willy Tarreau9c218e72019-05-26 10:08:28 +02005162 mbuf = br_tail(h2c->mbuf);
5163 retry:
5164 if (!h2_get_buf(h2c, mbuf)) {
5165 h2c->flags |= H2_CF_MUX_MALLOC;
5166 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005167 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 +02005168 return 0;
5169 }
5170
Willy Tarreau115e83b2018-12-01 19:17:53 +01005171 chunk_reset(&outbuf);
5172
5173 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005174 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5175 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005176 break;
5177 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005178 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005179 }
5180
5181 if (outbuf.size < 9)
5182 goto full;
5183
5184 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5185 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5186 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5187 outbuf.data = 9;
5188
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005189 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5190 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5191 * dynamic table size update so that some clients are not
5192 * confused. In practice we only need to send the DTSU when the
5193 * advertised size is lower than the current one, and since we
5194 * don't use it and don't care about the default 4096 bytes,
5195 * we only ack it with a zero size thus we at most have to deal
5196 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5197 * below for the whole context and interoperability risks:
5198 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5199 */
5200 if (b_room(&outbuf) < 1)
5201 goto full;
5202 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5203
5204 /* let's not update the flags now but only once the buffer is
5205 * really committed.
5206 */
5207 }
5208
Willy Tarreau115e83b2018-12-01 19:17:53 +01005209 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005210 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005211 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005212 goto realign_again;
5213 goto full;
5214 }
5215
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005216 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED) {
5217 char sts[4];
5218
5219 h2_trace_header(ist(":status"), ist(ultoa_r(h2s->status, sts, sizeof(sts))),
5220 H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__,
5221 h2c, h2s);
5222 }
5223
Willy Tarreau115e83b2018-12-01 19:17:53 +01005224 /* encode all headers, stop at empty name */
5225 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5226 /* these ones do not exist in H2 and must be dropped. */
5227 if (isteq(list[hdr].n, ist("connection")) ||
5228 isteq(list[hdr].n, ist("proxy-connection")) ||
5229 isteq(list[hdr].n, ist("keep-alive")) ||
5230 isteq(list[hdr].n, ist("upgrade")) ||
5231 isteq(list[hdr].n, ist("transfer-encoding")))
5232 continue;
5233
Christopher Faulet86d144c2019-08-14 16:32:25 +02005234 /* Skip all pseudo-headers */
5235 if (*(list[hdr].n.ptr) == ':')
5236 continue;
5237
Willy Tarreau115e83b2018-12-01 19:17:53 +01005238 if (isteq(list[hdr].n, ist("")))
5239 break; // end
5240
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005241 if (!h2_encode_header(&outbuf, list[hdr].n, list[hdr].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5242 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005243 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005244 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005245 goto realign_again;
5246 goto full;
5247 }
5248 }
5249
Willy Tarreaucb985a42019-10-07 16:56:34 +02005250 /* update the frame's size */
5251 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5252
5253 if (outbuf.data > h2c->mfs + 9) {
5254 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5255 /* output full */
5256 if (b_space_wraps(mbuf))
5257 goto realign_again;
5258 goto full;
5259 }
5260 }
5261
Willy Tarreau3a537072021-06-17 08:40:04 +02005262 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5263
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005264 /* remove all header blocks including the EOH and compute the
5265 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005266 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005267 ret = 0;
5268 blk = htx_get_head_blk(htx);
5269 while (blk) {
5270 type = htx_get_blk_type(blk);
5271 ret += htx_get_blksz(blk);
5272 blk = htx_remove_blk(htx, blk);
5273 /* The removed block is the EOH */
5274 if (type == HTX_BLK_EOH)
5275 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005276 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005277
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005278 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005279 /* Response already closed: add END_STREAM */
5280 es_now = 1;
5281 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005282 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5283 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005284 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005285 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005286 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5287 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005288 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005289
Willy Tarreau115e83b2018-12-01 19:17:53 +01005290 if (es_now)
5291 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5292
5293 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005294 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005295
5296 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5297 * 1xx responses, another HEADERS frame is expected.
5298 */
Christopher Faulet89899422020-12-07 18:24:43 +01005299 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005300 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005301
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005302 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5303 /* was sent above */
5304 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005305 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005306 }
5307
Willy Tarreau115e83b2018-12-01 19:17:53 +01005308 if (es_now) {
5309 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005310 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 +01005311 if (h2s->st == H2_SS_OPEN)
5312 h2s->st = H2_SS_HLOC;
5313 else
5314 h2s_close(h2s);
5315 }
5316
5317 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005318 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005319 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005320 return ret;
5321 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005322 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5323 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005324 h2c->flags |= H2_CF_MUX_MFULL;
5325 h2s->flags |= H2_SF_BLK_MROOM;
5326 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005327 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 +01005328 goto end;
5329 fail:
5330 /* unparsable HTX messages, too large ones to be produced in the local
5331 * list etc go here (unrecoverable errors).
5332 */
5333 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5334 ret = 0;
5335 goto end;
5336}
5337
Willy Tarreau80739692018-10-05 11:35:57 +02005338/* Try to send a HEADERS frame matching HTX request present in HTX message
5339 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5340 * must check the stream's status to detect any error which might have happened
5341 * subsequently to a successful send. The htx blocks are automatically removed
5342 * from the message. The htx message is assumed to be valid since produced from
5343 * the internal code, hence it contains a start line, an optional series of
5344 * header blocks and an end of header, otherwise an invalid frame could be
5345 * emitted and the resulting htx message could be left in an inconsistent state.
5346 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005347static size_t h2s_snd_bhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005348{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005349 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005350 struct h2c *h2c = h2s->h2c;
5351 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005352 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005353 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005354 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005355 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005356 enum htx_blk_type type;
5357 int es_now = 0;
5358 int ret = 0;
5359 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005360 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005361
Willy Tarreau7838a792019-08-12 18:42:03 +02005362 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5363
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005364 /* get the start line (we do have one) and the rest of the headers,
5365 * that we dump starting at header 0 */
5366 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005367 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005368 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005369 type = htx_get_blk_type(blk);
5370
5371 if (type == HTX_BLK_UNUSED)
5372 continue;
5373
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005374 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005375 break;
5376
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005377 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005378 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005379 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5380 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5381 goto fail;
5382 }
Willy Tarreau80739692018-10-05 11:35:57 +02005383
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005384 list[hdr].n = htx_get_blk_name(htx, blk);
5385 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005386
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005387 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005388 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5389 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005390 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005391
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005392 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005393 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005394 /* rfc 7230 #6.1 Connection = list of tokens */
5395 struct ist connection_ist = list[hdr].v;
5396 do {
5397 if (isteqi(iststop(connection_ist, ','),
5398 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005399 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5400 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5401 goto fail;
5402 }
5403
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005404 TRACE_STATE("convert upgrade to extended connect method", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005405 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5406 sl->info.req.meth = HTTP_METH_CONNECT;
5407 meth = ist("CONNECT");
5408
5409 extended_connect = 1;
5410 break;
5411 }
5412
5413 connection_ist = istadv(istfind(connection_ist, ','), 1);
5414 } while (istlen(connection_ist));
5415 }
5416
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005417 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005418 /* rfc 7230 #6.7 Upgrade = list of protocols
5419 * rfc 8441 #4 Extended connect = :protocol is single-valued
5420 *
5421 * only first HTTP/1 protocol is preserved
5422 */
5423 const struct ist protocol = iststop(list[hdr].v, ',');
5424 /* upgrade_protocol field is 16 bytes long in h2s */
5425 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5426 }
5427
5428 if (isteq(list[hdr].n, ist("host")))
5429 host = list[hdr].v;
5430
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005431 hdr++;
5432 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005433 else if (type == HTX_BLK_REQ_SL) {
5434 BUG_ON(sl); /* Only one start-line expected */
5435 sl = htx_get_blk_ptr(htx, blk);
5436 meth = htx_sl_req_meth(sl);
5437 uri = htx_sl_req_uri(sl);
5438 if (sl->info.req.meth == HTTP_METH_HEAD)
5439 h2s->flags |= H2_SF_BODYLESS_RESP;
5440 if (unlikely(uri.len == 0)) {
5441 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5442 goto fail;
5443 }
5444 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005445 else {
5446 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5447 goto fail;
5448 }
Willy Tarreau80739692018-10-05 11:35:57 +02005449 }
5450
Christopher Faulet56498132021-01-29 11:39:43 +01005451 /* The start-line me be defined */
5452 BUG_ON(!sl);
5453
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005454 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005455 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005456 struct server *srv = objt_server(h2c->conn->target);
5457
5458 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005459 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005460 list[hdr].v = ist(srv->id);
5461 hdr++;
5462 }
5463 }
5464
Willy Tarreau80739692018-10-05 11:35:57 +02005465 /* marker for end of headers */
5466 list[hdr].n = ist("");
5467
Willy Tarreau9c218e72019-05-26 10:08:28 +02005468 mbuf = br_tail(h2c->mbuf);
5469 retry:
5470 if (!h2_get_buf(h2c, mbuf)) {
5471 h2c->flags |= H2_CF_MUX_MALLOC;
5472 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005473 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 +02005474 return 0;
5475 }
5476
Willy Tarreau80739692018-10-05 11:35:57 +02005477 chunk_reset(&outbuf);
5478
5479 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005480 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5481 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005482 break;
5483 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005484 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005485 }
5486
5487 if (outbuf.size < 9)
5488 goto full;
5489
5490 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5491 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5492 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5493 outbuf.data = 9;
5494
5495 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005496 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005497 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005498 goto realign_again;
5499 goto full;
5500 }
5501
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005502 h2_trace_header(ist(":method"), meth, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5503
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005504 auth = ist(NULL);
5505
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005506 /* RFC7540 #8.3: the CONNECT method must have :
5507 * - :authority set to the URI part (host:port)
5508 * - :method set to CONNECT
5509 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005510 *
5511 * Note that this is not applicable in case of the Extended CONNECT
5512 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005513 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005514 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005515 auth = uri;
5516
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005517 if (!h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5518 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005519 /* output full */
5520 if (b_space_wraps(mbuf))
5521 goto realign_again;
5522 goto full;
5523 }
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005524
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005525 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005526 } else {
5527 /* other methods need a :scheme. If an authority is known from
5528 * the request line, it must be sent, otherwise only host is
5529 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005530 *
5531 * This code is also applicable for Extended CONNECT protocol
5532 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005533 */
5534 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005535
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005536 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5537 /* the URI seems to start with a scheme */
5538 int len = 1;
5539
5540 while (len < uri.len && uri.ptr[len] != ':')
5541 len++;
5542
5543 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5544 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005545 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005546 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005547
5548 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005549 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005550 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5551 auth.len++;
5552
Tim Duesterhus154374c2021-03-02 18:57:27 +01005553 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005554 }
5555 }
5556
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005557 /* For Extended CONNECT, the :authority must be present.
5558 * Use host value for it.
5559 */
5560 if (unlikely(extended_connect) && isttest(host))
5561 auth = host;
5562
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005563 if (!scheme.len) {
5564 /* no explicit scheme, we're using an origin-form URI,
5565 * probably from an H1 request transcoded to H2 via an
5566 * external layer, then received as H2 without authority.
5567 * So we have to look up the scheme from the HTX flags.
5568 * In such a case only http and https are possible, and
5569 * https is the default (sent by browsers).
5570 */
5571 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5572 scheme = ist("http");
5573 else
5574 scheme = ist("https");
5575 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005576
5577 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005578 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005579 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005580 goto realign_again;
5581 goto full;
5582 }
Willy Tarreau80739692018-10-05 11:35:57 +02005583
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005584 if (auth.len &&
5585 !h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5586 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005587 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005588 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005589 goto realign_again;
5590 goto full;
5591 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005592
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005593 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5594 * be sent as '/' or '*'.
5595 */
5596 if (unlikely(!uri.len)) {
5597 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5598 uri = ist("*");
5599 else
5600 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005601 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005602
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005603 if (!hpack_encode_path(&outbuf, uri)) {
5604 /* output full */
5605 if (b_space_wraps(mbuf))
5606 goto realign_again;
5607 goto full;
5608 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005609
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005610 h2_trace_header(ist(":path"), uri, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5611
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005612 /* encode the pseudo-header protocol from rfc8441 if using
5613 * Extended CONNECT method.
5614 */
5615 if (unlikely(extended_connect)) {
5616 const struct ist protocol = ist(h2s->upgrade_protocol);
5617 if (isttest(protocol)) {
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005618 if (!h2_encode_header(&outbuf, ist(":protocol"), protocol, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5619 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005620 /* output full */
5621 if (b_space_wraps(mbuf))
5622 goto realign_again;
5623 goto full;
5624 }
5625 }
5626 }
Willy Tarreau80739692018-10-05 11:35:57 +02005627 }
5628
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005629 /* encode all headers, stop at empty name. Host is only sent if we
5630 * do not provide an authority.
5631 */
Willy Tarreau80739692018-10-05 11:35:57 +02005632 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005633 struct ist n = list[hdr].n;
5634 struct ist v = list[hdr].v;
5635
Willy Tarreau80739692018-10-05 11:35:57 +02005636 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005637 if (isteq(n, ist("connection")) ||
5638 (auth.len && isteq(n, ist("host"))) ||
5639 isteq(n, ist("proxy-connection")) ||
5640 isteq(n, ist("keep-alive")) ||
5641 isteq(n, ist("upgrade")) ||
5642 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005643 continue;
5644
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005645 if (isteq(n, ist("te"))) {
5646 /* "te" may only be sent with "trailers" if this value
5647 * is present, otherwise it must be deleted.
5648 */
5649 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005650 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005651 continue;
5652 v = ist("trailers");
5653 }
5654
Christopher Faulet86d144c2019-08-14 16:32:25 +02005655 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005656 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005657 continue;
5658
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005659 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005660 break; // end
5661
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005662 if (!h2_encode_header(&outbuf, n, v, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005663 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005664 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005665 goto realign_again;
5666 goto full;
5667 }
5668 }
5669
Willy Tarreaucb985a42019-10-07 16:56:34 +02005670 /* update the frame's size */
5671 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5672
5673 if (outbuf.data > h2c->mfs + 9) {
5674 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5675 /* output full */
5676 if (b_space_wraps(mbuf))
5677 goto realign_again;
5678 goto full;
5679 }
5680 }
5681
Willy Tarreau3a537072021-06-17 08:40:04 +02005682 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5683
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005684 /* remove all header blocks including the EOH and compute the
5685 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005686 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005687 ret = 0;
5688 blk = htx_get_head_blk(htx);
5689 while (blk) {
5690 type = htx_get_blk_type(blk);
5691 ret += htx_get_blksz(blk);
5692 blk = htx_remove_blk(htx, blk);
5693 /* The removed block is the EOH */
5694 if (type == HTX_BLK_EOH)
5695 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005696 }
Willy Tarreau80739692018-10-05 11:35:57 +02005697
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005698 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005699 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005700 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005701 }
5702 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5703 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5704 * request)
5705 */
5706 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5707 es_now = 1;
5708 }
Willy Tarreau80739692018-10-05 11:35:57 +02005709
Willy Tarreau80739692018-10-05 11:35:57 +02005710 if (es_now)
5711 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5712
5713 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005714 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005715 h2s->flags |= H2_SF_HEADERS_SENT;
5716 h2s->st = H2_SS_OPEN;
5717
Willy Tarreau80739692018-10-05 11:35:57 +02005718 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005719 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 +02005720 // trim any possibly pending data (eg: inconsistent content-length)
5721 h2s->flags |= H2_SF_ES_SENT;
5722 h2s->st = H2_SS_HLOC;
5723 }
5724
Willy Tarreau80739692018-10-05 11:35:57 +02005725 end:
5726 return ret;
5727 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005728 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5729 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005730 h2c->flags |= H2_CF_MUX_MFULL;
5731 h2s->flags |= H2_SF_BLK_MROOM;
5732 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005733 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 +02005734 goto end;
5735 fail:
5736 /* unparsable HTX messages, too large ones to be produced in the local
5737 * list etc go here (unrecoverable errors).
5738 */
5739 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5740 ret = 0;
5741 goto end;
5742}
5743
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005744/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005745 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5746 * caller must check the stream's status to detect any error which might have
5747 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005748 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005749 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005750static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005751{
5752 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005753 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005754 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005755 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005756 size_t total = 0;
5757 int es_now = 0;
5758 int bsize; /* htx block size */
5759 int fsize; /* h2 frame size */
5760 struct htx_blk *blk;
5761 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005762 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005763
Willy Tarreau7838a792019-08-12 18:42:03 +02005764 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5765
Willy Tarreau98de12a2018-12-12 07:03:00 +01005766 htx = htx_from_buf(buf);
5767
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005768 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005769
5770 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005771 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005772 goto end;
5773
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005774 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005775 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5776 /* The response HEADERS frame not received yet. Thus the tunnel
5777 * is not fully established yet. In this situation, we block
5778 * data sending.
5779 */
5780 h2s->flags |= H2_SF_BLK_MBUSY;
5781 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5782 goto end;
5783 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005784 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5785 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5786 * Thus the stream is closed with the CANCEL error. The error will be reported to
5787 * the upper layer as aserver abort. But at this stage there is nothing more we can
5788 * do. We just wait for the end of the response to be sure to not truncate it.
5789 */
5790 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5791 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5792 h2s->flags |= H2_SF_BLK_MBUSY;
5793 }
5794 else {
5795 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5796 h2s_error(h2s, H2_ERR_CANCEL);
5797 }
5798 goto end;
5799 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005800
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005801 blk = htx_get_head_blk(htx);
5802 type = htx_get_blk_type(blk);
5803 bsize = htx_get_blksz(blk);
5804 fsize = bsize;
5805 trunc_out = 0;
5806 if (type != HTX_BLK_DATA)
5807 goto end;
5808
Willy Tarreau9c218e72019-05-26 10:08:28 +02005809 mbuf = br_tail(h2c->mbuf);
5810 retry:
5811 if (!h2_get_buf(h2c, mbuf)) {
5812 h2c->flags |= H2_CF_MUX_MALLOC;
5813 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005814 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 +02005815 goto end;
5816 }
5817
Willy Tarreau98de12a2018-12-12 07:03:00 +01005818 /* Perform some optimizations to reduce the number of buffer copies.
5819 * First, if the mux's buffer is empty and the htx area contains
5820 * exactly one data block of the same size as the requested count, and
5821 * this count fits within the frame size, the stream's window size, and
5822 * the connection's window size, then it's possible to simply swap the
5823 * caller's buffer with the mux's output buffer and adjust offsets and
5824 * length to match the entire DATA HTX block in the middle. In this
5825 * case we perform a true zero-copy operation from end-to-end. This is
5826 * the situation that happens all the time with large files. Second, if
5827 * this is not possible, but the mux's output buffer is empty, we still
5828 * have an opportunity to avoid the copy to the intermediary buffer, by
5829 * making the intermediary buffer's area point to the output buffer's
5830 * area. In this case we want to skip the HTX header to make sure that
5831 * copies remain aligned and that this operation remains possible all
5832 * the time. This goes for headers, data blocks and any data extracted
5833 * from the HTX blocks.
5834 */
5835 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005836 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005837 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005838 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005839
Willy Tarreaubcc45952019-05-26 10:05:50 +02005840 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005841 /* Too bad there are data left there. We're willing to memcpy/memmove
5842 * up to 1/4 of the buffer, which means that it's OK to copy a large
5843 * frame into a buffer containing few data if it needs to be realigned,
5844 * and that it's also OK to copy few data without realigning. Otherwise
5845 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005846 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005847 if (fsize + 9 <= b_room(mbuf) &&
5848 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005849 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5850 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 +01005851 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005852 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005853
Willy Tarreau9c218e72019-05-26 10:08:28 +02005854 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5855 goto retry;
5856
Willy Tarreau98de12a2018-12-12 07:03:00 +01005857 h2c->flags |= H2_CF_MUX_MFULL;
5858 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005859 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 +01005860 goto end;
5861 }
5862
Christopher Faulet925abdf2021-04-27 22:51:07 +02005863 if (htx->flags & HTX_FL_EOM) {
5864 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5865 * message)
5866 */
5867 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5868 es_now = 1;
5869 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005870 /* map an H2 frame to the HTX block so that we can put the
5871 * frame header there.
5872 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005873 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5874 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005875
5876 /* prepend an H2 DATA frame header just before the DATA block */
5877 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5878 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005879 if (es_now)
5880 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005881 h2_set_frame_size(outbuf.area, fsize);
5882
5883 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005884 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005885 h2c->mws -= fsize;
5886
5887 /* and exchange with our old area */
5888 buf->area = old_area;
5889 buf->data = buf->head = 0;
5890 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005891 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005892
5893 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 +02005894 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005895 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005896
Willy Tarreau98de12a2018-12-12 07:03:00 +01005897 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005898 /* for DATA and EOM we'll have to emit a frame, even if empty */
5899
5900 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005901 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5902 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005903 break;
5904 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005905 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005906 }
5907
5908 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005909 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5910 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005911 h2c->flags |= H2_CF_MUX_MFULL;
5912 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005913 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005914 goto end;
5915 }
5916
5917 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5918 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5919 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5920 outbuf.data = 9;
5921
5922 /* we have in <fsize> the exact number of bytes we need to copy from
5923 * the HTX buffer. We need to check this against the connection's and
5924 * the stream's send windows, and to ensure that this fits in the max
5925 * frame size and in the buffer's available space minus 9 bytes (for
5926 * the frame header). The connection's flow control is applied last so
5927 * that we can use a separate list of streams which are immediately
5928 * unblocked on window opening. Note: we don't implement padding.
5929 */
5930
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005931 if (!fsize)
5932 goto send_empty;
5933
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005934 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005935 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005936 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005937 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005938 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005939 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 +01005940 goto end;
5941 }
5942
Willy Tarreauee573762018-12-04 15:25:57 +01005943 if (fsize > count)
5944 fsize = count;
5945
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005946 if (fsize > h2s_mws(h2s))
5947 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005948
5949 if (h2c->mfs && fsize > h2c->mfs)
5950 fsize = h2c->mfs; // >0
5951
5952 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005953 /* It doesn't fit at once. If it at least fits once split and
5954 * the amount of data to move is low, let's defragment the
5955 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005956 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005957 if (b_space_wraps(mbuf) &&
5958 (fsize + 9 <= b_room(mbuf)) &&
5959 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005960 goto realign_again;
5961 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005962 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005963
5964 if (fsize <= 0) {
5965 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005966 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5967 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005968 h2c->flags |= H2_CF_MUX_MFULL;
5969 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005970 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005971 goto end;
5972 }
5973 }
5974
5975 if (h2c->mws <= 0) {
5976 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005977 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 +01005978 goto end;
5979 }
5980
5981 if (fsize > h2c->mws)
5982 fsize = h2c->mws;
5983
5984 /* now let's copy this this into the output buffer */
5985 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005986 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005987 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005988 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005989
5990 send_empty:
5991 /* update the frame's size */
5992 h2_set_frame_size(outbuf.area, fsize);
5993
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005994 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005995 total += fsize;
5996 if (fsize == bsize) {
5997 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005998 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5999 /* EOM+empty: we may need to add END_STREAM (except for tunneled
6000 * message)
6001 */
6002 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
6003 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006004 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006005 }
6006 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006007 /* we've truncated this block */
6008 htx_cut_data_blk(htx, blk, fsize);
6009 }
6010
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006011 if (es_now)
6012 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6013
6014 /* commit the H2 response */
6015 b_add(mbuf, fsize + 9);
6016
Christopher Faulet925abdf2021-04-27 22:51:07 +02006017 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006018 if (es_now) {
6019 if (h2s->st == H2_SS_OPEN)
6020 h2s->st = H2_SS_HLOC;
6021 else
6022 h2s_close(h2s);
6023
6024 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006025 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 +01006026 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006027 else if (fsize) {
6028 if (fsize == bsize) {
6029 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6030 goto new_frame;
6031 }
6032 else if (trunc_out) {
6033 /* we've truncated this block */
6034 goto new_frame;
6035 }
6036 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006037
6038 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006039 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006040 return total;
6041}
6042
Christopher Faulet991febd2020-12-02 15:17:31 +01006043/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6044 * ES flag set for stream <h2s>. This function is called for response known to
6045 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006046 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006047 * which might have happened subsequently to a successful send. Returns the
6048 * number of data bytes consumed, or zero if nothing done.
6049 */
6050static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6051{
6052 struct h2c *h2c = h2s->h2c;
6053 struct htx *htx;
6054 int bsize; /* htx block size */
6055 int fsize; /* h2 frame size */
6056 struct htx_blk *blk;
6057 enum htx_blk_type type;
6058 size_t total = 0;
6059
6060 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6061
Christopher Faulet991febd2020-12-02 15:17:31 +01006062 htx = htx_from_buf(buf);
6063
6064 next_data:
6065 if (!count || htx_is_empty(htx))
6066 goto end;
6067 blk = htx_get_head_blk(htx);
6068 type = htx_get_blk_type(blk);
6069 bsize = htx_get_blksz(blk);
6070 fsize = bsize;
6071 if (type != HTX_BLK_DATA)
6072 goto end;
6073
6074 if (fsize > count)
6075 fsize = count;
6076
6077 if (fsize != bsize)
6078 goto skip_data;
6079
6080 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6081 goto skip_data;
6082
6083 /* Here, it is the last block and it is also the end of the message. So
6084 * we can emit an empty DATA frame with the ES flag set
6085 */
6086 if (h2_send_empty_data_es(h2s) <= 0)
6087 goto end;
6088
6089 if (h2s->st == H2_SS_OPEN)
6090 h2s->st = H2_SS_HLOC;
6091 else
6092 h2s_close(h2s);
6093
6094 skip_data:
6095 /* consume incoming HTX block */
6096 total += fsize;
6097 if (fsize == bsize) {
6098 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6099 htx_remove_blk(htx, blk);
6100 goto next_data;
6101 }
6102 else {
6103 /* we've truncated this block */
6104 htx_cut_data_blk(htx, blk, fsize);
6105 }
6106
6107 end:
6108 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6109 return total;
6110}
6111
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006112/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6113 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6114 * processed. The caller must check the stream's status to detect any error
6115 * which might have happened subsequently to a successful send. The htx blocks
6116 * are automatically removed from the message. The htx message is assumed to be
6117 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006118 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6119 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006120 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006121static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006122{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006123 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006124 struct h2c *h2c = h2s->h2c;
6125 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006126 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006127 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006128 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006129 int ret = 0;
6130 int hdr;
6131 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006132
Willy Tarreau7838a792019-08-12 18:42:03 +02006133 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6134
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006135 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006136 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006137 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006138 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006139
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006140 if (type == HTX_BLK_UNUSED)
6141 continue;
6142
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006143 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006144 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006145 if (type == HTX_BLK_TLR) {
6146 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6147 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6148 goto fail;
6149 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006150
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006151 list[hdr].n = htx_get_blk_name(htx, blk);
6152 list[hdr].v = htx_get_blk_value(htx, blk);
6153 hdr++;
6154 }
6155 else {
6156 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 +01006157 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006158 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006159 }
6160
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006161 /* marker for end of trailers */
6162 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006163
Willy Tarreau9c218e72019-05-26 10:08:28 +02006164 mbuf = br_tail(h2c->mbuf);
6165 retry:
6166 if (!h2_get_buf(h2c, mbuf)) {
6167 h2c->flags |= H2_CF_MUX_MALLOC;
6168 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006169 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 +02006170 goto end;
6171 }
6172
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006173 chunk_reset(&outbuf);
6174
6175 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006176 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6177 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006178 break;
6179 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006180 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006181 }
6182
6183 if (outbuf.size < 9)
6184 goto full;
6185
6186 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6187 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6188 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6189 outbuf.data = 9;
6190
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006191 /* encode all headers */
6192 for (idx = 0; idx < hdr; idx++) {
6193 /* these ones do not exist in H2 or must not appear in
6194 * trailers and must be dropped.
6195 */
6196 if (isteq(list[idx].n, ist("host")) ||
6197 isteq(list[idx].n, ist("content-length")) ||
6198 isteq(list[idx].n, ist("connection")) ||
6199 isteq(list[idx].n, ist("proxy-connection")) ||
6200 isteq(list[idx].n, ist("keep-alive")) ||
6201 isteq(list[idx].n, ist("upgrade")) ||
6202 isteq(list[idx].n, ist("te")) ||
6203 isteq(list[idx].n, ist("transfer-encoding")))
6204 continue;
6205
Christopher Faulet86d144c2019-08-14 16:32:25 +02006206 /* Skip all pseudo-headers */
6207 if (*(list[idx].n.ptr) == ':')
6208 continue;
6209
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01006210 if (!h2_encode_header(&outbuf, list[idx].n, list[idx].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
6211 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006212 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006213 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006214 goto realign_again;
6215 goto full;
6216 }
6217 }
6218
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006219 if (outbuf.data == 9) {
6220 /* here we have a problem, we have nothing to emit (either we
6221 * received an empty trailers block followed or we removed its
6222 * contents above). Because of this we can't send a HEADERS
6223 * frame, so we have to cheat and instead send an empty DATA
6224 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006225 */
6226 outbuf.area[3] = H2_FT_DATA;
6227 outbuf.area[4] = H2_F_DATA_END_STREAM;
6228 }
6229
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006230 /* update the frame's size */
6231 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6232
Willy Tarreau572d9f52019-10-11 16:58:37 +02006233 if (outbuf.data > h2c->mfs + 9) {
6234 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6235 /* output full */
6236 if (b_space_wraps(mbuf))
6237 goto realign_again;
6238 goto full;
6239 }
6240 }
6241
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006242 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006243 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 +02006244 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006245 h2s->flags |= H2_SF_ES_SENT;
6246
6247 if (h2s->st == H2_SS_OPEN)
6248 h2s->st = H2_SS_HLOC;
6249 else
6250 h2s_close(h2s);
6251
6252 /* OK we could properly deliver the response */
6253 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006254 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006255 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006256 blk = htx_get_head_blk(htx);
6257 while (blk) {
6258 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006259 ret += htx_get_blksz(blk);
6260 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006261 /* The removed block is the EOT */
6262 if (type == HTX_BLK_EOT)
6263 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006264 }
6265
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006266 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006267 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006268 return ret;
6269 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006270 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6271 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006272 h2c->flags |= H2_CF_MUX_MFULL;
6273 h2s->flags |= H2_SF_BLK_MROOM;
6274 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006275 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 +01006276 goto end;
6277 fail:
6278 /* unparsable HTX messages, too large ones to be produced in the local
6279 * list etc go here (unrecoverable errors).
6280 */
6281 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6282 ret = 0;
6283 goto end;
6284}
6285
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006286/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6287 * event subscriber <es> is not allowed to change from a previous call as long
6288 * as at least one event is still subscribed. The <event_type> must only be a
6289 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006290 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006291static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006292{
Willy Tarreau36c22322022-05-27 10:41:24 +02006293 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006294 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006295
Willy Tarreau7838a792019-08-12 18:42:03 +02006296 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006297
6298 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006299 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006300
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006301 es->events |= event_type;
6302 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006303
6304 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006305 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006306
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006307 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006308 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006309 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006310 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006311 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006312 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006313 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006314 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006315 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006316 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006317 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006318 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006319}
6320
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006321/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6322 * The <es> pointer is not allowed to differ from the one passed to the
6323 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006324 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006325static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006326{
Willy Tarreau36c22322022-05-27 10:41:24 +02006327 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006328
Willy Tarreau7838a792019-08-12 18:42:03 +02006329 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006330
6331 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006332 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006333
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006334 es->events &= ~event_type;
6335 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006336 h2s->subs = NULL;
6337
6338 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006339 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006340
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006341 if (event_type & SUB_RETRY_SEND) {
Frédéric Lécaille67fda162022-06-30 12:01:54 +02006342 TRACE_DEVEL("unsubscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006343 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006344 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6345 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006346 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006347
Willy Tarreau7838a792019-08-12 18:42:03 +02006348 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006349 return 0;
6350}
6351
6352
Christopher Faulet564e39c2021-09-21 15:50:55 +02006353/* Called from the upper layer, to receive data
6354 *
6355 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6356 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6357 * means the caller wants to flush input data (from the mux buffer and the
6358 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6359 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6360 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6361 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6362 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6363 * copy as much data as possible.
6364 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006365static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006366{
Willy Tarreau36c22322022-05-27 10:41:24 +02006367 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006368 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006369 struct htx *h2s_htx = NULL;
6370 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006371 size_t ret = 0;
6372
Willy Tarreau7838a792019-08-12 18:42:03 +02006373 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6374
Olivier Houchard511efea2018-08-16 15:30:32 +02006375 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006376 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006377 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006378 /* Here htx_to_buf() will set buffer data to 0 because
6379 * the HTX is empty.
6380 */
6381 htx_to_buf(h2s_htx, &h2s->rxbuf);
6382 goto end;
6383 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006384
Christopher Faulet9b79a102019-07-15 11:22:56 +02006385 ret = h2s_htx->data;
6386 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006387
Christopher Faulet9b79a102019-07-15 11:22:56 +02006388 /* <buf> is empty and the message is small enough, swap the
6389 * buffers. */
6390 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006391 htx_to_buf(buf_htx, buf);
6392 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006393 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6394 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006395 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006396
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006397 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006398
6399 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6400 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6401 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006402 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006403 }
Christopher Faulet72722c02023-02-23 14:26:34 +01006404 else if (htx_is_empty(h2s_htx)) {
Christopher Faulet42432f32020-11-20 17:43:16 +01006405 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006406
Christopher Faulet72722c02023-02-23 14:26:34 +01006407 if (!(h2c->flags & H2_CF_IS_BACK) && (buf_htx->flags & HTX_FL_EOM)) {
6408 /* If request EOM is reported to the upper layer, it means the
6409 * H2S now expects data from the opposite side.
6410 */
6411 se_expect_data(h2s->sd);
6412 }
6413 }
6414
Christopher Faulet9b79a102019-07-15 11:22:56 +02006415 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6416 htx_to_buf(buf_htx, buf);
6417 htx_to_buf(h2s_htx, &h2s->rxbuf);
6418 ret -= h2s_htx->data;
6419
Christopher Faulet37070b22019-02-14 15:12:14 +01006420 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006421 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006422 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006423 else {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006424 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006425 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006426 se_fl_set(h2s->sd, SE_FL_EOI);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006427 /* Add EOS flag for tunnel */
6428 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006429 se_fl_set(h2s->sd, SE_FL_EOS);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006430 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006431 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006432 se_fl_set(h2s->sd, SE_FL_EOS);
6433 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
6434 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard638b7992018-08-16 15:41:52 +02006435 if (b_size(&h2s->rxbuf)) {
6436 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006437 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006438 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006439 }
6440
Willy Tarreau082f5592018-11-25 08:03:32 +01006441 if (ret && h2c->dsi == h2s->id) {
6442 /* demux is blocking on this stream's buffer */
6443 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006444 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006445 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006446
Willy Tarreau7838a792019-08-12 18:42:03 +02006447 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006448 return ret;
6449}
6450
Olivier Houchardd846c262018-10-19 17:24:29 +02006451
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006452/* Called from the upper layer, to send data from buffer <buf> for no more than
6453 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006454 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006455 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006456static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006457{
Willy Tarreau36c22322022-05-27 10:41:24 +02006458 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006459 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006460 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006461 struct htx *htx;
6462 struct htx_blk *blk;
6463 enum htx_blk_type btype;
6464 uint32_t bsize;
6465 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006466
Willy Tarreau7838a792019-08-12 18:42:03 +02006467 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6468
Olivier Houchardd360ac62019-03-22 17:37:16 +01006469 /* If we were not just woken because we wanted to send but couldn't,
6470 * and there's somebody else that is waiting to send, do nothing,
6471 * we will subscribe later and be put at the end of the list
6472 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006473 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006474 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6475 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 +01006476 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006477 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006478 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006479
Willy Tarreau7838a792019-08-12 18:42:03 +02006480 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6481 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 +02006482 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006483 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006484
Willy Tarreaucab22952019-10-31 15:48:18 +01006485 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006486 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006487 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);
6488 return 0;
6489 }
6490
Christopher Faulet9b79a102019-07-15 11:22:56 +02006491 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006492
Willy Tarreau0bad0432018-06-14 16:54:01 +02006493 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006494 h2s->flags |= H2_SF_OUTGOING_DATA;
6495
Christopher Faulet2e47e3a2023-01-13 11:40:24 +01006496 if (htx->extra && htx->extra != HTX_UNKOWN_PAYLOAD_LENGTH)
Willy Tarreau48770452022-08-18 16:03:51 +02006497 h2s->flags |= H2_SF_MORE_HTX_DATA;
6498 else
6499 h2s->flags &= ~H2_SF_MORE_HTX_DATA;
6500
Willy Tarreau751f2d02018-10-05 09:35:00 +02006501 if (h2s->id == 0) {
6502 int32_t id = h2c_get_next_sid(h2s->h2c);
6503
6504 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006505 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006506 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 +02006507 return 0;
6508 }
6509
6510 eb32_delete(&h2s->by_id);
6511 h2s->by_id.key = h2s->id = id;
6512 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006513 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006514 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6515 }
6516
Christopher Faulet9b79a102019-07-15 11:22:56 +02006517 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6518 count && !htx_is_empty(htx)) {
6519 idx = htx_get_head(htx);
6520 blk = htx_get_blk(htx, idx);
6521 btype = htx_get_blk_type(blk);
6522 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006523
Christopher Faulet9b79a102019-07-15 11:22:56 +02006524 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006525 case HTX_BLK_REQ_SL:
6526 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006527 ret = h2s_snd_bhdrs(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006528 if (ret > 0) {
6529 total += ret;
6530 count -= ret;
6531 if (ret < bsize)
6532 goto done;
6533 }
6534 break;
6535
Willy Tarreau115e83b2018-12-01 19:17:53 +01006536 case HTX_BLK_RES_SL:
6537 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006538 ret = h2s_snd_fhdrs(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006539 if (ret > 0) {
6540 total += ret;
6541 count -= ret;
6542 if (ret < bsize)
6543 goto done;
6544 }
6545 break;
6546
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006547 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006548 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006549 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6550 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6551 ret = h2s_skip_data(h2s, buf, count);
6552 else
6553 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006554 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006555 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006556 total += ret;
6557 count -= ret;
6558 if (ret < bsize)
6559 goto done;
6560 }
6561 break;
6562
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006563 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006564 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006565 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006566 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006567 if (ret > 0) {
6568 total += ret;
6569 count -= ret;
6570 if (ret < bsize)
6571 goto done;
6572 }
6573 break;
6574
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006575 default:
6576 htx_remove_blk(htx, blk);
6577 total += bsize;
6578 count -= bsize;
6579 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006580 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006581 }
6582
Christopher Faulet9b79a102019-07-15 11:22:56 +02006583 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006584 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006585 /* trim any possibly pending data after we close (extra CR-LF,
6586 * unprocessed trailers, abnormal extra data, ...)
6587 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006588 total += count;
6589 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006590 }
6591
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006592 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006593 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006594 TRACE_DEVEL("reporting RST/error to the app-layer stream", H2_EV_H2S_SEND|H2_EV_H2S_ERR|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006595 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006596 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006597 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006598 }
6599
Christopher Faulet9b79a102019-07-15 11:22:56 +02006600 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006601
Olivier Houchard7505f942018-08-21 18:10:44 +02006602 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006603 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006604 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 +02006605 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006606 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006607
Olivier Houchard7505f942018-08-21 18:10:44 +02006608 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006609 /* If we're waiting for flow control, and we got a shutr on the
6610 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006611 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006612 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02006613 if ((h2s->h2c->flags & H2_CF_RCVD_SHUT) &&
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006614 !b_data(&h2s->h2c->dbuf) &&
6615 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006616 TRACE_DEVEL("fctl with shutr, reporting error to app-layer", H2_EV_H2S_SEND|H2_EV_STRM_SEND|H2_EV_STRM_ERR, h2s->h2c->conn, h2s);
Willy Tarreau35c4dd02023-01-17 16:25:29 +01006617 se_fl_set_error(h2s->sd);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006618 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006619
Willy Tarreau5723f292020-01-10 15:16:57 +01006620 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6621 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006622 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006623 LIST_DEL_INIT(&h2s->list);
6624 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006625
Willy Tarreau7838a792019-08-12 18:42:03 +02006626 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006627 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006628}
6629
Willy Tarreau90bffa22022-09-01 19:06:44 +02006630/* appends some info about stream <h2s> to buffer <msg>, or does nothing if
Willy Tarreau7051f732022-09-02 15:22:12 +02006631 * <h2s> is NULL. Returns non-zero if the stream is considered suspicious. May
6632 * emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is not
6633 * NULL, otherwise a single line is used.
Willy Tarreau90bffa22022-09-01 19:06:44 +02006634 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006635static int h2_dump_h2s_info(struct buffer *msg, const struct h2s *h2s, const char *pfx)
Willy Tarreau90bffa22022-09-01 19:06:44 +02006636{
6637 int ret = 0;
6638
6639 if (!h2s)
6640 return ret;
6641
Willy Tarreau7051f732022-09-02 15:22:12 +02006642 chunk_appendf(msg, " h2s.id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u",
Willy Tarreau90bffa22022-09-01 19:06:44 +02006643 h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
6644 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006645 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf));
6646
6647 if (pfx)
6648 chunk_appendf(msg, "\n%s", pfx);
6649
6650 chunk_appendf(msg, " .sc=%p", h2s_sc(h2s));
Willy Tarreau90bffa22022-09-01 19:06:44 +02006651 if (h2s_sc(h2s))
6652 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6653 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
6654
Willy Tarreau7051f732022-09-02 15:22:12 +02006655 chunk_appendf(msg, " .sd=%p", h2s->sd);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006656 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
6657
Willy Tarreau7051f732022-09-02 15:22:12 +02006658 if (pfx)
6659 chunk_appendf(msg, "\n%s", pfx);
6660
Willy Tarreau90bffa22022-09-01 19:06:44 +02006661 chunk_appendf(msg, " .subs=%p", h2s->subs);
6662 if (h2s->subs) {
6663 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6664 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
6665 h2s->subs->tasklet->calls,
6666 h2s->subs->tasklet->context);
6667 if (h2s->subs->tasklet->calls >= 1000000)
6668 ret = 1;
6669 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6670 chunk_appendf(msg, ")");
6671 }
6672 return ret;
6673}
6674
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006675/* appends some info about connection <h2c> to buffer <msg>, or does nothing if
6676 * <h2c> is NULL. Returns non-zero if the connection is considered suspicious.
Willy Tarreau7051f732022-09-02 15:22:12 +02006677 * May emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is
6678 * not NULL, otherwise a single line is used.
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006679 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006680static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c, const char *pfx)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006681{
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006682 const struct buffer *hmbuf, *tmbuf;
6683 const struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006684 struct eb32_node *node;
6685 int fctl_cnt = 0;
6686 int send_cnt = 0;
6687 int tree_cnt = 0;
6688 int orph_cnt = 0;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006689 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006690
6691 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006692 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006693
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006694 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006695 fctl_cnt++;
6696
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006697 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006698 send_cnt++;
6699
6700 node = eb32_first(&h2c->streams_by_id);
6701 while (node) {
6702 h2s = container_of(node, struct h2s, by_id);
6703 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006704 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006705 orph_cnt++;
6706 node = eb32_next(node);
6707 }
6708
Willy Tarreau60f62682019-05-26 11:32:27 +02006709 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006710 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006711 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau7051f732022-09-02 15:22:12 +02006712 " .nbst=%u .nbsc=%u",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006713 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau7051f732022-09-02 15:22:12 +02006714 h2c->nb_streams, h2c->nb_sc);
6715
6716 if (pfx)
6717 chunk_appendf(msg, "\n%s", pfx);
6718
6719 chunk_appendf(msg, " .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
6720 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u",
6721 fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006722 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006723 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006724 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf));
6725
6726 if (pfx)
6727 chunk_appendf(msg, "\n%s", pfx);
6728
Christopher Faulet68ee7842022-10-12 10:21:33 +02006729 chunk_appendf(msg, " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau60f62682019-05-26 11:32:27 +02006730 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6731 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6732 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006733 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6734 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006735
Willy Tarreauf8c77092022-11-29 15:26:43 +01006736 chunk_appendf(msg, " .task=%p", h2c->task);
6737 if (h2c->task) {
6738 chunk_appendf(msg, " .exp=%s",
6739 h2c->task->expire ? tick_is_expired(h2c->task->expire, now_ms) ? "<PAST>" :
6740 human_time(TICKS_TO_MS(h2c->task->expire - now_ms), TICKS_TO_MS(1000)) : "<NEVER>");
6741 }
Willy Tarreau7051f732022-09-02 15:22:12 +02006742
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006743 return ret;
6744}
6745
6746/* for debugging with CLI's "show fd" command */
6747static int h2_show_fd(struct buffer *msg, struct connection *conn)
6748{
6749 struct h2c *h2c = conn->ctx;
6750 const struct h2s *h2s;
6751 struct eb32_node *node;
6752 int ret = 0;
6753
6754 if (!h2c)
6755 return ret;
6756
Willy Tarreau7051f732022-09-02 15:22:12 +02006757 ret |= h2_dump_h2c_info(msg, h2c, NULL);
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006758
6759 node = eb32_last(&h2c->streams_by_id);
6760 if (node) {
6761 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006762 chunk_appendf(msg, " last_h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006763 ret |= h2_dump_h2s_info(msg, h2s, NULL);
Willy Tarreau987c0632018-12-18 10:32:05 +01006764 }
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006765
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006766 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006767}
Willy Tarreau62f52692017-10-08 23:01:42 +02006768
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006769/* for debugging with CLI's "show sess" command. May emit multiple lines, each
6770 * new one being prefixed with <pfx>, if <pfx> is not NULL, otherwise a single
6771 * line is used. Each field starts with a space so it's safe to print it after
6772 * existing fields.
6773 */
6774static int h2_show_sd(struct buffer *msg, struct sedesc *sd, const char *pfx)
6775{
6776 struct h2s *h2s = sd->se;
6777 int ret = 0;
6778
6779 if (!h2s)
6780 return ret;
6781
6782 chunk_appendf(msg, " h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006783 ret |= h2_dump_h2s_info(msg, h2s, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006784 if (pfx)
6785 chunk_appendf(msg, "\n%s", pfx);
6786 chunk_appendf(msg, " h2c=%p", h2s->h2c);
Willy Tarreau7051f732022-09-02 15:22:12 +02006787 ret |= h2_dump_h2c_info(msg, h2s->h2c, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006788 return ret;
6789}
6790
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006791/* Migrate the the connection to the current thread.
6792 * Return 0 if successful, non-zero otherwise.
6793 * Expected to be called with the old thread lock held.
6794 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006795static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006796{
6797 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006798 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006799
6800 if (fd_takeover(conn->handle.fd, conn) != 0)
6801 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006802
6803 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6804 /* We failed to takeover the xprt, even if the connection may
6805 * still be valid, flag it as error'd, as we have already
6806 * taken over the fd, and wake the tasklet, so that it will
6807 * destroy it.
6808 */
6809 conn->flags |= CO_FL_ERROR;
6810 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6811 return -1;
6812 }
6813
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006814 if (h2c->wait_event.events)
6815 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6816 h2c->wait_event.events, &h2c->wait_event);
6817 /* To let the tasklet know it should free itself, and do nothing else,
6818 * set its context to NULL.
6819 */
6820 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006821 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006822
6823 task = h2c->task;
6824 if (task) {
6825 task->context = NULL;
6826 h2c->task = NULL;
6827 __ha_barrier_store();
6828 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006829
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006830 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006831 if (!h2c->task) {
6832 h2_release(h2c);
6833 return -1;
6834 }
6835 h2c->task->process = h2_timeout_task;
6836 h2c->task->context = h2c;
6837 }
6838 h2c->wait_event.tasklet = tasklet_new();
6839 if (!h2c->wait_event.tasklet) {
6840 h2_release(h2c);
6841 return -1;
6842 }
6843 h2c->wait_event.tasklet->process = h2_io_cb;
6844 h2c->wait_event.tasklet->context = h2c;
6845 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6846 SUB_RETRY_RECV, &h2c->wait_event);
6847
6848 return 0;
6849}
6850
Willy Tarreau62f52692017-10-08 23:01:42 +02006851/*******************************************************/
6852/* functions below are dedicated to the config parsers */
6853/*******************************************************/
6854
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006855/* config parser for global "tune.h2.header-table-size" */
6856static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006857 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006858 char **err)
6859{
6860 if (too_many_args(1, args, err, NULL))
6861 return -1;
6862
6863 h2_settings_header_table_size = atoi(args[1]);
6864 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6865 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6866 return -1;
6867 }
6868 return 0;
6869}
Willy Tarreau62f52692017-10-08 23:01:42 +02006870
Willy Tarreaue6baec02017-07-27 11:45:11 +02006871/* config parser for global "tune.h2.initial-window-size" */
6872static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006873 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006874 char **err)
6875{
6876 if (too_many_args(1, args, err, NULL))
6877 return -1;
6878
6879 h2_settings_initial_window_size = atoi(args[1]);
6880 if (h2_settings_initial_window_size < 0) {
6881 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6882 return -1;
6883 }
6884 return 0;
6885}
6886
Willy Tarreau5242ef82017-07-27 11:47:28 +02006887/* config parser for global "tune.h2.max-concurrent-streams" */
6888static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006889 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006890 char **err)
6891{
6892 if (too_many_args(1, args, err, NULL))
6893 return -1;
6894
6895 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006896 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006897 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6898 return -1;
6899 }
6900 return 0;
6901}
6902
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006903/* config parser for global "tune.h2.max-frame-size" */
6904static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006905 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006906 char **err)
6907{
6908 if (too_many_args(1, args, err, NULL))
6909 return -1;
6910
6911 h2_settings_max_frame_size = atoi(args[1]);
6912 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6913 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6914 return -1;
6915 }
6916 return 0;
6917}
6918
Willy Tarreau62f52692017-10-08 23:01:42 +02006919
6920/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006921/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006922/***************************************/
6923
6924/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006925static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006926 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006927 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006928 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006929 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006930 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006931 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006932 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02006933 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02006934 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006935 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006936 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006937 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006938 .shutr = h2_shutr,
6939 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006940 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006941 .show_fd = h2_show_fd,
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006942 .show_sd = h2_show_sd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006943 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02006944 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006945 .name = "H2",
6946};
6947
Christopher Faulet32f61c02018-04-10 14:33:41 +02006948static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006949 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006950
Willy Tarreau0108d902018-11-25 19:14:37 +01006951INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6952
Willy Tarreau62f52692017-10-08 23:01:42 +02006953/* config keyword parsers */
6954static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006955 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006956 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006957 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006958 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006959 { 0, NULL, NULL }
6960}};
6961
Willy Tarreau0108d902018-11-25 19:14:37 +01006962INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006963
6964/* initialize internal structs after the config is parsed.
6965 * Returns zero on success, non-zero on error.
6966 */
6967static int init_h2()
6968{
6969 pool_head_hpack_tbl = create_pool("hpack_tbl",
6970 h2_settings_header_table_size,
6971 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006972 if (!pool_head_hpack_tbl) {
6973 ha_alert("failed to allocate hpack_tbl memory pool\n");
6974 return (ERR_ALERT | ERR_FATAL);
6975 }
6976 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006977}
6978
6979REGISTER_POST_CHECK(init_h2);