blob: bc82cb3f8ea008a98894a67d0bfc1cceedac83ec [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);
510 chunk_appendf(&trace_buf, " h2s=%p(%d,%s)", h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreauf3ce0412019-11-24 14:57:00 +0100511 if (h2s->id && h2s->errcode)
512 chunk_appendf(&trace_buf, " err=%s/%02x", h2_err_str(h2s->errcode), h2s->errcode);
Willy Tarreau73db4342019-09-25 07:28:44 +0200513 }
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200514 }
515
516 /* Let's dump decoded requests and responses right after parsing. They
517 * are traced at level USER with a few recognizable flags.
518 */
519 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
520 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
521 htx = htxbuf(buf); // recv req/res
522 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
523 htx = a3; // send req/res
524 else
525 htx = NULL;
526
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200527 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200528 const struct htx_blk *blk = htx_get_blk(htx, pos);
529 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
530 enum htx_blk_type type = htx_get_blk_type(blk);
531
532 if (type == HTX_BLK_REQ_SL)
533 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200534 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200535 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
536 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
537 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
538 else if (type == HTX_BLK_RES_SL)
539 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200540 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200541 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
542 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
543 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
544 }
545}
546
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200547
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100548/* Detect a pending read0 for a H2 connection. It happens if a read0 was
549 * already reported on a previous xprt->rcvbuf() AND a frame parser failed
550 * to parse pending data, confirming no more progress is possible because
551 * we're facing a truncated frame. The function returns 1 to report a read0
552 * or 0 otherwise.
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200553 */
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100554static inline int h2c_read0_pending(struct h2c *h2c)
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200555{
Willy Tarreau3d4631f2021-01-20 10:53:13 +0100556 return !!(h2c->flags & H2_CF_END_REACHED);
Christopher Fauletaade4ed2020-10-08 15:38:41 +0200557}
558
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200559/* returns true if the connection is allowed to expire, false otherwise. A
Willy Tarreau34395832022-03-18 14:59:54 +0100560 * connection may expire when it has no attached streams. As long as streams
561 * are attached, the application layer is responsible for timeout management,
562 * and each layer will detach when it doesn't want to wait anymore. When the
563 * last one leaves, the connection must take over timeout management.
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200564 */
565static inline int h2c_may_expire(const struct h2c *h2c)
566{
Willy Tarreau36c22322022-05-27 10:41:24 +0200567 return !h2c->nb_sc;
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200568}
569
Willy Tarreau15a47332022-03-18 15:57:34 +0100570/* update h2c timeout if needed */
571static void h2c_update_timeout(struct h2c *h2c)
572{
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200573 int is_idle_conn = 0;
574
Willy Tarreau15a47332022-03-18 15:57:34 +0100575 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
576
577 if (!h2c->task)
578 goto leave;
579
580 if (h2c_may_expire(h2c)) {
581 /* no more streams attached */
582 if (h2c->last_sid >= 0) {
583 /* GOAWAY sent, closing in progress */
584 h2c->task->expire = tick_add_ifset(now_ms, h2c->shut_timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200585 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100586 } else if (br_data(h2c->mbuf)) {
587 /* pending output data: always the regular data timeout */
588 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Willy Tarreau6ff91e22022-04-14 11:43:35 +0200589 } else if (!(h2c->flags & H2_CF_IS_BACK) && h2c->max_id > 0 && !b_data(&h2c->dbuf)) {
Willy Tarreau15a47332022-03-18 15:57:34 +0100590 /* idle after having seen one stream => keep-alive */
Willy Tarreau86b08a32022-04-13 17:40:28 +0200591 int to;
592
593 if (tick_isset(h2c->proxy->timeout.httpka))
594 to = h2c->proxy->timeout.httpka;
595 else
596 to = h2c->proxy->timeout.httpreq;
597
598 h2c->task->expire = tick_add_ifset(h2c->idle_start, to);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200599 is_idle_conn = 1;
Willy Tarreau15a47332022-03-18 15:57:34 +0100600 } else {
601 /* before first request, or started to deserialize a
602 * new req => http-request, but only set, not refresh.
603 */
604 int exp = (h2c->flags & H2_CF_IS_BACK) ? TICK_ETERNITY : h2c->proxy->timeout.httpreq;
605 h2c->task->expire = tick_add_ifset(h2c->idle_start, exp);
606 }
607 /* if a timeout above was not set, fall back to the default one */
608 if (!tick_isset(h2c->task->expire))
609 h2c->task->expire = tick_add_ifset(now_ms, h2c->timeout);
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +0200610
611 if ((h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) &&
612 is_idle_conn && tick_isset(global.close_spread_end)) {
613 /* If a soft-stop is in progress and a close-spread-time
614 * is set, we want to spread idle connection closing roughly
615 * evenly across the defined window. This should only
616 * act on idle frontend connections.
617 * If the window end is already in the past, we wake the
618 * timeout task up immediately so that it can be closed.
619 */
620 int remaining_window = tick_remain(now_ms, global.close_spread_end);
621 if (remaining_window) {
622 /* We don't need to reset the expire if it would
623 * already happen before the close window end.
624 */
625 if (tick_isset(h2c->task->expire) &&
626 tick_is_le(global.close_spread_end, h2c->task->expire)) {
627 /* Set an expire value shorter than the current value
628 * because the close spread window end comes earlier.
629 */
630 h2c->task->expire = tick_add(now_ms, statistical_prng_range(remaining_window));
631 }
632 }
633 else {
634 /* We are past the soft close window end, wake the timeout
635 * task up immediately.
636 */
637 task_wakeup(h2c->task, TASK_WOKEN_TIMER);
638 }
639 }
640
Willy Tarreau15a47332022-03-18 15:57:34 +0100641 } else {
642 h2c->task->expire = TICK_ETERNITY;
643 }
644 task_queue(h2c->task);
645 leave:
646 TRACE_LEAVE(H2_EV_H2C_WAKE);
647}
648
Olivier Houchard7a977432019-03-21 15:47:13 +0100649static __inline int
Willy Tarreauc2ea47f2019-10-01 10:12:00 +0200650h2c_is_dead(const struct h2c *h2c)
Olivier Houchard7a977432019-03-21 15:47:13 +0100651{
652 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200653 ((h2c->flags & H2_CF_ERROR) || /* errors close immediately */
Olivier Houchard7a977432019-03-21 15:47:13 +0100654 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
655 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200656 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Christopher Fauletff7925d2022-10-11 19:12:40 +0200657 ((h2c->flags & H2_CF_RCVD_SHUT) ||
Olivier Houchard7a977432019-03-21 15:47:13 +0100658 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
659 return 1;
660
661 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100662}
663
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200664/*****************************************************/
665/* functions below are for dynamic buffer management */
666/*****************************************************/
667
Willy Tarreau315d8072017-12-10 22:17:57 +0100668/* indicates whether or not the we may call the h2_recv() function to attempt
669 * to receive data into the buffer and/or demux pending data. The condition is
670 * a bit complex due to some API limits for now. The rules are the following :
671 * - if an error or a shutdown was detected on the connection and the buffer
672 * is empty, we must not attempt to receive
673 * - if the demux buf failed to be allocated, we must not try to receive and
674 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100675 * - if no flag indicates a blocking condition, we may attempt to receive,
676 * regardless of whether the demux buffer is full or not, so that only
677 * de demux part decides whether or not to block. This is needed because
678 * the connection API indeed prevents us from re-enabling receipt that is
679 * already enabled in a polled state, so we must always immediately stop
680 * as soon as the demux can't proceed so as never to hit an end of read
681 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100682 * - otherwise must may not attempt
683 */
684static inline int h2_recv_allowed(const struct h2c *h2c)
685{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200686 if (b_data(&h2c->dbuf) == 0 &&
Christopher Fauletff7925d2022-10-11 19:12:40 +0200687 ((h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR)) || h2c->st0 >= H2_CS_ERROR))
Willy Tarreau315d8072017-12-10 22:17:57 +0100688 return 0;
689
690 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100691 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100692 return 1;
693
694 return 0;
695}
696
Willy Tarreau47b515a2018-12-21 16:09:41 +0100697/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200698static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100699{
700 if (!h2_recv_allowed(h2c))
701 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200702 if ((!consider_buffer || !b_data(&h2c->dbuf))
703 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100704 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200705 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100706}
707
708
Willy Tarreau4596fe22022-05-17 19:07:51 +0200709/* returns true if the front connection has too many stream connectors attached */
Willy Tarreau36c22322022-05-27 10:41:24 +0200710static inline int h2_frt_has_too_many_sc(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200711{
Willy Tarreau36c22322022-05-27 10:41:24 +0200712 return h2c->nb_sc > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200713}
714
Willy Tarreau44e973f2018-03-01 17:49:30 +0100715/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
716 * flags are used to figure what buffer was requested. It returns 1 if the
717 * allocation succeeds, in which case the connection is woken up, or 0 if it's
718 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200719 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100720static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200721{
722 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100723 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200724
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100725 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc(&h2c->dbuf)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200726 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200727 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200728 return 1;
729 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200730
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100731 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc(br_tail(h2c->mbuf))) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100732 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200733
734 if (h2c->flags & H2_CF_DEM_MROOM) {
735 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200736 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200737 }
Willy Tarreau14398122017-09-22 14:26:04 +0200738 return 1;
739 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100740
741 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
Willy Tarreau7be4ee02022-05-18 07:31:41 +0200742 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s_sc(h2s) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100743 b_alloc(&h2s->rxbuf)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100744 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200745 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100746 return 1;
747 }
748
Willy Tarreau14398122017-09-22 14:26:04 +0200749 return 0;
750}
751
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200752static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200753{
754 struct buffer *buf = NULL;
755
Willy Tarreau2b718102021-04-21 07:32:39 +0200756 if (likely(!LIST_INLIST(&h2c->buf_wait.list)) &&
Willy Tarreaud68d4f12021-03-22 14:44:31 +0100757 unlikely((buf = b_alloc(bptr)) == NULL)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100758 h2c->buf_wait.target = h2c;
759 h2c->buf_wait.wakeup_cb = h2_buf_available;
Willy Tarreaub4e34762021-09-30 19:02:18 +0200760 LIST_APPEND(&th_ctx->buffer_wq, &h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +0200761 }
762 return buf;
763}
764
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200765static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200766{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200767 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100768 b_free(bptr);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100769 offer_buffers(NULL, 1);
Willy Tarreau14398122017-09-22 14:26:04 +0200770 }
771}
772
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200773static inline void h2_release_mbuf(struct h2c *h2c)
774{
775 struct buffer *buf;
776 unsigned int count = 0;
777
778 while (b_size(buf = br_head_pick(h2c->mbuf))) {
779 b_free(buf);
780 count++;
781 }
782 if (count)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +0100783 offer_buffers(NULL, count);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200784}
785
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100786/* returns the number of allocatable outgoing streams for the connection taking
787 * the last_sid and the reserved ones into account.
788 */
789static inline int h2_streams_left(const struct h2c *h2c)
790{
791 int ret;
792
793 /* consider the number of outgoing streams we're allowed to create before
794 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
795 * nb_reserved is the number of streams which don't yet have an ID.
796 */
797 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
798 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
799 if (ret < 0)
800 ret = 0;
801 return ret;
802}
803
Willy Tarreau00f18a32019-01-26 12:19:01 +0100804/* returns the number of streams in use on a connection to figure if it's
Willy Tarreau36c22322022-05-27 10:41:24 +0200805 * idle or not. We check nb_sc and not nb_streams as the caller will want
Willy Tarreau00f18a32019-01-26 12:19:01 +0100806 * to know if it was the last one after a detach().
807 */
808static int h2_used_streams(struct connection *conn)
809{
810 struct h2c *h2c = conn->ctx;
811
Willy Tarreau36c22322022-05-27 10:41:24 +0200812 return h2c->nb_sc;
Willy Tarreau00f18a32019-01-26 12:19:01 +0100813}
814
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100815/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100816static int h2_avail_streams(struct connection *conn)
817{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100818 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100819 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100820 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100821
Willy Tarreau6afec462019-01-28 06:40:19 +0100822 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
823 * streams on the connection.
824 */
825 if (h2c->last_sid >= 0)
826 return 0;
827
Willy Tarreauc61966f2019-10-31 15:10:03 +0100828 if (h2c->st0 >= H2_CS_ERROR)
829 return 0;
830
Willy Tarreau86949782019-01-31 10:42:05 +0100831 /* note: may be negative if a SETTINGS frame changes the limit */
832 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100833
834 /* we must also consider the limit imposed by stream IDs */
835 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100836 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100837 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100838 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
839 ret1 = MIN(ret1, ret2);
840 }
841 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100842}
843
Willy Tarreau11e8a8c2023-01-24 19:43:11 +0100844/* inconditionally produce a trace of the header. Please do not call this one
845 * and use h2_trace_header() instead which first checks if traces are enabled.
846 */
847void _h2_trace_header(const struct ist hn, const struct ist hv,
848 uint64_t mask, const struct ist trc_loc, const char *func,
849 const struct h2c *h2c, const struct h2s *h2s)
850{
851 struct ist n_ist, v_ist;
852 const char *c_str, *s_str;
853
854 chunk_reset(&trash);
855 c_str = chunk_newstr(&trash);
856 if (h2c) {
857 chunk_appendf(&trash, "h2c=%p(%c,%s) ",
858 h2c, (h2c->flags & H2_CF_IS_BACK) ? 'B' : 'F', h2c_st_to_str(h2c->st0));
859 }
860
861 s_str = chunk_newstr(&trash);
862 if (h2s) {
863 if (h2s->id <= 0)
864 chunk_appendf(&trash, "dsi=%d ", h2s->h2c->dsi);
865 chunk_appendf(&trash, "h2s=%p(%d,%s) ", h2s, h2s->id, h2s_st_to_str(h2s->st));
866 }
867 else if (h2c)
868 chunk_appendf(&trash, "dsi=%d ", h2c->dsi);
869
870 n_ist = ist2(chunk_newstr(&trash), 0);
871 istscpy(&n_ist, hn, 256);
872 trash.data += n_ist.len;
873 if (n_ist.len != hn.len)
874 chunk_appendf(&trash, " (... +%ld)", (long)(hn.len - n_ist.len));
875
876 v_ist = ist2(chunk_newstr(&trash), 0);
877 istscpy(&v_ist, hv, 1024);
878 trash.data += v_ist.len;
879 if (v_ist.len != hv.len)
880 chunk_appendf(&trash, " (... +%ld)", (long)(hv.len - v_ist.len));
881
882 TRACE_PRINTF_LOC(TRACE_LEVEL_USER, mask, trc_loc, func,
Christopher Fauletc2545162023-01-30 08:26:09 +0100883 (h2c ? h2c->conn : 0), 0, 0, 0,
Willy Tarreau11e8a8c2023-01-24 19:43:11 +0100884 "%s%s%s %s: %s", c_str, s_str,
885 (mask & H2_EV_TX_HDR) ? "sndh" : "rcvh",
886 n_ist.ptr, v_ist.ptr);
887}
888
889/* produce a trace of the header after checking that tracing is enabled */
890static inline void h2_trace_header(const struct ist hn, const struct ist hv,
891 uint64_t mask, const struct ist trc_loc, const char *func,
892 const struct h2c *h2c, const struct h2s *h2s)
893{
894 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
895 TRACE_ENABLED(TRACE_LEVEL_USER, mask, h2c ? h2c->conn : 0, h2s, 0, 0))
896 _h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
897}
898
899/* hpack-encode header name <hn> and value <hv>, possibly emitting a trace if
900 * currently enabled. This is done on behalf of function <func> at <trc_loc>
901 * passed as ist(TRC_LOC), h2c <h2c>, and h2s <h2s>, all of which may be NULL.
902 * The trace is only emitted if the header is emitted (in which case non-zero
903 * is returned). The trash is modified. In the traces, the header's name will
904 * be truncated to 256 chars and the header's value to 1024 chars.
905 */
906static inline int h2_encode_header(struct buffer *buf, const struct ist hn, const struct ist hv,
907 uint64_t mask, const struct ist trc_loc, const char *func,
908 const struct h2c *h2c, const struct h2s *h2s)
909{
910 int ret;
911
912 ret = hpack_encode_header(buf, hn, hv);
913 if (ret)
914 h2_trace_header(hn, hv, mask, trc_loc, func, h2c, h2s);
915
916 return ret;
917}
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200918
Willy Tarreau62f52692017-10-08 23:01:42 +0200919/*****************************************************************/
920/* functions below are dedicated to the mux setup and management */
921/*****************************************************************/
922
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200923/* Initialize the mux once it's attached. For outgoing connections, the context
924 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200925 * connections from the fact that the context is still NULL (even during mux
926 * upgrades). <input> is always used as Input buffer and may contain data. It is
927 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200928 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200929static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
930 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200931{
932 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100933 struct task *t = NULL;
Christopher Fauletf81ef032019-10-04 15:19:43 +0200934 void *conn_ctx = conn->ctx;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200935
Christopher Fauletf81ef032019-10-04 15:19:43 +0200936 TRACE_ENTER(H2_EV_H2C_NEW);
Willy Tarreau7838a792019-08-12 18:42:03 +0200937
Willy Tarreaubafbe012017-11-24 17:34:44 +0100938 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200939 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200940 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200941
Christopher Faulete9b70722019-04-08 10:46:02 +0200942 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200943 h2c->flags = H2_CF_IS_BACK;
944 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
945 if (tick_isset(prx->timeout.serverfin))
946 h2c->shut_timeout = prx->timeout.serverfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100947
948 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_be,
949 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200950 } else {
951 h2c->flags = H2_CF_NONE;
952 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
953 if (tick_isset(prx->timeout.clientfin))
954 h2c->shut_timeout = prx->timeout.clientfin;
Amaury Denoyellec92697d2020-10-27 17:16:01 +0100955
956 h2c->px_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
957 &h2_stats_module);
Willy Tarreau01b44822018-10-03 14:26:37 +0200958 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100959
Willy Tarreau0b37d652018-10-03 10:33:02 +0200960 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100961 h2c->task = NULL;
Willy Tarreau15a47332022-03-18 15:57:34 +0100962 h2c->idle_start = now_ms;
Willy Tarreau3f133572017-10-31 19:21:06 +0100963 if (tick_isset(h2c->timeout)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +0200964 t = task_new_here();
Willy Tarreau3f133572017-10-31 19:21:06 +0100965 if (!t)
966 goto fail;
967
968 h2c->task = t;
969 t->process = h2_timeout_task;
970 t->context = h2c;
971 t->expire = tick_add(now_ms, h2c->timeout);
972 }
Willy Tarreauea392822017-10-31 10:02:25 +0100973
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200974 h2c->wait_event.tasklet = tasklet_new();
975 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200976 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200977 h2c->wait_event.tasklet->process = h2_io_cb;
978 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100979 h2c->wait_event.events = 0;
Amaury Denoyelled3a88c12021-05-03 10:47:51 +0200980 if (!conn_is_back(conn)) {
981 /* Connection might already be in the stopping_list if subject
982 * to h1->h2 upgrade.
983 */
984 if (!LIST_INLIST(&conn->stopping_list)) {
985 LIST_APPEND(&mux_stopping_data[tid].list,
986 &conn->stopping_list);
987 }
988 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200989
Willy Tarreau2bdcc702020-05-19 11:31:11 +0200990 h2c->ddht = hpack_dht_alloc();
Willy Tarreau32218eb2017-09-22 08:07:25 +0200991 if (!h2c->ddht)
992 goto fail;
993
994 /* Initialise the context. */
995 h2c->st0 = H2_CS_PREFACE;
996 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100997 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200998 h2c->max_id = -1;
999 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +01001000 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001001 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +01001002 h2c->nb_streams = 0;
Willy Tarreau36c22322022-05-27 10:41:24 +02001003 h2c->nb_sc = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001004 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001005 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001006
Christopher Faulet51f73eb2019-04-08 11:22:47 +02001007 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001008 h2c->dsi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001009
Willy Tarreau32218eb2017-09-22 08:07:25 +02001010 h2c->last_sid = -1;
1011
Willy Tarreau51330962019-05-26 09:38:07 +02001012 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +02001013 h2c->miw = 65535; /* mux initial window size */
1014 h2c->mws = 65535; /* mux window size */
1015 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +02001016 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +02001017 LIST_INIT(&h2c->send_list);
1018 LIST_INIT(&h2c->fctl_list);
Willy Tarreau9edf6db2019-10-02 10:49:59 +02001019 LIST_INIT(&h2c->blocked_list);
Willy Tarreau90f366b2021-02-20 11:49:49 +01001020 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001021
Christopher Fauletf81ef032019-10-04 15:19:43 +02001022 conn->ctx = h2c;
1023
Willy Tarreau8e6f7492021-06-16 17:47:24 +02001024 TRACE_USER("new H2 connection", H2_EV_H2C_NEW, conn);
1025
Willy Tarreau3f133572017-10-31 19:21:06 +01001026 if (t)
1027 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +01001028
Willy Tarreau01b44822018-10-03 14:26:37 +02001029 if (h2c->flags & H2_CF_IS_BACK) {
1030 /* FIXME: this is temporary, for outgoing connections we need
1031 * to immediately allocate a stream until the code is modified
Willy Tarreau36c22322022-05-27 10:41:24 +02001032 * so that the caller calls ->attach(). For now the outgoing sc
Christopher Fauletf81ef032019-10-04 15:19:43 +02001033 * is stored as conn->ctx by the caller and saved in conn_ctx.
Willy Tarreau01b44822018-10-03 14:26:37 +02001034 */
1035 struct h2s *h2s;
1036
Christopher Fauletf81ef032019-10-04 15:19:43 +02001037 h2s = h2c_bck_stream_new(h2c, conn_ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +02001038 if (!h2s)
1039 goto fail_stream;
1040 }
1041
Frédéric Lécaille9969adb2023-01-18 11:52:21 +01001042 proxy_inc_fe_cum_sess_ver_ctr(sess->listener, prx, 2);
Willy Tarreau4781b152021-04-06 13:53:36 +02001043 HA_ATOMIC_INC(&h2c->px_counters->open_conns);
1044 HA_ATOMIC_INC(&h2c->px_counters->total_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001045
Willy Tarreau0f383582018-10-03 14:22:21 +02001046 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02001047 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001048 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001049 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +02001050 fail_stream:
1051 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +02001052 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +02001053 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001054 if (h2c->wait_event.tasklet)
1055 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +01001056 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +02001057 fail_no_h2c:
Willy Tarreau3b990fe2022-01-12 17:24:26 +01001058 if (!conn_is_back(conn))
1059 LIST_DEL_INIT(&conn->stopping_list);
Christopher Fauletf81ef032019-10-04 15:19:43 +02001060 conn->ctx = conn_ctx; /* restore saved ctx */
1061 TRACE_DEVEL("leaving in error", H2_EV_H2C_NEW|H2_EV_H2C_END|H2_EV_H2C_ERR);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001062 return -1;
1063}
1064
Willy Tarreau751f2d02018-10-05 09:35:00 +02001065/* returns the next allocatable outgoing stream ID for the H2 connection, or
1066 * -1 if no more is allocatable.
1067 */
1068static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
1069{
1070 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +01001071
1072 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +02001073 id = -1;
1074 return id;
1075}
1076
Willy Tarreau2373acc2017-10-12 17:35:14 +02001077/* returns the stream associated with id <id> or NULL if not found */
1078static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
1079{
1080 struct eb32_node *node;
1081
Willy Tarreau751f2d02018-10-05 09:35:00 +02001082 if (id == 0)
1083 return (struct h2s *)h2_closed_stream;
1084
Willy Tarreau2a856182017-05-16 15:20:39 +02001085 if (id > h2c->max_id)
1086 return (struct h2s *)h2_idle_stream;
1087
Willy Tarreau2373acc2017-10-12 17:35:14 +02001088 node = eb32_lookup(&h2c->streams_by_id, id);
1089 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +02001090 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +02001091
1092 return container_of(node, struct h2s, by_id);
1093}
1094
Christopher Faulet73c12072019-04-08 11:23:22 +02001095/* release function. This one should be called to free all resources allocated
1096 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +02001097 */
Christopher Faulet73c12072019-04-08 11:23:22 +02001098static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02001099{
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001100 struct connection *conn = h2c->conn;
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001101
Willy Tarreau7838a792019-08-12 18:42:03 +02001102 TRACE_ENTER(H2_EV_H2C_END);
1103
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001104 hpack_dht_free(h2c->ddht);
Christopher Faulet61840e72019-04-15 09:33:32 +02001105
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001106 if (LIST_INLIST(&h2c->buf_wait.list))
1107 LIST_DEL_INIT(&h2c->buf_wait.list);
Willy Tarreau14398122017-09-22 14:26:04 +02001108
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001109 h2_release_buf(h2c, &h2c->dbuf);
1110 h2_release_mbuf(h2c);
Willy Tarreau14398122017-09-22 14:26:04 +02001111
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001112 if (h2c->task) {
1113 h2c->task->context = NULL;
1114 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
1115 h2c->task = NULL;
1116 }
1117 if (h2c->wait_event.tasklet)
1118 tasklet_free(h2c->wait_event.tasklet);
1119 if (conn && h2c->wait_event.events != 0)
1120 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
1121 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +01001122
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001123 HA_ATOMIC_DEC(&h2c->px_counters->open_conns);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001124
Christopher Faulet4de1bff2022-04-14 11:36:41 +02001125 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001126
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001127 if (conn) {
Amaury Denoyelled3a88c12021-05-03 10:47:51 +02001128 if (!conn_is_back(conn))
1129 LIST_DEL_INIT(&conn->stopping_list);
1130
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001131 conn->mux = NULL;
1132 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02001133 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +02001134
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001135 conn_stop_tracking(conn);
Willy Tarreau0b222472021-10-21 22:24:31 +02001136
1137 /* there might be a GOAWAY frame still pending in the TCP
1138 * stack, and if the peer continues to send (i.e. window
1139 * updates etc), this can result in losing the GOAWAY. For
1140 * this reason we try to drain anything received in between.
1141 */
1142 conn->flags |= CO_FL_WANT_DRAIN;
1143
1144 conn_xprt_shutw(conn);
1145 conn_xprt_close(conn);
1146 conn_sock_shutw(conn, !conn_is_back(conn));
1147 conn_ctrl_close(conn);
1148
Christopher Faulet39a96ee2019-04-08 10:52:21 +02001149 if (conn->destroy_cb)
1150 conn->destroy_cb(conn);
1151 conn_free(conn);
1152 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001153
1154 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +02001155}
1156
1157
Willy Tarreau71681172017-10-23 14:39:06 +02001158/******************************************************/
1159/* functions below are for the H2 protocol processing */
1160/******************************************************/
1161
1162/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +01001163static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +02001164{
1165 return h2s ? h2s->id : 0;
1166}
1167
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001168/* returns the sum of the stream's own window size and the mux's initial
1169 * window, which together form the stream's effective window size.
1170 */
1171static inline int h2s_mws(const struct h2s *h2s)
1172{
1173 return h2s->sws + h2s->h2c->miw;
1174}
1175
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001176/* marks an error on the connection. Before settings are sent, we must not send
1177 * a GOAWAY frame, and the error state will prevent h2c_send_goaway_error()
1178 * from verifying this so we set H2_CF_GOAWAY_FAILED to make sure it will not
1179 * even try.
1180 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001181static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +02001182{
Willy Tarreau022e5e52020-09-10 09:33:15 +02001183 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn, 0, 0, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +02001184 h2c->errcode = err;
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001185 if (h2c->st0 < H2_CS_SETTINGS1)
1186 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau741d6df2017-10-17 08:00:59 +02001187 h2c->st0 = H2_CS_ERROR;
1188}
1189
Willy Tarreau175cebb2019-01-24 10:02:24 +01001190/* marks an error on the stream. It may also update an already closed stream
1191 * (e.g. to report an error after an RST was received).
1192 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001193static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +02001194{
Willy Tarreau175cebb2019-01-24 10:02:24 +01001195 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02001196 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s, 0, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +02001197 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +01001198 if (h2s->st < H2_SS_ERROR)
1199 h2s->st = H2_SS_ERROR;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001200 se_fl_set_error(h2s->sd);
Willy Tarreau2e43f082017-10-17 08:03:59 +02001201 }
1202}
1203
Willy Tarreau7e094452018-12-19 18:08:52 +01001204/* attempt to notify the data layer of recv availability */
1205static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1206{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001207 if (h2s->subs && h2s->subs->events & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001208 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01001209 tasklet_wakeup(h2s->subs->tasklet);
1210 h2s->subs->events &= ~SUB_RETRY_RECV;
1211 if (!h2s->subs->events)
1212 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001213 }
1214}
1215
1216/* attempt to notify the data layer of send availability */
1217static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1218{
Willy Tarreauf96508a2020-01-10 11:12:48 +01001219 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001220 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01001221 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01001222 tasklet_wakeup(h2s->subs->tasklet);
1223 h2s->subs->events &= ~SUB_RETRY_SEND;
1224 if (!h2s->subs->events)
1225 h2s->subs = NULL;
Willy Tarreau7e094452018-12-19 18:08:52 +01001226 }
Willy Tarreau5723f292020-01-10 15:16:57 +01001227 else if (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) {
1228 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
1229 tasklet_wakeup(h2s->shut_tl);
1230 }
Willy Tarreau7e094452018-12-19 18:08:52 +01001231}
1232
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001233/* alerts the data layer, trying to wake it up by all means, following
1234 * this sequence :
1235 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1236 * - if its subscribed to send, then it's woken up for send
1237 * - if it was subscribed to neither, its ->wake() callback is called
1238 * It is safe to call this function with a closed stream which doesn't have a
Willy Tarreau4596fe22022-05-17 19:07:51 +02001239 * stream connector anymore.
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001240 */
1241static void __maybe_unused h2s_alert(struct h2s *h2s)
1242{
Willy Tarreau7838a792019-08-12 18:42:03 +02001243 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1244
Willy Tarreauf96508a2020-01-10 11:12:48 +01001245 if (h2s->subs ||
Willy Tarreau5723f292020-01-10 15:16:57 +01001246 (h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW))) {
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001247 h2s_notify_recv(h2s);
1248 h2s_notify_send(h2s);
1249 }
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001250 else if (h2s_sc(h2s) && h2s_sc(h2s)->app_ops->wake != NULL) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001251 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau2f2318d2022-05-18 10:17:16 +02001252 h2s_sc(h2s)->app_ops->wake(h2s_sc(h2s));
Willy Tarreau7838a792019-08-12 18:42:03 +02001253 }
1254
1255 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001256}
1257
Willy Tarreaue4820742017-07-27 13:37:23 +02001258/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001259static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001260{
1261 uint8_t *out = frame;
1262
1263 *out = len >> 16;
1264 write_n16(out + 1, len);
1265}
1266
Willy Tarreau54c15062017-10-10 17:10:03 +02001267/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1268 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1269 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001270 * available in the buffer's input prior to calling this function. The buffer
1271 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001272 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001273static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001274 const struct buffer *b, int o)
1275{
Willy Tarreau591d4452018-06-15 17:21:00 +02001276 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 +02001277}
1278
Willy Tarreau1f094672017-11-20 21:27:45 +01001279static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001280{
Willy Tarreau591d4452018-06-15 17:21:00 +02001281 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001282}
1283
Willy Tarreau1f094672017-11-20 21:27:45 +01001284static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001285{
Willy Tarreau591d4452018-06-15 17:21:00 +02001286 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001287}
1288
Willy Tarreau1f094672017-11-20 21:27:45 +01001289static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001290{
Willy Tarreau591d4452018-06-15 17:21:00 +02001291 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001292}
1293
1294
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001295/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1296 * The algorithm is not obvious. It turns out that H2 headers are neither
1297 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1298 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001299 *
1300 * b0 b1 b2 b3 b4 b5..b8
1301 * +----------+---------+--------+----+----+----------------------+
1302 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1303 * +----------+---------+--------+----+----+----------------------+
1304 *
1305 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1306 * we get the sid properly aligned and ordered, and 16 bits of len properly
1307 * ordered as well. The type and flags can be extracted using bit shifts from
1308 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001309 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1310 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001311 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001312static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001313{
1314 uint64_t w;
1315
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001316 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001317 return 0;
1318
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001319 w = h2_get_n64(b, o + 1);
1320 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001321 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1322 h->ff = w >> 32;
1323 h->ft = w >> 40;
1324 h->len += w >> 48;
1325 return 1;
1326}
1327
1328/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1329 * h2_peek_frame_hdr() above.
1330 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001331static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001332{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001333 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001334}
1335
1336/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001337static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001338{
1339 int ret;
1340
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001341 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001342 if (ret > 0)
1343 h2_skip_frame_hdr(b);
1344 return ret;
1345}
1346
Willy Tarreaucb985a42019-10-07 16:56:34 +02001347
1348/* try to fragment the headers frame present at the beginning of buffer <b>,
1349 * enforcing a limit of <mfs> bytes per frame. Returns 0 on failure, 1 on
1350 * success. Typical causes of failure include a buffer not large enough to
1351 * add extra frame headers. The existing frame size is read in the current
1352 * frame. Its EH flag will be cleared if CONTINUATION frames need to be added,
1353 * and its length will be adjusted. The stream ID for continuation frames will
1354 * be copied from the initial frame's.
1355 */
1356static int h2_fragment_headers(struct buffer *b, uint32_t mfs)
1357{
1358 size_t remain = b->data - 9;
1359 int extra_frames = (remain - 1) / mfs;
1360 size_t fsize;
1361 char *fptr;
1362 int frame;
1363
1364 if (b->data <= mfs + 9)
1365 return 1;
1366
1367 /* Too large a frame, we need to fragment it using CONTINUATION
1368 * frames. We start from the end and move tails as needed.
1369 */
1370 if (b->data + extra_frames * 9 > b->size)
1371 return 0;
1372
1373 for (frame = extra_frames; frame; frame--) {
1374 fsize = ((remain - 1) % mfs) + 1;
1375 remain -= fsize;
1376
1377 /* move data */
1378 fptr = b->area + 9 + remain + (frame - 1) * 9;
1379 memmove(fptr + 9, b->area + 9 + remain, fsize);
1380 b->data += 9;
1381
1382 /* write new frame header */
1383 h2_set_frame_size(fptr, fsize);
1384 fptr[3] = H2_FT_CONTINUATION;
1385 fptr[4] = (frame == extra_frames) ? H2_F_HEADERS_END_HEADERS : 0;
1386 write_n32(fptr + 5, read_n32(b->area + 5));
1387 }
1388
1389 b->area[4] &= ~H2_F_HEADERS_END_HEADERS;
1390 h2_set_frame_size(b->area, remain);
1391 return 1;
1392}
1393
1394
Willy Tarreau00dd0782018-03-01 16:31:34 +01001395/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1396 * its connection if the stream was not yet closed. Please use this exclusively
1397 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001398 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001399static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001400{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001401 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001402 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001403 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001404 if (!h2s->id)
1405 h2s->h2c->nb_reserved--;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02001406 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001407 if (!se_fl_test(h2s->sd, SE_FL_EOS) && !b_data(&h2s->rxbuf))
Willy Tarreaua27db382019-03-25 18:13:16 +01001408 h2s_notify_recv(h2s);
1409 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001410 HA_ATOMIC_DEC(&h2s->h2c->px_counters->open_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001411
Willy Tarreau7838a792019-08-12 18:42:03 +02001412 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001413 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001414 h2s->st = H2_SS_CLOSED;
1415}
1416
Willy Tarreau71049cc2018-03-28 13:56:39 +02001417/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001418/* h2s_destroy should only ever be called by the thread that owns the stream,
1419 * that means that a tasklet should be used if we want to destroy the h2s
1420 * from another thread
1421 */
Willy Tarreau71049cc2018-03-28 13:56:39 +02001422static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001423{
Willy Tarreau7838a792019-08-12 18:42:03 +02001424 struct connection *conn = h2s->h2c->conn;
1425
1426 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1427
Willy Tarreau0a10de62018-03-01 16:27:53 +01001428 h2s_close(h2s);
1429 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001430 if (b_size(&h2s->rxbuf)) {
1431 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01001432 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02001433 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001434
1435 if (h2s->subs)
1436 h2s->subs->events = 0;
1437
Joseph Herlantd77575d2018-11-25 10:54:45 -08001438 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001439 * reference left would be in the h2c send_list/fctl_list, and if
1440 * we're in it, we're getting out anyway
1441 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001442 LIST_DEL_INIT(&h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01001443
Olivier Houchard5a3671d2019-10-11 16:33:49 +02001444 /* ditto, calling tasklet_free() here should be ok */
Willy Tarreau5723f292020-01-10 15:16:57 +01001445 tasklet_free(h2s->shut_tl);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001446 BUG_ON(h2s->sd && !se_fl_test(h2s->sd, SE_FL_ORPHAN));
1447 sedesc_free(h2s->sd);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001448 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001449
1450 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001451}
1452
Willy Tarreaua8e49542018-10-03 18:53:55 +02001453/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1454 * stream tree. In case of error, nothing is added and NULL is returned. The
1455 * causes of errors can be any failed memory allocation. The caller is
1456 * responsible for checking if the connection may support an extra stream
1457 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001458 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001459static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001460{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001461 struct h2s *h2s;
1462
Willy Tarreau7838a792019-08-12 18:42:03 +02001463 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1464
Willy Tarreaubafbe012017-11-24 17:34:44 +01001465 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001466 if (!h2s)
1467 goto out;
1468
Willy Tarreau5723f292020-01-10 15:16:57 +01001469 h2s->shut_tl = tasklet_new();
1470 if (!h2s->shut_tl) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001471 pool_free(pool_head_h2s, h2s);
1472 goto out;
1473 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01001474 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01001475 h2s->shut_tl->process = h2_deferred_shut;
1476 h2s->shut_tl->context = h2s;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001477 LIST_INIT(&h2s->list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001478 h2s->h2c = h2c;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001479 h2s->sd = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001480 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001481 h2s->flags = H2_SF_NONE;
1482 h2s->errcode = H2_ERR_NO_ERROR;
1483 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001484 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001485 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001486 h2s->rxbuf = BUF_NULL;
Amaury Denoyelle74162742020-12-11 17:53:05 +01001487 memset(h2s->upgrade_protocol, 0, sizeof(h2s->upgrade_protocol));
Willy Tarreau751f2d02018-10-05 09:35:00 +02001488
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001489 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001490 if (id > 0)
1491 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001492 else
1493 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001494
1495 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001496 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001497 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001498
Willy Tarreau4781b152021-04-06 13:53:36 +02001499 HA_ATOMIC_INC(&h2c->px_counters->open_streams);
1500 HA_ATOMIC_INC(&h2c->px_counters->total_streams);
Amaury Denoyelle66942c12020-10-27 17:16:04 +01001501
Willy Tarreau7838a792019-08-12 18:42:03 +02001502 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001503 return h2s;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001504 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001505 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001506 return NULL;
1507}
1508
1509/* creates a new stream <id> on the h2c connection and returns it, or NULL in
Christopher Faulet7d013e72020-12-15 16:56:50 +01001510 * case of memory allocation error. <input> is used as input buffer for the new
1511 * stream. On success, it is transferred to the stream and the mux is no longer
1512 * responsible of it. On error, <input> is unchanged, thus the mux must still
1513 * take care of it.
Willy Tarreaua8e49542018-10-03 18:53:55 +02001514 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001515static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id, struct buffer *input, uint32_t flags)
Willy Tarreaua8e49542018-10-03 18:53:55 +02001516{
1517 struct session *sess = h2c->conn->owner;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001518 struct h2s *h2s;
1519
Willy Tarreau7838a792019-08-12 18:42:03 +02001520 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1521
Willy Tarreaue872f752022-05-12 09:24:41 +02001522 if (h2c->nb_streams >= h2_settings_max_concurrent_streams) {
1523 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 +02001524 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001525 }
Willy Tarreaua8e49542018-10-03 18:53:55 +02001526
1527 h2s = h2s_new(h2c, id);
1528 if (!h2s)
Willy Tarreaue872f752022-05-12 09:24:41 +02001529 goto out_alloc;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001530
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001531 h2s->sd = sedesc_new();
1532 if (!h2s->sd)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001533 goto out_close;
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001534 h2s->sd->se = h2s;
1535 h2s->sd->conn = h2c->conn;
1536 se_fl_set(h2s->sd, SE_FL_T_MUX | SE_FL_ORPHAN | SE_FL_NOT_FIRST);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001537
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02001538 /* FIXME wrong analogy between ext-connect and websocket, this need to
1539 * be refine.
1540 */
1541 if (flags & H2_SF_EXT_CONNECT_RCVD)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001542 se_fl_set(h2s->sd, SE_FL_WEBSOCKET);
Christopher Fauletb669d682022-03-22 18:37:19 +01001543
Willy Tarreaud0de6772022-02-04 09:05:37 +01001544 /* The stream will record the request's accept date (which is either the
1545 * end of the connection's or the date immediately after the previous
1546 * request) and the idle time, which is the delay since the previous
1547 * request. We can set the value now, it will be copied by stream_new().
1548 */
1549 sess->t_idle = tv_ms_elapsed(&sess->tv_accept, &now) - sess->t_handshake;
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001550
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001551 if (!sc_new_from_endp(h2s->sd, sess, input))
Christopher Fauleta9e8b392022-03-23 11:01:09 +01001552 goto out_close;
Willy Tarreaucd6bb1a2022-05-10 15:00:03 +02001553
Willy Tarreau36c22322022-05-27 10:41:24 +02001554 h2c->nb_sc++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001555
Willy Tarreau590a0512018-09-05 11:56:48 +02001556 /* We want the accept date presented to the next stream to be the one
1557 * we have now, the handshake time to be null (since the next stream
1558 * is not delayed by a handshake), and the idle time to count since
1559 * right now.
1560 */
1561 sess->accept_date = date;
1562 sess->tv_accept = now;
1563 sess->t_handshake = 0;
Willy Tarreaud0de6772022-02-04 09:05:37 +01001564 sess->t_idle = 0;
Willy Tarreau590a0512018-09-05 11:56:48 +02001565
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001566 /* OK done, the stream lives its own life now */
Willy Tarreau36c22322022-05-27 10:41:24 +02001567 if (h2_frt_has_too_many_sc(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001568 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001569 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001570 return h2s;
1571
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001572 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001573 h2s_destroy(h2s);
Willy Tarreaue872f752022-05-12 09:24:41 +02001574 out_alloc:
1575 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 +02001576 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001577 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001578 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001579 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001580}
1581
Willy Tarreau36c22322022-05-27 10:41:24 +02001582/* allocates a new stream associated to stream connector <sc> on the h2c
Willy Tarreau4596fe22022-05-17 19:07:51 +02001583 * connection and returns it, or NULL in case of memory allocation error or if
1584 * the highest possible stream ID was reached.
Willy Tarreau751f2d02018-10-05 09:35:00 +02001585 */
Willy Tarreau36c22322022-05-27 10:41:24 +02001586static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct stconn *sc, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001587{
1588 struct h2s *h2s = NULL;
1589
Willy Tarreau7838a792019-08-12 18:42:03 +02001590 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1591
Willy Tarreaue872f752022-05-12 09:24:41 +02001592 if (h2c->nb_streams >= h2c->streams_limit) {
1593 TRACE_ERROR("Aborting stream since negotiated limit is too low", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001594 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001595 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001596
Willy Tarreaue872f752022-05-12 09:24:41 +02001597 if (h2_streams_left(h2c) < 1) {
1598 TRACE_ERROR("Aborting stream since no more streams left", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreaua80dca82019-01-24 17:08:28 +01001599 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001600 }
Willy Tarreaua80dca82019-01-24 17:08:28 +01001601
Willy Tarreau751f2d02018-10-05 09:35:00 +02001602 /* Defer choosing the ID until we send the first message to create the stream */
1603 h2s = h2s_new(h2c, 0);
Willy Tarreaue872f752022-05-12 09:24:41 +02001604 if (!h2s) {
1605 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001606 goto out;
Willy Tarreaue872f752022-05-12 09:24:41 +02001607 }
Willy Tarreau751f2d02018-10-05 09:35:00 +02001608
Willy Tarreau36c22322022-05-27 10:41:24 +02001609 if (sc_attach_mux(sc, h2s, h2c->conn) < 0) {
Willy Tarreaue872f752022-05-12 09:24:41 +02001610 TRACE_ERROR("Failed to allocate a new stream", H2_EV_H2S_NEW, h2c->conn);
Christopher Faulet070b91b2022-03-31 19:27:18 +02001611 h2s_destroy(h2s);
1612 h2s = NULL;
1613 goto out;
1614 }
Willy Tarreau95acc8b2022-05-27 16:14:10 +02001615 h2s->sd = sc->sedesc;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001616 h2s->sess = sess;
Willy Tarreau36c22322022-05-27 10:41:24 +02001617 h2c->nb_sc++;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001618
Willy Tarreau751f2d02018-10-05 09:35:00 +02001619 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001620 if (likely(h2s))
1621 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1622 else
1623 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001624 return h2s;
1625}
1626
Willy Tarreaube5b7152017-09-25 16:25:39 +02001627/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1628 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1629 * the various settings codes.
1630 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001631static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001632{
1633 struct buffer *res;
1634 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001635 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001636 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001637 int ret = 0;
1638
1639 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001640
Willy Tarreaube5b7152017-09-25 16:25:39 +02001641 chunk_init(&buf, buf_data, sizeof(buf_data));
1642 chunk_memcpy(&buf,
1643 "\x00\x00\x00" /* length : 0 for now */
1644 "\x04\x00" /* type : 4 (settings), flags : 0 */
1645 "\x00\x00\x00\x00", /* stream ID : 0 */
1646 9);
1647
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001648 if (h2c->flags & H2_CF_IS_BACK) {
1649 /* send settings_enable_push=0 */
1650 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1651 }
1652
Amaury Denoyellebefeae82021-07-09 17:14:30 +02001653 /* rfc 8441 #3 SETTINGS_ENABLE_CONNECT_PROTOCOL=1,
1654 * sent automatically unless disabled in the global config */
1655 if (!(global.tune.options & GTUNE_DISABLE_H2_WEBSOCKET))
1656 chunk_memcat(&buf, "\x00\x08\x00\x00\x00\x01", 6);
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01001657
Willy Tarreaube5b7152017-09-25 16:25:39 +02001658 if (h2_settings_header_table_size != 4096) {
1659 char str[6] = "\x00\x01"; /* header_table_size */
1660
1661 write_n32(str + 2, h2_settings_header_table_size);
1662 chunk_memcat(&buf, str, 6);
1663 }
1664
1665 if (h2_settings_initial_window_size != 65535) {
1666 char str[6] = "\x00\x04"; /* initial_window_size */
1667
1668 write_n32(str + 2, h2_settings_initial_window_size);
1669 chunk_memcat(&buf, str, 6);
1670 }
1671
1672 if (h2_settings_max_concurrent_streams != 0) {
1673 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1674
1675 /* Note: 0 means "unlimited" for haproxy's config but not for
1676 * the protocol, so never send this value!
1677 */
1678 write_n32(str + 2, h2_settings_max_concurrent_streams);
1679 chunk_memcat(&buf, str, 6);
1680 }
1681
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001682 mfs = h2_settings_max_frame_size;
1683 if (mfs > global.tune.bufsize)
1684 mfs = global.tune.bufsize;
1685
1686 if (!mfs)
1687 mfs = global.tune.bufsize;
1688
1689 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001690 char str[6] = "\x00\x05"; /* max_frame_size */
1691
1692 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1693 * match bufsize - rewrite size, but at the moment it seems
1694 * that clients don't take care of it.
1695 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001696 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001697 chunk_memcat(&buf, str, 6);
1698 }
1699
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001700 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001701
1702 res = br_tail(h2c->mbuf);
1703 retry:
1704 if (!h2_get_buf(h2c, res)) {
1705 h2c->flags |= H2_CF_MUX_MALLOC;
1706 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001707 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001708 }
1709
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001710 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001711 if (unlikely(ret <= 0)) {
1712 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001713 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1714 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001715 h2c->flags |= H2_CF_MUX_MFULL;
1716 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001717 }
1718 else {
1719 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001720 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001721 }
1722 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001723 out:
1724 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001725 return ret;
1726}
1727
Willy Tarreau52eed752017-09-22 15:05:09 +02001728/* Try to receive a connection preface, then upon success try to send our
1729 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1730 * missing data. It may return an error in h2c.
1731 */
1732static int h2c_frt_recv_preface(struct h2c *h2c)
1733{
1734 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001735 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001736
Willy Tarreau7838a792019-08-12 18:42:03 +02001737 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1738
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001739 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001740
1741 if (unlikely(ret1 <= 0)) {
Christopher Fauletb5f7b522021-07-26 12:06:53 +02001742 if (!ret1)
1743 h2c->flags |= H2_CF_DEM_SHORT_READ;
Christopher Fauletff7925d2022-10-11 19:12:40 +02001744 if (ret1 < 0 || (h2c->flags & H2_CF_RCVD_SHUT)) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01001745 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 +02001746 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauee4684f2021-06-17 08:08:48 +02001747 if (b_data(&h2c->dbuf) ||
1748 !(((const struct session *)h2c->conn->owner)->fe->options & PR_O_IGNORE_PRB))
1749 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01001750 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001751 ret2 = 0;
1752 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001753 }
1754
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001755 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001756 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001757 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001758 out:
1759 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001760 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001761}
1762
Willy Tarreau01b44822018-10-03 14:26:37 +02001763/* Try to send a connection preface, then upon success try to send our
1764 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1765 * missing data. It may return an error in h2c.
1766 */
1767static int h2c_bck_send_preface(struct h2c *h2c)
1768{
1769 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001770 int ret = 0;
1771
1772 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001773
Willy Tarreaubcc45952019-05-26 10:05:50 +02001774 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001775 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001776 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001777 h2c->flags |= H2_CF_MUX_MALLOC;
1778 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001779 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001780 }
1781
1782 if (!b_data(res)) {
1783 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001784 ret = b_istput(res, ist(H2_CONN_PREFACE));
1785 if (unlikely(ret <= 0)) {
1786 if (!ret) {
1787 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1788 goto retry;
1789 h2c->flags |= H2_CF_MUX_MFULL;
1790 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001791 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001792 }
1793 else {
1794 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001795 ret = 0;
1796 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001797 }
1798 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001799 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001800 ret = h2c_send_settings(h2c);
1801 out:
1802 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1803 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001804}
1805
Willy Tarreau081d4722017-05-16 21:51:05 +02001806/* try to send a GOAWAY frame on the connection to report an error or a graceful
1807 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1808 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1809 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1810 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1811 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1812 * on unrecoverable failure. It will not attempt to send one again in this last
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001813 * case, nor will it send one if settings were not sent (e.g. still waiting for
1814 * a preface) so that it is safe to use h2c_error() to report such errors.
Willy Tarreau081d4722017-05-16 21:51:05 +02001815 */
1816static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1817{
1818 struct buffer *res;
1819 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001820 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001821
Willy Tarreau7838a792019-08-12 18:42:03 +02001822 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1823
Willy Tarreau15dbedd2022-04-13 09:40:52 +02001824 if ((h2c->flags & H2_CF_GOAWAY_FAILED) || h2c->st0 < H2_CS_SETTINGS1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001825 ret = 1; // claim that it worked
1826 goto out;
1827 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001828
Willy Tarreau9c218e72019-05-26 10:08:28 +02001829 /* len: 8, type: 7, flags: none, sid: 0 */
1830 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1831
1832 if (h2c->last_sid < 0)
1833 h2c->last_sid = h2c->max_id;
1834
1835 write_n32(str + 9, h2c->last_sid);
1836 write_n32(str + 13, h2c->errcode);
1837
Willy Tarreaubcc45952019-05-26 10:05:50 +02001838 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001839 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001840 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001841 h2c->flags |= H2_CF_MUX_MALLOC;
1842 if (h2s)
1843 h2s->flags |= H2_SF_BLK_MROOM;
1844 else
1845 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001846 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001847 }
1848
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001849 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001850 if (unlikely(ret <= 0)) {
1851 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001852 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1853 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001854 h2c->flags |= H2_CF_MUX_MFULL;
1855 if (h2s)
1856 h2s->flags |= H2_SF_BLK_MROOM;
1857 else
1858 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001859 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001860 }
1861 else {
1862 /* we cannot report this error using GOAWAY, so we mark
1863 * it and claim a success.
1864 */
1865 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1866 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001867 ret = 1;
1868 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001869 }
1870 }
1871 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001872
1873 /* some codes are not for real errors, just attempts to close cleanly */
1874 switch (h2c->errcode) {
1875 case H2_ERR_NO_ERROR:
1876 case H2_ERR_ENHANCE_YOUR_CALM:
1877 case H2_ERR_REFUSED_STREAM:
1878 case H2_ERR_CANCEL:
1879 break;
1880 default:
Willy Tarreau4781b152021-04-06 13:53:36 +02001881 HA_ATOMIC_INC(&h2c->px_counters->goaway_resp);
Willy Tarreauf965b2a2020-12-01 10:47:18 +01001882 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001883 out:
1884 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001885 return ret;
1886}
1887
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001888/* Try to send an RST_STREAM frame on the connection for the indicated stream
1889 * during mux operations. This stream must be valid and cannot be closed
1890 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1891 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1892 * not yet.
1893 *
1894 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1895 * to write the message, it subscribes the stream to future notifications.
1896 */
1897static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1898{
1899 struct buffer *res;
1900 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001901 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001902
Willy Tarreau7838a792019-08-12 18:42:03 +02001903 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1904
1905 if (!h2s || h2s->st == H2_SS_CLOSED) {
1906 ret = 1;
1907 goto out;
1908 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001909
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001910 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1911 * RST_STREAM in response to a RST_STREAM frame.
1912 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001913 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001914 ret = 1;
1915 goto ignore;
1916 }
1917
Willy Tarreau9c218e72019-05-26 10:08:28 +02001918 /* len: 4, type: 3, flags: none */
1919 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1920 write_n32(str + 5, h2s->id);
1921 write_n32(str + 9, h2s->errcode);
1922
Willy Tarreaubcc45952019-05-26 10:05:50 +02001923 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001924 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001925 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001926 h2c->flags |= H2_CF_MUX_MALLOC;
1927 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001928 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001929 }
1930
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001931 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001932 if (unlikely(ret <= 0)) {
1933 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001934 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1935 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001936 h2c->flags |= H2_CF_MUX_MFULL;
1937 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001938 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001939 }
1940 else {
1941 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001942 ret = 0;
1943 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001944 }
1945 }
1946
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001947 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001948 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001949 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001950 out:
1951 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001952 return ret;
1953}
1954
1955/* Try to send an RST_STREAM frame on the connection for the stream being
1956 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001957 * error code, even if the stream is one of the dummy ones, and will update
1958 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001959 *
1960 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1961 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001962 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001963 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001964 */
1965static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1966{
1967 struct buffer *res;
1968 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001969 int ret = 0;
1970
1971 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001972
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001973 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1974 * RST_STREAM in response to a RST_STREAM frame.
1975 */
1976 if (h2c->dft == H2_FT_RST_STREAM) {
1977 ret = 1;
1978 goto ignore;
1979 }
1980
Willy Tarreau9c218e72019-05-26 10:08:28 +02001981 /* len: 4, type: 3, flags: none */
1982 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1983
1984 write_n32(str + 5, h2c->dsi);
1985 write_n32(str + 9, h2s->errcode);
1986
Willy Tarreaubcc45952019-05-26 10:05:50 +02001987 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001988 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001989 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001990 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001991 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001992 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001993 }
1994
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001995 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001996 if (unlikely(ret <= 0)) {
1997 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001998 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1999 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002000 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002001 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002002 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002003 }
2004 else {
2005 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002006 ret = 0;
2007 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02002008 }
2009 }
2010
Willy Tarreau8adae7c2018-03-22 17:37:05 +01002011 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02002012 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02002013 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01002014 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01002015 }
2016
Willy Tarreau7838a792019-08-12 18:42:03 +02002017 out:
Willy Tarreau4781b152021-04-06 13:53:36 +02002018 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_resp);
Willy Tarreau7838a792019-08-12 18:42:03 +02002019 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02002020 return ret;
2021}
2022
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002023/* try to send an empty DATA frame with the ES flag set to notify about the
2024 * end of stream and match a shutdown(write). If an ES was already sent as
2025 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
2026 * on success or zero if nothing was done. In case of lack of room to write the
2027 * message, it subscribes the requesting stream to future notifications.
2028 */
2029static int h2_send_empty_data_es(struct h2s *h2s)
2030{
2031 struct h2c *h2c = h2s->h2c;
2032 struct buffer *res;
2033 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002034 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002035
Willy Tarreau7838a792019-08-12 18:42:03 +02002036 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
2037
2038 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
2039 ret = 1;
2040 goto out;
2041 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002042
Willy Tarreau9c218e72019-05-26 10:08:28 +02002043 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
2044 memcpy(str, "\x00\x00\x00\x00\x01", 5);
2045 write_n32(str + 5, h2s->id);
2046
Willy Tarreaubcc45952019-05-26 10:05:50 +02002047 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002048 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002049 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002050 h2c->flags |= H2_CF_MUX_MALLOC;
2051 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002052 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002053 }
2054
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002055 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002056 if (likely(ret > 0)) {
2057 h2s->flags |= H2_SF_ES_SENT;
2058 }
2059 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002060 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2061 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002062 h2c->flags |= H2_CF_MUX_MFULL;
2063 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01002064 }
2065 else {
2066 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002067 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002068 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002069 out:
2070 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01002071 return ret;
2072}
2073
Willy Tarreau4596fe22022-05-17 19:07:51 +02002074/* wake a specific stream and assign its stream connector some SE_FL_* flags
2075 * among SE_FL_ERR_PENDING and SE_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002076 * is automatically updated accordingly. If the stream is orphaned, it is
2077 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01002078 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002079static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01002080{
Willy Tarreau7838a792019-08-12 18:42:03 +02002081 struct h2c *h2c = h2s->h2c;
2082
2083 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
2084
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002085 if (!h2s_sc(h2s)) {
Christopher Fauletf02ca002019-03-07 16:21:34 +01002086 /* this stream was already orphaned */
2087 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002088 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002089 return;
2090 }
2091
Christopher Fauletaade4ed2020-10-08 15:38:41 +02002092 if (h2c_read0_pending(h2s->h2c)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002093 if (h2s->st == H2_SS_OPEN)
2094 h2s->st = H2_SS_HREM;
2095 else if (h2s->st == H2_SS_HLOC)
2096 h2s_close(h2s);
2097 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002098
Christopher Fauletff7925d2022-10-11 19:12:40 +02002099 if (h2s->h2c->st0 >= H2_CS_ERROR || (h2s->h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) ||
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002100 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02002101 se_fl_set_error(h2s->sd);
Willy Tarreau23482912019-05-07 15:23:14 +02002102
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02002103 if (h2s->st < H2_SS_ERROR)
2104 h2s->st = H2_SS_ERROR;
2105 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01002106
2107 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002108 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002109}
2110
2111/* wake the streams attached to the connection, whose id is greater than <last>
2112 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002113 */
Willy Tarreau23482912019-05-07 15:23:14 +02002114static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002115{
2116 struct eb32_node *node;
2117 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002118
Willy Tarreau7838a792019-08-12 18:42:03 +02002119 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
2120
Christopher Fauletf02ca002019-03-07 16:21:34 +01002121 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002122 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
2123 while (node) {
2124 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002125 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002126 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01002127 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01002128
Christopher Fauletf02ca002019-03-07 16:21:34 +01002129 /* Wake all streams with unassigned ID (ID == 0) */
2130 node = eb32_lookup(&h2c->streams_by_id, 0);
2131 while (node) {
2132 h2s = container_of(node, struct h2s, by_id);
2133 if (h2s->id > 0)
2134 break;
2135 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02002136 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002137 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002138
2139 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01002140}
2141
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002142/* Wake up all blocked streams whose window size has become positive after the
2143 * mux's initial window was adjusted. This should be done after having processed
2144 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002145 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002146static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02002147{
2148 struct h2s *h2s;
2149 struct eb32_node *node;
2150
Willy Tarreau7838a792019-08-12 18:42:03 +02002151 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2152
Willy Tarreau3421aba2017-07-27 15:41:03 +02002153 node = eb32_first(&h2c->streams_by_id);
2154 while (node) {
2155 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002156 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002157 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002158 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002159 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2160 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002161 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01002162 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002163 node = eb32_next(node);
2164 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002165
2166 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002167}
2168
2169/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
2170 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01002171 * return an error in h2c. The caller must have already verified frame length
2172 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02002173 */
2174static int h2c_handle_settings(struct h2c *h2c)
2175{
2176 unsigned int offset;
2177 int error;
2178
Willy Tarreau7838a792019-08-12 18:42:03 +02002179 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
2180
Willy Tarreau3421aba2017-07-27 15:41:03 +02002181 if (h2c->dff & H2_F_SETTINGS_ACK) {
2182 if (h2c->dfl) {
2183 error = H2_ERR_FRAME_SIZE_ERROR;
2184 goto fail;
2185 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002186 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002187 }
2188
Willy Tarreau3421aba2017-07-27 15:41:03 +02002189 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002190 if (b_data(&h2c->dbuf) < h2c->dfl) {
2191 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002192 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002193 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002194
2195 /* parse the frame */
2196 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002197 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
2198 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002199
2200 switch (type) {
2201 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
2202 /* we need to update all existing streams with the
2203 * difference from the previous iws.
2204 */
2205 if (arg < 0) { // RFC7540#6.5.2
2206 error = H2_ERR_FLOW_CONTROL_ERROR;
2207 goto fail;
2208 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002209 h2c->miw = arg;
2210 break;
2211 case H2_SETTINGS_MAX_FRAME_SIZE:
2212 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002213 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 +02002214 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002215 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002216 goto fail;
2217 }
2218 h2c->mfs = arg;
2219 break;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01002220 case H2_SETTINGS_HEADER_TABLE_SIZE:
2221 h2c->flags |= H2_CF_SHTS_UPDATED;
2222 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01002223 case H2_SETTINGS_ENABLE_PUSH:
2224 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002225 TRACE_ERROR("ENABLE_PUSH out of range", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002226 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002227 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau1b38b462017-12-03 19:02:28 +01002228 goto fail;
2229 }
2230 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01002231 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
2232 if (h2c->flags & H2_CF_IS_BACK) {
2233 /* the limit is only for the backend; for the frontend it is our limit */
2234 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
2235 arg = h2_settings_max_concurrent_streams;
2236 h2c->streams_limit = arg;
2237 }
2238 break;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002239 case H2_SETTINGS_ENABLE_CONNECT_PROTOCOL:
Amaury Denoyelle0df04362021-10-18 09:43:29 +02002240 if (arg == 1)
2241 h2c->flags |= H2_CF_RCVD_RFC8441;
Amaury Denoyellef9dcbee2020-12-11 17:53:10 +01002242 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002243 }
2244 }
2245
2246 /* need to ACK this frame now */
2247 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02002248 done:
2249 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002250 return 1;
2251 fail:
Willy Tarreau9364a5f2019-10-23 11:06:35 +02002252 if (!(h2c->flags & H2_CF_IS_BACK))
2253 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002254 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002255 out0:
2256 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 +02002257 return 0;
2258}
2259
2260/* try to send an ACK for a settings frame on the connection. Returns > 0 on
2261 * success or one of the h2_status values.
2262 */
2263static int h2c_ack_settings(struct h2c *h2c)
2264{
2265 struct buffer *res;
2266 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02002267 int ret = 0;
2268
2269 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002270
Willy Tarreau9c218e72019-05-26 10:08:28 +02002271 memcpy(str,
2272 "\x00\x00\x00" /* length : 0 (no data) */
2273 "\x04" "\x01" /* type : 4, flags : ACK */
2274 "\x00\x00\x00\x00" /* stream ID */, 9);
2275
Willy Tarreaubcc45952019-05-26 10:05:50 +02002276 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002277 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002278 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002279 h2c->flags |= H2_CF_MUX_MALLOC;
2280 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002281 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002282 }
2283
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002284 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002285 if (unlikely(ret <= 0)) {
2286 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002287 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2288 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002289 h2c->flags |= H2_CF_MUX_MFULL;
2290 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002291 }
2292 else {
2293 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002294 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002295 }
2296 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002297 out:
2298 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002299 return ret;
2300}
2301
Willy Tarreaucf68c782017-10-10 17:11:41 +02002302/* processes a PING frame and schedules an ACK if needed. The caller must pass
2303 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002304 * missing data. The caller must have already verified frame length
2305 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002306 */
2307static int h2c_handle_ping(struct h2c *h2c)
2308{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002309 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002310 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002311 h2c->st0 = H2_CS_FRAME_A;
2312 return 1;
2313}
2314
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002315/* Try to send a window update for stream id <sid> and value <increment>.
2316 * Returns > 0 on success or zero on missing room or failure. It may return an
2317 * error in h2c.
2318 */
2319static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2320{
2321 struct buffer *res;
2322 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002323 int ret = 0;
2324
2325 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002326
Willy Tarreau9c218e72019-05-26 10:08:28 +02002327 /* length: 4, type: 8, flags: none */
2328 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2329 write_n32(str + 5, sid);
2330 write_n32(str + 9, increment);
2331
Willy Tarreaubcc45952019-05-26 10:05:50 +02002332 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002333 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002334 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002335 h2c->flags |= H2_CF_MUX_MALLOC;
2336 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002337 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002338 }
2339
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002340 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002341 if (unlikely(ret <= 0)) {
2342 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002343 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2344 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002345 h2c->flags |= H2_CF_MUX_MFULL;
2346 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002347 }
2348 else {
2349 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002350 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002351 }
2352 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002353 out:
2354 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002355 return ret;
2356}
2357
2358/* try to send pending window update for the connection. It's safe to call it
2359 * with no pending updates. Returns > 0 on success or zero on missing room or
2360 * failure. It may return an error in h2c.
2361 */
2362static int h2c_send_conn_wu(struct h2c *h2c)
2363{
2364 int ret = 1;
2365
Willy Tarreau7838a792019-08-12 18:42:03 +02002366 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2367
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002368 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002369 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002370
Willy Tarreau97aaa672018-12-23 09:49:04 +01002371 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2372 /* increase the advertised connection window to 2G on
2373 * first update.
2374 */
2375 h2c->flags |= H2_CF_WINDOW_OPENED;
2376 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2377 }
2378
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002379 /* send WU for the connection */
2380 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2381 if (ret > 0)
2382 h2c->rcvd_c = 0;
2383
Willy Tarreau7838a792019-08-12 18:42:03 +02002384 out:
2385 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002386 return ret;
2387}
2388
2389/* try to send pending window update for the current dmux stream. It's safe to
2390 * call it with no pending updates. Returns > 0 on success or zero on missing
2391 * room or failure. It may return an error in h2c.
2392 */
2393static int h2c_send_strm_wu(struct h2c *h2c)
2394{
2395 int ret = 1;
2396
Willy Tarreau7838a792019-08-12 18:42:03 +02002397 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2398
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002399 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002400 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002401
2402 /* send WU for the stream */
2403 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2404 if (ret > 0)
2405 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002406 out:
2407 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002408 return ret;
2409}
2410
Willy Tarreaucf68c782017-10-10 17:11:41 +02002411/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2412 * success, 0 on missing data or one of the h2_status values.
2413 */
2414static int h2c_ack_ping(struct h2c *h2c)
2415{
2416 struct buffer *res;
2417 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002418 int ret = 0;
2419
2420 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002421
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002422 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002423 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002424
Willy Tarreaucf68c782017-10-10 17:11:41 +02002425 memcpy(str,
2426 "\x00\x00\x08" /* length : 8 (same payload) */
2427 "\x06" "\x01" /* type : 6, flags : ACK */
2428 "\x00\x00\x00\x00" /* stream ID */, 9);
2429
2430 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002431 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002432
Willy Tarreau9c218e72019-05-26 10:08:28 +02002433 res = br_tail(h2c->mbuf);
2434 retry:
2435 if (!h2_get_buf(h2c, res)) {
2436 h2c->flags |= H2_CF_MUX_MALLOC;
2437 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002438 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002439 }
2440
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002441 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002442 if (unlikely(ret <= 0)) {
2443 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002444 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2445 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002446 h2c->flags |= H2_CF_MUX_MFULL;
2447 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002448 }
2449 else {
2450 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002451 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002452 }
2453 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002454 out:
2455 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002456 return ret;
2457}
2458
Willy Tarreau26f95952017-07-27 17:18:30 +02002459/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2460 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002461 * h2c or h2s. The caller must have already verified frame length and stream ID
2462 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002463 */
2464static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2465{
2466 int32_t inc;
2467 int error;
2468
Willy Tarreau7838a792019-08-12 18:42:03 +02002469 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2470
Willy Tarreau26f95952017-07-27 17:18:30 +02002471 /* process full frame only */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002472 if (b_data(&h2c->dbuf) < h2c->dfl) {
2473 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002474 goto out0;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002475 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002476
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002477 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002478
2479 if (h2c->dsi != 0) {
2480 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002481
2482 /* it's not an error to receive WU on a closed stream */
2483 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002484 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002485
2486 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002487 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 +02002488 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002489 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002490 goto strm_err;
2491 }
2492
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002493 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002494 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 +02002495 error = H2_ERR_FLOW_CONTROL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002496 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002497 goto strm_err;
2498 }
2499
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002500 h2s->sws += inc;
2501 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002502 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreau9edf6db2019-10-02 10:49:59 +02002503 LIST_DEL_INIT(&h2s->list);
Willy Tarreauf96508a2020-01-10 11:12:48 +01002504 if ((h2s->subs && h2s->subs->events & SUB_RETRY_SEND) ||
2505 h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))
Willy Tarreau2b718102021-04-21 07:32:39 +02002506 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002507 }
2508 }
2509 else {
2510 /* connection window update */
2511 if (!inc) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002512 TRACE_ERROR("conn WINDOW_UPDATE inc=0", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002513 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002514 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau26f95952017-07-27 17:18:30 +02002515 goto conn_err;
2516 }
2517
2518 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2519 error = H2_ERR_FLOW_CONTROL_ERROR;
2520 goto conn_err;
2521 }
2522
2523 h2c->mws += inc;
2524 }
2525
Willy Tarreau7838a792019-08-12 18:42:03 +02002526 done:
2527 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002528 return 1;
2529
2530 conn_err:
2531 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002532 out0:
2533 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 +02002534 return 0;
2535
2536 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002537 h2s_error(h2s, error);
2538 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002539 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002540 return 0;
2541}
2542
Willy Tarreaue96b0922017-10-30 00:28:29 +01002543/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002544 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2545 * have already verified frame length and stream ID validity. Described in
2546 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002547 */
2548static int h2c_handle_goaway(struct h2c *h2c)
2549{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002550 int last;
2551
Willy Tarreau7838a792019-08-12 18:42:03 +02002552 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002553 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002554 if (b_data(&h2c->dbuf) < h2c->dfl) {
2555 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002556 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002557 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002558 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002559
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002560 last = h2_get_n32(&h2c->dbuf, 0);
2561 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002562 if (h2c->last_sid < 0)
2563 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002564 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002565 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002566 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002567}
2568
Willy Tarreau92153fc2017-12-03 19:46:19 +01002569/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002570 * invalid. Returns > 0 on success or zero on missing data. It may return an
2571 * error in h2c. The caller must have already verified frame length and stream
2572 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002573 */
2574static int h2c_handle_priority(struct h2c *h2c)
2575{
Willy Tarreau7838a792019-08-12 18:42:03 +02002576 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2577
Willy Tarreau92153fc2017-12-03 19:46:19 +01002578 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002579 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002580 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002581 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002582 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002583 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002584
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002585 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002586 /* 7540#5.3 : can't depend on itself */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002587 TRACE_ERROR("PRIORITY depends on itself", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002588 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02002589 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002590 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002591 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002592 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002593 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002594 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002595}
2596
Willy Tarreaucd234e92017-08-18 10:59:39 +02002597/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002598 * Returns > 0 on success or zero on missing data. The caller must have already
2599 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002600 */
2601static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2602{
Willy Tarreau7838a792019-08-12 18:42:03 +02002603 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2604
Willy Tarreaucd234e92017-08-18 10:59:39 +02002605 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002606 if (b_data(&h2c->dbuf) < h2c->dfl) {
2607 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 +02002608 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002609 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002610 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002611
2612 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002613 if (h2s->st == H2_SS_CLOSED) {
2614 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 +02002615 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002616 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002617
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002618 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002619 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002620
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002621 if (h2s_sc(h2s)) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002622 se_fl_set_error(h2s->sd);
Willy Tarreauf830f012018-12-19 17:44:55 +01002623 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002624 }
2625
2626 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002627 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002628 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002629}
2630
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002631/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2632 * It may return an error in h2c or h2s. The caller must consider that the
2633 * return value is the new h2s in case one was allocated (most common case).
2634 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002635 * errors here are reported as connection errors since it's impossible to
2636 * recover from such errors after the compression context has been altered.
2637 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002638static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002639{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002640 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002641 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002642 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002643 int error;
2644
Willy Tarreau7838a792019-08-12 18:42:03 +02002645 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2646
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002647 if (!b_size(&h2c->dbuf)) {
2648 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002649 goto out; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002650 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002651
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002652 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2653 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002654 goto out; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002655 }
Willy Tarreau13278b42017-10-13 19:23:14 +02002656
2657 /* now either the frame is complete or the buffer is complete */
2658 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002659 /* The stream exists/existed, this must be a trailers frame */
2660 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002661 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &body_len, NULL);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002662 /* unrecoverable error ? */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002663 if (h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau17c630b2023-01-19 23:58:11 +01002664 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 +01002665 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002666 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002667 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002668
Christopher Faulet485da0b2021-10-08 08:56:00 +02002669 if (error == 0) {
2670 /* Demux not blocked because of the stream, it is an incomplete frame */
2671 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2672 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002673 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002674 }
Willy Tarreauaab1a602019-05-06 11:12:18 +02002675
2676 if (error < 0) {
2677 /* Failed to decode this frame (e.g. too large request)
2678 * but the HPACK decompressor is still synchronized.
2679 */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002680 sess_log(h2c->conn->owner);
Willy Tarreauaab1a602019-05-06 11:12:18 +02002681 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
Willy Tarreau17c630b2023-01-19 23:58:11 +01002682 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 +02002683 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002684 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002685 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002686 goto done;
2687 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002688 /* the connection was already killed by an RST, let's consume
2689 * the data and send another RST.
2690 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002691 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002692 sess_log(h2c->conn->owner);
Willy Tarreau1f035502019-01-30 11:44:07 +01002693 h2s = (struct h2s*)h2_error_stream;
2694 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002695 }
2696 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2697 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2698 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002699 TRACE_ERROR("HEADERS on invalid stream ID", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau4781b152021-04-06 13:53:36 +02002700 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002701 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002702 goto conn_err;
2703 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002704 else if (h2c->flags & H2_CF_DEM_TOOMANY)
Willy Tarreau36c22322022-05-27 10:41:24 +02002705 goto out; // IDLE but too many sc still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002706
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002707 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002708
Willy Tarreau25919232019-01-03 14:48:18 +01002709 /* unrecoverable error ? */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002710 if (h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau17c630b2023-01-19 23:58:11 +01002711 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 +01002712 sess_log(h2c->conn->owner);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002713 goto out;
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002714 }
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002715
Willy Tarreau25919232019-01-03 14:48:18 +01002716 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002717 if (error == 0) {
2718 /* Demux not blocked because of the stream, it is an incomplete frame */
2719 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2720 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau25919232019-01-03 14:48:18 +01002721 goto out; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002722 }
Willy Tarreau25919232019-01-03 14:48:18 +01002723
2724 /* Failed to decode this stream (e.g. too large request)
2725 * but the HPACK decompressor is still synchronized.
2726 */
Willy Tarreauf43f36d2023-01-19 23:22:03 +01002727 sess_log(h2c->conn->owner);
Willy Tarreau25919232019-01-03 14:48:18 +01002728 h2s = (struct h2s*)h2_error_stream;
2729 goto send_rst;
2730 }
2731
Willy Tarreau29268e92021-06-17 08:29:14 +02002732 TRACE_USER("rcvd H2 request ", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW, h2c->conn, 0, &rxbuf);
2733
Willy Tarreau198b5072022-05-12 09:08:51 +02002734 /* Now we cannot roll back and we won't come back here anymore for this
2735 * stream, this stream ID is open.
2736 */
2737 if (h2c->dsi > h2c->max_id)
2738 h2c->max_id = h2c->dsi;
2739
Willy Tarreau22de8d32018-09-05 19:55:58 +02002740 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002741 * positively from h2c_frt_stream_new(), the stream will report the error,
2742 * and if we return in error, h2c_frt_stream_new() will emit the error.
Christopher Faulet7d013e72020-12-15 16:56:50 +01002743 *
2744 * Xfer the rxbuf to the stream. On success, the new stream owns the
2745 * rxbuf. On error, it is released here.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002746 */
Amaury Denoyelle90ac6052021-10-18 14:45:49 +02002747 h2s = h2c_frt_stream_new(h2c, h2c->dsi, &rxbuf, flags);
Willy Tarreau13278b42017-10-13 19:23:14 +02002748 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002749 h2s = (struct h2s*)h2_refused_stream;
2750 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002751 }
2752
2753 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002754 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002755 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002756
Willy Tarreau88d138e2019-01-02 19:38:14 +01002757 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002758 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002759 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002760
2761 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002762 if (h2s->st == H2_SS_OPEN)
2763 h2s->st = H2_SS_HREM;
2764 else
2765 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002766 }
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002767 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002768
2769 conn_err:
2770 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002771 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002772
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002773 out:
2774 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002775 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 +01002776 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002777
2778 send_rst:
2779 /* make the demux send an RST for the current stream. We may only
2780 * do this if we're certain that the HEADERS frame was properly
2781 * decompressed so that the HPACK decoder is still kept up to date.
2782 */
2783 h2_release_buf(h2c, &rxbuf);
2784 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002785
Willy Tarreau022e5e52020-09-10 09:33:15 +02002786 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 +02002787 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002788 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002789}
2790
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002791/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2792 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2793 * errors here are reported as connection errors since it's impossible to
2794 * recover from such errors after the compression context has been altered.
2795 */
2796static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2797{
Christopher Faulet6884aa32019-09-23 15:28:20 +02002798 struct buffer rxbuf = BUF_NULL;
2799 unsigned long long body_len = 0;
2800 uint32_t flags = 0;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002801 int error;
2802
Willy Tarreau7838a792019-08-12 18:42:03 +02002803 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2804
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002805 if (!b_size(&h2c->dbuf)) {
2806 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002807 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002808 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002809
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002810 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2811 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002812 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002813 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002814
Christopher Faulet6884aa32019-09-23 15:28:20 +02002815 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002816 error = h2c_dec_hdrs(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len, h2s->upgrade_protocol);
Christopher Faulet6884aa32019-09-23 15:28:20 +02002817 }
2818 else {
2819 /* the connection was already killed by an RST, let's consume
2820 * the data and send another RST.
2821 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01002822 error = h2c_dec_hdrs(h2c, &rxbuf, &flags, &body_len, NULL);
Christopher Fauletea7a7782019-09-26 16:19:13 +02002823 h2s = (struct h2s*)h2_error_stream;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002824 h2c->st0 = H2_CS_FRAME_E;
2825 goto send_rst;
2826 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002827
Willy Tarreau25919232019-01-03 14:48:18 +01002828 /* unrecoverable error ? */
Willy Tarreau17c630b2023-01-19 23:58:11 +01002829 if (h2c->st0 >= H2_CS_ERROR) {
2830 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 +02002831 goto fail;
Willy Tarreau17c630b2023-01-19 23:58:11 +01002832 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002833
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002834 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2835 /* RFC7540#5.1 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002836 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 +01002837 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2838 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002839 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002840 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002841 }
2842
Willy Tarreau25919232019-01-03 14:48:18 +01002843 if (error <= 0) {
Christopher Faulet485da0b2021-10-08 08:56:00 +02002844 if (error == 0) {
2845 /* Demux not blocked because of the stream, it is an incomplete frame */
2846 if (!(h2c->flags &H2_CF_DEM_BLOCK_ANY))
2847 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002848 goto fail; // missing data
Christopher Faulet485da0b2021-10-08 08:56:00 +02002849 }
Willy Tarreau25919232019-01-03 14:48:18 +01002850
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002851 /* stream error : send RST_STREAM */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002852 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 +01002853 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002854 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau4781b152021-04-06 13:53:36 +02002855 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02002856 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002857 }
2858
Christopher Fauletfa922f02019-05-07 10:55:17 +02002859 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002860 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002861
Willy Tarreau95acc8b2022-05-27 16:14:10 +02002862 if (se_fl_test(h2s->sd, SE_FL_ERROR) && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002863 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002864 else if (h2s->flags & H2_SF_ES_RCVD) {
2865 if (h2s->st == H2_SS_OPEN)
2866 h2s->st = H2_SS_HREM;
2867 else if (h2s->st == H2_SS_HLOC)
2868 h2s_close(h2s);
2869 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002870
Christopher Fauletf95f8762021-01-22 11:59:07 +01002871 /* Unblock busy server h2s waiting for the response headers to validate
2872 * the tunnel establishment or the end of the response of an oborted
2873 * tunnel
2874 */
2875 if ((h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY)) == (H2_SF_BODY_TUNNEL|H2_SF_BLK_MBUSY) ||
2876 (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)) {
2877 TRACE_STATE("Unblock h2s blocked on tunnel establishment/abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2878 h2s->flags &= ~H2_SF_BLK_MBUSY;
2879 }
2880
Willy Tarreau9abb3172021-06-16 18:32:42 +02002881 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 +02002882 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002883 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002884 fail:
2885 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2886 return NULL;
Christopher Faulet6884aa32019-09-23 15:28:20 +02002887
2888 send_rst:
2889 /* make the demux send an RST for the current stream. We may only
2890 * do this if we're certain that the HEADERS frame was properly
2891 * decompressed so that the HPACK decoder is still kept up to date.
2892 */
2893 h2_release_buf(h2c, &rxbuf);
2894 h2c->st0 = H2_CS_FRAME_E;
2895
Willy Tarreau022e5e52020-09-10 09:33:15 +02002896 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 +02002897 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2898 return h2s;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002899}
2900
Willy Tarreau454f9052017-10-26 19:40:35 +02002901/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2902 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2903 */
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01002904static int h2c_handle_data(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02002905{
2906 int error;
2907
Willy Tarreau7838a792019-08-12 18:42:03 +02002908 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2909
Willy Tarreau454f9052017-10-26 19:40:35 +02002910 /* note that empty DATA frames are perfectly valid and sometimes used
2911 * to signal an end of stream (with the ES flag).
2912 */
2913
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002914 if (!b_size(&h2c->dbuf) && h2c->dfl) {
2915 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002916 goto fail; // empty buffer
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002917 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002918
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002919 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) {
2920 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7838a792019-08-12 18:42:03 +02002921 goto fail; // incomplete frame
Christopher Fauletb5f7b522021-07-26 12:06:53 +02002922 }
Willy Tarreau454f9052017-10-26 19:40:35 +02002923
2924 /* now either the frame is complete or the buffer is complete */
2925
Willy Tarreau454f9052017-10-26 19:40:35 +02002926 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2927 /* RFC7540#6.1 */
2928 error = H2_ERR_STREAM_CLOSED;
2929 goto strm_err;
2930 }
2931
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002932 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002933 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002934 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 +01002935 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002936 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002937 goto strm_err;
2938 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002939 if (!(h2c->flags & H2_CF_IS_BACK) &&
2940 (h2s->flags & (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT)) == (H2_SF_TUNNEL_ABRT|H2_SF_ES_SENT) &&
2941 ((h2c->dfl - h2c->dpl) || !(h2c->dff & H2_F_DATA_END_STREAM))) {
2942 /* a tunnel attempt was aborted but the client still try to send some raw data.
2943 * Thus the stream is closed with the CANCEL error. Here we take care it is not
2944 * an empty DATA Frame with the ES flag. The error is only handled if ES was
2945 * already sent to the client because depending on the scheduling, these data may
Ilya Shipitsinacf84592021-02-06 22:29:08 +05002946 * have been sent before the server response but not handle here.
Christopher Faulet91b21dc2021-01-22 12:13:15 +01002947 */
2948 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2949 error = H2_ERR_CANCEL;
2950 goto strm_err;
2951 }
Willy Tarreau1915ca22019-01-24 11:49:37 +01002952
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002953 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002954 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002955
Willy Tarreau454f9052017-10-26 19:40:35 +02002956 /* call the upper layers to process the frame, then let the upper layer
2957 * notify the stream about any change.
2958 */
Willy Tarreau7be4ee02022-05-18 07:31:41 +02002959 if (!h2s_sc(h2s)) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002960 /* The upper layer has already closed, this may happen on
2961 * 4xx/redirects during POST, or when receiving a response
2962 * from an H2 server after the client has aborted.
2963 */
2964 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002965 goto strm_err;
2966 }
2967
Willy Tarreau8f650c32017-11-21 19:36:21 +01002968 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002969 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002970
Willy Tarreau721c9742017-11-07 11:05:42 +01002971 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002972 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002973 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002974 }
2975
2976 /* check for completion : the callee will change this to FRAME_A or
2977 * FRAME_H once done.
2978 */
2979 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002980 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002981
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002982 /* last frame */
2983 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002984 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002985 if (h2s->st == H2_SS_OPEN)
2986 h2s->st = H2_SS_HREM;
2987 else
2988 h2s_close(h2s);
2989
Willy Tarreau1915ca22019-01-24 11:49:37 +01002990 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2991 /* RFC7540#8.1.2 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01002992 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 +01002993 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau4781b152021-04-06 13:53:36 +02002994 HA_ATOMIC_INC(&h2c->px_counters->strm_proto_err);
Willy Tarreau1915ca22019-01-24 11:49:37 +01002995 goto strm_err;
2996 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002997 }
2998
Christopher Fauletf95f8762021-01-22 11:59:07 +01002999 /* Unblock busy server h2s waiting for the end of the response for an
3000 * aborted tunnel
3001 */
3002 if ((h2c->flags & H2_CF_IS_BACK) &&
3003 (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)) {
3004 TRACE_STATE("Unblock h2s blocked on tunnel abort", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
3005 h2s->flags &= ~H2_SF_BLK_MBUSY;
3006 }
3007
Willy Tarreau7838a792019-08-12 18:42:03 +02003008 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003009 return 1;
3010
Willy Tarreau454f9052017-10-26 19:40:35 +02003011 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01003012 h2s_error(h2s, error);
3013 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003014 fail:
3015 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 +02003016 return 0;
3017}
3018
Willy Tarreau63864812019-08-07 14:25:20 +02003019/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
3020 * valid for the current stream state. This is needed only after parsing the
3021 * frame header but in practice it can be performed at any time during
3022 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
3023 * or 0 in case of error, in which case either h2s or h2c will carry an error.
3024 */
3025static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
3026{
Willy Tarreau7838a792019-08-12 18:42:03 +02003027 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
3028
Willy Tarreau63864812019-08-07 14:25:20 +02003029 if (h2s->st == H2_SS_IDLE &&
3030 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
3031 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
3032 * this state MUST be treated as a connection error
3033 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003034 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 +02003035 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003036 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau63864812019-08-07 14:25:20 +02003037 /* only log if no other stream can report the error */
3038 sess_log(h2c->conn->owner);
3039 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003040 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7838a792019-08-12 18:42:03 +02003041 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 +02003042 return 0;
3043 }
3044
Willy Tarreau57a18162019-11-24 14:57:53 +01003045 if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) {
3046 /* only PUSH_PROMISE would be permitted here */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003047 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 +01003048 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003049 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau57a18162019-11-24 14:57:53 +01003050 TRACE_DEVEL("leaving in error (idle&back)", H2_EV_RX_FRAME|H2_EV_RX_FHDR|H2_EV_PROTO_ERR, h2c->conn, h2s);
3051 return 0;
3052 }
3053
Willy Tarreau63864812019-08-07 14:25:20 +02003054 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
3055 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
3056 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
3057 * this state MUST be treated as a stream error.
3058 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
3059 * PUSH_PROMISE/CONTINUATION cause connection errors.
3060 */
Amaury Denoyellea8879232020-10-27 17:16:03 +01003061 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003062 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 +02003063 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02003064 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003065 }
3066 else {
Willy Tarreau63864812019-08-07 14:25:20 +02003067 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Amaury Denoyellea8879232020-10-27 17:16:03 +01003068 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003069 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 +02003070 return 0;
3071 }
3072
3073 /* Below the management of frames received in closed state is a
3074 * bit hackish because the spec makes strong differences between
3075 * streams closed by receiving RST, sending RST, and seeing ES
3076 * in both directions. In addition to this, the creation of a
3077 * new stream reusing the identifier of a closed one will be
3078 * detected here. Given that we cannot keep track of all closed
3079 * streams forever, we consider that unknown closed streams were
3080 * closed on RST received, which allows us to respond with an
3081 * RST without breaking the connection (eg: to abort a transfer).
3082 * Some frames have to be silently ignored as well.
3083 */
3084 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
3085 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
3086 /* #5.1.1: The identifier of a newly
3087 * established stream MUST be numerically
3088 * greater than all streams that the initiating
3089 * endpoint has opened or reserved. This
3090 * governs streams that are opened using a
3091 * HEADERS frame and streams that are reserved
3092 * using PUSH_PROMISE. An endpoint that
3093 * receives an unexpected stream identifier
3094 * MUST respond with a connection error.
3095 */
3096 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003097 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 +02003098 return 0;
3099 }
3100
Willy Tarreau4c08f122019-09-26 08:47:15 +02003101 if (h2s->flags & H2_SF_RST_RCVD &&
3102 !(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 +02003103 /* RFC7540#5.1:closed: an endpoint that
3104 * receives any frame other than PRIORITY after
3105 * receiving a RST_STREAM MUST treat that as a
3106 * stream error of type STREAM_CLOSED.
3107 *
3108 * Note that old streams fall into this category
3109 * and will lead to an RST being sent.
3110 *
3111 * However, we cannot generalize this to all frame types. Those
3112 * carrying compression state must still be processed before
3113 * being dropped or we'll desynchronize the decoder. This can
3114 * happen with request trailers received after sending an
3115 * RST_STREAM, or with header/trailers responses received after
3116 * sending RST_STREAM (aborted stream).
Willy Tarreau4c08f122019-09-26 08:47:15 +02003117 *
3118 * In addition, since our CLOSED streams always carry the
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003119 * RST_RCVD bit, we don't want to accidentally catch valid
Willy Tarreau4c08f122019-09-26 08:47:15 +02003120 * frames for a closed stream, i.e. RST/PRIO/WU.
Willy Tarreau63864812019-08-07 14:25:20 +02003121 */
3122 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
3123 h2c->st0 = H2_CS_FRAME_E;
Christopher Faulet6884aa32019-09-23 15:28:20 +02003124 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 +02003125 return 0;
3126 }
3127
3128 /* RFC7540#5.1:closed: if this state is reached as a
3129 * result of sending a RST_STREAM frame, the peer that
3130 * receives the RST_STREAM might have already sent
3131 * frames on the stream that cannot be withdrawn. An
3132 * endpoint MUST ignore frames that it receives on
3133 * closed streams after it has sent a RST_STREAM
3134 * frame. An endpoint MAY choose to limit the period
3135 * over which it ignores frames and treat frames that
3136 * arrive after this time as being in error.
3137 */
3138 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
3139 /* RFC7540#5.1:closed: any frame other than
3140 * PRIO/WU/RST in this state MUST be treated as
3141 * a connection error
3142 */
3143 if (h2c->dft != H2_FT_RST_STREAM &&
3144 h2c->dft != H2_FT_PRIORITY &&
3145 h2c->dft != H2_FT_WINDOW_UPDATE) {
3146 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02003147 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 +02003148 return 0;
3149 }
3150 }
3151 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003152 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02003153 return 1;
3154}
3155
Willy Tarreaubc933932017-10-09 16:21:43 +02003156/* process Rx frames to be demultiplexed */
3157static void h2_process_demux(struct h2c *h2c)
3158{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003159 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003160 struct h2_fh hdr;
3161 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003162 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02003163
Willy Tarreau7838a792019-08-12 18:42:03 +02003164 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3165
Willy Tarreau081d4722017-05-16 21:51:05 +02003166 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02003167 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02003168
3169 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3170 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003171 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02003172 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02003173 goto out;
3174
Willy Tarreau52eed752017-09-22 15:05:09 +02003175 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
3176 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02003177 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003178 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003179 h2c->st0 = H2_CS_ERROR2;
Willy Tarreauee4684f2021-06-17 08:08:48 +02003180 if (b_data(&h2c->dbuf) ||
Christopher Faulet3f35da22021-07-26 10:18:35 +02003181 !(((const struct session *)h2c->conn->owner)->fe->options & (PR_O_NULLNOLOG|PR_O_IGNORE_PRB)))
Willy Tarreauee4684f2021-06-17 08:08:48 +02003182 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003183 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003184 goto done;
Willy Tarreau52eed752017-09-22 15:05:09 +02003185 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003186 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02003187
3188 h2c->max_id = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02003189 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaued2b9d92022-08-18 15:30:41 +02003190 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau52eed752017-09-22 15:05:09 +02003191 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003192
3193 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003194 /* ensure that what is pending is a valid SETTINGS frame
3195 * without an ACK.
3196 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003197 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 +02003198 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003199 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003200 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau22de8d32018-09-05 19:55:58 +02003201 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003202 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 +02003203 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003204 if (!(h2c->flags & H2_CF_IS_BACK))
3205 sess_log(h2c->conn->owner);
Willy Tarreau22de8d32018-09-05 19:55:58 +02003206 }
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003207 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003208 }
3209
3210 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
3211 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003212 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 +02003213 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
3214 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003215 if (!(h2c->flags & H2_CF_IS_BACK))
3216 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003217 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003218 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003219 }
3220
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003221 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003222 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003223 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 +02003224 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
3225 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003226 if (!(h2c->flags & H2_CF_IS_BACK))
3227 sess_log(h2c->conn->owner);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003228 goto done;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003229 }
3230
Willy Tarreau3bf69182018-12-21 15:34:50 +01003231 /* that's OK, switch to FRAME_P to process it. This is
3232 * a SETTINGS frame whose header has already been
3233 * deleted above.
3234 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01003235 padlen = 0;
Willy Tarreau4781b152021-04-06 13:53:36 +02003236 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003237 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02003238 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003239 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003240
3241 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02003242 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02003243 int ret = 0;
3244
Willy Tarreau7838a792019-08-12 18:42:03 +02003245 if (!b_data(&h2c->dbuf)) {
3246 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003247 h2c->flags |= H2_CF_DEM_SHORT_READ;
3248 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003249 }
3250
3251 if (h2c->st0 >= H2_CS_ERROR) {
3252 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003253 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003254 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003255
3256 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003257 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003258 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) {
3259 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003260 break;
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003261 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003262
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02003263 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003264 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 +02003265 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003266 if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02003267 /* only log if no other stream can report the error */
3268 sess_log(h2c->conn->owner);
3269 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003270 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003271 break;
3272 }
3273
Willy Tarreau617592c2022-06-08 16:32:22 +02003274 if (h2c->rcvd_s && h2c->dsi != hdr.sid) {
3275 /* changed stream with a pending WU, need to
3276 * send it now.
3277 */
3278 TRACE_PROTO("sending stream WINDOW_UPDATE frame on stream switch", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
3279 ret = h2c_send_strm_wu(h2c);
3280 if (ret <= 0)
3281 break;
3282 }
3283
Christopher Fauletdd2a5622019-06-18 12:22:38 +02003284 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003285 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
3286 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
3287 * we read the pad length and drop it from the remaining
3288 * payload (one byte + the 9 remaining ones = 10 total
3289 * removed), so we have a frame payload starting after the
3290 * pad len. Flow controlled frames (DATA) also count the
3291 * padlen in the flow control, so it must be adjusted.
3292 */
3293 if (hdr.len < 1) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003294 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 +01003295 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003296 if (!(h2c->flags & H2_CF_IS_BACK))
3297 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003298 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003299 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003300 }
3301 hdr.len--;
3302
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003303 if (b_data(&h2c->dbuf) < 10) {
3304 h2c->flags |= H2_CF_DEM_SHORT_READ;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003305 break; // missing padlen
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003306 }
Willy Tarreau3bf69182018-12-21 15:34:50 +01003307
3308 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
3309
3310 if (padlen > hdr.len) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003311 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 +01003312 /* RFC7540#6.1 : pad length = length of
3313 * frame payload or greater => error.
3314 */
3315 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003316 if (!(h2c->flags & H2_CF_IS_BACK))
3317 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003318 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003319 goto done;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003320 }
3321
3322 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
3323 h2c->rcvd_c++;
3324 h2c->rcvd_s++;
3325 }
3326 b_del(&h2c->dbuf, 1);
3327 }
3328 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau54f46e52019-01-30 15:11:03 +01003329
3330 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02003331 h2c->dfl = hdr.len;
3332 h2c->dsi = hdr.sid;
3333 h2c->dft = hdr.ft;
3334 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01003335 h2c->dpl = padlen;
Willy Tarreau0f458712022-08-18 11:19:57 +02003336 h2c->flags |= H2_CF_DEM_IN_PROGRESS;
Willy Tarreau73db4342019-09-25 07:28:44 +02003337 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 +02003338 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003339
3340 /* check for minimum basic frame format validity */
3341 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
3342 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003343 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 +01003344 h2c_error(h2c, ret);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003345 if (!(h2c->flags & H2_CF_IS_BACK))
3346 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003347 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003348 goto done;
Willy Tarreau54f46e52019-01-30 15:11:03 +01003349 }
Willy Tarreau15a47332022-03-18 15:57:34 +01003350
3351 /* transition to HEADERS frame ends the keep-alive idle
3352 * timer and starts the http-request idle delay.
3353 */
3354 if (hdr.ft == H2_FT_HEADERS)
3355 h2c->idle_start = now_ms;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003356 }
3357
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02003358 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
3359 * H2_CS_FRAME_P indicates an incomplete previous operation
3360 * (most often the first attempt) and requires some validity
3361 * checks for the frame and the current state. The two other
3362 * ones are set after completion (or abortion) and must skip
3363 * validity checks.
3364 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003365 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
3366
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003367 if (tmp_h2s != h2s && h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003368 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003369 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003370 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003371 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003372 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003373 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003374 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 +02003375 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003376 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003377 }
3378 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02003379
Willy Tarreau63864812019-08-07 14:25:20 +02003380 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02003381 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
3382 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003383 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02003384 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01003385
Willy Tarreau7e98c052017-10-10 15:56:59 +02003386 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02003387 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02003388 if (h2c->st0 == H2_CS_FRAME_P) {
3389 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003390 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003391 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003392 HA_ATOMIC_INC(&h2c->px_counters->settings_rcvd);
Willy Tarreau3421aba2017-07-27 15:41:03 +02003393
Willy Tarreau7838a792019-08-12 18:42:03 +02003394 if (h2c->st0 == H2_CS_FRAME_A) {
3395 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 +02003396 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003397 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02003398 break;
3399
Willy Tarreaucf68c782017-10-10 17:11:41 +02003400 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02003401 if (h2c->st0 == H2_CS_FRAME_P) {
3402 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02003403 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003404 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003405
Willy Tarreau7838a792019-08-12 18:42:03 +02003406 if (h2c->st0 == H2_CS_FRAME_A) {
3407 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 +02003408 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003409 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02003410 break;
3411
Willy Tarreau26f95952017-07-27 17:18:30 +02003412 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02003413 if (h2c->st0 == H2_CS_FRAME_P) {
3414 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 +02003415 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003416 }
Willy Tarreau26f95952017-07-27 17:18:30 +02003417 break;
3418
Willy Tarreau61290ec2017-10-17 08:19:21 +02003419 case H2_FT_CONTINUATION:
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05003420 /* RFC7540#6.10: CONTINUATION may only be preceded by
Willy Tarreauea18f862018-12-22 20:19:26 +01003421 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
3422 * frames' parsers consume all following CONTINUATION
3423 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02003424 */
Willy Tarreau5dd36ac2020-12-01 10:24:29 +01003425 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 +01003426 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003427 if (!(h2c->flags & H2_CF_IS_BACK))
3428 sess_log(h2c->conn->owner);
Willy Tarreau4781b152021-04-06 13:53:36 +02003429 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003430 goto done;
Willy Tarreau61290ec2017-10-17 08:19:21 +02003431
Willy Tarreau13278b42017-10-13 19:23:14 +02003432 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003433 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003434 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02003435 if (h2c->flags & H2_CF_IS_BACK)
3436 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
3437 else
3438 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003439 if (tmp_h2s) {
3440 h2s = tmp_h2s;
3441 ret = 1;
3442 }
3443 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003444 HA_ATOMIC_INC(&h2c->px_counters->headers_rcvd);
Willy Tarreau13278b42017-10-13 19:23:14 +02003445 break;
3446
Willy Tarreau454f9052017-10-26 19:40:35 +02003447 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003448 if (h2c->st0 == H2_CS_FRAME_P) {
3449 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Christopher Fauletfac0f8f2020-12-07 18:27:03 +01003450 ret = h2c_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003451 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003452 HA_ATOMIC_INC(&h2c->px_counters->data_rcvd);
Willy Tarreau454f9052017-10-26 19:40:35 +02003453
Willy Tarreau7838a792019-08-12 18:42:03 +02003454 if (h2c->st0 == H2_CS_FRAME_A) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003455 /* rcvd_s will suffice to trigger the sending of a WU */
3456 h2c->st0 = H2_CS_FRAME_H;
Willy Tarreau7838a792019-08-12 18:42:03 +02003457 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003458 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003459
Willy Tarreau92153fc2017-12-03 19:46:19 +01003460 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003461 if (h2c->st0 == H2_CS_FRAME_P) {
3462 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003463 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003464 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003465 break;
3466
Willy Tarreaucd234e92017-08-18 10:59:39 +02003467 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003468 if (h2c->st0 == H2_CS_FRAME_P) {
3469 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 +02003470 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003471 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003472 HA_ATOMIC_INC(&h2c->px_counters->rst_stream_rcvd);
Willy Tarreaucd234e92017-08-18 10:59:39 +02003473 break;
3474
Willy Tarreaue96b0922017-10-30 00:28:29 +01003475 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003476 if (h2c->st0 == H2_CS_FRAME_P) {
3477 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003478 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003479 }
Willy Tarreau4781b152021-04-06 13:53:36 +02003480 HA_ATOMIC_INC(&h2c->px_counters->goaway_rcvd);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003481 break;
3482
Willy Tarreau1c661982017-10-30 13:52:01 +01003483 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003484 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003485 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003486 /* drop frames that we ignore. They may be larger than
3487 * the buffer so we drain all of their contents until
3488 * we reach the end.
3489 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003490 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3491 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003492 h2c->dfl -= ret;
3493 ret = h2c->dfl == 0;
3494 }
3495
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003496 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003497 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003498 if (h2s->st == H2_SS_ERROR) {
3499 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 +01003500 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003501 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003502
Willy Tarreau7838a792019-08-12 18:42:03 +02003503 if (h2c->st0 == H2_CS_FRAME_E) {
3504 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 +01003505 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003506 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003507
Willy Tarreau7e98c052017-10-10 15:56:59 +02003508 /* error or missing data condition met above ? */
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003509 if (ret <= 0)
Willy Tarreau7e98c052017-10-10 15:56:59 +02003510 break;
3511
3512 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreaubba7a4d2020-09-18 07:41:28 +02003513 if (h2c->dfl)
3514 TRACE_DEVEL("skipping remaining frame payload", H2_EV_RX_FRAME, h2c->conn, h2s);
Christopher Faulet5112a602019-09-26 16:38:28 +02003515 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3516 b_del(&h2c->dbuf, ret);
3517 h2c->dfl -= ret;
3518 if (!h2c->dfl) {
Willy Tarreau0f458712022-08-18 11:19:57 +02003519 h2c->flags &= ~H2_CF_DEM_IN_PROGRESS;
Christopher Faulet5112a602019-09-26 16:38:28 +02003520 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
3521 h2c->st0 = H2_CS_FRAME_H;
Christopher Faulet5112a602019-09-26 16:38:28 +02003522 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003523 }
3524 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003525
Willy Tarreau617592c2022-06-08 16:32:22 +02003526 if (h2c->rcvd_s > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003527 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau617592c2022-06-08 16:32:22 +02003528 TRACE_PROTO("sending stream WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn, h2s);
3529 h2c_send_strm_wu(h2c);
3530 }
3531
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003532 if (h2c->rcvd_c > 0 &&
Christopher Faulet68ee7842022-10-12 10:21:33 +02003533 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003534 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003535 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003536 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003537
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003538 done:
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003539 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_DEM_SHORT_READ)) {
3540 if (h2c->flags & H2_CF_RCVD_SHUT)
3541 h2c->flags |= H2_CF_END_REACHED;
3542 }
3543
Willy Tarreau7be4ee02022-05-18 07:31:41 +02003544 if (h2s && h2s_sc(h2s) &&
Willy Tarreau567beb82018-12-18 16:52:44 +01003545 (b_data(&h2s->rxbuf) ||
Christopher Fauletaade4ed2020-10-08 15:38:41 +02003546 h2c_read0_pending(h2c) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003547 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003548 (h2s->flags & H2_SF_ES_RCVD) ||
Willy Tarreau95acc8b2022-05-27 16:14:10 +02003549 se_fl_test(h2s->sd, SE_FL_ERROR | SE_FL_ERR_PENDING | SE_FL_EOS))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003550 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003551 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 +02003552 se_fl_set(h2s->sd, SE_FL_RCV_MORE);
Willy Tarreau7e094452018-12-19 18:08:52 +01003553 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003554 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003555
Willy Tarreau7838a792019-08-12 18:42:03 +02003556 if (old_iw != h2c->miw) {
3557 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003558 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003559 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003560
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003561 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003562 out:
3563 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3d4631f2021-01-20 10:53:13 +01003564 return;
Willy Tarreaubc933932017-10-09 16:21:43 +02003565}
3566
Willy Tarreau989539b2020-01-10 17:01:29 +01003567/* resume each h2s eligible for sending in list head <head> */
3568static void h2_resume_each_sending_h2s(struct h2c *h2c, struct list *head)
3569{
3570 struct h2s *h2s, *h2s_back;
3571
3572 TRACE_ENTER(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3573
3574 list_for_each_entry_safe(h2s, h2s_back, head, list) {
3575 if (h2c->mws <= 0 ||
3576 h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3577 h2c->st0 >= H2_CS_ERROR)
3578 break;
3579
3580 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003581
Willy Tarreaud9464162020-01-10 18:25:07 +01003582 if (h2s->flags & H2_SF_NOTIFIED)
Willy Tarreau70c5b0e2020-01-10 18:20:15 +01003583 continue;
3584
Willy Tarreau5723f292020-01-10 15:16:57 +01003585 /* If the sender changed his mind and unsubscribed, let's just
3586 * remove the stream from the send_list.
Willy Tarreau989539b2020-01-10 17:01:29 +01003587 */
Willy Tarreauf96508a2020-01-10 11:12:48 +01003588 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) &&
3589 (!h2s->subs || !(h2s->subs->events & SUB_RETRY_SEND))) {
Willy Tarreau989539b2020-01-10 17:01:29 +01003590 LIST_DEL_INIT(&h2s->list);
3591 continue;
3592 }
3593
Willy Tarreauf96508a2020-01-10 11:12:48 +01003594 if (h2s->subs && h2s->subs->events & SUB_RETRY_SEND) {
Willy Tarreau5723f292020-01-10 15:16:57 +01003595 h2s->flags |= H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01003596 tasklet_wakeup(h2s->subs->tasklet);
3597 h2s->subs->events &= ~SUB_RETRY_SEND;
3598 if (!h2s->subs->events)
3599 h2s->subs = NULL;
Willy Tarreau5723f292020-01-10 15:16:57 +01003600 }
3601 else if (h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW)) {
3602 tasklet_wakeup(h2s->shut_tl);
3603 }
Willy Tarreau989539b2020-01-10 17:01:29 +01003604 }
3605
3606 TRACE_LEAVE(H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn);
3607}
3608
Willy Tarreaubc933932017-10-09 16:21:43 +02003609/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3610 * the end.
3611 */
3612static int h2_process_mux(struct h2c *h2c)
3613{
Willy Tarreau7838a792019-08-12 18:42:03 +02003614 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3615
Willy Tarreau01b44822018-10-03 14:26:37 +02003616 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3617 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3618 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3619 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau9364a5f2019-10-23 11:06:35 +02003620 if (h2c->st0 == H2_CS_ERROR)
Willy Tarreau01b44822018-10-03 14:26:37 +02003621 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau01b44822018-10-03 14:26:37 +02003622 goto fail;
3623 }
3624 h2c->st0 = H2_CS_SETTINGS1;
3625 }
3626 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003627 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003628 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003629 }
3630
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003631 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003632 if (h2c->rcvd_s > 0 &&
3633 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3634 h2c_send_strm_wu(h2c) < 0)
3635 goto fail;
3636
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003637 if (h2c->rcvd_c > 0 &&
3638 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3639 h2c_send_conn_wu(h2c) < 0)
3640 goto fail;
3641
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003642 /* First we always process the flow control list because the streams
3643 * waiting there were already elected for immediate emission but were
3644 * blocked just on this.
3645 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003646 h2_resume_each_sending_h2s(h2c, &h2c->fctl_list);
3647 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003648
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003649 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003650 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003651 if (h2c->st0 == H2_CS_ERROR) {
3652 if (h2c->max_id >= 0) {
3653 h2c_send_goaway_error(h2c, NULL);
3654 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003655 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003656 }
3657
3658 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3659 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003660 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003661 done:
3662 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3663 return 1;
3664 out0:
3665 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3666 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003667}
3668
Willy Tarreau62f52692017-10-08 23:01:42 +02003669
Willy Tarreau479998a2018-11-18 06:30:59 +01003670/* Attempt to read data, and subscribe if none available.
3671 * The function returns 1 if data has been received, otherwise zero.
3672 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003673static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003674{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003675 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003676 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003677 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003678 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003679
Willy Tarreau7838a792019-08-12 18:42:03 +02003680 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3681
3682 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3683 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003684 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003685 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003686
Willy Tarreau7838a792019-08-12 18:42:03 +02003687 if (!h2_recv_allowed(h2c)) {
3688 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003689 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003690 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003691
Willy Tarreau44e973f2018-03-01 17:49:30 +01003692 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003693 if (!buf) {
3694 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003695 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003696 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003697 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003698
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003699 if (!b_data(buf)) {
3700 /* try to pre-align the buffer like the
3701 * rxbufs will be to optimize memory copies. We'll make
3702 * sure that the frame header lands at the end of the
3703 * HTX block to alias it upon recv. We cannot use the
3704 * head because rcv_buf() will realign the buffer if
3705 * it's empty. Thus we cheat and pretend we already
3706 * have a few bytes there.
3707 */
3708 max = buf_room_for_htx_data(buf) + 9;
3709 buf->head = sizeof(struct htx) - 9;
3710 }
3711 else
3712 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003713
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003714 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003715
Christopher Fauletde9d6052021-04-23 12:25:18 +02003716 if (max && !ret && h2_recv_allowed(h2c)) {
3717 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
3718 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003719 } else if (ret) {
Willy Tarreau022e5e52020-09-10 09:33:15 +02003720 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn, 0, 0, (void*)(long)ret);
Christopher Fauletb5f7b522021-07-26 12:06:53 +02003721 h2c->flags &= ~H2_CF_DEM_SHORT_READ;
3722 }
Olivier Houchard81a15af2018-10-19 17:26:49 +02003723
Christopher Fauletde9d6052021-04-23 12:25:18 +02003724 if (conn_xprt_read0_pending(h2c->conn)) {
3725 TRACE_DATA("received read0", H2_EV_H2C_RECV, h2c->conn);
3726 h2c->flags |= H2_CF_RCVD_SHUT;
3727 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003728 if (h2c->conn->flags & CO_FL_ERROR) {
3729 TRACE_DATA("connection error", H2_EV_H2C_RECV, h2c->conn);
3730 h2c->flags |= H2_CF_ERROR;
3731 }
Christopher Fauletde9d6052021-04-23 12:25:18 +02003732
Olivier Houcharda1411e62018-08-17 18:42:48 +02003733 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003734 h2_release_buf(h2c, &h2c->dbuf);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003735 goto end;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003736 }
3737
Willy Tarreau7838a792019-08-12 18:42:03 +02003738 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003739 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau35fb8462019-10-02 11:05:46 +02003740 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK, h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003741 }
3742
Christopher Fauletff7925d2022-10-11 19:12:40 +02003743 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02003744 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003745 return !!ret || (h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERROR));
Willy Tarreau62f52692017-10-08 23:01:42 +02003746}
3747
Willy Tarreau479998a2018-11-18 06:30:59 +01003748/* Try to send data if possible.
3749 * The function returns 1 if data have been sent, otherwise zero.
3750 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003751static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003752{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003753 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003754 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003755 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003756
Willy Tarreau7838a792019-08-12 18:42:03 +02003757 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003758
Christopher Fauletff7925d2022-10-11 19:12:40 +02003759 if (h2c->flags & (H2_CF_ERROR|H2_CF_ERR_PENDING)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003760 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003761 if (h2c->flags & H2_CF_RCVD_SHUT)
3762 h2c->flags |= H2_CF_ERROR;
3763 b_reset(br_tail(h2c->mbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003764 return 1;
3765 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003766
Willy Tarreau911db9b2020-01-23 16:27:54 +01003767 if (conn->flags & CO_FL_WAIT_XPRT) {
Willy Tarreaua2af5122017-10-09 11:56:46 +02003768 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003769 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003770 }
3771
Willy Tarreaubc933932017-10-09 16:21:43 +02003772 /* This loop is quite simple : it tries to fill as much as it can from
3773 * pending streams into the existing buffer until it's reportedly full
3774 * or the end of send requests is reached. Then it tries to send this
3775 * buffer's contents out, marks it not full if at least one byte could
3776 * be sent, and tries again.
3777 *
3778 * The snd_buf() function normally takes a "flags" argument which may
3779 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3780 * data immediately comes and CO_SFL_STREAMER to indicate that the
3781 * connection is streaming lots of data (used to increase TLS record
3782 * size at the expense of latency). The former can be sent any time
3783 * there's a buffer full flag, as it indicates at least one stream
3784 * attempted to send and failed so there are pending data. An
3785 * alternative would be to set it as long as there's an active stream
3786 * but that would be problematic for ACKs until we have an absolute
3787 * guarantee that all waiters have at least one byte to send. The
3788 * latter should possibly not be set for now.
3789 */
3790
3791 done = 0;
3792 while (!done) {
3793 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003794 unsigned int released = 0;
3795 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003796
3797 /* fill as much as we can into the current buffer */
3798 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3799 done = h2_process_mux(h2c);
3800
Olivier Houchard2b094432019-01-29 18:28:36 +01003801 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003802 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003803
Christopher Faulet9a3d3fc2020-10-22 16:24:58 +02003804 if ((conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)) ||
Willy Tarreaue6dc7a02021-10-21 17:30:06 +02003805 (h2c->flags & H2_CF_GOAWAY_FAILED))
Willy Tarreaubc933932017-10-09 16:21:43 +02003806 break;
3807
Christopher Faulet68ee7842022-10-12 10:21:33 +02003808 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))
Willy Tarreaubc933932017-10-09 16:21:43 +02003809 flags |= CO_SFL_MSG_MORE;
3810
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003811 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3812 if (b_data(buf)) {
3813 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003814 if (!ret) {
3815 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003816 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003817 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003818 sent = 1;
Willy Tarreau022e5e52020-09-10 09:33:15 +02003819 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn, 0, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003820 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003821 if (b_data(buf)) {
3822 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003823 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003824 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003825 }
3826 b_free(buf);
3827 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003828 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003829
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003830 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01003831 offer_buffers(NULL, released);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003832
Willy Tarreaubc933932017-10-09 16:21:43 +02003833 /* wrote at least one byte, the buffer is not full anymore */
Christopher Faulet69fe5ce2019-10-24 10:31:01 +02003834 if (sent)
3835 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
Willy Tarreaubc933932017-10-09 16:21:43 +02003836 }
3837
Christopher Fauletff7925d2022-10-11 19:12:40 +02003838 if (conn->flags & CO_FL_ERROR) {
3839 h2c->flags |= H2_CF_ERR_PENDING;
3840 if (h2c->flags & H2_CF_RCVD_SHUT)
3841 h2c->flags |= H2_CF_ERROR;
Willy Tarreau51330962019-05-26 09:38:07 +02003842 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003843 }
Christopher Fauletff7925d2022-10-11 19:12:40 +02003844
Olivier Houchard6ff20392018-07-17 18:46:31 +02003845 /* We're not full anymore, so we can wake any task that are waiting
3846 * for us.
3847 */
Willy Tarreau989539b2020-01-10 17:01:29 +01003848 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H)
3849 h2_resume_each_sending_h2s(h2c, &h2c->send_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003850
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003851 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003852 if (!br_data(h2c->mbuf)) {
3853 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003854 goto end;
Willy Tarreau7838a792019-08-12 18:42:03 +02003855 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003856schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003857 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3858 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003859 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003860 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003861 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Christopher Fauletff7925d2022-10-11 19:12:40 +02003862end:
3863 return sent || (h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR));
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003864}
3865
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003866/* this is the tasklet referenced in h2c->wait_event.tasklet */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003867struct task *h2_io_cb(struct task *t, void *ctx, unsigned int state)
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003868{
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003869 struct connection *conn;
3870 struct tasklet *tl = (struct tasklet *)t;
3871 int conn_in_list;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003872 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003873 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003874
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003875 if (state & TASK_F_USR1) {
3876 /* the tasklet was idling on an idle connection, it might have
3877 * been stolen, let's be careful!
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003878 */
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003879 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3880 if (t->context == NULL) {
3881 /* The connection has been taken over by another thread,
3882 * we're no longer responsible for it, so just free the
3883 * tasklet, and do nothing.
3884 */
3885 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3886 tasklet_free(tl);
Willy Tarreau74163142021-03-13 11:30:19 +01003887 t = NULL;
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003888 goto leave;
3889 }
3890 conn = h2c->conn;
3891 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003892
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003893 conn_in_list = conn->flags & CO_FL_LIST_MASK;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003894
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003895 /* Remove the connection from the list, to be sure nobody attempts
3896 * to use it while we handle the I/O events
3897 */
3898 if (conn_in_list)
3899 conn_delete_from_tree(&conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003900
Willy Tarreaue388f2f2021-03-02 16:51:09 +01003901 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
3902 } else {
3903 /* we're certain the connection was not in an idle list */
3904 conn = h2c->conn;
3905 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3906 conn_in_list = 0;
3907 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003908
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003909 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003910 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003911 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003912 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003913 if (ret || b_data(&h2c->dbuf))
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003914 ret = h2_process(h2c);
3915
3916 /* If we were in an idle list, we want to add it back into it,
3917 * unless h2_process() returned -1, which mean it has destroyed
3918 * the connection (testing !ret is enough, if h2_process() wasn't
3919 * called then ret will be 0 anyway.
3920 */
Willy Tarreau74163142021-03-13 11:30:19 +01003921 if (ret < 0)
3922 t = NULL;
3923
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003924 if (!ret && conn_in_list) {
3925 struct server *srv = objt_server(conn->target);
3926
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003927 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003928 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau85223482022-09-29 20:32:43 +02003929 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003930 else
Willy Tarreau85223482022-09-29 20:32:43 +02003931 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003932 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01003933 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003934
Willy Tarreau38468772020-06-28 00:31:13 +02003935leave:
Willy Tarreau7838a792019-08-12 18:42:03 +02003936 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreau74163142021-03-13 11:30:19 +01003937 return t;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003938}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003939
Willy Tarreau62f52692017-10-08 23:01:42 +02003940/* callback called on any event by the connection handler.
3941 * It applies changes and returns zero, or < 0 if it wants immediate
3942 * destruction of the connection (which normally doesn not happen in h2).
3943 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003944static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003945{
Olivier Houchard7505f942018-08-21 18:10:44 +02003946 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003947
Willy Tarreau7838a792019-08-12 18:42:03 +02003948 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3949
Willy Tarreauf0961222021-02-05 11:41:46 +01003950 if (!(h2c->flags & H2_CF_DEM_BLOCK_ANY) &&
3951 (b_data(&h2c->dbuf) || (h2c->flags & H2_CF_RCVD_SHUT))) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003952 h2_process_demux(h2c);
3953
Christopher Fauletff7925d2022-10-11 19:12:40 +02003954 if (h2c->st0 >= H2_CS_ERROR || (h2c->flags & H2_CF_ERROR))
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003955 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003956
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003957 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003958 h2c->flags &= ~H2_CF_DEM_DFULL;
3959 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003960 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003961
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003962 if (unlikely(h2c->proxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !(h2c->flags & H2_CF_IS_BACK)) {
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003963 int send_goaway = 1;
3964 /* If a close-spread-time option is set, we want to avoid
3965 * closing all the active HTTP2 connections at once so we add a
3966 * random factor that will spread the closing.
3967 */
3968 if (tick_isset(global.close_spread_end)) {
3969 int remaining_window = tick_remain(now_ms, global.close_spread_end);
3970 if (remaining_window) {
3971 /* This should increase the closing rate the
3972 * further along the window we are. */
3973 send_goaway = (remaining_window <= statistical_prng_range(global.close_spread_time));
3974 }
3975 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02003976 else if (global.tune.options & GTUNE_DISABLE_ACTIVE_CLOSE)
3977 send_goaway = 0; /* let the client close his connection himself */
Willy Tarreau8ec14062017-12-30 18:08:13 +01003978 /* frontend is stopping, reload likely in progress, let's try
3979 * to announce a graceful shutdown if not yet done. We don't
3980 * care if it fails, it will be tried again later.
3981 */
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02003982 if (send_goaway) {
3983 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
3984 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3985 if (h2c->last_sid < 0)
3986 h2c->last_sid = (1U << 31) - 1;
3987 h2c_send_goaway_error(h2c, NULL);
3988 }
Willy Tarreau8ec14062017-12-30 18:08:13 +01003989 }
3990 }
3991
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003992 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003993 * If we received early data, and the handshake is done, wake
3994 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003995 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003996 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
Willy Tarreau911db9b2020-01-23 16:27:54 +01003997 (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 +01003998 struct eb32_node *node;
3999 struct h2s *h2s;
4000
4001 h2c->flags |= H2_CF_WAIT_FOR_HS;
4002 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
4003
4004 while (node) {
4005 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004006 if (se_fl_test(h2s->sd, SE_FL_WAIT_FOR_HS))
Willy Tarreau7e094452018-12-19 18:08:52 +01004007 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004008 node = eb32_next(node);
4009 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01004010 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01004011
Christopher Fauletff7925d2022-10-11 19:12:40 +02004012 if ((h2c->flags & H2_CF_ERROR) || h2c_read0_pending(h2c) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01004013 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
4014 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
4015 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02004016 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004017
4018 if (eb_is_empty(&h2c->streams_by_id)) {
4019 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02004020 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004021 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004022 return -1;
4023 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004024
4025 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004026 if (conn->flags & CO_FL_LIST_MASK) {
4027 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004028 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004029 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4030 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004031 }
4032 else if (h2c->st0 == H2_CS_ERROR) {
4033 /* connections in error must be removed from the idle lists */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004034 if (conn->flags & CO_FL_LIST_MASK) {
4035 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004036 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004037 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4038 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004039 }
4040
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004041 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01004042 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02004043
Christopher Fauletff7925d2022-10-11 19:12:40 +02004044 if (h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
Olivier Houchard53216e72018-10-10 15:46:36 +02004045 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02004046 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02004047 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
4048 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02004049 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02004050
Willy Tarreau15a47332022-03-18 15:57:34 +01004051 h2c_update_timeout(h2c);
Olivier Houchard7505f942018-08-21 18:10:44 +02004052 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004053 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004054 return 0;
4055}
4056
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004057/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004058static int h2_wake(struct connection *conn)
4059{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004060 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02004061 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004062
Willy Tarreau7838a792019-08-12 18:42:03 +02004063 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
4064 ret = h2_process(h2c);
Willy Tarreau508f9892020-02-11 04:38:56 +01004065 if (ret >= 0)
4066 h2_wake_some_streams(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02004067 TRACE_LEAVE(H2_EV_H2C_WAKE);
4068 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02004069}
4070
Willy Tarreauea392822017-10-31 10:02:25 +01004071/* Connection timeout management. The principle is that if there's no receipt
4072 * nor sending for a certain amount of time, the connection is closed. If the
4073 * MUX buffer still has lying data or is not allocatable, the connection is
4074 * immediately killed. If it's allocatable and empty, we attempt to send a
4075 * GOAWAY frame.
4076 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004077struct task *h2_timeout_task(struct task *t, void *context, unsigned int state)
Willy Tarreauea392822017-10-31 10:02:25 +01004078{
Olivier Houchard9f6af332018-05-25 14:04:04 +02004079 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01004080 int expired = tick_is_expired(t->expire, now_ms);
4081
Willy Tarreau7838a792019-08-12 18:42:03 +02004082 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
4083
Willy Tarreaubd42e922020-06-30 11:19:23 +02004084 if (h2c) {
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004085 /* Make sure nobody stole the connection from us */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004086 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004087
4088 /* Somebody already stole the connection from us, so we should not
4089 * free it, we just have to free the task.
4090 */
4091 if (!t->context) {
4092 h2c = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004093 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004094 goto do_leave;
4095 }
4096
4097
Willy Tarreaubd42e922020-06-30 11:19:23 +02004098 if (!expired) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004099 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004100 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
4101 return t;
4102 }
Willy Tarreauea392822017-10-31 10:02:25 +01004103
Willy Tarreaubd42e922020-06-30 11:19:23 +02004104 if (!h2c_may_expire(h2c)) {
4105 /* we do still have streams but all of them are idle, waiting
4106 * for the data layer, so we must not enforce the timeout here.
4107 */
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004108 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004109 t->expire = TICK_ETERNITY;
4110 return t;
4111 }
Willy Tarreauc2ea47f2019-10-01 10:12:00 +02004112
Willy Tarreaubd42e922020-06-30 11:19:23 +02004113 /* We're about to destroy the connection, so make sure nobody attempts
4114 * to steal it from us.
4115 */
Willy Tarreaubd42e922020-06-30 11:19:23 +02004116 if (h2c->conn->flags & CO_FL_LIST_MASK)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004117 conn_delete_from_tree(&h2c->conn->hash_node->node);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004118
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01004119 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreaubd42e922020-06-30 11:19:23 +02004120 }
Olivier Houchardcd4159f2020-03-10 18:39:42 +01004121
Olivier Houchard48ce6a32020-07-02 11:58:05 +02004122do_leave:
Olivier Houchard3f795f72019-04-17 22:51:06 +02004123 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02004124
4125 if (!h2c) {
4126 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02004127 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02004128 return NULL;
4129 }
4130
4131 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01004132 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02004133 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01004134
Willy Tarreau662fafc2019-05-26 09:43:07 +02004135 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01004136 /* don't even try to send a GOAWAY, the buffer is stuck */
4137 h2c->flags |= H2_CF_GOAWAY_FAILED;
4138 }
4139
4140 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01004141 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01004142 if (h2c_send_goaway_error(h2c, NULL) <= 0)
4143 h2c->flags |= H2_CF_GOAWAY_FAILED;
4144
Willy Tarreau662fafc2019-05-26 09:43:07 +02004145 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004146 unsigned int released = 0;
4147 struct buffer *buf;
4148
4149 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
4150 if (b_data(buf)) {
4151 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
4152 if (!ret)
4153 break;
4154 b_del(buf, ret);
4155 if (b_data(buf))
4156 break;
4157 b_free(buf);
4158 released++;
4159 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02004160 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02004161
4162 if (released)
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01004163 offer_buffers(NULL, released);
Willy Tarreau787db9a2018-06-14 18:31:46 +02004164 }
Willy Tarreauea392822017-10-31 10:02:25 +01004165
Willy Tarreau4481e262019-10-31 15:36:30 +01004166 /* in any case this connection must not be considered idle anymore */
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004167 if (h2c->conn->flags & CO_FL_LIST_MASK) {
4168 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004169 conn_delete_from_tree(&h2c->conn->hash_node->node);
Amaury Denoyelle3d752a82021-02-19 15:37:38 +01004170 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
4171 }
Willy Tarreau4481e262019-10-31 15:36:30 +01004172
Willy Tarreau0975f112018-03-29 15:22:59 +02004173 /* either we can release everything now or it will be done later once
4174 * the last stream closes.
4175 */
4176 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02004177 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01004178
Willy Tarreau7838a792019-08-12 18:42:03 +02004179 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01004180 return NULL;
4181}
4182
4183
Willy Tarreau62f52692017-10-08 23:01:42 +02004184/*******************************************/
4185/* functions below are used by the streams */
4186/*******************************************/
4187
4188/*
4189 * Attach a new stream to a connection
4190 * (Used for outgoing connections)
4191 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004192static int h2_attach(struct connection *conn, struct sedesc *sd, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02004193{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004194 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004195 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004196
Willy Tarreau7838a792019-08-12 18:42:03 +02004197 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004198 h2s = h2c_bck_stream_new(h2c, sd->sc, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004199 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004200 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Christopher Faulete00ad352021-12-16 14:44:31 +01004201 return -1;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01004202 }
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004203
4204 /* the connection is not idle anymore, let's mark this */
4205 HA_ATOMIC_AND(&h2c->wait_event.tasklet->state, ~TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004206 xprt_set_used(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004207
Willy Tarreau7838a792019-08-12 18:42:03 +02004208 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Christopher Faulete00ad352021-12-16 14:44:31 +01004209 return 0;
Willy Tarreau62f52692017-10-08 23:01:42 +02004210}
4211
Willy Tarreau4596fe22022-05-17 19:07:51 +02004212/* Retrieves the first valid stream connector from this connection, or returns
4213 * NULL. We have to scan because we may have some orphan streams. It might be
Willy Tarreaufafd3982018-11-18 21:29:20 +01004214 * beneficial to scan backwards from the end to reduce the likeliness to find
4215 * orphans.
4216 */
Willy Tarreaud1373532022-05-27 11:00:59 +02004217static struct stconn *h2_get_first_sc(const struct connection *conn)
Willy Tarreaufafd3982018-11-18 21:29:20 +01004218{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01004219 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01004220 struct h2s *h2s;
4221 struct eb32_node *node;
4222
4223 node = eb32_first(&h2c->streams_by_id);
4224 while (node) {
4225 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004226 if (h2s_sc(h2s))
4227 return h2s_sc(h2s);
Willy Tarreaufafd3982018-11-18 21:29:20 +01004228 node = eb32_next(node);
4229 }
4230 return NULL;
4231}
4232
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004233static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
4234{
4235 int ret = 0;
4236 struct h2c *h2c = conn->ctx;
4237
4238 switch (mux_ctl) {
4239 case MUX_STATUS:
4240 /* Only consider the mux to be ready if we're done with
4241 * the preface and settings, and we had no error.
4242 */
4243 if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR)
4244 ret |= MUX_STATUS_READY;
4245 return ret;
Christopher Faulet4c8ad842020-10-06 14:59:17 +02004246 case MUX_EXIT_STATUS:
4247 return MUX_ES_UNKNOWN;
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02004248 default:
4249 return -1;
4250 }
4251}
4252
Willy Tarreau62f52692017-10-08 23:01:42 +02004253/*
Olivier Houchard060ed432018-11-06 16:32:42 +01004254 * Destroy the mux and the associated connection, if it is no longer used
4255 */
Christopher Faulet73c12072019-04-08 11:23:22 +02004256static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01004257{
Christopher Faulet73c12072019-04-08 11:23:22 +02004258 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01004259
Willy Tarreau7838a792019-08-12 18:42:03 +02004260 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet4e610962022-04-14 11:23:50 +02004261 if (eb_is_empty(&h2c->streams_by_id)) {
4262 BUG_ON(h2c->conn->ctx != h2c);
Christopher Faulet73c12072019-04-08 11:23:22 +02004263 h2_release(h2c);
Christopher Faulet4e610962022-04-14 11:23:50 +02004264 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004265 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01004266}
4267
4268/*
Willy Tarreau62f52692017-10-08 23:01:42 +02004269 * Detach the stream from the connection and possibly release the connection.
4270 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004271static void h2_detach(struct sedesc *sd)
Willy Tarreau62f52692017-10-08 23:01:42 +02004272{
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004273 struct h2s *h2s = sd->se;
Willy Tarreau60935142017-10-16 18:11:19 +02004274 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01004275 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004276
Willy Tarreau7838a792019-08-12 18:42:03 +02004277 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
4278
Willy Tarreau7838a792019-08-12 18:42:03 +02004279 if (!h2s) {
4280 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02004281 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004282 }
Willy Tarreau60935142017-10-16 18:11:19 +02004283
Willy Tarreaud9464162020-01-10 18:25:07 +01004284 /* there's no txbuf so we're certain not to be able to send anything */
4285 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02004286
Olivier Houchardf502aca2018-12-14 19:42:40 +01004287 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02004288 h2c = h2s->h2c;
Willy Tarreau36c22322022-05-27 10:41:24 +02004289 h2c->nb_sc--;
4290 if (!h2c->nb_sc)
Willy Tarreau15a47332022-03-18 15:57:34 +01004291 h2c->idle_start = now_ms;
4292
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004293 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
Willy Tarreau36c22322022-05-27 10:41:24 +02004294 !h2_frt_has_too_many_sc(h2c)) {
Willy Tarreaufa1d3572019-01-31 10:31:51 +01004295 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02004296 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004297 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02004298 }
Willy Tarreau60935142017-10-16 18:11:19 +02004299
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004300 /* this stream may be blocked waiting for some data to leave (possibly
4301 * an ES or RST frame), so orphan it in this case.
4302 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02004303 if (!(h2c->flags & (H2_CF_ERR_PENDING|H2_CF_ERROR)) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02004304 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau5723f292020-01-10 15:16:57 +01004305 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) &&
Willy Tarreauf96508a2020-01-10 11:12:48 +01004306 ((h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)) || h2s->subs)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004307 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau15a47332022-03-18 15:57:34 +01004308 /* refresh the timeout if none was active, so that the last
4309 * leaving stream may arm it.
4310 */
4311 if (!tick_isset(h2c->task->expire))
4312 h2c_update_timeout(h2c);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004313 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02004314 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01004315
Christopher Faulet68ee7842022-10-12 10:21:33 +02004316 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi)) {
Willy Tarreau45f752e2017-10-30 15:44:59 +01004317 /* unblock the connection if it was blocked on this
4318 * stream.
4319 */
4320 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
4321 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02004322 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01004323 }
4324
Willy Tarreau71049cc2018-03-28 13:56:39 +02004325 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02004326
Christopher Faulet9b79a102019-07-15 11:22:56 +02004327 if (h2c->flags & H2_CF_IS_BACK) {
Christopher Fauletff7925d2022-10-11 19:12:40 +02004328 if (!(h2c->flags & (H2_CF_RCVD_SHUT|H2_CF_ERR_PENDING|H2_CF_ERROR))) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004329 if (h2c->conn->flags & CO_FL_PRIVATE) {
Christopher Faulet08016ab2020-07-01 16:10:06 +02004330 /* Add the connection in the session server list, if not already done */
4331 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
4332 h2c->conn->owner = NULL;
4333 if (eb_is_empty(&h2c->streams_by_id)) {
4334 h2c->conn->mux->destroy(h2c);
4335 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4336 return;
Christopher Fauletc5579d12020-07-01 15:45:41 +02004337 }
4338 }
Christopher Faulet08016ab2020-07-01 16:10:06 +02004339 if (eb_is_empty(&h2c->streams_by_id)) {
Christopher Fauletc5579d12020-07-01 15:45:41 +02004340 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) {
4341 /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */
4342 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houchard351411f2018-12-27 17:20:54 +01004343 return;
4344 }
4345 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004346 }
Christopher Fauletc5579d12020-07-01 15:45:41 +02004347 else {
4348 if (eb_is_empty(&h2c->streams_by_id)) {
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004349 /* If the connection is owned by the session, first remove it
4350 * from its list
4351 */
4352 if (h2c->conn->owner) {
4353 session_unown_conn(h2c->conn->owner, h2c->conn);
4354 h2c->conn->owner = NULL;
4355 }
4356
Willy Tarreaue388f2f2021-03-02 16:51:09 +01004357 /* mark that the tasklet may lose its context to another thread and
4358 * that the handler needs to check it under the idle conns lock.
4359 */
4360 HA_ATOMIC_OR(&h2c->wait_event.tasklet->state, TASK_F_USR1);
Willy Tarreau4f8cd432021-03-02 17:27:58 +01004361 xprt_set_idle(h2c->conn, h2c->conn->xprt, h2c->conn->xprt_ctx);
4362
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004363 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn, 1)) {
Olivier Houchard2444aa52020-01-20 13:56:01 +01004364 /* The server doesn't want it, let's kill the connection right away */
4365 h2c->conn->mux->destroy(h2c);
4366 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
4367 return;
4368 }
Olivier Houchard199d4fa2020-03-22 23:25:51 +01004369 /* At this point, the connection has been added to the
4370 * server idle list, so another thread may already have
4371 * hijacked it, so we can't do anything with it.
4372 */
Olivier Houchard2444aa52020-01-20 13:56:01 +01004373 TRACE_DEVEL("reusable idle connection", H2_EV_STRM_END);
4374 return;
Olivier Houchard8a786902018-12-15 16:05:40 +01004375
Olivier Houchard8a786902018-12-15 16:05:40 +01004376 }
Amaury Denoyelle8990b012021-02-19 15:29:16 +01004377 else if (!h2c->conn->hash_node->node.node.leaf_p &&
Amaury Denoyelle6b8daef2020-10-14 18:17:10 +02004378 h2_avail_streams(h2c->conn) > 0 && objt_server(h2c->conn->target) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02004379 !LIST_INLIST(&h2c->conn->session_list)) {
Willy Tarreau85223482022-09-29 20:32:43 +02004380 eb64_insert(&__objt_server(h2c->conn->target)->per_thr[tid].avail_conns,
4381 &h2c->conn->hash_node->node);
Christopher Fauletc5579d12020-07-01 15:45:41 +02004382 }
Olivier Houchard8a786902018-12-15 16:05:40 +01004383 }
4384 }
4385 }
4386
Willy Tarreaue323f342018-03-28 13:51:45 +02004387 /* We don't want to close right now unless we're removing the
4388 * last stream, and either the connection is in error, or it
4389 * reached the ID already specified in a GOAWAY frame received
4390 * or sent (as seen by last_sid >= 0).
4391 */
Olivier Houchard7a977432019-03-21 15:47:13 +01004392 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02004393 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02004394 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02004395 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02004396 }
4397 else if (h2c->task) {
Willy Tarreau15a47332022-03-18 15:57:34 +01004398 h2c_update_timeout(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02004399 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02004400 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004401 else
4402 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02004403}
4404
Willy Tarreau88bdba32019-05-13 18:17:53 +02004405/* Performs a synchronous or asynchronous shutr(). */
4406static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004407{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004408 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004409
Willy Tarreauf983d002019-05-14 10:40:21 +02004410 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004411 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004412
Willy Tarreau7838a792019-08-12 18:42:03 +02004413 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4414
Willy Tarreau18059042019-01-31 19:12:48 +01004415 /* a connstream may require us to immediately kill the whole connection
4416 * for example because of a "tcp-request content reject" rule that is
4417 * normally used to limit abuse. In this case we schedule a goaway to
4418 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01004419 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004420 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004421 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004422 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004423 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4424 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4425 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004426 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
4427 /* Nothing was never sent for this stream, so reset with
4428 * REFUSED_STREAM error to let the client retry the
4429 * request.
4430 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004431 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004432 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4433 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004434 else {
4435 /* a final response was already provided, we don't want this
4436 * stream anymore. This may happen when the server responds
4437 * before the end of an upload and closes quickly (redirect,
4438 * deny, ...)
4439 */
4440 h2s_error(h2s, H2_ERR_CANCEL);
4441 }
Willy Tarreau18059042019-01-31 19:12:48 +01004442
Willy Tarreau90c32322017-11-24 08:00:30 +01004443 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004444 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004445 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004446
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004447 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004448 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01004449 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004450 done:
4451 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02004452 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004453 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004454add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004455 /* Let the handler know we want to shutr, and add ourselves to the
4456 * most relevant list if not yet done. h2_deferred_shut() will be
4457 * automatically called via the shut_tl tasklet when there's room
4458 * again.
4459 */
4460 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau2b718102021-04-21 07:32:39 +02004461 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004462 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004463 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004464 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004465 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004466 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004467 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004468 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02004469}
4470
Willy Tarreau88bdba32019-05-13 18:17:53 +02004471/* Performs a synchronous or asynchronous shutw(). */
4472static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02004473{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004474 struct h2c *h2c = h2s->h2c;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004475
Willy Tarreaucfba9d62019-08-06 10:30:58 +02004476 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004477 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004478
Willy Tarreau7838a792019-08-12 18:42:03 +02004479 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4480
Willy Tarreau473e0e52022-08-18 16:12:15 +02004481 if (h2s->st != H2_SS_ERROR &&
4482 (h2s->flags & (H2_SF_HEADERS_SENT | H2_SF_MORE_HTX_DATA)) == H2_SF_HEADERS_SENT) {
4483 /* we can cleanly close using an empty data frame only after headers
4484 * and if no more data is expected to be sent.
4485 */
Willy Tarreau58e32082017-11-07 14:41:09 +01004486 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
4487 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004488 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01004489
4490 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01004491 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01004492 else
4493 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004494 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01004495 /* a connstream may require us to immediately kill the whole connection
4496 * for example because of a "tcp-request content reject" rule that is
4497 * normally used to limit abuse. In this case we schedule a goaway to
4498 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01004499 */
Willy Tarreau95acc8b2022-05-27 16:14:10 +02004500 if (se_fl_test(h2s->sd, SE_FL_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01004501 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004502 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01004503 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
4504 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
4505 }
Willy Tarreau473e0e52022-08-18 16:12:15 +02004506 else if (h2s->flags & H2_SF_MORE_HTX_DATA) {
4507 /* some unsent data were pending (e.g. abort during an upload),
4508 * let's send a CANCEL.
4509 */
4510 TRACE_STATE("shutw before end of data, sending CANCEL", H2_EV_STRM_SHUT, h2c->conn, h2s);
4511 h2s_error(h2s, H2_ERR_CANCEL);
4512 }
Christopher Faulet35757d32019-03-07 15:51:33 +01004513 else {
4514 /* Nothing was never sent for this stream, so reset with
4515 * REFUSED_STREAM error to let the client retry the
4516 * request.
4517 */
Willy Tarreau7838a792019-08-12 18:42:03 +02004518 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01004519 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
4520 }
Willy Tarreau18059042019-01-31 19:12:48 +01004521
Willy Tarreau90c32322017-11-24 08:00:30 +01004522 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004523 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004524 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01004525
Willy Tarreau00dd0782018-03-01 16:31:34 +01004526 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01004527 }
4528
Willy Tarreau4f6516d2018-12-19 13:59:17 +01004529 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004530 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02004531
4532 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
4533
Willy Tarreau88bdba32019-05-13 18:17:53 +02004534 done:
4535 h2s->flags &= ~H2_SF_WANT_SHUTW;
4536 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004537
4538 add_to_list:
Willy Tarreau5723f292020-01-10 15:16:57 +01004539 /* Let the handler know we want to shutw, and add ourselves to the
4540 * most relevant list if not yet done. h2_deferred_shut() will be
4541 * automatically called via the shut_tl tasklet when there's room
4542 * again.
4543 */
4544 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau2b718102021-04-21 07:32:39 +02004545 if (!LIST_INLIST(&h2s->list)) {
Willy Tarreau5723f292020-01-10 15:16:57 +01004546 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02004547 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Willy Tarreau5723f292020-01-10 15:16:57 +01004548 else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM))
Willy Tarreau2b718102021-04-21 07:32:39 +02004549 LIST_APPEND(&h2c->send_list, &h2s->list);
Willy Tarreaub2e290a2018-03-30 17:35:38 +02004550 }
Willy Tarreau7838a792019-08-12 18:42:03 +02004551 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02004552 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004553}
4554
Willy Tarreau5723f292020-01-10 15:16:57 +01004555/* This is the tasklet referenced in h2s->shut_tl, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01004556 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
4557 * and prevented the last frame from being emitted.
4558 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004559struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned int state)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004560{
4561 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02004562 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004563
Willy Tarreau7838a792019-08-12 18:42:03 +02004564 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
4565
Willy Tarreau5723f292020-01-10 15:16:57 +01004566 if (h2s->flags & H2_SF_NOTIFIED) {
4567 /* some data processing remains to be done first */
4568 goto end;
4569 }
4570
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004571 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004572 h2_do_shutw(h2s);
4573
Willy Tarreau2c249eb2019-05-13 18:06:17 +02004574 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02004575 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004576
Willy Tarreau88bdba32019-05-13 18:17:53 +02004577 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004578 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01004579 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01004580
Willy Tarreau7be4ee02022-05-18 07:31:41 +02004581 if (!h2s_sc(h2s)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004582 h2s_destroy(h2s);
Willy Tarreau74163142021-03-13 11:30:19 +01004583 if (h2c_is_dead(h2c)) {
Willy Tarreau88bdba32019-05-13 18:17:53 +02004584 h2_release(h2c);
Willy Tarreau74163142021-03-13 11:30:19 +01004585 t = NULL;
4586 }
Willy Tarreau88bdba32019-05-13 18:17:53 +02004587 }
Olivier Houchard7a977432019-03-21 15:47:13 +01004588 }
Willy Tarreau5723f292020-01-10 15:16:57 +01004589 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004590 TRACE_LEAVE(H2_EV_STRM_SHUT);
Willy Tarreau74163142021-03-13 11:30:19 +01004591 return t;
Willy Tarreau62f52692017-10-08 23:01:42 +02004592}
4593
Willy Tarreau4596fe22022-05-17 19:07:51 +02004594/* shutr() called by the stream connector (mux_ops.shutr) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004595static void h2_shutr(struct stconn *sc, enum co_shr_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004596{
Willy Tarreau36c22322022-05-27 10:41:24 +02004597 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004598
Willy Tarreau7838a792019-08-12 18:42:03 +02004599 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004600 if (mode)
4601 h2_do_shutr(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004602 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004603}
4604
Willy Tarreau4596fe22022-05-17 19:07:51 +02004605/* shutw() called by the stream connector (mux_ops.shutw) */
Willy Tarreau36c22322022-05-27 10:41:24 +02004606static void h2_shutw(struct stconn *sc, enum co_shw_mode mode)
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004607{
Willy Tarreau36c22322022-05-27 10:41:24 +02004608 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004609
Willy Tarreau7838a792019-08-12 18:42:03 +02004610 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004611 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02004612 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02004613}
4614
Christopher Faulet9b79a102019-07-15 11:22:56 +02004615/* Decode the payload of a HEADERS frame and produce the HTX request or response
4616 * depending on the connection's side. Returns a positive value on success, a
4617 * negative value on failure, or 0 if it couldn't proceed. May report connection
4618 * errors in h2c->errcode if the frame is non-decodable and the connection
4619 * unrecoverable. In absence of connection error when a failure is reported, the
4620 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004621 *
4622 * The function may fold CONTINUATION frames into the initial HEADERS frame
4623 * by removing padding and next frame header, then moving the CONTINUATION
4624 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4625 * leaving a hole between the main frame and the beginning of the next one.
4626 * The possibly remaining incomplete or next frame at the end may be moved
4627 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4628 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4629 *
4630 * A buffer at the beginning of processing may look like this :
4631 *
4632 * ,---.---------.-----.--------------.--------------.------.---.
4633 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4634 * `---^---------^-----^--------------^--------------^------^---'
4635 * | | <-----> | |
4636 * area | dpl | wrap
4637 * |<--------------> |
4638 * | dfl |
4639 * |<-------------------------------------------------->|
4640 * head data
4641 *
4642 * Padding is automatically overwritten when folding, participating to the
4643 * hole size after dfl :
4644 *
4645 * ,---.------------------------.-----.--------------.------.---.
4646 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4647 * `---^------------------------^-----^--------------^------^---'
4648 * | | <-----> | |
4649 * area | hole | wrap
4650 * |<-----------------------> |
4651 * | dfl |
4652 * |<-------------------------------------------------->|
4653 * head data
4654 *
4655 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4656 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4657 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004658 *
4659 * The <flags> field must point to either the stream's flags or to a copy of it
4660 * so that the function can update the following flags :
4661 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004662 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004663 *
4664 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4665 * decoding, in order to detect if we're dealing with a headers or a trailers
4666 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004667 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01004668static 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 +02004669{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004670 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004671 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004672 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004673 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004674 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004675 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004676 int flen; // header frame len
4677 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004678 int ret = 0;
4679 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004680 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004681
Willy Tarreau7838a792019-08-12 18:42:03 +02004682 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4683
Willy Tarreauea18f862018-12-22 20:19:26 +01004684next_frame:
4685 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4686 goto leave; // incomplete input frame
4687
4688 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4689 * this case, we'll try to paste it immediately after the initial
4690 * HEADERS frame payload and kill any possible padding. The initial
4691 * frame's length will be increased to represent the concatenation
4692 * of the two frames. The next frame is read from position <tlen>
4693 * and written at position <flen> (minus padding if some is present).
4694 */
4695 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4696 struct h2_fh hdr;
4697 int clen; // CONTINUATION frame's payload length
4698
Willy Tarreau7838a792019-08-12 18:42:03 +02004699 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 +01004700 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4701 /* no more data, the buffer may be full, either due to
4702 * too large a frame or because of too large a hole that
4703 * we're going to compact at the end.
4704 */
4705 goto leave;
4706 }
4707
4708 if (hdr.ft != H2_FT_CONTINUATION) {
4709 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004710 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 +01004711 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004712 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004713 goto fail;
4714 }
4715
4716 if (hdr.sid != h2c->dsi) {
4717 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004718 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 +01004719 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004720 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreauea18f862018-12-22 20:19:26 +01004721 goto fail;
4722 }
4723
4724 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4725 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004726 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 +01004727 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4728 goto fail;
4729 }
4730
4731 /* detect when we must stop aggragating frames */
4732 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4733
4734 /* Take as much as we can of the CONTINUATION frame's payload */
4735 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4736 if (clen > hdr.len)
4737 clen = hdr.len;
4738
4739 /* Move the frame's payload over the padding, hole and frame
4740 * header. At least one of hole or dpl is null (see diagrams
4741 * above). The hole moves after the new aggragated frame.
4742 */
4743 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 +02004744 h2c->dfl += hdr.len - h2c->dpl;
Willy Tarreauea18f862018-12-22 20:19:26 +01004745 hole += h2c->dpl + 9;
4746 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004747 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 +01004748 goto next_frame;
4749 }
4750
4751 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004752
Willy Tarreau13278b42017-10-13 19:23:14 +02004753 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004754 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004755 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004756 copy = alloc_trash_chunk();
4757 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004758 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 +02004759 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4760 goto fail;
4761 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004762 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4763 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4764 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004765 }
4766
Willy Tarreau13278b42017-10-13 19:23:14 +02004767 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4768 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004769 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004770 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004771 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 +01004772 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004773 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004774 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004775 }
4776
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004777 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004778 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 +01004779 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4780 goto fail;
4781 }
4782
Willy Tarreau13278b42017-10-13 19:23:14 +02004783 hdrs += 5; // stream dep = 4, weight = 1
4784 flen -= 5;
4785 }
4786
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004787 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004788 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 +01004789 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004790 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004791 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004792
Willy Tarreau937f7602018-02-26 15:22:17 +01004793 /* we can't retry a failed decompression operation so we must be very
4794 * careful not to take any risks. In practice the output buffer is
4795 * always empty except maybe for trailers, in which case we simply have
4796 * to wait for the upper layer to finish consuming what is available.
4797 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004798 htx = htx_from_buf(rxbuf);
4799 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004800 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 +02004801 h2c->flags |= H2_CF_DEM_SFULL;
4802 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004803 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004804
Willy Tarreau25919232019-01-03 14:48:18 +01004805 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004806 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4807 sizeof(list)/sizeof(list[0]), tmp);
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01004808
4809 if (outlen > 0 &&
4810 (TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED &&
4811 TRACE_ENABLED(TRACE_LEVEL_USER, H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, 0, 0, 0)) {
4812 struct ist n;
4813 int i;
4814
4815 for (i = 0; list[i].n.len; i++) {
4816 n = list[i].n;
4817
4818 if (!isttest(n)) {
4819 /* this is in fact a pseudo header whose number is in n.len */
4820 n = h2_phdr_to_ist(n.len);
4821 }
4822
4823 h2_trace_header(n, list[i].v, H2_EV_RX_FRAME|H2_EV_RX_HDR,
4824 ist(TRC_LOC), __FUNCTION__, h2c, NULL);
4825 }
4826 }
4827
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004828 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004829 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 +01004830 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4831 goto fail;
4832 }
4833
Willy Tarreau25919232019-01-03 14:48:18 +01004834 /* The PACK decompressor was updated, let's update the input buffer and
4835 * the parser's state to commit these changes and allow us to later
4836 * fail solely on the stream if needed.
4837 */
4838 b_del(&h2c->dbuf, h2c->dfl + hole);
4839 h2c->dfl = hole = 0;
4840 h2c->st0 = H2_CS_FRAME_H;
4841
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004842 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004843 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Christopher Fauletd0db4232021-01-22 11:46:30 +01004844 msgf |= (*flags & H2_SF_BODY_TUNNEL) ? H2_MSGF_BODY_TUNNEL: 0;
Amaury Denoyelle74162742020-12-11 17:53:05 +01004845 /* If an Extended CONNECT has been sent on this stream, set message flag
Ilya Shipitsinacf84592021-02-06 22:29:08 +05004846 * to convert 200 response to 101 htx response */
Amaury Denoyelle74162742020-12-11 17:53:05 +01004847 msgf |= (*flags & H2_SF_EXT_CONNECT_SENT) ? H2_MSGF_EXT_CONNECT: 0;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004848
Willy Tarreau88d138e2019-01-02 19:38:14 +01004849 if (*flags & H2_SF_HEADERS_RCVD)
4850 goto trailers;
4851
4852 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004853 if (h2c->flags & H2_CF_IS_BACK)
Amaury Denoyelle74162742020-12-11 17:53:05 +01004854 outlen = h2_make_htx_response(list, htx, &msgf, body_len, upgrade_protocol);
Christopher Faulet9b79a102019-07-15 11:22:56 +02004855 else
4856 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004857
Christopher Faulet3d875582021-04-26 17:46:13 +02004858 if (outlen < 0 || htx_free_space(htx) < global.tune.maxrewrite) {
Willy Tarreau25919232019-01-03 14:48:18 +01004859 /* too large headers? this is a stream error only */
Christopher Faulet3d875582021-04-26 17:46:13 +02004860 TRACE_STATE("message headers too large", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_H2S_ERR|H2_EV_PROTO_ERR, h2c->conn);
4861 htx->flags |= HTX_FL_PARSING_ERROR;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004862 goto fail;
4863 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004864
Willy Tarreau174b06a2018-04-25 18:13:58 +02004865 if (msgf & H2_MSGF_BODY) {
4866 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004867 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004868 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004869 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004870 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004871 }
Christopher Faulet7d247f02020-12-02 14:26:36 +01004872 if (msgf & H2_MSGF_BODYLESS_RSP)
4873 *flags |= H2_SF_BODYLESS_RESP;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004874
Christopher Fauletd0db4232021-01-22 11:46:30 +01004875 if (msgf & H2_MSGF_BODY_TUNNEL)
4876 *flags |= H2_SF_BODY_TUNNEL;
4877 else {
4878 /* Abort the tunnel attempt, if any */
4879 if (*flags & H2_SF_BODY_TUNNEL)
4880 *flags |= H2_SF_TUNNEL_ABRT;
4881 *flags &= ~H2_SF_BODY_TUNNEL;
4882 }
4883
Willy Tarreau88d138e2019-01-02 19:38:14 +01004884 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004885 /* indicate that a HEADERS frame was received for this stream, except
4886 * for 1xx responses. For 1xx responses, another HEADERS frame is
4887 * expected.
4888 */
4889 if (!(msgf & H2_MSGF_RSP_1XX))
4890 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004891
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004892 if (h2c->dff & H2_F_HEADERS_END_STREAM) {
Christopher Faulet827a6292022-12-22 09:47:01 +01004893 if (msgf & H2_MSGF_RSP_1XX) {
4894 /* RFC9113#8.1 : HEADERS frame with the ES flag set that carries an informational status code is malformed */
4895 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);
4896 goto fail;
4897 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004898 /* no more data are expected for this message */
4899 htx->flags |= HTX_FL_EOM;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004900 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004901
Amaury Denoyelleefe22762020-12-11 17:53:08 +01004902 if (msgf & H2_MSGF_EXT_CONNECT)
4903 *flags |= H2_SF_EXT_CONNECT_RCVD;
4904
Willy Tarreau86277d42019-01-02 15:36:11 +01004905 /* success */
4906 ret = 1;
4907
Willy Tarreau68dd9852017-07-03 14:44:26 +02004908 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004909 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004910 * move the remaining data over it.
4911 */
4912 if (hole) {
4913 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4914 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4915 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4916 b_sub(&h2c->dbuf, hole);
4917 }
4918
Christopher Faulet07f88d72021-04-21 10:39:53 +02004919 if (b_full(&h2c->dbuf) && h2c->dfl) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004920 /* too large frames */
4921 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004922 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004923 }
4924
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004925 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004926 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004927 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004928 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004929 return ret;
4930
Willy Tarreau68dd9852017-07-03 14:44:26 +02004931 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004932 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004933 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004934
4935 trailers:
4936 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004937 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4938 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004939 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 +01004940 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau4781b152021-04-06 13:53:36 +02004941 HA_ATOMIC_INC(&h2c->px_counters->conn_proto_err);
Willy Tarreau88d138e2019-01-02 19:38:14 +01004942 goto fail;
4943 }
4944
Christopher Faulet9b79a102019-07-15 11:22:56 +02004945 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004946 if (h2_make_htx_trailers(list, htx) <= 0) {
4947 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 +02004948 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004949 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004950 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004951}
4952
Christopher Faulet9b79a102019-07-15 11:22:56 +02004953/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004954 * parser state is automatically updated. Returns > 0 if it could completely
4955 * send the current frame, 0 if it couldn't complete, in which case
Willy Tarreaub605c422022-05-17 17:04:55 +02004956 * SE_FL_RCV_MORE must be checked to know if some data remain pending (an empty
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004957 * DATA frame can return 0 as a valid result). Stream errors are reported in
4958 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4959 * have checked the frame header and ensured that the frame was complete or the
4960 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004961 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004962static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004963{
4964 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004965 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004966 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004967 struct htx *htx = NULL;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004968 struct buffer *scbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004969 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004970
Willy Tarreau7838a792019-08-12 18:42:03 +02004971 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4972
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004973 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004974
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004975 scbuf = h2_get_buf(h2c, &h2s->rxbuf);
4976 if (!scbuf) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004977 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004978 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 +01004979 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004980 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02004981 htx = htx_from_buf(scbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004982
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004983try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004984 flen = h2c->dfl - h2c->dpl;
4985 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004986 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004987
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004988 if (flen > b_data(&h2c->dbuf)) {
4989 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004990 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004991 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004992 }
4993
Christopher Faulet9b79a102019-07-15 11:22:56 +02004994 block = htx_free_data_space(htx);
4995 if (!block) {
4996 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004997 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 +02004998 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004999 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005000 if (flen > block)
5001 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005002
Christopher Faulet9b79a102019-07-15 11:22:56 +02005003 /* here, flen is the max we can copy into the output buffer */
5004 block = b_contig_data(&h2c->dbuf, 0);
5005 if (flen > block)
5006 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005007
Christopher Faulet9b79a102019-07-15 11:22:56 +02005008 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau022e5e52020-09-10 09:33:15 +02005009 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 +02005010
Christopher Faulet9b79a102019-07-15 11:22:56 +02005011 b_del(&h2c->dbuf, sent);
5012 h2c->dfl -= sent;
5013 h2c->rcvd_c += sent;
5014 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02005015
Christopher Faulet9b79a102019-07-15 11:22:56 +02005016 if (h2s->flags & H2_SF_DATA_CLEN) {
5017 h2s->body_len -= sent;
5018 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02005019 }
5020
Christopher Faulet9b79a102019-07-15 11:22:56 +02005021 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01005022 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005023 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 +01005024 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005025 }
5026
Christopher Faulet9b79a102019-07-15 11:22:56 +02005027 goto try_again;
5028
Willy Tarreau4a28da12018-01-04 14:41:00 +01005029 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01005030 /* here we're done with the frame, all the payload (except padding) was
5031 * transferred.
5032 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02005033
Christopher Faulet5be651d2021-01-22 15:28:03 +01005034 if (!(h2s->flags & H2_SF_BODY_TUNNEL) && (h2c->dff & H2_F_DATA_END_STREAM)) {
5035 /* no more data are expected for this message. This add the EOM
5036 * flag but only on the response path or if no tunnel attempt
5037 * was aborted. Otherwise (request path + tunnel abrted), the
5038 * EOM was already reported.
5039 */
Christopher Faulet33724322021-02-10 09:04:59 +01005040 if ((h2c->flags & H2_CF_IS_BACK) || !(h2s->flags & H2_SF_TUNNEL_ABRT)) {
5041 /* If we receive an empty DATA frame with ES flag while the HTX
5042 * message is empty, we must be sure to push a block to be sure
5043 * the HTX EOM flag will be handled on the other side. It is a
5044 * workaround because for now it is not possible to push empty
5045 * HTX DATA block. And without this block, there is no way to
5046 * "commit" the end of the message.
5047 */
5048 if (htx_is_empty(htx)) {
5049 if (!htx_add_endof(htx, HTX_BLK_EOT))
5050 goto fail;
5051 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005052 htx->flags |= HTX_FL_EOM;
Christopher Faulet33724322021-02-10 09:04:59 +01005053 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02005054 }
5055
Willy Tarreaud1023bb2018-03-22 16:53:12 +01005056 h2c->rcvd_c += h2c->dpl;
5057 h2c->rcvd_s += h2c->dpl;
5058 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005059 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005060 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005061 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01005062 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01005063 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005064 if (htx)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02005065 htx_to_buf(htx, scbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02005066 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01005067 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02005068}
5069
Willy Tarreau115e83b2018-12-01 19:17:53 +01005070/* Try to send a HEADERS frame matching HTX response present in HTX message
5071 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5072 * must check the stream's status to detect any error which might have happened
5073 * subsequently to a successful send. The htx blocks are automatically removed
5074 * from the message. The htx message is assumed to be valid since produced from
5075 * the internal code, hence it contains a start line, an optional series of
5076 * header blocks and an end of header, otherwise an invalid frame could be
5077 * emitted and the resulting htx message could be left in an inconsistent state.
5078 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005079static size_t h2s_snd_fhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005080{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005081 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01005082 struct h2c *h2c = h2s->h2c;
5083 struct htx_blk *blk;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005084 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005085 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005086 struct htx_sl *sl;
5087 enum htx_blk_type type;
5088 int es_now = 0;
5089 int ret = 0;
5090 int hdr;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005091
Willy Tarreau7838a792019-08-12 18:42:03 +02005092 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5093
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005094 /* get the start line (we do have one) and the rest of the headers,
5095 * that we dump starting at header 0 */
5096 sl = NULL;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005097 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005098 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005099 type = htx_get_blk_type(blk);
5100
5101 if (type == HTX_BLK_UNUSED)
5102 continue;
5103
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005104 if (type == HTX_BLK_EOH)
Willy Tarreau115e83b2018-12-01 19:17:53 +01005105 break;
5106
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005107 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005108 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005109 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5110 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5111 goto fail;
5112 }
5113
5114 list[hdr].n = htx_get_blk_name(htx, blk);
5115 list[hdr].v = htx_get_blk_value(htx, blk);
5116 hdr++;
5117 }
5118 else if (type == HTX_BLK_RES_SL) {
Christopher Faulet56498132021-01-29 11:39:43 +01005119 BUG_ON(sl); /* Only one start-line expected */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005120 sl = htx_get_blk_ptr(htx, blk);
5121 h2s->status = sl->info.res.status;
Christopher Faulet7d247f02020-12-02 14:26:36 +01005122 if (h2s->status == 204 || h2s->status == 304)
5123 h2s->flags |= H2_SF_BODYLESS_RESP;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005124 if (h2s->status < 100 || h2s->status > 999) {
5125 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5126 goto fail;
5127 }
5128 else if (h2s->status == 101) {
Amaury Denoyelleefe22762020-12-11 17:53:08 +01005129 if (unlikely(h2s->flags & H2_SF_EXT_CONNECT_RCVD)) {
5130 /* If an Extended CONNECT has been received, we need to convert 101 to 200 */
5131 h2s->status = 200;
5132 h2s->flags &= ~H2_SF_EXT_CONNECT_RCVD;
5133 }
5134 else {
5135 /* Otherwise, 101 responses are not supported in H2, so return a error (RFC7540#8.1.1) */
5136 TRACE_ERROR("will not encode an invalid status code", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5137 goto fail;
5138 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005139 }
5140 else if ((h2s->flags & H2_SF_BODY_TUNNEL) && h2s->status >= 300) {
5141 /* Abort the tunnel attempt */
5142 h2s->flags &= ~H2_SF_BODY_TUNNEL;
5143 h2s->flags |= H2_SF_TUNNEL_ABRT;
5144 }
5145 }
5146 else {
5147 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 +01005148 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005149 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005150 }
5151
Christopher Faulet56498132021-01-29 11:39:43 +01005152 /* The start-line me be defined */
5153 BUG_ON(!sl);
5154
Willy Tarreau115e83b2018-12-01 19:17:53 +01005155 /* marker for end of headers */
5156 list[hdr].n = ist("");
5157
Willy Tarreau9c218e72019-05-26 10:08:28 +02005158 mbuf = br_tail(h2c->mbuf);
5159 retry:
5160 if (!h2_get_buf(h2c, mbuf)) {
5161 h2c->flags |= H2_CF_MUX_MALLOC;
5162 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005163 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 +02005164 return 0;
5165 }
5166
Willy Tarreau115e83b2018-12-01 19:17:53 +01005167 chunk_reset(&outbuf);
5168
5169 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005170 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5171 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005172 break;
5173 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005174 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01005175 }
5176
5177 if (outbuf.size < 9)
5178 goto full;
5179
5180 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5181 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5182 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5183 outbuf.data = 9;
5184
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005185 if ((h2c->flags & (H2_CF_SHTS_UPDATED|H2_CF_DTSU_EMITTED)) == H2_CF_SHTS_UPDATED) {
5186 /* SETTINGS_HEADER_TABLE_SIZE changed, we must send an HPACK
5187 * dynamic table size update so that some clients are not
5188 * confused. In practice we only need to send the DTSU when the
5189 * advertised size is lower than the current one, and since we
5190 * don't use it and don't care about the default 4096 bytes,
5191 * we only ack it with a zero size thus we at most have to deal
5192 * with this once. See RFC7541#4.2 and #6.3 for the spec, and
5193 * below for the whole context and interoperability risks:
5194 * https://lists.w3.org/Archives/Public/ietf-http-wg/2021OctDec/0235.html
5195 */
5196 if (b_room(&outbuf) < 1)
5197 goto full;
5198 outbuf.area[outbuf.data++] = 0x20; // HPACK DTSU 0 bytes
5199
5200 /* let's not update the flags now but only once the buffer is
5201 * really committed.
5202 */
5203 }
5204
Willy Tarreau115e83b2018-12-01 19:17:53 +01005205 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01005206 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005207 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005208 goto realign_again;
5209 goto full;
5210 }
5211
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005212 if ((TRACE_SOURCE)->verbosity >= H2_VERB_ADVANCED) {
5213 char sts[4];
5214
5215 h2_trace_header(ist(":status"), ist(ultoa_r(h2s->status, sts, sizeof(sts))),
5216 H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__,
5217 h2c, h2s);
5218 }
5219
Willy Tarreau115e83b2018-12-01 19:17:53 +01005220 /* encode all headers, stop at empty name */
5221 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
5222 /* these ones do not exist in H2 and must be dropped. */
5223 if (isteq(list[hdr].n, ist("connection")) ||
5224 isteq(list[hdr].n, ist("proxy-connection")) ||
5225 isteq(list[hdr].n, ist("keep-alive")) ||
5226 isteq(list[hdr].n, ist("upgrade")) ||
5227 isteq(list[hdr].n, ist("transfer-encoding")))
5228 continue;
5229
Christopher Faulet86d144c2019-08-14 16:32:25 +02005230 /* Skip all pseudo-headers */
5231 if (*(list[hdr].n.ptr) == ':')
5232 continue;
5233
Willy Tarreau115e83b2018-12-01 19:17:53 +01005234 if (isteq(list[hdr].n, ist("")))
5235 break; // end
5236
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005237 if (!h2_encode_header(&outbuf, list[hdr].n, list[hdr].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5238 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau115e83b2018-12-01 19:17:53 +01005239 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005240 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01005241 goto realign_again;
5242 goto full;
5243 }
5244 }
5245
Willy Tarreaucb985a42019-10-07 16:56:34 +02005246 /* update the frame's size */
5247 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5248
5249 if (outbuf.data > h2c->mfs + 9) {
5250 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5251 /* output full */
5252 if (b_space_wraps(mbuf))
5253 goto realign_again;
5254 goto full;
5255 }
5256 }
5257
Willy Tarreau3a537072021-06-17 08:40:04 +02005258 TRACE_USER("sent H2 response ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5259
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005260 /* remove all header blocks including the EOH and compute the
5261 * corresponding size.
Willy Tarreau115e83b2018-12-01 19:17:53 +01005262 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005263 ret = 0;
5264 blk = htx_get_head_blk(htx);
5265 while (blk) {
5266 type = htx_get_blk_type(blk);
5267 ret += htx_get_blksz(blk);
5268 blk = htx_remove_blk(htx, blk);
5269 /* The removed block is the EOH */
5270 if (type == HTX_BLK_EOH)
5271 break;
Christopher Faulet5be651d2021-01-22 15:28:03 +01005272 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005273
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005274 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005275 /* Response already closed: add END_STREAM */
5276 es_now = 1;
5277 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005278 else if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx) && h2s->status >= 200) {
5279 /* EOM+empty: we may need to add END_STREAM except for 1xx
Christopher Faulet991febd2020-12-02 15:17:31 +01005280 * responses and tunneled response.
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005281 */
Christopher Faulet991febd2020-12-02 15:17:31 +01005282 if (!(h2s->flags & H2_SF_BODY_TUNNEL) || h2s->status >= 300)
5283 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005284 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01005285
Willy Tarreau115e83b2018-12-01 19:17:53 +01005286 if (es_now)
5287 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5288
5289 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005290 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01005291
5292 /* indicates the HEADERS frame was sent, except for 1xx responses. For
5293 * 1xx responses, another HEADERS frame is expected.
5294 */
Christopher Faulet89899422020-12-07 18:24:43 +01005295 if (h2s->status >= 200)
Christopher Faulet0b465482019-02-19 15:14:23 +01005296 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005297
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005298 if (h2c->flags & H2_CF_SHTS_UPDATED) {
5299 /* was sent above */
5300 h2c->flags |= H2_CF_DTSU_EMITTED;
Willy Tarreauc7d85482022-02-16 14:28:14 +01005301 h2c->flags &= ~H2_CF_SHTS_UPDATED;
Willy Tarreau39a0a1e2022-01-13 16:00:12 +01005302 }
5303
Willy Tarreau115e83b2018-12-01 19:17:53 +01005304 if (es_now) {
5305 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005306 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 +01005307 if (h2s->st == H2_SS_OPEN)
5308 h2s->st = H2_SS_HLOC;
5309 else
5310 h2s_close(h2s);
5311 }
5312
5313 /* OK we could properly deliver the response */
Willy Tarreau115e83b2018-12-01 19:17:53 +01005314 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005315 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005316 return ret;
5317 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005318 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5319 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01005320 h2c->flags |= H2_CF_MUX_MFULL;
5321 h2s->flags |= H2_SF_BLK_MROOM;
5322 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005323 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 +01005324 goto end;
5325 fail:
5326 /* unparsable HTX messages, too large ones to be produced in the local
5327 * list etc go here (unrecoverable errors).
5328 */
5329 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5330 ret = 0;
5331 goto end;
5332}
5333
Willy Tarreau80739692018-10-05 11:35:57 +02005334/* Try to send a HEADERS frame matching HTX request present in HTX message
5335 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
5336 * must check the stream's status to detect any error which might have happened
5337 * subsequently to a successful send. The htx blocks are automatically removed
5338 * from the message. The htx message is assumed to be valid since produced from
5339 * the internal code, hence it contains a start line, an optional series of
5340 * header blocks and an end of header, otherwise an invalid frame could be
5341 * emitted and the resulting htx message could be left in an inconsistent state.
5342 */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01005343static size_t h2s_snd_bhdrs(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02005344{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005345 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02005346 struct h2c *h2c = h2s->h2c;
5347 struct htx_blk *blk;
Willy Tarreau80739692018-10-05 11:35:57 +02005348 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005349 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02005350 struct htx_sl *sl;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005351 struct ist meth, uri, auth, host = IST_NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005352 enum htx_blk_type type;
5353 int es_now = 0;
5354 int ret = 0;
5355 int hdr;
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005356 int extended_connect = 0;
Willy Tarreau80739692018-10-05 11:35:57 +02005357
Willy Tarreau7838a792019-08-12 18:42:03 +02005358 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5359
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005360 /* get the start line (we do have one) and the rest of the headers,
5361 * that we dump starting at header 0 */
5362 sl = NULL;
Willy Tarreau80739692018-10-05 11:35:57 +02005363 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005364 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau80739692018-10-05 11:35:57 +02005365 type = htx_get_blk_type(blk);
5366
5367 if (type == HTX_BLK_UNUSED)
5368 continue;
5369
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005370 if (type == HTX_BLK_EOH)
Willy Tarreau80739692018-10-05 11:35:57 +02005371 break;
5372
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005373 if (type == HTX_BLK_HDR) {
Christopher Faulet56498132021-01-29 11:39:43 +01005374 BUG_ON(!sl); /* The start-line mut be defined before any headers */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005375 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5376 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5377 goto fail;
5378 }
Willy Tarreau80739692018-10-05 11:35:57 +02005379
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005380 list[hdr].n = htx_get_blk_name(htx, blk);
5381 list[hdr].v = htx_get_blk_value(htx, blk);
Christopher Faulet67d58092019-10-02 10:51:38 +02005382
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005383 /* Skip header if same name is used to add the server name */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005384 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name) &&
5385 isteq(list[hdr].n, h2c->proxy->server_id_hdr_name))
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005386 continue;
Christopher Faulet67d58092019-10-02 10:51:38 +02005387
Ilya Shipitsinacf84592021-02-06 22:29:08 +05005388 /* Convert connection: upgrade to Extended connect from rfc 8441 */
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005389 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteqi(list[hdr].n, ist("connection"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005390 /* rfc 7230 #6.1 Connection = list of tokens */
5391 struct ist connection_ist = list[hdr].v;
5392 do {
5393 if (isteqi(iststop(connection_ist, ','),
5394 ist("upgrade"))) {
Amaury Denoyelle0df04362021-10-18 09:43:29 +02005395 if (!(h2c->flags & H2_CF_RCVD_RFC8441)) {
5396 TRACE_STATE("reject upgrade because of no RFC8441 support", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5397 goto fail;
5398 }
5399
Amaury Denoyellee0c258c2021-10-18 10:05:16 +02005400 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 +01005401 h2s->flags |= (H2_SF_BODY_TUNNEL|H2_SF_EXT_CONNECT_SENT);
5402 sl->info.req.meth = HTTP_METH_CONNECT;
5403 meth = ist("CONNECT");
5404
5405 extended_connect = 1;
5406 break;
5407 }
5408
5409 connection_ist = istadv(istfind(connection_ist, ','), 1);
5410 } while (istlen(connection_ist));
5411 }
5412
Christopher Faulet52a5ec22021-09-09 09:52:51 +02005413 if ((sl->flags & HTX_SL_F_CONN_UPG) && isteq(list[hdr].n, ist("upgrade"))) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005414 /* rfc 7230 #6.7 Upgrade = list of protocols
5415 * rfc 8441 #4 Extended connect = :protocol is single-valued
5416 *
5417 * only first HTTP/1 protocol is preserved
5418 */
5419 const struct ist protocol = iststop(list[hdr].v, ',');
5420 /* upgrade_protocol field is 16 bytes long in h2s */
5421 istpad(h2s->upgrade_protocol, isttrim(protocol, 15));
5422 }
5423
5424 if (isteq(list[hdr].n, ist("host")))
5425 host = list[hdr].v;
5426
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005427 hdr++;
5428 }
Christopher Fauletc29b4bf2021-01-29 11:49:16 +01005429 else if (type == HTX_BLK_REQ_SL) {
5430 BUG_ON(sl); /* Only one start-line expected */
5431 sl = htx_get_blk_ptr(htx, blk);
5432 meth = htx_sl_req_meth(sl);
5433 uri = htx_sl_req_uri(sl);
5434 if (sl->info.req.meth == HTTP_METH_HEAD)
5435 h2s->flags |= H2_SF_BODYLESS_RESP;
5436 if (unlikely(uri.len == 0)) {
5437 TRACE_ERROR("no URI in HTX request", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5438 goto fail;
5439 }
5440 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005441 else {
5442 TRACE_ERROR("will not encode unexpected htx block", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
5443 goto fail;
5444 }
Willy Tarreau80739692018-10-05 11:35:57 +02005445 }
5446
Christopher Faulet56498132021-01-29 11:39:43 +01005447 /* The start-line me be defined */
5448 BUG_ON(!sl);
5449
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005450 /* Now add the server name to a header (if requested) */
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005451 if ((h2c->flags & H2_CF_IS_BACK) && isttest(h2c->proxy->server_id_hdr_name)) {
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005452 struct server *srv = objt_server(h2c->conn->target);
5453
5454 if (srv) {
Tim Duesterhusb4b03772022-03-05 00:52:43 +01005455 list[hdr].n = h2c->proxy->server_id_hdr_name;
Christopher Faulet72ba6cd2019-09-24 16:20:05 +02005456 list[hdr].v = ist(srv->id);
5457 hdr++;
5458 }
5459 }
5460
Willy Tarreau80739692018-10-05 11:35:57 +02005461 /* marker for end of headers */
5462 list[hdr].n = ist("");
5463
Willy Tarreau9c218e72019-05-26 10:08:28 +02005464 mbuf = br_tail(h2c->mbuf);
5465 retry:
5466 if (!h2_get_buf(h2c, mbuf)) {
5467 h2c->flags |= H2_CF_MUX_MALLOC;
5468 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005469 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 +02005470 return 0;
5471 }
5472
Willy Tarreau80739692018-10-05 11:35:57 +02005473 chunk_reset(&outbuf);
5474
5475 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005476 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5477 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005478 break;
5479 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005480 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02005481 }
5482
5483 if (outbuf.size < 9)
5484 goto full;
5485
5486 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
5487 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
5488 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5489 outbuf.data = 9;
5490
5491 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01005492 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005493 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005494 goto realign_again;
5495 goto full;
5496 }
5497
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005498 h2_trace_header(ist(":method"), meth, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5499
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005500 auth = ist(NULL);
5501
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005502 /* RFC7540 #8.3: the CONNECT method must have :
5503 * - :authority set to the URI part (host:port)
5504 * - :method set to CONNECT
5505 * - :scheme and :path omitted
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005506 *
5507 * Note that this is not applicable in case of the Extended CONNECT
5508 * protocol from rfc 8441.
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005509 */
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005510 if (unlikely(sl->info.req.meth == HTTP_METH_CONNECT) && !extended_connect) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005511 auth = uri;
5512
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005513 if (!h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5514 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005515 /* output full */
5516 if (b_space_wraps(mbuf))
5517 goto realign_again;
5518 goto full;
5519 }
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005520
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005521 h2s->flags |= H2_SF_BODY_TUNNEL;
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005522 } else {
5523 /* other methods need a :scheme. If an authority is known from
5524 * the request line, it must be sent, otherwise only host is
5525 * sent. Host is never sent as the authority.
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005526 *
5527 * This code is also applicable for Extended CONNECT protocol
5528 * from rfc 8441.
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005529 */
5530 struct ist scheme = { };
Christopher Faulet3b44c542019-06-14 10:46:51 +02005531
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005532 if (uri.ptr[0] != '/' && uri.ptr[0] != '*') {
5533 /* the URI seems to start with a scheme */
5534 int len = 1;
5535
5536 while (len < uri.len && uri.ptr[len] != ':')
5537 len++;
5538
5539 if (len + 2 < uri.len && uri.ptr[len + 1] == '/' && uri.ptr[len + 2] == '/') {
5540 /* make the uri start at the authority now */
Tim Duesterhus9f75ed12021-03-02 18:57:26 +01005541 scheme = ist2(uri.ptr, len);
Tim Duesterhus154374c2021-03-02 18:57:27 +01005542 uri = istadv(uri, len + 3);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005543
5544 /* find the auth part of the URI */
Tim Duesterhus92c696e2021-02-28 16:11:36 +01005545 auth = ist2(uri.ptr, 0);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005546 while (auth.len < uri.len && auth.ptr[auth.len] != '/')
5547 auth.len++;
5548
Tim Duesterhus154374c2021-03-02 18:57:27 +01005549 uri = istadv(uri, auth.len);
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005550 }
5551 }
5552
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005553 /* For Extended CONNECT, the :authority must be present.
5554 * Use host value for it.
5555 */
5556 if (unlikely(extended_connect) && isttest(host))
5557 auth = host;
5558
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005559 if (!scheme.len) {
5560 /* no explicit scheme, we're using an origin-form URI,
5561 * probably from an H1 request transcoded to H2 via an
5562 * external layer, then received as H2 without authority.
5563 * So we have to look up the scheme from the HTX flags.
5564 * In such a case only http and https are possible, and
5565 * https is the default (sent by browsers).
5566 */
5567 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
5568 scheme = ist("http");
5569 else
5570 scheme = ist("https");
5571 }
Christopher Faulet3b44c542019-06-14 10:46:51 +02005572
5573 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005574 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005575 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005576 goto realign_again;
5577 goto full;
5578 }
Willy Tarreau80739692018-10-05 11:35:57 +02005579
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005580 if (auth.len &&
5581 !h2_encode_header(&outbuf, ist(":authority"), auth, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5582 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005583 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005584 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01005585 goto realign_again;
5586 goto full;
5587 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005588
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005589 /* encode the path. RFC7540#8.1.2.3: if path is empty it must
5590 * be sent as '/' or '*'.
5591 */
5592 if (unlikely(!uri.len)) {
5593 if (sl->info.req.meth == HTTP_METH_OPTIONS)
5594 uri = ist("*");
5595 else
5596 uri = ist("/");
Willy Tarreau053c1572019-02-01 16:13:59 +01005597 }
Willy Tarreau053c1572019-02-01 16:13:59 +01005598
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005599 if (!hpack_encode_path(&outbuf, uri)) {
5600 /* output full */
5601 if (b_space_wraps(mbuf))
5602 goto realign_again;
5603 goto full;
5604 }
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005605
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005606 h2_trace_header(ist(":path"), uri, H2_EV_TX_FRAME|H2_EV_TX_HDR, ist(TRC_LOC), __FUNCTION__, h2c, h2s);
5607
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005608 /* encode the pseudo-header protocol from rfc8441 if using
5609 * Extended CONNECT method.
5610 */
5611 if (unlikely(extended_connect)) {
5612 const struct ist protocol = ist(h2s->upgrade_protocol);
5613 if (isttest(protocol)) {
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005614 if (!h2_encode_header(&outbuf, ist(":protocol"), protocol, H2_EV_TX_FRAME|H2_EV_TX_HDR,
5615 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Amaury Denoyelle9bf95732020-12-11 17:53:06 +01005616 /* output full */
5617 if (b_space_wraps(mbuf))
5618 goto realign_again;
5619 goto full;
5620 }
5621 }
5622 }
Willy Tarreau80739692018-10-05 11:35:57 +02005623 }
5624
Willy Tarreaub8ce8902019-10-08 18:16:18 +02005625 /* encode all headers, stop at empty name. Host is only sent if we
5626 * do not provide an authority.
5627 */
Willy Tarreau80739692018-10-05 11:35:57 +02005628 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005629 struct ist n = list[hdr].n;
5630 struct ist v = list[hdr].v;
5631
Willy Tarreau80739692018-10-05 11:35:57 +02005632 /* these ones do not exist in H2 and must be dropped. */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005633 if (isteq(n, ist("connection")) ||
5634 (auth.len && isteq(n, ist("host"))) ||
5635 isteq(n, ist("proxy-connection")) ||
5636 isteq(n, ist("keep-alive")) ||
5637 isteq(n, ist("upgrade")) ||
5638 isteq(n, ist("transfer-encoding")))
Willy Tarreau80739692018-10-05 11:35:57 +02005639 continue;
5640
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005641 if (isteq(n, ist("te"))) {
5642 /* "te" may only be sent with "trailers" if this value
5643 * is present, otherwise it must be deleted.
5644 */
5645 v = istist(v, ist("trailers"));
Tim Duesterhus7b5777d2021-03-02 18:57:28 +01005646 if (!isttest(v) || (v.len > 8 && v.ptr[8] != ','))
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005647 continue;
5648 v = ist("trailers");
5649 }
5650
Christopher Faulet86d144c2019-08-14 16:32:25 +02005651 /* Skip all pseudo-headers */
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005652 if (*(n.ptr) == ':')
Christopher Faulet86d144c2019-08-14 16:32:25 +02005653 continue;
5654
Willy Tarreaubb2c4ae2020-01-24 09:07:53 +01005655 if (isteq(n, ist("")))
Willy Tarreau80739692018-10-05 11:35:57 +02005656 break; // end
5657
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01005658 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 +02005659 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005660 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02005661 goto realign_again;
5662 goto full;
5663 }
5664 }
5665
Willy Tarreaucb985a42019-10-07 16:56:34 +02005666 /* update the frame's size */
5667 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5668
5669 if (outbuf.data > h2c->mfs + 9) {
5670 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
5671 /* output full */
5672 if (b_space_wraps(mbuf))
5673 goto realign_again;
5674 goto full;
5675 }
5676 }
5677
Willy Tarreau3a537072021-06-17 08:40:04 +02005678 TRACE_USER("sent H2 request ", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
5679
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005680 /* remove all header blocks including the EOH and compute the
5681 * corresponding size.
Willy Tarreau80739692018-10-05 11:35:57 +02005682 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005683 ret = 0;
5684 blk = htx_get_head_blk(htx);
5685 while (blk) {
5686 type = htx_get_blk_type(blk);
5687 ret += htx_get_blksz(blk);
5688 blk = htx_remove_blk(htx, blk);
5689 /* The removed block is the EOH */
5690 if (type == HTX_BLK_EOH)
5691 break;
Christopher Fauletd0db4232021-01-22 11:46:30 +01005692 }
Willy Tarreau80739692018-10-05 11:35:57 +02005693
Willy Tarreau95acc8b2022-05-27 16:14:10 +02005694 if (!h2s_sc(h2s) || se_fl_test(h2s->sd, SE_FL_SHW)) {
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005695 /* Request already closed: add END_STREAM */
Willy Tarreau80739692018-10-05 11:35:57 +02005696 es_now = 1;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005697 }
5698 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5699 /* EOM+empty: we may need to add END_STREAM (except for CONNECT
5700 * request)
5701 */
5702 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5703 es_now = 1;
5704 }
Willy Tarreau80739692018-10-05 11:35:57 +02005705
Willy Tarreau80739692018-10-05 11:35:57 +02005706 if (es_now)
5707 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
5708
5709 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005710 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02005711 h2s->flags |= H2_SF_HEADERS_SENT;
5712 h2s->st = H2_SS_OPEN;
5713
Willy Tarreau80739692018-10-05 11:35:57 +02005714 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005715 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 +02005716 // trim any possibly pending data (eg: inconsistent content-length)
5717 h2s->flags |= H2_SF_ES_SENT;
5718 h2s->st = H2_SS_HLOC;
5719 }
5720
Willy Tarreau80739692018-10-05 11:35:57 +02005721 end:
5722 return ret;
5723 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005724 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5725 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02005726 h2c->flags |= H2_CF_MUX_MFULL;
5727 h2s->flags |= H2_SF_BLK_MROOM;
5728 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005729 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 +02005730 goto end;
5731 fail:
5732 /* unparsable HTX messages, too large ones to be produced in the local
5733 * list etc go here (unrecoverable errors).
5734 */
5735 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5736 ret = 0;
5737 goto end;
5738}
5739
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005740/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01005741 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
5742 * caller must check the stream's status to detect any error which might have
5743 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005744 * consumed, or zero if nothing done.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005745 */
Christopher Faulet142854b2020-12-02 15:12:40 +01005746static size_t h2s_make_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005747{
5748 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005749 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005750 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005751 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005752 size_t total = 0;
5753 int es_now = 0;
5754 int bsize; /* htx block size */
5755 int fsize; /* h2 frame size */
5756 struct htx_blk *blk;
5757 enum htx_blk_type type;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005758 int trunc_out; /* non-zero if truncated on out buf */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005759
Willy Tarreau7838a792019-08-12 18:42:03 +02005760 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5761
Willy Tarreau98de12a2018-12-12 07:03:00 +01005762 htx = htx_from_buf(buf);
5763
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005764 /* We only come here with HTX_BLK_DATA blocks */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005765
5766 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01005767 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005768 goto end;
5769
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005770 if ((h2c->flags & H2_CF_IS_BACK) &&
Christopher Fauletf95f8762021-01-22 11:59:07 +01005771 (h2s->flags & (H2_SF_HEADERS_RCVD|H2_SF_BODY_TUNNEL)) == H2_SF_BODY_TUNNEL) {
5772 /* The response HEADERS frame not received yet. Thus the tunnel
5773 * is not fully established yet. In this situation, we block
5774 * data sending.
5775 */
5776 h2s->flags |= H2_SF_BLK_MBUSY;
5777 TRACE_STATE("Request DATA frame blocked waiting for tunnel establishment", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5778 goto end;
5779 }
Christopher Faulet91b21dc2021-01-22 12:13:15 +01005780 else if ((h2c->flags & H2_CF_IS_BACK) && (h2s->flags & H2_SF_TUNNEL_ABRT)) {
5781 /* a tunnel attempt was aborted but the is pending raw data to xfer to the server.
5782 * Thus the stream is closed with the CANCEL error. The error will be reported to
5783 * the upper layer as aserver abort. But at this stage there is nothing more we can
5784 * do. We just wait for the end of the response to be sure to not truncate it.
5785 */
5786 if (!(h2s->flags & H2_SF_ES_RCVD)) {
5787 TRACE_STATE("Request DATA frame blocked waiting end of aborted tunnel", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
5788 h2s->flags |= H2_SF_BLK_MBUSY;
5789 }
5790 else {
5791 TRACE_ERROR("Request DATA frame for aborted tunnel", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
5792 h2s_error(h2s, H2_ERR_CANCEL);
5793 }
5794 goto end;
5795 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005796
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005797 blk = htx_get_head_blk(htx);
5798 type = htx_get_blk_type(blk);
5799 bsize = htx_get_blksz(blk);
5800 fsize = bsize;
5801 trunc_out = 0;
5802 if (type != HTX_BLK_DATA)
5803 goto end;
5804
Willy Tarreau9c218e72019-05-26 10:08:28 +02005805 mbuf = br_tail(h2c->mbuf);
5806 retry:
5807 if (!h2_get_buf(h2c, mbuf)) {
5808 h2c->flags |= H2_CF_MUX_MALLOC;
5809 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005810 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 +02005811 goto end;
5812 }
5813
Willy Tarreau98de12a2018-12-12 07:03:00 +01005814 /* Perform some optimizations to reduce the number of buffer copies.
5815 * First, if the mux's buffer is empty and the htx area contains
5816 * exactly one data block of the same size as the requested count, and
5817 * this count fits within the frame size, the stream's window size, and
5818 * the connection's window size, then it's possible to simply swap the
5819 * caller's buffer with the mux's output buffer and adjust offsets and
5820 * length to match the entire DATA HTX block in the middle. In this
5821 * case we perform a true zero-copy operation from end-to-end. This is
5822 * the situation that happens all the time with large files. Second, if
5823 * this is not possible, but the mux's output buffer is empty, we still
5824 * have an opportunity to avoid the copy to the intermediary buffer, by
5825 * making the intermediary buffer's area point to the output buffer's
5826 * area. In this case we want to skip the HTX header to make sure that
5827 * copies remain aligned and that this operation remains possible all
5828 * the time. This goes for headers, data blocks and any data extracted
5829 * from the HTX blocks.
5830 */
5831 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02005832 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005833 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005834 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005835
Willy Tarreaubcc45952019-05-26 10:05:50 +02005836 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005837 /* Too bad there are data left there. We're willing to memcpy/memmove
5838 * up to 1/4 of the buffer, which means that it's OK to copy a large
5839 * frame into a buffer containing few data if it needs to be realigned,
5840 * and that it's also OK to copy few data without realigning. Otherwise
5841 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01005842 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005843 if (fsize + 9 <= b_room(mbuf) &&
5844 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005845 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
5846 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 +01005847 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02005848 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01005849
Willy Tarreau9c218e72019-05-26 10:08:28 +02005850 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5851 goto retry;
5852
Willy Tarreau98de12a2018-12-12 07:03:00 +01005853 h2c->flags |= H2_CF_MUX_MFULL;
5854 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005855 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 +01005856 goto end;
5857 }
5858
Christopher Faulet925abdf2021-04-27 22:51:07 +02005859 if (htx->flags & HTX_FL_EOM) {
5860 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5861 * message)
5862 */
5863 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5864 es_now = 1;
5865 }
Willy Tarreau98de12a2018-12-12 07:03:00 +01005866 /* map an H2 frame to the HTX block so that we can put the
5867 * frame header there.
5868 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005869 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5870 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005871
5872 /* prepend an H2 DATA frame header just before the DATA block */
5873 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5874 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
Christopher Faulet925abdf2021-04-27 22:51:07 +02005875 if (es_now)
5876 outbuf.area[4] |= H2_F_DATA_END_STREAM;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005877 h2_set_frame_size(outbuf.area, fsize);
5878
5879 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005880 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005881 h2c->mws -= fsize;
5882
5883 /* and exchange with our old area */
5884 buf->area = old_area;
5885 buf->data = buf->head = 0;
5886 total += fsize;
Christopher Faulet925abdf2021-04-27 22:51:07 +02005887 fsize = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005888
5889 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 +02005890 goto out;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005891 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005892
Willy Tarreau98de12a2018-12-12 07:03:00 +01005893 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005894 /* for DATA and EOM we'll have to emit a frame, even if empty */
5895
5896 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005897 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5898 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005899 break;
5900 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005901 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005902 }
5903
5904 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005905 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5906 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005907 h2c->flags |= H2_CF_MUX_MFULL;
5908 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005909 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005910 goto end;
5911 }
5912
5913 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5914 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5915 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5916 outbuf.data = 9;
5917
5918 /* we have in <fsize> the exact number of bytes we need to copy from
5919 * the HTX buffer. We need to check this against the connection's and
5920 * the stream's send windows, and to ensure that this fits in the max
5921 * frame size and in the buffer's available space minus 9 bytes (for
5922 * the frame header). The connection's flow control is applied last so
5923 * that we can use a separate list of streams which are immediately
5924 * unblocked on window opening. Note: we don't implement padding.
5925 */
5926
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005927 if (!fsize)
5928 goto send_empty;
5929
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005930 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005931 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreau2b718102021-04-21 07:32:39 +02005932 if (LIST_INLIST(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005933 LIST_DEL_INIT(&h2s->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02005934 LIST_APPEND(&h2c->blocked_list, &h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005935 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 +01005936 goto end;
5937 }
5938
Willy Tarreauee573762018-12-04 15:25:57 +01005939 if (fsize > count)
5940 fsize = count;
5941
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005942 if (fsize > h2s_mws(h2s))
5943 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005944
5945 if (h2c->mfs && fsize > h2c->mfs)
5946 fsize = h2c->mfs; // >0
5947
5948 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005949 /* It doesn't fit at once. If it at least fits once split and
5950 * the amount of data to move is low, let's defragment the
5951 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005952 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005953 if (b_space_wraps(mbuf) &&
5954 (fsize + 9 <= b_room(mbuf)) &&
5955 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005956 goto realign_again;
5957 fsize = outbuf.size - 9;
Willy Tarreauc7ce4e32020-01-14 11:42:59 +01005958 trunc_out = 1;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005959
5960 if (fsize <= 0) {
5961 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005962 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5963 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005964 h2c->flags |= H2_CF_MUX_MFULL;
5965 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005966 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005967 goto end;
5968 }
5969 }
5970
5971 if (h2c->mws <= 0) {
5972 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005973 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 +01005974 goto end;
5975 }
5976
5977 if (fsize > h2c->mws)
5978 fsize = h2c->mws;
5979
5980 /* now let's copy this this into the output buffer */
5981 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005982 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005983 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005984 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005985
5986 send_empty:
5987 /* update the frame's size */
5988 h2_set_frame_size(outbuf.area, fsize);
5989
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005990 /* consume incoming HTX block */
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005991 total += fsize;
5992 if (fsize == bsize) {
5993 htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01005994 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx)) {
5995 /* EOM+empty: we may need to add END_STREAM (except for tunneled
5996 * message)
5997 */
5998 if (!(h2s->flags & H2_SF_BODY_TUNNEL))
5999 es_now = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02006000 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006001 }
6002 else {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006003 /* we've truncated this block */
6004 htx_cut_data_blk(htx, blk, fsize);
6005 }
6006
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006007 if (es_now)
6008 outbuf.area[4] |= H2_F_DATA_END_STREAM;
6009
6010 /* commit the H2 response */
6011 b_add(mbuf, fsize + 9);
6012
Christopher Faulet925abdf2021-04-27 22:51:07 +02006013 out:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006014 if (es_now) {
6015 if (h2s->st == H2_SS_OPEN)
6016 h2s->st = H2_SS_HLOC;
6017 else
6018 h2s_close(h2s);
6019
6020 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02006021 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 +01006022 }
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006023 else if (fsize) {
6024 if (fsize == bsize) {
6025 TRACE_DEVEL("more data may be available, trying to send another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6026 goto new_frame;
6027 }
6028 else if (trunc_out) {
6029 /* we've truncated this block */
6030 goto new_frame;
6031 }
6032 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006033
6034 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006035 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006036 return total;
6037}
6038
Christopher Faulet991febd2020-12-02 15:17:31 +01006039/* Skip the message payload (DATA blocks) and emit an empty DATA frame with the
6040 * ES flag set for stream <h2s>. This function is called for response known to
6041 * have no payload. Only DATA blocks are skipped. This means the trailers are
Ilya Shipitsinacf84592021-02-06 22:29:08 +05006042 * still emitted. The caller must check the stream's status to detect any error
Christopher Faulet991febd2020-12-02 15:17:31 +01006043 * which might have happened subsequently to a successful send. Returns the
6044 * number of data bytes consumed, or zero if nothing done.
6045 */
6046static size_t h2s_skip_data(struct h2s *h2s, struct buffer *buf, size_t count)
6047{
6048 struct h2c *h2c = h2s->h2c;
6049 struct htx *htx;
6050 int bsize; /* htx block size */
6051 int fsize; /* h2 frame size */
6052 struct htx_blk *blk;
6053 enum htx_blk_type type;
6054 size_t total = 0;
6055
6056 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6057
Christopher Faulet991febd2020-12-02 15:17:31 +01006058 htx = htx_from_buf(buf);
6059
6060 next_data:
6061 if (!count || htx_is_empty(htx))
6062 goto end;
6063 blk = htx_get_head_blk(htx);
6064 type = htx_get_blk_type(blk);
6065 bsize = htx_get_blksz(blk);
6066 fsize = bsize;
6067 if (type != HTX_BLK_DATA)
6068 goto end;
6069
6070 if (fsize > count)
6071 fsize = count;
6072
6073 if (fsize != bsize)
6074 goto skip_data;
6075
6076 if (!(htx->flags & HTX_FL_EOM) || !htx_is_unique_blk(htx, blk))
6077 goto skip_data;
6078
6079 /* Here, it is the last block and it is also the end of the message. So
6080 * we can emit an empty DATA frame with the ES flag set
6081 */
6082 if (h2_send_empty_data_es(h2s) <= 0)
6083 goto end;
6084
6085 if (h2s->st == H2_SS_OPEN)
6086 h2s->st = H2_SS_HLOC;
6087 else
6088 h2s_close(h2s);
6089
6090 skip_data:
6091 /* consume incoming HTX block */
6092 total += fsize;
6093 if (fsize == bsize) {
6094 TRACE_DEVEL("more data may be available, trying to skip another frame", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6095 htx_remove_blk(htx, blk);
6096 goto next_data;
6097 }
6098 else {
6099 /* we've truncated this block */
6100 htx_cut_data_blk(htx, blk, fsize);
6101 }
6102
6103 end:
6104 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
6105 return total;
6106}
6107
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006108/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
6109 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
6110 * processed. The caller must check the stream's status to detect any error
6111 * which might have happened subsequently to a successful send. The htx blocks
6112 * are automatically removed from the message. The htx message is assumed to be
6113 * valid since produced from the internal code. Processing stops when meeting
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006114 * the EOT, which *is* removed. All trailers are processed at once and sent as a
6115 * single frame. The ES flag is always set.
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006116 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006117static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006118{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02006119 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006120 struct h2c *h2c = h2s->h2c;
6121 struct htx_blk *blk;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006122 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02006123 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006124 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006125 int ret = 0;
6126 int hdr;
6127 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006128
Willy Tarreau7838a792019-08-12 18:42:03 +02006129 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
6130
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006131 /* get trailers. */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006132 hdr = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006133 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006134 type = htx_get_blk_type(blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006135
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006136 if (type == HTX_BLK_UNUSED)
6137 continue;
6138
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006139 if (type == HTX_BLK_EOT)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006140 break;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006141 if (type == HTX_BLK_TLR) {
6142 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
6143 TRACE_ERROR("too many headers", H2_EV_TX_FRAME|H2_EV_TX_HDR|H2_EV_H2S_ERR, h2c->conn, h2s);
6144 goto fail;
6145 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006146
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006147 list[hdr].n = htx_get_blk_name(htx, blk);
6148 list[hdr].v = htx_get_blk_value(htx, blk);
6149 hdr++;
6150 }
6151 else {
6152 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 +01006153 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02006154 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006155 }
6156
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006157 /* marker for end of trailers */
6158 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006159
Willy Tarreau9c218e72019-05-26 10:08:28 +02006160 mbuf = br_tail(h2c->mbuf);
6161 retry:
6162 if (!h2_get_buf(h2c, mbuf)) {
6163 h2c->flags |= H2_CF_MUX_MALLOC;
6164 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02006165 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 +02006166 goto end;
6167 }
6168
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006169 chunk_reset(&outbuf);
6170
6171 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02006172 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
6173 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006174 break;
6175 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02006176 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006177 }
6178
6179 if (outbuf.size < 9)
6180 goto full;
6181
6182 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
6183 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
6184 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
6185 outbuf.data = 9;
6186
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006187 /* encode all headers */
6188 for (idx = 0; idx < hdr; idx++) {
6189 /* these ones do not exist in H2 or must not appear in
6190 * trailers and must be dropped.
6191 */
6192 if (isteq(list[idx].n, ist("host")) ||
6193 isteq(list[idx].n, ist("content-length")) ||
6194 isteq(list[idx].n, ist("connection")) ||
6195 isteq(list[idx].n, ist("proxy-connection")) ||
6196 isteq(list[idx].n, ist("keep-alive")) ||
6197 isteq(list[idx].n, ist("upgrade")) ||
6198 isteq(list[idx].n, ist("te")) ||
6199 isteq(list[idx].n, ist("transfer-encoding")))
6200 continue;
6201
Christopher Faulet86d144c2019-08-14 16:32:25 +02006202 /* Skip all pseudo-headers */
6203 if (*(list[idx].n.ptr) == ':')
6204 continue;
6205
Willy Tarreau11e8a8c2023-01-24 19:43:11 +01006206 if (!h2_encode_header(&outbuf, list[idx].n, list[idx].v, H2_EV_TX_FRAME|H2_EV_TX_HDR,
6207 ist(TRC_LOC), __FUNCTION__, h2c, h2s)) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006208 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02006209 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006210 goto realign_again;
6211 goto full;
6212 }
6213 }
6214
Willy Tarreau5121e5d2019-05-06 15:13:41 +02006215 if (outbuf.data == 9) {
6216 /* here we have a problem, we have nothing to emit (either we
6217 * received an empty trailers block followed or we removed its
6218 * contents above). Because of this we can't send a HEADERS
6219 * frame, so we have to cheat and instead send an empty DATA
6220 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01006221 */
6222 outbuf.area[3] = H2_FT_DATA;
6223 outbuf.area[4] = H2_F_DATA_END_STREAM;
6224 }
6225
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006226 /* update the frame's size */
6227 h2_set_frame_size(outbuf.area, outbuf.data - 9);
6228
Willy Tarreau572d9f52019-10-11 16:58:37 +02006229 if (outbuf.data > h2c->mfs + 9) {
6230 if (!h2_fragment_headers(&outbuf, h2c->mfs)) {
6231 /* output full */
6232 if (b_space_wraps(mbuf))
6233 goto realign_again;
6234 goto full;
6235 }
6236 }
6237
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006238 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02006239 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 +02006240 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006241 h2s->flags |= H2_SF_ES_SENT;
6242
6243 if (h2s->st == H2_SS_OPEN)
6244 h2s->st = H2_SS_HLOC;
6245 else
6246 h2s_close(h2s);
6247
6248 /* OK we could properly deliver the response */
6249 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02006250 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006251 ret = 0;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006252 blk = htx_get_head_blk(htx);
6253 while (blk) {
6254 type = htx_get_blk_type(blk);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006255 ret += htx_get_blksz(blk);
6256 blk = htx_remove_blk(htx, blk);
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006257 /* The removed block is the EOT */
6258 if (type == HTX_BLK_EOT)
6259 break;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006260 }
6261
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006262 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02006263 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006264 return ret;
6265 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02006266 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
6267 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006268 h2c->flags |= H2_CF_MUX_MFULL;
6269 h2s->flags |= H2_SF_BLK_MROOM;
6270 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006271 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 +01006272 goto end;
6273 fail:
6274 /* unparsable HTX messages, too large ones to be produced in the local
6275 * list etc go here (unrecoverable errors).
6276 */
6277 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
6278 ret = 0;
6279 goto end;
6280}
6281
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006282/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6283 * event subscriber <es> is not allowed to change from a previous call as long
6284 * as at least one event is still subscribed. The <event_type> must only be a
6285 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006286 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006287static int h2_subscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard6ff20392018-07-17 18:46:31 +02006288{
Willy Tarreau36c22322022-05-27 10:41:24 +02006289 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02006290 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006291
Willy Tarreau7838a792019-08-12 18:42:03 +02006292 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006293
6294 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006295 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006296
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006297 es->events |= event_type;
6298 h2s->subs = es;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006299
6300 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006301 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006302
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006303 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006304 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchardf8338152019-05-14 17:50:32 +02006305 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
Willy Tarreau2b718102021-04-21 07:32:39 +02006306 !LIST_INLIST(&h2s->list)) {
Olivier Houchardf8338152019-05-14 17:50:32 +02006307 if (h2s->flags & H2_SF_BLK_MFCTL)
Willy Tarreau2b718102021-04-21 07:32:39 +02006308 LIST_APPEND(&h2c->fctl_list, &h2s->list);
Olivier Houchardf8338152019-05-14 17:50:32 +02006309 else
Willy Tarreau2b718102021-04-21 07:32:39 +02006310 LIST_APPEND(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02006311 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02006312 }
Willy Tarreau7838a792019-08-12 18:42:03 +02006313 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006314 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02006315}
6316
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006317/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6318 * The <es> pointer is not allowed to differ from the one passed to the
6319 * subscribe() call. It always returns zero.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006320 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006321static int h2_unsubscribe(struct stconn *sc, int event_type, struct wait_event *es)
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006322{
Willy Tarreau36c22322022-05-27 10:41:24 +02006323 struct h2s *h2s = __sc_mux_strm(sc);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006324
Willy Tarreau7838a792019-08-12 18:42:03 +02006325 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006326
6327 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006328 BUG_ON(h2s->subs && h2s->subs != es);
Willy Tarreauf96508a2020-01-10 11:12:48 +01006329
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006330 es->events &= ~event_type;
6331 if (!es->events)
Willy Tarreauf96508a2020-01-10 11:12:48 +01006332 h2s->subs = NULL;
6333
6334 if (event_type & SUB_RETRY_RECV)
Willy Tarreau7838a792019-08-12 18:42:03 +02006335 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006336
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006337 if (event_type & SUB_RETRY_SEND) {
Frédéric Lécaille67fda162022-06-30 12:01:54 +02006338 TRACE_DEVEL("unsubscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreaud9464162020-01-10 18:25:07 +01006339 h2s->flags &= ~H2_SF_NOTIFIED;
Willy Tarreauf96508a2020-01-10 11:12:48 +01006340 if (!(h2s->flags & (H2_SF_WANT_SHUTR | H2_SF_WANT_SHUTW)))
6341 LIST_DEL_INIT(&h2s->list);
Olivier Houchardd846c262018-10-19 17:24:29 +02006342 }
Willy Tarreauf96508a2020-01-10 11:12:48 +01006343
Willy Tarreau7838a792019-08-12 18:42:03 +02006344 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006345 return 0;
6346}
6347
6348
Christopher Faulet564e39c2021-09-21 15:50:55 +02006349/* Called from the upper layer, to receive data
6350 *
6351 * The caller is responsible for defragmenting <buf> if necessary. But <flags>
6352 * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it
6353 * means the caller wants to flush input data (from the mux buffer and the
6354 * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux
6355 * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read
6356 * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with
6357 * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the
6358 * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should
6359 * copy as much data as possible.
6360 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006361static size_t h2_rcv_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Olivier Houchard511efea2018-08-16 15:30:32 +02006362{
Willy Tarreau36c22322022-05-27 10:41:24 +02006363 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau082f5592018-11-25 08:03:32 +01006364 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01006365 struct htx *h2s_htx = NULL;
6366 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02006367 size_t ret = 0;
6368
Willy Tarreau7838a792019-08-12 18:42:03 +02006369 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
6370
Olivier Houchard511efea2018-08-16 15:30:32 +02006371 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006372 h2s_htx = htx_from_buf(&h2s->rxbuf);
Christopher Fauletec361bb2022-02-21 15:12:54 +01006373 if (htx_is_empty(h2s_htx) && !(h2s_htx->flags & HTX_FL_PARSING_ERROR)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02006374 /* Here htx_to_buf() will set buffer data to 0 because
6375 * the HTX is empty.
6376 */
6377 htx_to_buf(h2s_htx, &h2s->rxbuf);
6378 goto end;
6379 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01006380
Christopher Faulet9b79a102019-07-15 11:22:56 +02006381 ret = h2s_htx->data;
6382 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01006383
Christopher Faulet9b79a102019-07-15 11:22:56 +02006384 /* <buf> is empty and the message is small enough, swap the
6385 * buffers. */
6386 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01006387 htx_to_buf(buf_htx, buf);
6388 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006389 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
6390 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01006391 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02006392
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006393 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_UNUSED);
Christopher Faulet9b79a102019-07-15 11:22:56 +02006394
6395 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
6396 buf_htx->flags |= HTX_FL_PARSING_ERROR;
6397 if (htx_is_empty(buf_htx))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006398 se_fl_set(h2s->sd, SE_FL_EOI);
Willy Tarreau86724e22018-12-01 23:19:43 +01006399 }
Christopher Faulet810df062020-07-22 16:20:34 +02006400 else if (htx_is_empty(h2s_htx))
Christopher Faulet42432f32020-11-20 17:43:16 +01006401 buf_htx->flags |= (h2s_htx->flags & HTX_FL_EOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006402
Christopher Faulet9b79a102019-07-15 11:22:56 +02006403 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
6404 htx_to_buf(buf_htx, buf);
6405 htx_to_buf(h2s_htx, &h2s->rxbuf);
6406 ret -= h2s_htx->data;
6407
Christopher Faulet37070b22019-02-14 15:12:14 +01006408 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02006409 if (b_data(&h2s->rxbuf))
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006410 se_fl_set(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02006411 else {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006412 se_fl_clr(h2s->sd, SE_FL_RCV_MORE | SE_FL_WANT_ROOM);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006413 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006414 se_fl_set(h2s->sd, SE_FL_EOI);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006415 /* Add EOS flag for tunnel */
6416 if (h2s->flags & H2_SF_BODY_TUNNEL)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006417 se_fl_set(h2s->sd, SE_FL_EOS);
Christopher Fauletd0db4232021-01-22 11:46:30 +01006418 }
Christopher Fauletaade4ed2020-10-08 15:38:41 +02006419 if (h2c_read0_pending(h2c) || h2s->st == H2_SS_CLOSED)
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006420 se_fl_set(h2s->sd, SE_FL_EOS);
6421 if (se_fl_test(h2s->sd, SE_FL_ERR_PENDING))
6422 se_fl_set(h2s->sd, SE_FL_ERROR);
Olivier Houchard638b7992018-08-16 15:41:52 +02006423 if (b_size(&h2s->rxbuf)) {
6424 b_free(&h2s->rxbuf);
Willy Tarreau4d77bbf2021-02-20 12:02:46 +01006425 offer_buffers(NULL, 1);
Olivier Houchard638b7992018-08-16 15:41:52 +02006426 }
Olivier Houchard511efea2018-08-16 15:30:32 +02006427 }
6428
Willy Tarreau082f5592018-11-25 08:03:32 +01006429 if (ret && h2c->dsi == h2s->id) {
6430 /* demux is blocking on this stream's buffer */
6431 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02006432 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01006433 }
Christopher Faulet37070b22019-02-14 15:12:14 +01006434
Willy Tarreau7838a792019-08-12 18:42:03 +02006435 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02006436 return ret;
6437}
6438
Olivier Houchardd846c262018-10-19 17:24:29 +02006439
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006440/* Called from the upper layer, to send data from buffer <buf> for no more than
6441 * <count> bytes. Returns the number of bytes effectively sent. Some status
Willy Tarreau4596fe22022-05-17 19:07:51 +02006442 * flags may be updated on the stream connector.
Willy Tarreau749f5ca2019-03-21 19:19:36 +01006443 */
Willy Tarreau36c22322022-05-27 10:41:24 +02006444static size_t h2_snd_buf(struct stconn *sc, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02006445{
Willy Tarreau36c22322022-05-27 10:41:24 +02006446 struct h2s *h2s = __sc_mux_strm(sc);
Willy Tarreau1dc41e72018-06-14 13:21:28 +02006447 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02006448 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006449 struct htx *htx;
6450 struct htx_blk *blk;
6451 enum htx_blk_type btype;
6452 uint32_t bsize;
6453 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006454
Willy Tarreau7838a792019-08-12 18:42:03 +02006455 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
6456
Olivier Houchardd360ac62019-03-22 17:37:16 +01006457 /* If we were not just woken because we wanted to send but couldn't,
6458 * and there's somebody else that is waiting to send, do nothing,
6459 * we will subscribe later and be put at the end of the list
6460 */
Willy Tarreaud9464162020-01-10 18:25:07 +01006461 if (!(h2s->flags & H2_SF_NOTIFIED) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02006462 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
6463 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 +01006464 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006465 }
Willy Tarreaud9464162020-01-10 18:25:07 +01006466 h2s->flags &= ~H2_SF_NOTIFIED;
Olivier Houchard998410a2019-04-15 19:23:37 +02006467
Willy Tarreau7838a792019-08-12 18:42:03 +02006468 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
6469 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 +02006470 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02006471 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02006472
Willy Tarreaucab22952019-10-31 15:48:18 +01006473 if (h2s->h2c->st0 >= H2_CS_ERROR) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006474 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreaucab22952019-10-31 15:48:18 +01006475 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);
6476 return 0;
6477 }
6478
Christopher Faulet9b79a102019-07-15 11:22:56 +02006479 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006480
Willy Tarreau0bad0432018-06-14 16:54:01 +02006481 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01006482 h2s->flags |= H2_SF_OUTGOING_DATA;
6483
Christopher Faulet2e47e3a2023-01-13 11:40:24 +01006484 if (htx->extra && htx->extra != HTX_UNKOWN_PAYLOAD_LENGTH)
Willy Tarreau48770452022-08-18 16:03:51 +02006485 h2s->flags |= H2_SF_MORE_HTX_DATA;
6486 else
6487 h2s->flags &= ~H2_SF_MORE_HTX_DATA;
6488
Willy Tarreau751f2d02018-10-05 09:35:00 +02006489 if (h2s->id == 0) {
6490 int32_t id = h2c_get_next_sid(h2s->h2c);
6491
6492 if (id < 0) {
Willy Tarreau95acc8b2022-05-27 16:14:10 +02006493 se_fl_set(h2s->sd, SE_FL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02006494 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 +02006495 return 0;
6496 }
6497
6498 eb32_delete(&h2s->by_id);
6499 h2s->by_id.key = h2s->id = id;
6500 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01006501 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02006502 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
6503 }
6504
Christopher Faulet9b79a102019-07-15 11:22:56 +02006505 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
6506 count && !htx_is_empty(htx)) {
6507 idx = htx_get_head(htx);
6508 blk = htx_get_blk(htx, idx);
6509 btype = htx_get_blk_type(blk);
6510 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006511
Christopher Faulet9b79a102019-07-15 11:22:56 +02006512 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02006513 case HTX_BLK_REQ_SL:
6514 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006515 ret = h2s_snd_bhdrs(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02006516 if (ret > 0) {
6517 total += ret;
6518 count -= ret;
6519 if (ret < bsize)
6520 goto done;
6521 }
6522 break;
6523
Willy Tarreau115e83b2018-12-01 19:17:53 +01006524 case HTX_BLK_RES_SL:
6525 /* start-line before headers */
Willy Tarreau7cfbb812023-01-26 16:02:01 +01006526 ret = h2s_snd_fhdrs(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01006527 if (ret > 0) {
6528 total += ret;
6529 count -= ret;
6530 if (ret < bsize)
6531 goto done;
6532 }
6533 break;
6534
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006535 case HTX_BLK_DATA:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006536 /* all these cause the emission of a DATA frame (possibly empty) */
Christopher Faulet991febd2020-12-02 15:17:31 +01006537 if (!(h2s->h2c->flags & H2_CF_IS_BACK) &&
6538 (h2s->flags & (H2_SF_BODY_TUNNEL|H2_SF_BODYLESS_RESP)) == H2_SF_BODYLESS_RESP)
6539 ret = h2s_skip_data(h2s, buf, count);
6540 else
6541 ret = h2s_make_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006542 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01006543 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01006544 total += ret;
6545 count -= ret;
6546 if (ret < bsize)
6547 goto done;
6548 }
6549 break;
6550
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006551 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02006552 case HTX_BLK_EOT:
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01006553 /* This is the first trailers block, all the subsequent ones */
Christopher Faulet9b79a102019-07-15 11:22:56 +02006554 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01006555 if (ret > 0) {
6556 total += ret;
6557 count -= ret;
6558 if (ret < bsize)
6559 goto done;
6560 }
6561 break;
6562
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006563 default:
6564 htx_remove_blk(htx, blk);
6565 total += bsize;
6566 count -= bsize;
6567 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006568 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01006569 }
6570
Christopher Faulet9b79a102019-07-15 11:22:56 +02006571 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02006572 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02006573 /* trim any possibly pending data after we close (extra CR-LF,
6574 * unprocessed trailers, abnormal extra data, ...)
6575 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02006576 total += count;
6577 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02006578 }
6579
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006580 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01006581 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006582 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 +02006583 se_fl_set_error(h2s->sd);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01006584 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01006585 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01006586 }
6587
Christopher Faulet9b79a102019-07-15 11:22:56 +02006588 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02006589
Olivier Houchard7505f942018-08-21 18:10:44 +02006590 if (total > 0) {
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006591 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006592 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 +02006593 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Tim Duesterhus12a08d82020-12-21 19:40:16 +01006594 }
Olivier Houchardd846c262018-10-19 17:24:29 +02006595
Olivier Houchard7505f942018-08-21 18:10:44 +02006596 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006597 /* If we're waiting for flow control, and we got a shutr on the
6598 * connection, we will never be unlocked, so add an error on
Willy Tarreau4596fe22022-05-17 19:07:51 +02006599 * the stream connector.
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006600 */
Christopher Fauletff7925d2022-10-11 19:12:40 +02006601 if ((h2s->h2c->flags & H2_CF_RCVD_SHUT) &&
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006602 !b_data(&h2s->h2c->dbuf) &&
6603 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02006604 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 +01006605 se_fl_set_error(h2s->sd);
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01006606 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006607
Willy Tarreau5723f292020-01-10 15:16:57 +01006608 if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL) &&
6609 !(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006610 /* Ok we managed to send something, leave the send_list if we were still there */
Olivier Houchardd360ac62019-03-22 17:37:16 +01006611 LIST_DEL_INIT(&h2s->list);
6612 }
Willy Tarreau9edf6db2019-10-02 10:49:59 +02006613
Willy Tarreau7838a792019-08-12 18:42:03 +02006614 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02006615 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02006616}
6617
Willy Tarreau90bffa22022-09-01 19:06:44 +02006618/* appends some info about stream <h2s> to buffer <msg>, or does nothing if
Willy Tarreau7051f732022-09-02 15:22:12 +02006619 * <h2s> is NULL. Returns non-zero if the stream is considered suspicious. May
6620 * emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is not
6621 * NULL, otherwise a single line is used.
Willy Tarreau90bffa22022-09-01 19:06:44 +02006622 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006623static int h2_dump_h2s_info(struct buffer *msg, const struct h2s *h2s, const char *pfx)
Willy Tarreau90bffa22022-09-01 19:06:44 +02006624{
6625 int ret = 0;
6626
6627 if (!h2s)
6628 return ret;
6629
Willy Tarreau7051f732022-09-02 15:22:12 +02006630 chunk_appendf(msg, " h2s.id=%d .st=%s .flg=0x%04x .rxbuf=%u@%p+%u/%u",
Willy Tarreau90bffa22022-09-01 19:06:44 +02006631 h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
6632 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006633 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf));
6634
6635 if (pfx)
6636 chunk_appendf(msg, "\n%s", pfx);
6637
6638 chunk_appendf(msg, " .sc=%p", h2s_sc(h2s));
Willy Tarreau90bffa22022-09-01 19:06:44 +02006639 if (h2s_sc(h2s))
6640 chunk_appendf(msg, "(.flg=0x%08x .app=%p)",
6641 h2s_sc(h2s)->flags, h2s_sc(h2s)->app);
6642
Willy Tarreau7051f732022-09-02 15:22:12 +02006643 chunk_appendf(msg, " .sd=%p", h2s->sd);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006644 chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
6645
Willy Tarreau7051f732022-09-02 15:22:12 +02006646 if (pfx)
6647 chunk_appendf(msg, "\n%s", pfx);
6648
Willy Tarreau90bffa22022-09-01 19:06:44 +02006649 chunk_appendf(msg, " .subs=%p", h2s->subs);
6650 if (h2s->subs) {
6651 chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
6652 chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
6653 h2s->subs->tasklet->calls,
6654 h2s->subs->tasklet->context);
6655 if (h2s->subs->tasklet->calls >= 1000000)
6656 ret = 1;
6657 resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
6658 chunk_appendf(msg, ")");
6659 }
6660 return ret;
6661}
6662
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006663/* appends some info about connection <h2c> to buffer <msg>, or does nothing if
6664 * <h2c> is NULL. Returns non-zero if the connection is considered suspicious.
Willy Tarreau7051f732022-09-02 15:22:12 +02006665 * May emit multiple lines, each new one being prefixed with <pfx>, if <pfx> is
6666 * not NULL, otherwise a single line is used.
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006667 */
Willy Tarreau7051f732022-09-02 15:22:12 +02006668static int h2_dump_h2c_info(struct buffer *msg, struct h2c *h2c, const char *pfx)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006669{
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006670 const struct buffer *hmbuf, *tmbuf;
6671 const struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006672 struct eb32_node *node;
6673 int fctl_cnt = 0;
6674 int send_cnt = 0;
6675 int tree_cnt = 0;
6676 int orph_cnt = 0;
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006677 int ret = 0;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006678
6679 if (!h2c)
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006680 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006681
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006682 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006683 fctl_cnt++;
6684
Olivier Houchardfa8aa862018-10-10 18:25:41 +02006685 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006686 send_cnt++;
6687
6688 node = eb32_first(&h2c->streams_by_id);
6689 while (node) {
6690 h2s = container_of(node, struct h2s, by_id);
6691 tree_cnt++;
Willy Tarreau7be4ee02022-05-18 07:31:41 +02006692 if (!h2s_sc(h2s))
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006693 orph_cnt++;
6694 node = eb32_next(node);
6695 }
6696
Willy Tarreau60f62682019-05-26 11:32:27 +02006697 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02006698 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02006699 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau7051f732022-09-02 15:22:12 +02006700 " .nbst=%u .nbsc=%u",
Willy Tarreauab2ec452019-08-30 07:07:08 +02006701 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau7051f732022-09-02 15:22:12 +02006702 h2c->nb_streams, h2c->nb_sc);
6703
6704 if (pfx)
6705 chunk_appendf(msg, "\n%s", pfx);
6706
6707 chunk_appendf(msg, " .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
6708 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u",
6709 fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01006710 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01006711 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
Willy Tarreau7051f732022-09-02 15:22:12 +02006712 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf));
6713
6714 if (pfx)
6715 chunk_appendf(msg, "\n%s", pfx);
6716
Christopher Faulet68ee7842022-10-12 10:21:33 +02006717 chunk_appendf(msg, " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreau60f62682019-05-26 11:32:27 +02006718 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
6719 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
6720 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02006721 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
6722 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01006723
Willy Tarreauf8c77092022-11-29 15:26:43 +01006724 chunk_appendf(msg, " .task=%p", h2c->task);
6725 if (h2c->task) {
6726 chunk_appendf(msg, " .exp=%s",
6727 h2c->task->expire ? tick_is_expired(h2c->task->expire, now_ms) ? "<PAST>" :
6728 human_time(TICKS_TO_MS(h2c->task->expire - now_ms), TICKS_TO_MS(1000)) : "<NEVER>");
6729 }
Willy Tarreau7051f732022-09-02 15:22:12 +02006730
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006731 return ret;
6732}
6733
6734/* for debugging with CLI's "show fd" command */
6735static int h2_show_fd(struct buffer *msg, struct connection *conn)
6736{
6737 struct h2c *h2c = conn->ctx;
6738 const struct h2s *h2s;
6739 struct eb32_node *node;
6740 int ret = 0;
6741
6742 if (!h2c)
6743 return ret;
6744
Willy Tarreau7051f732022-09-02 15:22:12 +02006745 ret |= h2_dump_h2c_info(msg, h2c, NULL);
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006746
6747 node = eb32_last(&h2c->streams_by_id);
6748 if (node) {
6749 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau90bffa22022-09-01 19:06:44 +02006750 chunk_appendf(msg, " last_h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006751 ret |= h2_dump_h2s_info(msg, h2s, NULL);
Willy Tarreau987c0632018-12-18 10:32:05 +01006752 }
Willy Tarreau4e97bcc2022-09-01 19:25:57 +02006753
Willy Tarreau06bf83e2021-01-21 09:13:35 +01006754 return ret;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006755}
Willy Tarreau62f52692017-10-08 23:01:42 +02006756
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006757/* for debugging with CLI's "show sess" command. May emit multiple lines, each
6758 * new one being prefixed with <pfx>, if <pfx> is not NULL, otherwise a single
6759 * line is used. Each field starts with a space so it's safe to print it after
6760 * existing fields.
6761 */
6762static int h2_show_sd(struct buffer *msg, struct sedesc *sd, const char *pfx)
6763{
6764 struct h2s *h2s = sd->se;
6765 int ret = 0;
6766
6767 if (!h2s)
6768 return ret;
6769
6770 chunk_appendf(msg, " h2s=%p", h2s);
Willy Tarreau7051f732022-09-02 15:22:12 +02006771 ret |= h2_dump_h2s_info(msg, h2s, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006772 if (pfx)
6773 chunk_appendf(msg, "\n%s", pfx);
6774 chunk_appendf(msg, " h2c=%p", h2s->h2c);
Willy Tarreau7051f732022-09-02 15:22:12 +02006775 ret |= h2_dump_h2c_info(msg, h2s->h2c, pfx);
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006776 return ret;
6777}
6778
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006779/* Migrate the the connection to the current thread.
6780 * Return 0 if successful, non-zero otherwise.
6781 * Expected to be called with the old thread lock held.
6782 */
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006783static int h2_takeover(struct connection *conn, int orig_tid)
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006784{
6785 struct h2c *h2c = conn->ctx;
Willy Tarreau617e80f2020-07-01 16:39:33 +02006786 struct task *task;
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006787
6788 if (fd_takeover(conn->handle.fd, conn) != 0)
6789 return -1;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006790
6791 if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) {
6792 /* We failed to takeover the xprt, even if the connection may
6793 * still be valid, flag it as error'd, as we have already
6794 * taken over the fd, and wake the tasklet, so that it will
6795 * destroy it.
6796 */
6797 conn->flags |= CO_FL_ERROR;
6798 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
6799 return -1;
6800 }
6801
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006802 if (h2c->wait_event.events)
6803 h2c->conn->xprt->unsubscribe(h2c->conn, h2c->conn->xprt_ctx,
6804 h2c->wait_event.events, &h2c->wait_event);
6805 /* To let the tasklet know it should free itself, and do nothing else,
6806 * set its context to NULL.
6807 */
6808 h2c->wait_event.tasklet->context = NULL;
Olivier Houchard1662cdb2020-07-03 14:04:37 +02006809 tasklet_wakeup_on(h2c->wait_event.tasklet, orig_tid);
Willy Tarreau617e80f2020-07-01 16:39:33 +02006810
6811 task = h2c->task;
6812 if (task) {
6813 task->context = NULL;
6814 h2c->task = NULL;
6815 __ha_barrier_store();
6816 task_kill(task);
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006817
Willy Tarreaubeeabf52021-10-01 18:23:30 +02006818 h2c->task = task_new_here();
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006819 if (!h2c->task) {
6820 h2_release(h2c);
6821 return -1;
6822 }
6823 h2c->task->process = h2_timeout_task;
6824 h2c->task->context = h2c;
6825 }
6826 h2c->wait_event.tasklet = tasklet_new();
6827 if (!h2c->wait_event.tasklet) {
6828 h2_release(h2c);
6829 return -1;
6830 }
6831 h2c->wait_event.tasklet->process = h2_io_cb;
6832 h2c->wait_event.tasklet->context = h2c;
6833 h2c->conn->xprt->subscribe(h2c->conn, h2c->conn->xprt_ctx,
6834 SUB_RETRY_RECV, &h2c->wait_event);
6835
6836 return 0;
6837}
6838
Willy Tarreau62f52692017-10-08 23:01:42 +02006839/*******************************************************/
6840/* functions below are dedicated to the config parsers */
6841/*******************************************************/
6842
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006843/* config parser for global "tune.h2.header-table-size" */
6844static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006845 const struct proxy *defpx, const char *file, int line,
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006846 char **err)
6847{
6848 if (too_many_args(1, args, err, NULL))
6849 return -1;
6850
6851 h2_settings_header_table_size = atoi(args[1]);
6852 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
6853 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
6854 return -1;
6855 }
6856 return 0;
6857}
Willy Tarreau62f52692017-10-08 23:01:42 +02006858
Willy Tarreaue6baec02017-07-27 11:45:11 +02006859/* config parser for global "tune.h2.initial-window-size" */
6860static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006861 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue6baec02017-07-27 11:45:11 +02006862 char **err)
6863{
6864 if (too_many_args(1, args, err, NULL))
6865 return -1;
6866
6867 h2_settings_initial_window_size = atoi(args[1]);
6868 if (h2_settings_initial_window_size < 0) {
6869 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6870 return -1;
6871 }
6872 return 0;
6873}
6874
Willy Tarreau5242ef82017-07-27 11:47:28 +02006875/* config parser for global "tune.h2.max-concurrent-streams" */
6876static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006877 const struct proxy *defpx, const char *file, int line,
Willy Tarreau5242ef82017-07-27 11:47:28 +02006878 char **err)
6879{
6880 if (too_many_args(1, args, err, NULL))
6881 return -1;
6882
6883 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01006884 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02006885 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
6886 return -1;
6887 }
6888 return 0;
6889}
6890
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006891/* config parser for global "tune.h2.max-frame-size" */
6892static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006893 const struct proxy *defpx, const char *file, int line,
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006894 char **err)
6895{
6896 if (too_many_args(1, args, err, NULL))
6897 return -1;
6898
6899 h2_settings_max_frame_size = atoi(args[1]);
6900 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
6901 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
6902 return -1;
6903 }
6904 return 0;
6905}
6906
Willy Tarreau62f52692017-10-08 23:01:42 +02006907
6908/****************************************/
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05006909/* MUX initialization and instantiation */
Willy Tarreau62f52692017-10-08 23:01:42 +02006910/***************************************/
6911
6912/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01006913static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02006914 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02006915 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02006916 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02006917 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02006918 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02006919 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02006920 .attach = h2_attach,
Willy Tarreaud1373532022-05-27 11:00:59 +02006921 .get_first_sc = h2_get_first_sc,
Willy Tarreau62f52692017-10-08 23:01:42 +02006922 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01006923 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01006924 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01006925 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02006926 .shutr = h2_shutr,
6927 .shutw = h2_shutw,
Olivier Houchard9b8e11e2019-10-25 16:19:26 +02006928 .ctl = h2_ctl,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02006929 .show_fd = h2_show_fd,
Willy Tarreaubf4ec6f2022-09-02 15:11:40 +02006930 .show_sd = h2_show_sd,
Olivier Houchardcd4159f2020-03-10 18:39:42 +01006931 .takeover = h2_takeover,
Christopher Fauleta97cced2022-04-12 18:04:10 +02006932 .flags = MX_FL_HTX|MX_FL_HOL_RISK|MX_FL_NO_UPG,
Willy Tarreau62f52692017-10-08 23:01:42 +02006933 .name = "H2",
6934};
6935
Christopher Faulet32f61c02018-04-10 14:33:41 +02006936static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02006937 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02006938
Willy Tarreau0108d902018-11-25 19:14:37 +01006939INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
6940
Willy Tarreau62f52692017-10-08 23:01:42 +02006941/* config keyword parsers */
6942static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02006943 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02006944 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02006945 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01006946 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02006947 { 0, NULL, NULL }
6948}};
6949
Willy Tarreau0108d902018-11-25 19:14:37 +01006950INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006951
6952/* initialize internal structs after the config is parsed.
6953 * Returns zero on success, non-zero on error.
6954 */
6955static int init_h2()
6956{
6957 pool_head_hpack_tbl = create_pool("hpack_tbl",
6958 h2_settings_header_table_size,
6959 MEM_F_SHARED|MEM_F_EXACT);
Christopher Faulet52140992020-11-06 15:23:39 +01006960 if (!pool_head_hpack_tbl) {
6961 ha_alert("failed to allocate hpack_tbl memory pool\n");
6962 return (ERR_ALERT | ERR_FATAL);
6963 }
6964 return ERR_NONE;
Willy Tarreau2bdcc702020-05-19 11:31:11 +02006965}
6966
6967REGISTER_POST_CHECK(init_h2);